2 * (C) Copyright 2007-2013
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
10 #include <asm/ppc440.h>
11 #include <asm/processor.h>
12 #include <asm/ppc4xx-gpio.h>
16 #include <mtd/cfi_flash.h>
18 DECLARE_GLOBAL_DATA_PTR;
20 static phys_addr_t lwmon5_cfi_flash_bank_addr[2] = CONFIG_SYS_FLASH_BANKS_LIST;
22 ulong flash_get_size(ulong base, int banknum);
23 int misc_init_r_kbd(void);
25 int board_early_init_f(void)
27 u32 sdr0_pfc1, sdr0_pfc2;
30 /* PLB Write pipelining disabled. Denali Core workaround */
31 mtdcr(PLB4A0_ACR, 0xDE000000);
32 mtdcr(PLB4A1_ACR, 0xDE000000);
34 /*--------------------------------------------------------------------
35 * Setup the interrupt controller polarities, triggers, etc.
36 *-------------------------------------------------------------------*/
37 mtdcr(UIC0SR, 0xffffffff); /* clear all. if write with 1 then the status is cleared */
38 mtdcr(UIC0ER, 0x00000000); /* disable all */
39 mtdcr(UIC0CR, 0x00000000); /* we have not critical interrupts at the moment */
40 mtdcr(UIC0PR, 0xFFBFF1EF); /* Adjustment of the polarity */
41 mtdcr(UIC0TR, 0x00000900); /* per ref-board manual */
42 mtdcr(UIC0VR, 0x00000000); /* int31 highest, base=0x000 is within DDRAM */
43 mtdcr(UIC0SR, 0xffffffff); /* clear all */
45 mtdcr(UIC1SR, 0xffffffff); /* clear all */
46 mtdcr(UIC1ER, 0x00000000); /* disable all */
47 mtdcr(UIC1CR, 0x00000000); /* all non-critical */
48 mtdcr(UIC1PR, 0xFFFFC6A5); /* Adjustment of the polarity */
49 mtdcr(UIC1TR, 0x60000040); /* per ref-board manual */
50 mtdcr(UIC1VR, 0x00000000); /* int31 highest, base=0x000 is within DDRAM */
51 mtdcr(UIC1SR, 0xffffffff); /* clear all */
53 mtdcr(UIC2SR, 0xffffffff); /* clear all */
54 mtdcr(UIC2ER, 0x00000000); /* disable all */
55 mtdcr(UIC2CR, 0x00000000); /* all non-critical */
56 mtdcr(UIC2PR, 0x27C00000); /* Adjustment of the polarity */
57 mtdcr(UIC2TR, 0x3C000000); /* per ref-board manual */
58 mtdcr(UIC2VR, 0x00000000); /* int31 highest, base=0x000 is within DDRAM */
59 mtdcr(UIC2SR, 0xffffffff); /* clear all */
61 /* Trace Pins are disabled. SDR0_PFC0 Register */
62 mtsdr(SDR0_PFC0, 0x0);
64 /* select Ethernet pins */
65 mfsdr(SDR0_PFC1, sdr0_pfc1);
67 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SELECT_MASK) |
68 SDR0_PFC1_SELECT_CONFIG_6;
69 mfsdr(SDR0_PFC2, sdr0_pfc2);
70 sdr0_pfc2 = (sdr0_pfc2 & ~SDR0_PFC2_SELECT_MASK) |
71 SDR0_PFC2_SELECT_CONFIG_6;
73 /* enable SPI (SCP) */
74 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SIS_MASK) | SDR0_PFC1_SIS_SCP_SEL;
76 mtsdr(SDR0_PFC2, sdr0_pfc2);
77 mtsdr(SDR0_PFC1, sdr0_pfc1);
79 mtsdr(SDR0_PFC4, 0x80000000);
81 /* PCI arbiter disabled */
82 /* PCI Host Configuration disbaled */
83 mfsdr(SDR0_PCI0, reg);
85 mtsdr(SDR0_PCI0, 0x00000000 | reg);
87 gpio_write_bit(CONFIG_SYS_GPIO_FLASH_WP, 1);
89 #if CONFIG_POST & CONFIG_SYS_POST_BSPEC1
90 /* enable the LSB transmitter */
91 gpio_write_bit(CONFIG_SYS_GPIO_LSB_ENABLE, 1);
92 /* enable the CAN transmitter */
93 gpio_write_bit(CONFIG_SYS_GPIO_CAN_ENABLE, 1);
95 reg = 0; /* reuse as counter */
96 out_be32((void *)CONFIG_SYS_DSPIC_TEST_ADDR,
97 in_be32((void *)CONFIG_SYS_DSPIC_TEST_ADDR)
98 & ~CONFIG_SYS_DSPIC_TEST_MASK);
99 while (gpio_read_in_bit(CONFIG_SYS_GPIO_DSPIC_READY) && reg++ < 1000) {
102 if (gpio_read_in_bit(CONFIG_SYS_GPIO_DSPIC_READY)) {
103 /* set "boot error" flag */
104 out_be32((void *)CONFIG_SYS_DSPIC_TEST_ADDR,
105 in_be32((void *)CONFIG_SYS_DSPIC_TEST_ADDR) |
106 CONFIG_SYS_DSPIC_TEST_MASK);
112 * The PHY's need a 2nd reset pulse, since the MDIO address is latched
113 * upon reset, and with the first reset upon powerup, the addresses are
114 * not latched reliable, since the IRQ line is multiplexed with an
115 * MDIO address. A 2nd reset at this time will make sure, that the
116 * correct address is latched.
118 gpio_write_bit(CONFIG_SYS_GPIO_PHY0_RST, 1);
119 gpio_write_bit(CONFIG_SYS_GPIO_PHY1_RST, 1);
121 gpio_write_bit(CONFIG_SYS_GPIO_PHY0_RST, 0);
122 gpio_write_bit(CONFIG_SYS_GPIO_PHY1_RST, 0);
124 gpio_write_bit(CONFIG_SYS_GPIO_PHY0_RST, 1);
125 gpio_write_bit(CONFIG_SYS_GPIO_PHY1_RST, 1);
131 * Override weak default with board specific version
133 phys_addr_t cfi_flash_bank_addr(int bank)
135 return lwmon5_cfi_flash_bank_addr[bank];
139 * Override the weak default mapping function with a board specific one
141 u32 flash_get_bank_size(int cs, int idx)
143 return flash_info[idx].size;
146 int board_early_init_r(void)
151 * lwmon5 is manufactured in 2 different board versions:
152 * The lwmon5a board has 64MiB NOR flash instead of the
153 * 128MiB of the original lwmon5. Unfortunately the CFI driver
154 * will report 2 banks of 64MiB even for the smaller flash
155 * chip, since the bank is mirrored. To fix this, we bring
156 * one bank into CFI query mode and read its response. This
157 * enables us to detect the real number of flash devices/
158 * banks which will be used later on by the common CFI driver.
161 /* Put bank 0 into CFI command mode and read */
162 out_be32((void *)CONFIG_SYS_FLASH0, 0x00980098);
163 val0 = in_be32((void *)CONFIG_SYS_FLASH0 + FLASH_OFFSET_CFI_RESP);
164 val1 = in_be32((void *)CONFIG_SYS_FLASH1 + FLASH_OFFSET_CFI_RESP);
166 /* Reset flash again out of query mode */
167 out_be32((void *)CONFIG_SYS_FLASH0, 0x00f000f0);
169 /* When not identical, we have 2 different flash devices/banks */
174 * Now we're sure that we're running on a LWMON5a board with
175 * only 64MiB NOR flash in one bank:
177 * Set flash base address and bank count for CFI driver probing.
179 cfi_flash_num_flash_banks = 1;
180 lwmon5_cfi_flash_bank_addr[0] = CONFIG_SYS_FLASH0;
185 int misc_init_r(void)
190 #ifndef CONFIG_LCD4_LWMON5
191 unsigned long usb2d0cr = 0;
192 unsigned long usb2phy0cr, usb2h0cr = 0;
193 unsigned long sdr0_pfc1, sdr0_srst;
200 /* Re-do sizing to get full correct info */
202 /* adjust flash start and offset */
203 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
204 gd->bd->bi_flashoffset = 0;
207 size_val = ffs(gd->bd->bi_flashsize) - 21;
208 pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
212 * Re-check to get correct base address
214 flash_get_size(gd->bd->bi_flashstart, 0);
216 /* Monitor protection ON by default */
217 flash_protect(FLAG_PROTECT_SET, -CONFIG_SYS_MONITOR_LEN, 0xffffffff,
218 &flash_info[cfi_flash_num_flash_banks - 1]);
220 /* Env protection ON by default */
221 flash_protect(FLAG_PROTECT_SET, CONFIG_ENV_ADDR_REDUND,
222 CONFIG_ENV_ADDR_REDUND + 2 * CONFIG_ENV_SECT_SIZE - 1,
223 &flash_info[cfi_flash_num_flash_banks - 1]);
225 #ifndef CONFIG_LCD4_LWMON5
231 /* Reset of USB2PHY0 must be active at least 10 us */
232 mtsdr(SDR0_SRST0, SDR0_SRST0_USB2H | SDR0_SRST0_USB2D);
235 mtsdr(SDR0_SRST1, SDR0_SRST1_USB20PHY | SDR0_SRST1_USB2HUTMI |
236 SDR0_SRST1_USB2HPHY | SDR0_SRST1_OPBA2 |
237 SDR0_SRST1_PLB42OPB1 | SDR0_SRST1_OPB2PLB40);
242 /* 1. Set internal PHY configuration */
244 mfsdr(SDR0_PFC1, sdr0_pfc1);
245 mfsdr(SDR0_USB0, usb2d0cr);
246 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
247 mfsdr(SDR0_USB2H0CR, usb2h0cr);
249 usb2phy0cr = usb2phy0cr & ~SDR0_USB2PHY0CR_XOCLK_MASK;
250 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL; /*0*/
251 usb2phy0cr = usb2phy0cr & ~SDR0_USB2PHY0CR_WDINT_MASK;
252 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_16BIT_30MHZ; /*1*/
253 usb2phy0cr = usb2phy0cr & ~SDR0_USB2PHY0CR_DVBUS_MASK;
254 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PUREN; /*1*/
255 usb2phy0cr = usb2phy0cr & ~SDR0_USB2PHY0CR_DWNSTR_MASK;
256 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST; /*1*/
257 usb2phy0cr = usb2phy0cr & ~SDR0_USB2PHY0CR_UTMICN_MASK;
258 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST; /*1*/
261 * An 8-bit/60MHz interface is the only possible alternative
262 * when connecting the Device to the PHY
264 usb2h0cr = usb2h0cr & ~SDR0_USB2H0CR_WDINT_MASK;
265 usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_16BIT_30MHZ; /*1*/
267 mtsdr(SDR0_PFC1, sdr0_pfc1);
268 mtsdr(SDR0_USB0, usb2d0cr);
269 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
270 mtsdr(SDR0_USB2H0CR, usb2h0cr);
272 /* 2. De-assert internal PHY reset */
273 mfsdr(SDR0_SRST1, sdr0_srst);
274 sdr0_srst = sdr0_srst & ~SDR0_SRST1_USB20PHY;
275 mtsdr(SDR0_SRST1, sdr0_srst);
277 /* 3. Wait for more than 1 ms */
280 /* 4. De-assert USB 2.0 Host main reset */
281 mfsdr(SDR0_SRST0, sdr0_srst);
282 sdr0_srst = sdr0_srst &~ SDR0_SRST0_USB2H;
283 mtsdr(SDR0_SRST0, sdr0_srst);
286 /* 5. De-assert reset of OPB2 cores */
287 mfsdr(SDR0_SRST1, sdr0_srst);
288 sdr0_srst = sdr0_srst &~ SDR0_SRST1_PLB42OPB1;
289 sdr0_srst = sdr0_srst &~ SDR0_SRST1_OPB2PLB40;
290 sdr0_srst = sdr0_srst &~ SDR0_SRST1_OPBA2;
291 mtsdr(SDR0_SRST1, sdr0_srst);
294 /* 6. Set EHCI Configure FLAG */
296 /* 7. Reassert internal PHY reset: */
297 mtsdr(SDR0_SRST1, SDR0_SRST1_USB20PHY);
304 mtsdr(SDR0_SRST1, 0x00000000);
305 mtsdr(SDR0_SRST0, 0x00000000);
307 #ifndef CONFIG_LCD4_LWMON5
308 printf("USB: Host(int phy) Device(ext phy)\n");
312 * Clear PLB4A0_ACR[WRP]
313 * This fix will make the MAL burst disabling patch for the Linux
314 * EMAC driver obsolete.
316 reg = mfdcr(PLB4A0_ACR) & ~PLB4Ax_ACR_WRP_MASK;
317 mtdcr(PLB4A0_ACR, reg);
319 #ifndef CONFIG_LCD4_LWMON5
321 * Init matrix keyboard
332 int i = getenv_f("serial#", buf, sizeof(buf));
334 printf("Board: %s", __stringify(CONFIG_HOSTNAME));
345 void hw_watchdog_reset(void)
348 #if defined(CONFIG_WD_MAX_RATE)
349 unsigned long long ct = get_ticks();
352 * Don't allow watch-dog triggering more frequently than
353 * the predefined value CONFIG_WD_MAX_RATE [ticks].
355 if (ct >= gd->arch.wdt_last) {
356 if ((ct - gd->arch.wdt_last) < CONFIG_WD_MAX_RATE)
359 /* Time base counter had been reset */
360 if (((unsigned long long)(-1) - gd->arch.wdt_last + ct) <
364 gd->arch.wdt_last = get_ticks();
368 * Toggle watchdog output
370 val = gpio_read_out_bit(CONFIG_SYS_GPIO_WATCHDOG) == 0 ? 1 : 0;
371 gpio_write_bit(CONFIG_SYS_GPIO_WATCHDOG, val);
374 int do_eeprom_wp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
377 return cmd_usage(cmdtp);
379 if ((strcmp(argv[1], "on") == 0))
380 gpio_write_bit(CONFIG_SYS_GPIO_EEPROM_EXT_WP, 1);
381 else if ((strcmp(argv[1], "off") == 0))
382 gpio_write_bit(CONFIG_SYS_GPIO_EEPROM_EXT_WP, 0);
384 return cmd_usage(cmdtp);
390 eepromwp, 2, 0, do_eeprom_wp,
391 "eeprom write protect off/on",
392 "<on|off> - enable (on) or disable (off) I2C EEPROM write protect"
395 #if defined(CONFIG_VIDEO)
396 #include <video_fb.h>
399 extern GraphicDevice mb862xx;
401 static const gdc_regs init_regs [] = {
402 { 0x0100, 0x00000f00 },
403 { 0x0020, 0x801401df },
404 { 0x0024, 0x00000000 },
405 { 0x0028, 0x00000000 },
406 { 0x002c, 0x00000000 },
407 { 0x0110, 0x00000000 },
408 { 0x0114, 0x00000000 },
409 { 0x0118, 0x01df0280 },
410 { 0x0004, 0x031f0000 },
411 { 0x0008, 0x027f027f },
412 { 0x000c, 0x015f028f },
413 { 0x0010, 0x020c0000 },
414 { 0x0014, 0x01df01ea },
415 { 0x0018, 0x00000000 },
416 { 0x001c, 0x01e00280 },
417 { 0x0100, 0x80010f00 },
421 const gdc_regs *board_get_regs(void)
426 /* Returns Lime base address */
427 unsigned int board_video_init(void)
430 * Reset Lime controller
432 gpio_write_bit(CONFIG_SYS_GPIO_LIME_S, 1);
434 gpio_write_bit(CONFIG_SYS_GPIO_LIME_RST, 1);
436 mb862xx.winSizeX = 640;
437 mb862xx.winSizeY = 480;
438 mb862xx.gdfBytesPP = 2;
439 mb862xx.gdfIndex = GDF_15BIT_555RGB;
441 return CONFIG_SYS_LIME_BASE_0;
444 #define DEFAULT_BRIGHTNESS 0x64
446 static void board_backlight_brightness(int brightness)
448 if (brightness > 0) {
449 /* pwm duty, lamp on */
450 out_be32((void *)(CONFIG_SYS_FPGA_BASE_0 + 0x00000024), brightness);
451 out_be32((void *)(CONFIG_SYS_FPGA_BASE_0 + 0x00000020), 0x701);
454 out_be32((void *)(CONFIG_SYS_FPGA_BASE_0 + 0x00000024), 0x00);
455 out_be32((void *)(CONFIG_SYS_FPGA_BASE_0 + 0x00000020), 0x00);
459 void board_backlight_switch(int flag)
465 param = getenv("brightness");
466 rc = param ? simple_strtol(param, NULL, 10) : -1;
468 rc = DEFAULT_BRIGHTNESS;
472 board_backlight_brightness(rc);
475 #if defined(CONFIG_CONSOLE_EXTRA_INFO)
477 * Return text to be printed besides the logo.
479 void video_get_info_str(int line_number, char *info)
481 if (line_number == 1)
482 strcpy(info, " Board: Lwmon5 (Liebherr Elektronik GmbH)");
486 #endif /* CONFIG_CONSOLE_EXTRA_INFO */
487 #endif /* CONFIG_VIDEO */
489 void board_reset(void)
491 gpio_write_bit(CONFIG_SYS_GPIO_BOARD_RESET, 1);
494 #ifdef CONFIG_SPL_OS_BOOT
496 * lwmon5 specific implementation of spl_start_uboot()
499 * 0 if booting into OS is selected (default)
500 * 1 if booting into U-Boot is selected
502 int spl_start_uboot(void)
507 getenv_f("boot_os", s, sizeof(s));
508 if ((s != NULL) && (strcmp(s, "yes") == 0))
515 * This function is called from the SPL U-Boot version for
516 * early init stuff, that needs to be done for OS (e.g. Linux)
517 * booting. Doing it later in the real U-Boot would not work
518 * in case that the SPL U-Boot boots Linux directly.
520 void spl_board_init(void)
522 const gdc_regs *regs = board_get_regs();
525 * Setup PFC registers, mainly for ethernet support
528 board_early_init_f();
530 /* enable the LSB transmitter */
531 gpio_write_bit(CONFIG_SYS_GPIO_LSB_ENABLE, 1);
536 mtsdr(SDR0_SRST1, 0x00000000);
537 mtsdr(SDR0_SRST0, 0x00000000);
540 * Reset Lime controller
542 gpio_write_bit(CONFIG_SYS_GPIO_LIME_S, 1);
544 gpio_write_bit(CONFIG_SYS_GPIO_LIME_RST, 1);
546 out_be32((void *)CONFIG_SYS_LIME_SDRAM_CLOCK, CONFIG_SYS_MB862xx_CCF);
548 out_be32((void *)CONFIG_SYS_LIME_MMR, CONFIG_SYS_MB862xx_MMR);
550 while (regs->index) {
551 out_be32((void *)(CONFIG_SYS_LIME_BASE_0 + GC_DISP_BASE) +
552 regs->index, regs->value);
556 board_backlight_brightness(DEFAULT_BRIGHTNESS);