cmd_pmc440.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. /*
  2. * (C) Copyright 2007-2008
  3. * Matthias Fuchs, esd Gmbh, matthias.fuchs@esd-electronics.com.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <command.h>
  9. #include <console.h>
  10. #include <asm/io.h>
  11. #include <asm/cache.h>
  12. #include <asm/processor.h>
  13. #if defined(CONFIG_LOGBUFFER)
  14. #include <logbuff.h>
  15. #endif
  16. #include "pmc440.h"
  17. int is_monarch(void);
  18. int bootstrap_eeprom_write(unsigned dev_addr, unsigned offset,
  19. uchar *buffer, unsigned cnt);
  20. int eeprom_write_enable(unsigned dev_addr, int state);
  21. DECLARE_GLOBAL_DATA_PTR;
  22. #if defined(CONFIG_CMD_BSP)
  23. static int got_fifoirq;
  24. static int got_hcirq;
  25. int fpga_interrupt(u32 arg)
  26. {
  27. pmc440_fpga_t *fpga = (pmc440_fpga_t *)arg;
  28. int rc = -1; /* not for us */
  29. u32 status = FPGA_IN32(&fpga->status);
  30. /* check for interrupt from fifo module */
  31. if (status & STATUS_FIFO_ISF) {
  32. /* disable this int source */
  33. FPGA_OUT32(&fpga->hostctrl, HOSTCTRL_FIFOIE_GATE);
  34. rc = 0;
  35. got_fifoirq = 1; /* trigger backend */
  36. }
  37. if (status & STATUS_HOST_ISF) {
  38. FPGA_OUT32(&fpga->hostctrl, HOSTCTRL_HCINT_GATE);
  39. rc = 0;
  40. got_hcirq = 1;
  41. }
  42. return rc;
  43. }
  44. int do_waithci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  45. {
  46. pmc440_fpga_t *fpga = (pmc440_fpga_t *)FPGA_BA;
  47. got_hcirq = 0;
  48. FPGA_CLRBITS(&fpga->ctrla, CTRL_HOST_IE);
  49. FPGA_OUT32(&fpga->hostctrl, HOSTCTRL_HCINT_GATE);
  50. irq_install_handler(IRQ0_FPGA,
  51. (interrupt_handler_t *)fpga_interrupt,
  52. fpga);
  53. FPGA_SETBITS(&fpga->ctrla, CTRL_HOST_IE);
  54. while (!got_hcirq) {
  55. /* Abort if ctrl-c was pressed */
  56. if (ctrlc()) {
  57. puts("\nAbort\n");
  58. break;
  59. }
  60. }
  61. if (got_hcirq)
  62. printf("Got interrupt!\n");
  63. FPGA_CLRBITS(&fpga->ctrla, CTRL_HOST_IE);
  64. irq_free_handler(IRQ0_FPGA);
  65. return 0;
  66. }
  67. U_BOOT_CMD(
  68. waithci, 1, 1, do_waithci,
  69. "Wait for host control interrupt",
  70. ""
  71. );
  72. void dump_fifo(pmc440_fpga_t *fpga, int f, int *n)
  73. {
  74. u32 ctrl;
  75. while (!((ctrl = FPGA_IN32(&fpga->fifo[f].ctrl)) & FIFO_EMPTY)) {
  76. printf("%5d %d %3d %08x",
  77. (*n)++, f, ctrl & (FIFO_LEVEL_MASK | FIFO_FULL),
  78. FPGA_IN32(&fpga->fifo[f].data));
  79. if (ctrl & FIFO_OVERFLOW) {
  80. printf(" OVERFLOW\n");
  81. FPGA_CLRBITS(&fpga->fifo[f].ctrl, FIFO_OVERFLOW);
  82. } else
  83. printf("\n");
  84. }
  85. }
  86. int do_fifo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  87. {
  88. pmc440_fpga_t *fpga = (pmc440_fpga_t *)FPGA_BA;
  89. int i;
  90. int n = 0;
  91. u32 ctrl, data, f;
  92. char str[] = "\\|/-";
  93. int abort = 0;
  94. int count = 0;
  95. int count2 = 0;
  96. switch (argc) {
  97. case 1:
  98. /* print all fifos status information */
  99. printf("fifo level status\n");
  100. printf("______________________________\n");
  101. for (i=0; i<FIFO_COUNT; i++) {
  102. ctrl = FPGA_IN32(&fpga->fifo[i].ctrl);
  103. printf(" %d %3d %s%s%s %s\n",
  104. i, ctrl & (FIFO_LEVEL_MASK | FIFO_FULL),
  105. ctrl & FIFO_FULL ? "FULL " : "",
  106. ctrl & FIFO_EMPTY ? "EMPTY " : "",
  107. ctrl & (FIFO_FULL|FIFO_EMPTY) ? "" : "NOT EMPTY",
  108. ctrl & FIFO_OVERFLOW ? "OVERFLOW" : "");
  109. }
  110. break;
  111. case 2:
  112. /* completely read out fifo 'n' */
  113. if (!strcmp(argv[1],"read")) {
  114. printf(" # fifo level data\n");
  115. printf("______________________________\n");
  116. for (i=0; i<FIFO_COUNT; i++)
  117. dump_fifo(fpga, i, &n);
  118. } else if (!strcmp(argv[1],"wait")) {
  119. got_fifoirq = 0;
  120. irq_install_handler(IRQ0_FPGA,
  121. (interrupt_handler_t *)fpga_interrupt,
  122. fpga);
  123. printf(" # fifo level data\n");
  124. printf("______________________________\n");
  125. /* enable all fifo interrupts */
  126. FPGA_OUT32(&fpga->hostctrl,
  127. HOSTCTRL_FIFOIE_GATE | HOSTCTRL_FIFOIE_FLAG);
  128. for (i=0; i<FIFO_COUNT; i++) {
  129. /* enable interrupts from all fifos */
  130. FPGA_SETBITS(&fpga->fifo[i].ctrl, FIFO_IE);
  131. }
  132. while (1) {
  133. /* wait loop */
  134. while (!got_fifoirq) {
  135. count++;
  136. if (!(count % 100)) {
  137. count2++;
  138. putc(0x08); /* backspace */
  139. putc(str[count2 % 4]);
  140. }
  141. /* Abort if ctrl-c was pressed */
  142. if ((abort = ctrlc())) {
  143. puts("\nAbort\n");
  144. break;
  145. }
  146. udelay(1000);
  147. }
  148. if (abort)
  149. break;
  150. /* simple fifo backend */
  151. if (got_fifoirq) {
  152. for (i=0; i<FIFO_COUNT; i++)
  153. dump_fifo(fpga, i, &n);
  154. got_fifoirq = 0;
  155. /* unmask global fifo irq */
  156. FPGA_OUT32(&fpga->hostctrl,
  157. HOSTCTRL_FIFOIE_GATE |
  158. HOSTCTRL_FIFOIE_FLAG);
  159. }
  160. }
  161. /* disable all fifo interrupts */
  162. FPGA_OUT32(&fpga->hostctrl, HOSTCTRL_FIFOIE_GATE);
  163. for (i=0; i<FIFO_COUNT; i++)
  164. FPGA_CLRBITS(&fpga->fifo[i].ctrl, FIFO_IE);
  165. irq_free_handler(IRQ0_FPGA);
  166. } else {
  167. printf("Usage:\nfifo %s\n", cmdtp->help);
  168. return 1;
  169. }
  170. break;
  171. case 4:
  172. case 5:
  173. if (!strcmp(argv[1],"write")) {
  174. /* get fifo number or fifo address */
  175. f = simple_strtoul(argv[2], NULL, 16);
  176. /* data paramter */
  177. data = simple_strtoul(argv[3], NULL, 16);
  178. /* get optional count parameter */
  179. n = 1;
  180. if (argc >= 5)
  181. n = (int)simple_strtoul(argv[4], NULL, 10);
  182. if (f < FIFO_COUNT) {
  183. printf("writing %d x %08x to fifo %d\n",
  184. n, data, f);
  185. for (i=0; i<n; i++)
  186. FPGA_OUT32(&fpga->fifo[f].data, data);
  187. } else {
  188. printf("writing %d x %08x to fifo port at "
  189. "address %08x\n",
  190. n, data, f);
  191. for (i=0; i<n; i++)
  192. out_be32((void *)f, data);
  193. }
  194. } else {
  195. printf("Usage:\nfifo %s\n", cmdtp->help);
  196. return 1;
  197. }
  198. break;
  199. default:
  200. printf("Usage:\nfifo %s\n", cmdtp->help);
  201. return 1;
  202. }
  203. return 0;
  204. }
  205. U_BOOT_CMD(
  206. fifo, 5, 1, do_fifo,
  207. "Fifo module operations",
  208. "wait\nfifo read\n"
  209. "fifo write fifo(0..3) data [cnt=1]\n"
  210. "fifo write address(>=4) data [cnt=1]\n"
  211. " - without arguments: print all fifo's status\n"
  212. " - with 'wait' argument: interrupt driven read from all fifos\n"
  213. " - with 'read' argument: read current contents from all fifos\n"
  214. " - with 'write' argument: write 'data' 'cnt' times to "
  215. "'fifo' or 'address'"
  216. );
  217. int do_setup_bootstrap_eeprom(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  218. {
  219. ulong sdsdp[5];
  220. ulong delay;
  221. int count=16;
  222. if (argc < 2) {
  223. printf("Usage:\nsbe %s\n", cmdtp->help);
  224. return -1;
  225. }
  226. if (argc > 1) {
  227. if (!strcmp(argv[1], "400")) {
  228. /* PLB=133MHz, PLB/PCI=3 */
  229. printf("Bootstrapping for 400MHz\n");
  230. sdsdp[0]=0x8678624e;
  231. sdsdp[1]=0x095fa030;
  232. sdsdp[2]=0x40082350;
  233. sdsdp[3]=0x0d050000;
  234. } else if (!strcmp(argv[1], "533")) {
  235. /* PLB=133MHz, PLB/PCI=3 */
  236. printf("Bootstrapping for 533MHz\n");
  237. sdsdp[0]=0x87788252;
  238. sdsdp[1]=0x095fa030;
  239. sdsdp[2]=0x40082350;
  240. sdsdp[3]=0x0d050000;
  241. } else if (!strcmp(argv[1], "667")) {
  242. /* PLB=133MHz, PLB/PCI=3 */
  243. printf("Bootstrapping for 667MHz\n");
  244. sdsdp[0]=0x8778a256;
  245. sdsdp[1]=0x095fa030;
  246. sdsdp[2]=0x40082350;
  247. sdsdp[3]=0x0d050000;
  248. } else {
  249. printf("Usage:\nsbe %s\n", cmdtp->help);
  250. return -1;
  251. }
  252. }
  253. if (argc > 2) {
  254. sdsdp[4] = 0;
  255. if (argv[2][0]=='1')
  256. sdsdp[4]=0x19750100;
  257. else if (argv[2][0]=='0')
  258. sdsdp[4]=0x19750000;
  259. if (sdsdp[4])
  260. count += 4;
  261. }
  262. if (argc > 3) {
  263. delay = simple_strtoul(argv[3], NULL, 10);
  264. if (delay > 20)
  265. delay = 20;
  266. sdsdp[4] |= delay;
  267. }
  268. printf("Writing boot EEPROM ...\n");
  269. if (bootstrap_eeprom_write(CONFIG_SYS_I2C_BOOT_EEPROM_ADDR,
  270. 0, (uchar*)sdsdp, count) != 0)
  271. printf("bootstrap_eeprom_write failed\n");
  272. else
  273. printf("done (dump via 'i2c md 52 0.1 14')\n");
  274. return 0;
  275. }
  276. U_BOOT_CMD(
  277. sbe, 4, 0, do_setup_bootstrap_eeprom,
  278. "setup bootstrap eeprom",
  279. "<cpufreq:400|533|667> [<console-uart:0|1> [<bringup delay (0..20s)>]]"
  280. );
  281. #if defined(CONFIG_PRAM)
  282. #include <environment.h>
  283. #include <search.h>
  284. #include <errno.h>
  285. int do_painit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  286. {
  287. u32 pram, nextbase, base;
  288. char *v;
  289. u32 param;
  290. ulong *lptr;
  291. env_t *envp;
  292. char *res;
  293. int len;
  294. v = getenv("pram");
  295. if (v)
  296. pram = simple_strtoul(v, NULL, 10);
  297. else {
  298. printf("Error: pram undefined. Please define pram in KiB\n");
  299. return 1;
  300. }
  301. base = (u32)gd->ram_size;
  302. #if defined(CONFIG_LOGBUFFER)
  303. base -= LOGBUFF_LEN + LOGBUFF_OVERHEAD;
  304. #endif
  305. /*
  306. * gd->ram_size == physical ram size - CONFIG_SYS_MEM_TOP_HIDE
  307. */
  308. param = base - (pram << 10);
  309. printf("PARAM: @%08x\n", param);
  310. debug("memsize=0x%08x, base=0x%08x\n", (u32)gd->ram_size, base);
  311. /* clear entire PA ram */
  312. memset((void*)param, 0, (pram << 10));
  313. /* reserve 4k for pointer field */
  314. nextbase = base - 4096;
  315. lptr = (ulong*)(base);
  316. /*
  317. * *(--lptr) = item_size;
  318. * *(--lptr) = base - item_base = distance from field top;
  319. */
  320. /* env is first (4k aligned) */
  321. nextbase -= ((CONFIG_ENV_SIZE + 4096 - 1) & ~(4096 - 1));
  322. envp = (env_t *)nextbase;
  323. res = (char *)envp->data;
  324. len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
  325. if (len < 0) {
  326. error("Cannot export environment: errno = %d\n", errno);
  327. return 1;
  328. }
  329. envp->crc = crc32(0, envp->data, ENV_SIZE);
  330. *(--lptr) = CONFIG_ENV_SIZE; /* size */
  331. *(--lptr) = base - nextbase; /* offset | type=0 */
  332. /* free section */
  333. *(--lptr) = nextbase - param; /* size */
  334. *(--lptr) = (base - param) | 126; /* offset | type=126 */
  335. /* terminate pointer field */
  336. *(--lptr) = crc32(0, (void*)(base - 0x10), 0x10);
  337. *(--lptr) = 0; /* offset=0 -> terminator */
  338. return 0;
  339. }
  340. U_BOOT_CMD(
  341. painit, 1, 1, do_painit,
  342. "prepare PciAccess system",
  343. ""
  344. );
  345. #endif /* CONFIG_PRAM */
  346. int do_selfreset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  347. {
  348. in_be32((void*)CONFIG_SYS_RESET_BASE);
  349. return 0;
  350. }
  351. U_BOOT_CMD(
  352. selfreset, 1, 1, do_selfreset,
  353. "assert self-reset# signal",
  354. ""
  355. );
  356. int do_resetout(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  357. {
  358. pmc440_fpga_t *fpga = (pmc440_fpga_t *)FPGA_BA;
  359. /* requiers bootet FPGA and PLD_IOEN_N active */
  360. if (in_be32((void*)GPIO1_OR) & GPIO1_IOEN_N) {
  361. printf("Error: resetout requires a bootet FPGA\n");
  362. return -1;
  363. }
  364. if (argc > 1) {
  365. if (argv[1][0] == '0') {
  366. /* assert */
  367. printf("PMC-RESETOUT# asserted\n");
  368. FPGA_OUT32(&fpga->hostctrl,
  369. HOSTCTRL_PMCRSTOUT_GATE);
  370. } else {
  371. /* deassert */
  372. printf("PMC-RESETOUT# deasserted\n");
  373. FPGA_OUT32(&fpga->hostctrl,
  374. HOSTCTRL_PMCRSTOUT_GATE |
  375. HOSTCTRL_PMCRSTOUT_FLAG);
  376. }
  377. } else {
  378. printf("PMC-RESETOUT# is %s\n",
  379. FPGA_IN32(&fpga->hostctrl) & HOSTCTRL_PMCRSTOUT_FLAG ?
  380. "inactive" : "active");
  381. }
  382. return 0;
  383. }
  384. U_BOOT_CMD(
  385. resetout, 2, 1, do_resetout,
  386. "assert PMC-RESETOUT# signal",
  387. ""
  388. );
  389. int do_inta(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  390. {
  391. if (is_monarch()) {
  392. printf("This command is only supported in non-monarch mode\n");
  393. return -1;
  394. }
  395. if (argc > 1) {
  396. if (argv[1][0] == '0') {
  397. /* assert */
  398. printf("inta# asserted\n");
  399. out_be32((void*)GPIO1_TCR,
  400. in_be32((void*)GPIO1_TCR) | GPIO1_INTA_FAKE);
  401. } else {
  402. /* deassert */
  403. printf("inta# deasserted\n");
  404. out_be32((void*)GPIO1_TCR,
  405. in_be32((void*)GPIO1_TCR) & ~GPIO1_INTA_FAKE);
  406. }
  407. } else {
  408. printf("inta# is %s\n",
  409. in_be32((void*)GPIO1_TCR) & GPIO1_INTA_FAKE ?
  410. "active" : "inactive");
  411. }
  412. return 0;
  413. }
  414. U_BOOT_CMD(
  415. inta, 2, 1, do_inta,
  416. "Assert/Deassert or query INTA# state in non-monarch mode",
  417. ""
  418. );
  419. /* test-only */
  420. int do_pmm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  421. {
  422. ulong pciaddr;
  423. if (argc > 1) {
  424. pciaddr = simple_strtoul(argv[1], NULL, 16);
  425. pciaddr &= 0xf0000000;
  426. /* map PCI address at 0xc0000000 in PLB space */
  427. /* PMM1 Mask/Attribute - disabled b4 setting */
  428. out32r(PCIL0_PMM1MA, 0x00000000);
  429. /* PMM1 Local Address */
  430. out32r(PCIL0_PMM1LA, 0xc0000000);
  431. /* PMM1 PCI Low Address */
  432. out32r(PCIL0_PMM1PCILA, pciaddr);
  433. /* PMM1 PCI High Address */
  434. out32r(PCIL0_PMM1PCIHA, 0x00000000);
  435. /* 256MB + No prefetching, and enable region */
  436. out32r(PCIL0_PMM1MA, 0xf0000001);
  437. } else {
  438. printf("Usage:\npmm %s\n", cmdtp->help);
  439. }
  440. return 0;
  441. }
  442. U_BOOT_CMD(
  443. pmm, 2, 1, do_pmm,
  444. "Setup pmm[1] registers",
  445. "<pciaddr> (pciaddr will be aligned to 256MB)"
  446. );
  447. #if defined(CONFIG_SYS_EEPROM_WREN)
  448. int do_eep_wren(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  449. {
  450. int query = argc == 1;
  451. int state = 0;
  452. if (query) {
  453. /* Query write access state. */
  454. state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, -1);
  455. if (state < 0) {
  456. puts("Query of write access state failed.\n");
  457. } else {
  458. printf("Write access for device 0x%0x is %sabled.\n",
  459. CONFIG_SYS_I2C_EEPROM_ADDR, state ? "en" : "dis");
  460. state = 0;
  461. }
  462. } else {
  463. if ('0' == argv[1][0]) {
  464. /* Disable write access. */
  465. state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, 0);
  466. } else {
  467. /* Enable write access. */
  468. state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, 1);
  469. }
  470. if (state < 0) {
  471. puts("Setup of write access state failed.\n");
  472. }
  473. }
  474. return state;
  475. }
  476. U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
  477. "Enable / disable / query EEPROM write access",
  478. ""
  479. );
  480. #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */
  481. #endif /* CONFIG_CMD_BSP */