Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 1 | /* |
| 2 | * board.c |
| 3 | * |
| 4 | * Common board functions for AM33XX based boards |
| 5 | * |
| 6 | * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/ |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | d12010b | 2014-10-22 21:37:10 -0600 | [diff] [blame] | 12 | #include <dm.h> |
Tom Rini | 973b663 | 2012-07-30 16:13:10 -0700 | [diff] [blame] | 13 | #include <errno.h> |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 14 | #include <ns16550.h> |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 15 | #include <spl.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 16 | #include <asm/arch/cpu.h> |
| 17 | #include <asm/arch/hardware.h> |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 18 | #include <asm/arch/omap.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 19 | #include <asm/arch/ddr_defs.h> |
| 20 | #include <asm/arch/clock.h> |
Steve Sakoman | 3b97152 | 2012-06-04 05:35:34 +0000 | [diff] [blame] | 21 | #include <asm/arch/gpio.h> |
Ilya Yanok | 8eb16b7 | 2012-11-06 13:06:30 +0000 | [diff] [blame] | 22 | #include <asm/arch/mem.h> |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 23 | #include <asm/arch/mmc_host_def.h> |
Tom Rini | db7dd81 | 2012-07-31 10:50:01 -0700 | [diff] [blame] | 24 | #include <asm/arch/sys_proto.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 25 | #include <asm/io.h> |
Tom Rini | fda35eb | 2012-07-03 08:51:34 -0700 | [diff] [blame] | 26 | #include <asm/emif.h> |
Tom Rini | 65d750b | 2012-07-31 08:55:01 -0700 | [diff] [blame] | 27 | #include <asm/gpio.h> |
Tom Rini | 973b663 | 2012-07-30 16:13:10 -0700 | [diff] [blame] | 28 | #include <i2c.h> |
| 29 | #include <miiphy.h> |
| 30 | #include <cpsw.h> |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 31 | #include <asm/errno.h> |
Tom Rini | 6a0d803 | 2013-08-30 16:28:44 -0400 | [diff] [blame] | 32 | #include <linux/compiler.h> |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 33 | #include <linux/usb/ch9.h> |
| 34 | #include <linux/usb/gadget.h> |
| 35 | #include <linux/usb/musb.h> |
| 36 | #include <asm/omap_musb.h> |
Tom Rini | 155d424 | 2013-08-28 09:00:28 -0400 | [diff] [blame] | 37 | #include <asm/davinci_rtc.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 38 | |
| 39 | DECLARE_GLOBAL_DATA_PTR; |
| 40 | |
Simon Glass | d12010b | 2014-10-22 21:37:10 -0600 | [diff] [blame] | 41 | #ifdef CONFIG_DM_GPIO |
| 42 | static const struct omap_gpio_platdata am33xx_gpio[] = { |
| 43 | { 0, AM33XX_GPIO0_BASE, METHOD_GPIO_24XX }, |
| 44 | { 1, AM33XX_GPIO1_BASE, METHOD_GPIO_24XX }, |
| 45 | { 2, AM33XX_GPIO2_BASE, METHOD_GPIO_24XX }, |
| 46 | { 3, AM33XX_GPIO3_BASE, METHOD_GPIO_24XX }, |
| 47 | #ifdef CONFIG_AM43XX |
| 48 | { 4, AM33XX_GPIO4_BASE, METHOD_GPIO_24XX }, |
| 49 | { 5, AM33XX_GPIO5_BASE, METHOD_GPIO_24XX }, |
| 50 | #endif |
| 51 | }; |
| 52 | |
| 53 | U_BOOT_DEVICES(am33xx_gpios) = { |
| 54 | { "gpio_omap", &am33xx_gpio[0] }, |
| 55 | { "gpio_omap", &am33xx_gpio[1] }, |
| 56 | { "gpio_omap", &am33xx_gpio[2] }, |
| 57 | { "gpio_omap", &am33xx_gpio[3] }, |
| 58 | #ifdef CONFIG_AM43XX |
| 59 | { "gpio_omap", &am33xx_gpio[4] }, |
| 60 | { "gpio_omap", &am33xx_gpio[5] }, |
| 61 | #endif |
| 62 | }; |
| 63 | |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 64 | # ifndef CONFIG_OF_CONTROL |
| 65 | /* |
| 66 | * TODO(sjg@chromium.org): When we can move SPL serial to DM, we can remove |
| 67 | * the CONFIGs. At the same time, we should move this to the board files. |
| 68 | */ |
| 69 | static const struct ns16550_platdata am33xx_serial[] = { |
| 70 | { CONFIG_SYS_NS16550_COM1, 2, CONFIG_SYS_NS16550_CLK }, |
| 71 | # ifdef CONFIG_SYS_NS16550_COM2 |
| 72 | { CONFIG_SYS_NS16550_COM2, 2, CONFIG_SYS_NS16550_CLK }, |
| 73 | # ifdef CONFIG_SYS_NS16550_COM3 |
| 74 | { CONFIG_SYS_NS16550_COM3, 2, CONFIG_SYS_NS16550_CLK }, |
| 75 | { CONFIG_SYS_NS16550_COM4, 2, CONFIG_SYS_NS16550_CLK }, |
| 76 | { CONFIG_SYS_NS16550_COM5, 2, CONFIG_SYS_NS16550_CLK }, |
| 77 | { CONFIG_SYS_NS16550_COM6, 2, CONFIG_SYS_NS16550_CLK }, |
| 78 | # endif |
| 79 | # endif |
| 80 | }; |
| 81 | |
| 82 | U_BOOT_DEVICES(am33xx_uarts) = { |
| 83 | { "serial_omap", &am33xx_serial[0] }, |
| 84 | # ifdef CONFIG_SYS_NS16550_COM2 |
| 85 | { "serial_omap", &am33xx_serial[1] }, |
| 86 | # ifdef CONFIG_SYS_NS16550_COM3 |
| 87 | { "serial_omap", &am33xx_serial[2] }, |
| 88 | { "serial_omap", &am33xx_serial[3] }, |
| 89 | { "serial_omap", &am33xx_serial[4] }, |
| 90 | { "serial_omap", &am33xx_serial[5] }, |
| 91 | # endif |
| 92 | # endif |
| 93 | }; |
| 94 | # endif |
| 95 | |
Simon Glass | d12010b | 2014-10-22 21:37:10 -0600 | [diff] [blame] | 96 | #else |
| 97 | |
Dave Gerlach | cd8341b | 2014-02-10 11:41:49 -0500 | [diff] [blame] | 98 | static const struct gpio_bank gpio_bank_am33xx[] = { |
Steve Sakoman | 3b97152 | 2012-06-04 05:35:34 +0000 | [diff] [blame] | 99 | { (void *)AM33XX_GPIO0_BASE, METHOD_GPIO_24XX }, |
| 100 | { (void *)AM33XX_GPIO1_BASE, METHOD_GPIO_24XX }, |
| 101 | { (void *)AM33XX_GPIO2_BASE, METHOD_GPIO_24XX }, |
| 102 | { (void *)AM33XX_GPIO3_BASE, METHOD_GPIO_24XX }, |
Dave Gerlach | cd8341b | 2014-02-10 11:41:49 -0500 | [diff] [blame] | 103 | #ifdef CONFIG_AM43XX |
| 104 | { (void *)AM33XX_GPIO4_BASE, METHOD_GPIO_24XX }, |
| 105 | { (void *)AM33XX_GPIO5_BASE, METHOD_GPIO_24XX }, |
| 106 | #endif |
Steve Sakoman | 3b97152 | 2012-06-04 05:35:34 +0000 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx; |
| 110 | |
Simon Glass | d12010b | 2014-10-22 21:37:10 -0600 | [diff] [blame] | 111 | #endif |
| 112 | |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 113 | #if defined(CONFIG_OMAP_HSMMC) && !defined(CONFIG_SPL_BUILD) |
Peter Korsgaard | 75a2388 | 2012-10-18 01:21:10 +0000 | [diff] [blame] | 114 | int cpu_mmc_init(bd_t *bis) |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 115 | { |
Tom Rini | 0689a2e | 2012-08-08 10:31:08 -0700 | [diff] [blame] | 116 | int ret; |
Peter Korsgaard | 75a2388 | 2012-10-18 01:21:10 +0000 | [diff] [blame] | 117 | |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 118 | ret = omap_mmc_init(0, 0, 0, -1, -1); |
Tom Rini | 0689a2e | 2012-08-08 10:31:08 -0700 | [diff] [blame] | 119 | if (ret) |
| 120 | return ret; |
| 121 | |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 122 | return omap_mmc_init(1, 0, 0, -1, -1); |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 123 | } |
| 124 | #endif |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 125 | |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 126 | /* AM33XX has two MUSB controllers which can be host or gadget */ |
| 127 | #if (defined(CONFIG_MUSB_GADGET) || defined(CONFIG_MUSB_HOST)) && \ |
| 128 | (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1)) |
| 129 | static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE; |
| 130 | |
| 131 | /* USB 2.0 PHY Control */ |
| 132 | #define CM_PHY_PWRDN (1 << 0) |
| 133 | #define CM_PHY_OTG_PWRDN (1 << 1) |
| 134 | #define OTGVDET_EN (1 << 19) |
| 135 | #define OTGSESSENDEN (1 << 20) |
| 136 | |
| 137 | static void am33xx_usb_set_phy_power(u8 on, u32 *reg_addr) |
| 138 | { |
| 139 | if (on) { |
| 140 | clrsetbits_le32(reg_addr, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN, |
| 141 | OTGVDET_EN | OTGSESSENDEN); |
| 142 | } else { |
| 143 | clrsetbits_le32(reg_addr, 0, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | static struct musb_hdrc_config musb_config = { |
| 148 | .multipoint = 1, |
| 149 | .dyn_fifo = 1, |
| 150 | .num_eps = 16, |
| 151 | .ram_bits = 12, |
| 152 | }; |
| 153 | |
| 154 | #ifdef CONFIG_AM335X_USB0 |
| 155 | static void am33xx_otg0_set_phy_power(u8 on) |
| 156 | { |
| 157 | am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0); |
| 158 | } |
| 159 | |
| 160 | struct omap_musb_board_data otg0_board_data = { |
| 161 | .set_phy_power = am33xx_otg0_set_phy_power, |
| 162 | }; |
| 163 | |
| 164 | static struct musb_hdrc_platform_data otg0_plat = { |
| 165 | .mode = CONFIG_AM335X_USB0_MODE, |
| 166 | .config = &musb_config, |
| 167 | .power = 50, |
| 168 | .platform_ops = &musb_dsps_ops, |
| 169 | .board_data = &otg0_board_data, |
| 170 | }; |
| 171 | #endif |
| 172 | |
| 173 | #ifdef CONFIG_AM335X_USB1 |
| 174 | static void am33xx_otg1_set_phy_power(u8 on) |
| 175 | { |
| 176 | am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1); |
| 177 | } |
| 178 | |
| 179 | struct omap_musb_board_data otg1_board_data = { |
| 180 | .set_phy_power = am33xx_otg1_set_phy_power, |
| 181 | }; |
| 182 | |
| 183 | static struct musb_hdrc_platform_data otg1_plat = { |
| 184 | .mode = CONFIG_AM335X_USB1_MODE, |
| 185 | .config = &musb_config, |
| 186 | .power = 50, |
| 187 | .platform_ops = &musb_dsps_ops, |
| 188 | .board_data = &otg1_board_data, |
| 189 | }; |
| 190 | #endif |
| 191 | #endif |
| 192 | |
| 193 | int arch_misc_init(void) |
| 194 | { |
| 195 | #ifdef CONFIG_AM335X_USB0 |
| 196 | musb_register(&otg0_plat, &otg0_board_data, |
Matt Porter | 81df2ba | 2013-03-15 10:07:02 +0000 | [diff] [blame] | 197 | (void *)USB0_OTG_BASE); |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 198 | #endif |
| 199 | #ifdef CONFIG_AM335X_USB1 |
| 200 | musb_register(&otg1_plat, &otg1_board_data, |
Matt Porter | 81df2ba | 2013-03-15 10:07:02 +0000 | [diff] [blame] | 201 | (void *)USB1_OTG_BASE); |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 202 | #endif |
| 203 | return 0; |
| 204 | } |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 205 | |
Tom Rini | d0e6d34 | 2014-04-09 08:25:57 -0400 | [diff] [blame] | 206 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Tom Rini | 6a0d803 | 2013-08-30 16:28:44 -0400 | [diff] [blame] | 207 | /* |
Tom Rini | 196311d | 2014-05-21 12:57:22 -0400 | [diff] [blame] | 208 | * In the case of non-SPL based booting we'll want to call these |
| 209 | * functions a tiny bit later as it will require gd to be set and cleared |
| 210 | * and that's not true in s_init in this case so we cannot do it there. |
| 211 | */ |
| 212 | int board_early_init_f(void) |
| 213 | { |
| 214 | prcm_init(); |
| 215 | set_mux_conf_regs(); |
| 216 | |
| 217 | return 0; |
| 218 | } |
| 219 | |
| 220 | /* |
Tom Rini | 6a0d803 | 2013-08-30 16:28:44 -0400 | [diff] [blame] | 221 | * This function is the place to do per-board things such as ramp up the |
| 222 | * MPU clock frequency. |
| 223 | */ |
| 224 | __weak void am33xx_spl_board_init(void) |
| 225 | { |
Steve Kipisz | 52f7d84 | 2013-08-14 10:51:31 -0400 | [diff] [blame] | 226 | do_setup_dpll(&dpll_core_regs, &dpll_core_opp100); |
| 227 | do_setup_dpll(&dpll_mpu_regs, &dpll_mpu_opp100); |
Tom Rini | 6a0d803 | 2013-08-30 16:28:44 -0400 | [diff] [blame] | 228 | } |
| 229 | |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 230 | #if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC) |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 231 | static void rtc32k_enable(void) |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 232 | { |
Tom Rini | 155d424 | 2013-08-28 09:00:28 -0400 | [diff] [blame] | 233 | struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE; |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 234 | |
| 235 | /* |
| 236 | * Unlock the RTC's registers. For more details please see the |
| 237 | * RTC_SS section of the TRM. In order to unlock we need to |
| 238 | * write these specific values (keys) in this order. |
| 239 | */ |
Tom Rini | 155d424 | 2013-08-28 09:00:28 -0400 | [diff] [blame] | 240 | writel(RTC_KICK0R_WE, &rtc->kick0r); |
| 241 | writel(RTC_KICK1R_WE, &rtc->kick1r); |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 242 | |
| 243 | /* Enable the RTC 32K OSC by setting bits 3 and 6. */ |
| 244 | writel((1 << 3) | (1 << 6), &rtc->osc); |
| 245 | } |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 246 | #endif |
Heiko Schocher | 7ea7f68 | 2013-06-04 11:00:57 +0200 | [diff] [blame] | 247 | |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 248 | static void uart_soft_reset(void) |
Heiko Schocher | 7ea7f68 | 2013-06-04 11:00:57 +0200 | [diff] [blame] | 249 | { |
| 250 | struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE; |
| 251 | u32 regval; |
| 252 | |
| 253 | regval = readl(&uart_base->uartsyscfg); |
| 254 | regval |= UART_RESET; |
| 255 | writel(regval, &uart_base->uartsyscfg); |
| 256 | while ((readl(&uart_base->uartsyssts) & |
| 257 | UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK) |
| 258 | ; |
| 259 | |
| 260 | /* Disable smart idle */ |
| 261 | regval = readl(&uart_base->uartsyscfg); |
| 262 | regval |= UART_SMART_IDLE_EN; |
| 263 | writel(regval, &uart_base->uartsyscfg); |
| 264 | } |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 265 | |
| 266 | static void watchdog_disable(void) |
| 267 | { |
| 268 | struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE; |
| 269 | |
| 270 | writel(0xAAAA, &wdtimer->wdtwspr); |
| 271 | while (readl(&wdtimer->wdtwwps) != 0x0) |
| 272 | ; |
| 273 | writel(0x5555, &wdtimer->wdtwspr); |
| 274 | while (readl(&wdtimer->wdtwwps) != 0x0) |
| 275 | ; |
| 276 | } |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 277 | |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 278 | #ifdef CONFIG_SPL_BUILD |
| 279 | void board_init_f(ulong dummy) |
| 280 | { |
| 281 | board_early_init_f(); |
| 282 | sdram_init(); |
| 283 | } |
| 284 | #endif |
| 285 | |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 286 | void s_init(void) |
| 287 | { |
| 288 | /* |
| 289 | * The ROM will only have set up sufficient pinmux to allow for the |
| 290 | * first 4KiB NOR to be read, we must finish doing what we know of |
| 291 | * the NOR mux in this space in order to continue. |
| 292 | */ |
| 293 | #ifdef CONFIG_NOR_BOOT |
| 294 | enable_norboot_pin_mux(); |
| 295 | #endif |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 296 | watchdog_disable(); |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 297 | set_uart_mux_conf(); |
| 298 | setup_clocks_for_console(); |
| 299 | uart_soft_reset(); |
Sourav Poddar | 7a5f71b | 2014-05-19 16:53:37 -0400 | [diff] [blame] | 300 | #if defined(CONFIG_NOR_BOOT) || defined(CONFIG_QSPI_BOOT) |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 301 | /* TODO: This does not work, gd is not available yet */ |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 302 | gd->baudrate = CONFIG_BAUDRATE; |
| 303 | serial_init(); |
| 304 | gd->have_console = 1; |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 305 | #endif |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 306 | #if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC) |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 307 | /* Enable RTC32K clock */ |
| 308 | rtc32k_enable(); |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 309 | #endif |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 310 | } |
Tom Rini | d73f38f | 2014-03-05 14:57:47 -0500 | [diff] [blame] | 311 | #endif |