lwmon5.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637
  1. /*
  2. * (C) Copyright 2007
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. */
  20. #include <common.h>
  21. #include <command.h>
  22. #include <ppc440.h>
  23. #include <asm/processor.h>
  24. #include <asm/gpio.h>
  25. #include <asm/io.h>
  26. DECLARE_GLOBAL_DATA_PTR;
  27. extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
  28. ulong flash_get_size(ulong base, int banknum);
  29. int misc_init_r_kbd(void);
  30. int board_early_init_f(void)
  31. {
  32. u32 sdr0_pfc1, sdr0_pfc2;
  33. u32 reg;
  34. /* PLB Write pipelining disabled. Denali Core workaround */
  35. mtdcr(plb0_acr, 0xDE000000);
  36. mtdcr(plb1_acr, 0xDE000000);
  37. /*--------------------------------------------------------------------
  38. * Setup the interrupt controller polarities, triggers, etc.
  39. *-------------------------------------------------------------------*/
  40. mtdcr(uic0sr, 0xffffffff); /* clear all. if write with 1 then the status is cleared */
  41. mtdcr(uic0er, 0x00000000); /* disable all */
  42. mtdcr(uic0cr, 0x00000000); /* we have not critical interrupts at the moment */
  43. mtdcr(uic0pr, 0xFFBFF1EF); /* Adjustment of the polarity */
  44. mtdcr(uic0tr, 0x00000900); /* per ref-board manual */
  45. mtdcr(uic0vr, 0x00000000); /* int31 highest, base=0x000 is within DDRAM */
  46. mtdcr(uic0sr, 0xffffffff); /* clear all */
  47. mtdcr(uic1sr, 0xffffffff); /* clear all */
  48. mtdcr(uic1er, 0x00000000); /* disable all */
  49. mtdcr(uic1cr, 0x00000000); /* all non-critical */
  50. mtdcr(uic1pr, 0xFFFFC6A5); /* Adjustment of the polarity */
  51. mtdcr(uic1tr, 0x60000040); /* per ref-board manual */
  52. mtdcr(uic1vr, 0x00000000); /* int31 highest, base=0x000 is within DDRAM */
  53. mtdcr(uic1sr, 0xffffffff); /* clear all */
  54. mtdcr(uic2sr, 0xffffffff); /* clear all */
  55. mtdcr(uic2er, 0x00000000); /* disable all */
  56. mtdcr(uic2cr, 0x00000000); /* all non-critical */
  57. mtdcr(uic2pr, 0x27C00000); /* Adjustment of the polarity */
  58. mtdcr(uic2tr, 0x3C000000); /* per ref-board manual */
  59. mtdcr(uic2vr, 0x00000000); /* int31 highest, base=0x000 is within DDRAM */
  60. mtdcr(uic2sr, 0xffffffff); /* clear all */
  61. /* Trace Pins are disabled. SDR0_PFC0 Register */
  62. mtsdr(SDR0_PFC0, 0x0);
  63. /* select Ethernet pins */
  64. mfsdr(SDR0_PFC1, sdr0_pfc1);
  65. /* SMII via ZMII */
  66. sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SELECT_MASK) |
  67. SDR0_PFC1_SELECT_CONFIG_6;
  68. mfsdr(SDR0_PFC2, sdr0_pfc2);
  69. sdr0_pfc2 = (sdr0_pfc2 & ~SDR0_PFC2_SELECT_MASK) |
  70. SDR0_PFC2_SELECT_CONFIG_6;
  71. /* enable SPI (SCP) */
  72. sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SIS_MASK) | SDR0_PFC1_SIS_SCP_SEL;
  73. mtsdr(SDR0_PFC2, sdr0_pfc2);
  74. mtsdr(SDR0_PFC1, sdr0_pfc1);
  75. mtsdr(SDR0_PFC4, 0x80000000);
  76. /* PCI arbiter disabled */
  77. /* PCI Host Configuration disbaled */
  78. mfsdr(sdr_pci0, reg);
  79. reg = 0;
  80. mtsdr(sdr_pci0, 0x00000000 | reg);
  81. gpio_write_bit(CFG_GPIO_FLASH_WP, 1);
  82. #if CONFIG_POST & CFG_POST_BSPEC1
  83. gpio_write_bit(CFG_GPIO_HIGHSIDE, 1);
  84. reg = 0; /* reuse as counter */
  85. out_be32((void *)CFG_DSPIC_TEST_ADDR,
  86. in_be32((void *)CFG_DSPIC_TEST_ADDR)
  87. & ~CFG_DSPIC_TEST_MASK);
  88. while (!gpio_read_in_bit(CFG_GPIO_DSPIC_READY) && reg++ < 1000) {
  89. udelay(1000);
  90. }
  91. gpio_write_bit(CFG_GPIO_HIGHSIDE, 0);
  92. if (gpio_read_in_bit(CFG_GPIO_DSPIC_READY)) {
  93. /* set "boot error" flag */
  94. out_be32((void *)CFG_DSPIC_TEST_ADDR,
  95. in_be32((void *)CFG_DSPIC_TEST_ADDR) |
  96. CFG_DSPIC_TEST_MASK);
  97. }
  98. #endif
  99. /*
  100. * Reset PHY's:
  101. * The PHY's need a 2nd reset pulse, since the MDIO address is latched
  102. * upon reset, and with the first reset upon powerup, the addresses are
  103. * not latched reliable, since the IRQ line is multiplexed with an
  104. * MDIO address. A 2nd reset at this time will make sure, that the
  105. * correct address is latched.
  106. */
  107. gpio_write_bit(CFG_GPIO_PHY0_RST, 1);
  108. gpio_write_bit(CFG_GPIO_PHY1_RST, 1);
  109. udelay(1000);
  110. gpio_write_bit(CFG_GPIO_PHY0_RST, 0);
  111. gpio_write_bit(CFG_GPIO_PHY1_RST, 0);
  112. udelay(1000);
  113. gpio_write_bit(CFG_GPIO_PHY0_RST, 1);
  114. gpio_write_bit(CFG_GPIO_PHY1_RST, 1);
  115. return 0;
  116. }
  117. /*---------------------------------------------------------------------------+
  118. | misc_init_r.
  119. +---------------------------------------------------------------------------*/
  120. int misc_init_r(void)
  121. {
  122. u32 pbcr;
  123. int size_val = 0;
  124. u32 reg;
  125. unsigned long usb2d0cr = 0;
  126. unsigned long usb2phy0cr, usb2h0cr = 0;
  127. unsigned long sdr0_pfc1;
  128. /*
  129. * FLASH stuff...
  130. */
  131. /* Re-do sizing to get full correct info */
  132. /* adjust flash start and offset */
  133. gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
  134. gd->bd->bi_flashoffset = 0;
  135. mfebc(pb0cr, pbcr);
  136. switch (gd->bd->bi_flashsize) {
  137. case 1 << 20:
  138. size_val = 0;
  139. break;
  140. case 2 << 20:
  141. size_val = 1;
  142. break;
  143. case 4 << 20:
  144. size_val = 2;
  145. break;
  146. case 8 << 20:
  147. size_val = 3;
  148. break;
  149. case 16 << 20:
  150. size_val = 4;
  151. break;
  152. case 32 << 20:
  153. size_val = 5;
  154. break;
  155. case 64 << 20:
  156. size_val = 6;
  157. break;
  158. case 128 << 20:
  159. size_val = 7;
  160. break;
  161. }
  162. pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
  163. mtebc(pb0cr, pbcr);
  164. /*
  165. * Re-check to get correct base address
  166. */
  167. flash_get_size(gd->bd->bi_flashstart, 0);
  168. /* Monitor protection ON by default */
  169. (void)flash_protect(FLAG_PROTECT_SET,
  170. -CFG_MONITOR_LEN,
  171. 0xffffffff,
  172. &flash_info[1]);
  173. /* Env protection ON by default */
  174. (void)flash_protect(FLAG_PROTECT_SET,
  175. CFG_ENV_ADDR_REDUND,
  176. CFG_ENV_ADDR_REDUND + 2*CFG_ENV_SECT_SIZE - 1,
  177. &flash_info[1]);
  178. /*
  179. * USB suff...
  180. */
  181. /* SDR Setting */
  182. mfsdr(SDR0_PFC1, sdr0_pfc1);
  183. mfsdr(SDR0_USB0, usb2d0cr);
  184. mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
  185. mfsdr(SDR0_USB2H0CR, usb2h0cr);
  186. usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
  187. usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL; /*0*/
  188. usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK;
  189. usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_16BIT_30MHZ; /*1*/
  190. usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
  191. usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS; /*0*/
  192. usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
  193. usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST; /*1*/
  194. usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
  195. usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST; /*1*/
  196. /* An 8-bit/60MHz interface is the only possible alternative
  197. when connecting the Device to the PHY */
  198. usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK;
  199. usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_16BIT_30MHZ; /*1*/
  200. mtsdr(SDR0_PFC1, sdr0_pfc1);
  201. mtsdr(SDR0_USB0, usb2d0cr);
  202. mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
  203. mtsdr(SDR0_USB2H0CR, usb2h0cr);
  204. /*
  205. * Clear resets
  206. */
  207. udelay (1000);
  208. mtsdr(SDR0_SRST1, 0x00000000);
  209. udelay (1000);
  210. mtsdr(SDR0_SRST0, 0x00000000);
  211. printf("USB: Host(int phy) Device(ext phy)\n");
  212. /*
  213. * Clear PLB4A0_ACR[WRP]
  214. * This fix will make the MAL burst disabling patch for the Linux
  215. * EMAC driver obsolete.
  216. */
  217. reg = mfdcr(plb4_acr) & ~PLB4_ACR_WRP;
  218. mtdcr(plb4_acr, reg);
  219. /*
  220. * Init matrix keyboard
  221. */
  222. misc_init_r_kbd();
  223. return 0;
  224. }
  225. int checkboard(void)
  226. {
  227. char *s = getenv("serial#");
  228. printf("Board: lwmon5");
  229. if (s != NULL) {
  230. puts(", serial# ");
  231. puts(s);
  232. }
  233. putc('\n');
  234. return (0);
  235. }
  236. #if defined(CFG_DRAM_TEST)
  237. int testdram(void)
  238. {
  239. unsigned long *mem = (unsigned long *)0;
  240. const unsigned long kend = (1024 / sizeof(unsigned long));
  241. unsigned long k, n;
  242. mtmsr(0);
  243. for (k = 0; k < CFG_MBYTES_SDRAM;
  244. ++k, mem += (1024 / sizeof(unsigned long))) {
  245. if ((k & 1023) == 0) {
  246. printf("%3d MB\r", k / 1024);
  247. }
  248. memset(mem, 0xaaaaaaaa, 1024);
  249. for (n = 0; n < kend; ++n) {
  250. if (mem[n] != 0xaaaaaaaa) {
  251. printf("SDRAM test fails at: %08x\n",
  252. (uint) & mem[n]);
  253. return 1;
  254. }
  255. }
  256. memset(mem, 0x55555555, 1024);
  257. for (n = 0; n < kend; ++n) {
  258. if (mem[n] != 0x55555555) {
  259. printf("SDRAM test fails at: %08x\n",
  260. (uint) & mem[n]);
  261. return 1;
  262. }
  263. }
  264. }
  265. printf("SDRAM test passes\n");
  266. return 0;
  267. }
  268. #endif
  269. /*************************************************************************
  270. * pci_pre_init
  271. *
  272. * This routine is called just prior to registering the hose and gives
  273. * the board the opportunity to check things. Returning a value of zero
  274. * indicates that things are bad & PCI initialization should be aborted.
  275. *
  276. * Different boards may wish to customize the pci controller structure
  277. * (add regions, override default access routines, etc) or perform
  278. * certain pre-initialization actions.
  279. *
  280. ************************************************************************/
  281. #if defined(CONFIG_PCI)
  282. int pci_pre_init(struct pci_controller *hose)
  283. {
  284. unsigned long addr;
  285. /*-------------------------------------------------------------------------+
  286. | Set priority for all PLB3 devices to 0.
  287. | Set PLB3 arbiter to fair mode.
  288. +-------------------------------------------------------------------------*/
  289. mfsdr(sdr_amp1, addr);
  290. mtsdr(sdr_amp1, (addr & 0x000000FF) | 0x0000FF00);
  291. addr = mfdcr(plb3_acr);
  292. mtdcr(plb3_acr, addr | 0x80000000);
  293. /*-------------------------------------------------------------------------+
  294. | Set priority for all PLB4 devices to 0.
  295. +-------------------------------------------------------------------------*/
  296. mfsdr(sdr_amp0, addr);
  297. mtsdr(sdr_amp0, (addr & 0x000000FF) | 0x0000FF00);
  298. addr = mfdcr(plb4_acr) | 0xa0000000; /* Was 0x8---- */
  299. mtdcr(plb4_acr, addr);
  300. /*-------------------------------------------------------------------------+
  301. | Set Nebula PLB4 arbiter to fair mode.
  302. +-------------------------------------------------------------------------*/
  303. /* Segment0 */
  304. addr = (mfdcr(plb0_acr) & ~plb0_acr_ppm_mask) | plb0_acr_ppm_fair;
  305. addr = (addr & ~plb0_acr_hbu_mask) | plb0_acr_hbu_enabled;
  306. addr = (addr & ~plb0_acr_rdp_mask) | plb0_acr_rdp_4deep;
  307. addr = (addr & ~plb0_acr_wrp_mask) | plb0_acr_wrp_2deep;
  308. mtdcr(plb0_acr, addr);
  309. /* Segment1 */
  310. addr = (mfdcr(plb1_acr) & ~plb1_acr_ppm_mask) | plb1_acr_ppm_fair;
  311. addr = (addr & ~plb1_acr_hbu_mask) | plb1_acr_hbu_enabled;
  312. addr = (addr & ~plb1_acr_rdp_mask) | plb1_acr_rdp_4deep;
  313. addr = (addr & ~plb1_acr_wrp_mask) | plb1_acr_wrp_2deep;
  314. mtdcr(plb1_acr, addr);
  315. return 1;
  316. }
  317. #endif /* defined(CONFIG_PCI) */
  318. /*************************************************************************
  319. * pci_target_init
  320. *
  321. * The bootstrap configuration provides default settings for the pci
  322. * inbound map (PIM). But the bootstrap config choices are limited and
  323. * may not be sufficient for a given board.
  324. *
  325. ************************************************************************/
  326. #if defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT)
  327. void pci_target_init(struct pci_controller *hose)
  328. {
  329. /*--------------------------------------------------------------------------+
  330. * Set up Direct MMIO registers
  331. *--------------------------------------------------------------------------*/
  332. /*--------------------------------------------------------------------------+
  333. | PowerPC440EPX PCI Master configuration.
  334. | Map one 1Gig range of PLB/processor addresses to PCI memory space.
  335. | PLB address 0xA0000000-0xDFFFFFFF ==> PCI address 0xA0000000-0xDFFFFFFF
  336. | Use byte reversed out routines to handle endianess.
  337. | Make this region non-prefetchable.
  338. +--------------------------------------------------------------------------*/
  339. out32r(PCIX0_PMM0MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
  340. out32r(PCIX0_PMM0LA, CFG_PCI_MEMBASE); /* PMM0 Local Address */
  341. out32r(PCIX0_PMM0PCILA, CFG_PCI_MEMBASE); /* PMM0 PCI Low Address */
  342. out32r(PCIX0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */
  343. out32r(PCIX0_PMM0MA, 0xE0000001); /* 512M + No prefetching, and enable region */
  344. out32r(PCIX0_PMM1MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
  345. out32r(PCIX0_PMM1LA, CFG_PCI_MEMBASE2); /* PMM0 Local Address */
  346. out32r(PCIX0_PMM1PCILA, CFG_PCI_MEMBASE2); /* PMM0 PCI Low Address */
  347. out32r(PCIX0_PMM1PCIHA, 0x00000000); /* PMM0 PCI High Address */
  348. out32r(PCIX0_PMM1MA, 0xE0000001); /* 512M + No prefetching, and enable region */
  349. out32r(PCIX0_PTM1MS, 0x00000001); /* Memory Size/Attribute */
  350. out32r(PCIX0_PTM1LA, 0); /* Local Addr. Reg */
  351. out32r(PCIX0_PTM2MS, 0); /* Memory Size/Attribute */
  352. out32r(PCIX0_PTM2LA, 0); /* Local Addr. Reg */
  353. /*--------------------------------------------------------------------------+
  354. * Set up Configuration registers
  355. *--------------------------------------------------------------------------*/
  356. /* Program the board's subsystem id/vendor id */
  357. pci_write_config_word(0, PCI_SUBSYSTEM_VENDOR_ID,
  358. CFG_PCI_SUBSYS_VENDORID);
  359. pci_write_config_word(0, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_ID);
  360. /* Configure command register as bus master */
  361. pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER);
  362. /* 240nS PCI clock */
  363. pci_write_config_word(0, PCI_LATENCY_TIMER, 1);
  364. /* No error reporting */
  365. pci_write_config_word(0, PCI_ERREN, 0);
  366. pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101);
  367. }
  368. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT) */
  369. /*************************************************************************
  370. * pci_master_init
  371. *
  372. ************************************************************************/
  373. #if defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT)
  374. void pci_master_init(struct pci_controller *hose)
  375. {
  376. unsigned short temp_short;
  377. /*--------------------------------------------------------------------------+
  378. | Write the PowerPC440 EP PCI Configuration regs.
  379. | Enable PowerPC440 EP to be a master on the PCI bus (PMM).
  380. | Enable PowerPC440 EP to act as a PCI memory target (PTM).
  381. +--------------------------------------------------------------------------*/
  382. pci_read_config_word(0, PCI_COMMAND, &temp_short);
  383. pci_write_config_word(0, PCI_COMMAND,
  384. temp_short | PCI_COMMAND_MASTER |
  385. PCI_COMMAND_MEMORY);
  386. }
  387. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT) */
  388. /*************************************************************************
  389. * is_pci_host
  390. *
  391. * This routine is called to determine if a pci scan should be
  392. * performed. With various hardware environments (especially cPCI and
  393. * PPMC) it's insufficient to depend on the state of the arbiter enable
  394. * bit in the strap register, or generic host/adapter assumptions.
  395. *
  396. * Rather than hard-code a bad assumption in the general 440 code, the
  397. * 440 pci code requires the board to decide at runtime.
  398. *
  399. * Return 0 for adapter mode, non-zero for host (monarch) mode.
  400. *
  401. *
  402. ************************************************************************/
  403. #if defined(CONFIG_PCI)
  404. int is_pci_host(struct pci_controller *hose)
  405. {
  406. /* Cactus is always configured as host. */
  407. return (1);
  408. }
  409. #endif /* defined(CONFIG_PCI) */
  410. void hw_watchdog_reset(void)
  411. {
  412. int val;
  413. #if defined(CONFIG_WD_MAX_RATE)
  414. unsigned long long ct = get_ticks();
  415. /*
  416. * Don't allow watch-dog triggering more frequently than
  417. * the predefined value CONFIG_WD_MAX_RATE [ticks].
  418. */
  419. if (ct >= gd->wdt_last) {
  420. if ((ct - gd->wdt_last) < CONFIG_WD_MAX_RATE)
  421. return;
  422. } else {
  423. /* Time base counter had been reset */
  424. if (((unsigned long long)(-1) - gd->wdt_last + ct) <
  425. CONFIG_WD_MAX_RATE)
  426. return;
  427. }
  428. gd->wdt_last = get_ticks();
  429. #endif
  430. /*
  431. * Toggle watchdog output
  432. */
  433. val = gpio_read_out_bit(CFG_GPIO_WATCHDOG) == 0 ? 1 : 0;
  434. gpio_write_bit(CFG_GPIO_WATCHDOG, val);
  435. }
  436. int do_eeprom_wp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  437. {
  438. if (argc < 2) {
  439. printf("Usage:\n%s\n", cmdtp->usage);
  440. return 1;
  441. }
  442. if ((strcmp(argv[1], "on") == 0)) {
  443. gpio_write_bit(CFG_GPIO_EEPROM_EXT_WP, 1);
  444. } else if ((strcmp(argv[1], "off") == 0)) {
  445. gpio_write_bit(CFG_GPIO_EEPROM_EXT_WP, 0);
  446. } else {
  447. printf("Usage:\n%s\n", cmdtp->usage);
  448. return 1;
  449. }
  450. return 0;
  451. }
  452. U_BOOT_CMD(
  453. eepromwp, 2, 0, do_eeprom_wp,
  454. "eepromwp- eeprom write protect off/on\n",
  455. "<on|off> - enable (on) or disable (off) I2C EEPROM write protect\n"
  456. );
  457. #if defined(CONFIG_VIDEO)
  458. #include <video_fb.h>
  459. #include <mb862xx.h>
  460. extern GraphicDevice mb862xx;
  461. static const gdc_regs init_regs [] =
  462. {
  463. {0x0100, 0x00000f00},
  464. {0x0020, 0x801401df},
  465. {0x0024, 0x00000000},
  466. {0x0028, 0x00000000},
  467. {0x002c, 0x00000000},
  468. {0x0110, 0x00000000},
  469. {0x0114, 0x00000000},
  470. {0x0118, 0x01df0280},
  471. {0x0004, 0x031f0000},
  472. {0x0008, 0x027f027f},
  473. {0x000c, 0x015f028f},
  474. {0x0010, 0x020c0000},
  475. {0x0014, 0x01df01ea},
  476. {0x0018, 0x00000000},
  477. {0x001c, 0x01e00280},
  478. {0x0100, 0x80010f00},
  479. {0x0, 0x0}
  480. };
  481. const gdc_regs *board_get_regs (void)
  482. {
  483. return init_regs;
  484. }
  485. /* Returns Lime base address */
  486. unsigned int board_video_init (void)
  487. {
  488. /*
  489. * Reset Lime controller
  490. */
  491. gpio_write_bit(CFG_GPIO_LIME_S, 1);
  492. udelay(500);
  493. gpio_write_bit(CFG_GPIO_LIME_RST, 1);
  494. /* Lime memory clock adjusted to 100MHz */
  495. out_be32((void *)CFG_LIME_SDRAM_CLOCK, CFG_LIME_CLOCK_100MHZ);
  496. /* Wait untill time expired. Because of requirements in lime manual */
  497. udelay(300);
  498. /* Write lime controller memory parameters */
  499. out_be32((void *)CFG_LIME_MMR, CFG_LIME_MMR_VALUE);
  500. mb862xx.winSizeX = 640;
  501. mb862xx.winSizeY = 480;
  502. mb862xx.gdfBytesPP = 2;
  503. mb862xx.gdfIndex = GDF_15BIT_555RGB;
  504. return CFG_LIME_BASE_0;
  505. }
  506. #define DEFAULT_BRIGHTNESS 0x64
  507. static void board_backlight_brightness(int brightness)
  508. {
  509. if (brightness > 0) {
  510. /* pwm duty, lamp on */
  511. out_be32((void *)(CFG_FPGA_BASE_0 + 0x00000024), brightness);
  512. out_be32((void *)(CFG_FPGA_BASE_0 + 0x00000020), 0x701);
  513. } else {
  514. /* lamp off */
  515. out_be32((void *)(CFG_FPGA_BASE_0 + 0x00000024), 0x00);
  516. out_be32((void *)(CFG_FPGA_BASE_0 + 0x00000020), 0x00);
  517. }
  518. }
  519. void board_backlight_switch (int flag)
  520. {
  521. char * param;
  522. int rc;
  523. if (flag) {
  524. param = getenv("brightness");
  525. rc = param ? simple_strtol(param, NULL, 10) : -1;
  526. if (rc < 0)
  527. rc = DEFAULT_BRIGHTNESS;
  528. } else {
  529. rc = 0;
  530. }
  531. board_backlight_brightness(rc);
  532. }
  533. #if defined(CONFIG_CONSOLE_EXTRA_INFO)
  534. /*
  535. * Return text to be printed besides the logo.
  536. */
  537. void video_get_info_str (int line_number, char *info)
  538. {
  539. if (line_number == 1) {
  540. strcpy (info, " Board: Lwmon5 (Liebherr Elektronik GmbH)");
  541. } else {
  542. info [0] = '\0';
  543. }
  544. }
  545. #endif
  546. #endif /* CONFIG_VIDEO */
  547. void board_reset(void)
  548. {
  549. gpio_write_bit(CFG_GPIO_BOARD_RESET, 1);
  550. }