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> |
Tom Rini | 973b663 | 2012-07-30 16:13:10 -0700 | [diff] [blame] | 12 | #include <errno.h> |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 13 | #include <spl.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 14 | #include <asm/arch/cpu.h> |
| 15 | #include <asm/arch/hardware.h> |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 16 | #include <asm/arch/omap.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 17 | #include <asm/arch/ddr_defs.h> |
| 18 | #include <asm/arch/clock.h> |
Steve Sakoman | 3b97152 | 2012-06-04 05:35:34 +0000 | [diff] [blame] | 19 | #include <asm/arch/gpio.h> |
Ilya Yanok | 8eb16b7 | 2012-11-06 13:06:30 +0000 | [diff] [blame] | 20 | #include <asm/arch/mem.h> |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 21 | #include <asm/arch/mmc_host_def.h> |
Tom Rini | db7dd81 | 2012-07-31 10:50:01 -0700 | [diff] [blame] | 22 | #include <asm/arch/sys_proto.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 23 | #include <asm/io.h> |
Tom Rini | fda35eb | 2012-07-03 08:51:34 -0700 | [diff] [blame] | 24 | #include <asm/emif.h> |
Tom Rini | 65d750b | 2012-07-31 08:55:01 -0700 | [diff] [blame] | 25 | #include <asm/gpio.h> |
Tom Rini | 973b663 | 2012-07-30 16:13:10 -0700 | [diff] [blame] | 26 | #include <i2c.h> |
| 27 | #include <miiphy.h> |
| 28 | #include <cpsw.h> |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 29 | #include <asm/errno.h> |
| 30 | #include <linux/usb/ch9.h> |
| 31 | #include <linux/usb/gadget.h> |
| 32 | #include <linux/usb/musb.h> |
| 33 | #include <asm/omap_musb.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 34 | |
| 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
Steve Sakoman | 3b97152 | 2012-06-04 05:35:34 +0000 | [diff] [blame] | 37 | static const struct gpio_bank gpio_bank_am33xx[4] = { |
| 38 | { (void *)AM33XX_GPIO0_BASE, METHOD_GPIO_24XX }, |
| 39 | { (void *)AM33XX_GPIO1_BASE, METHOD_GPIO_24XX }, |
| 40 | { (void *)AM33XX_GPIO2_BASE, METHOD_GPIO_24XX }, |
| 41 | { (void *)AM33XX_GPIO3_BASE, METHOD_GPIO_24XX }, |
| 42 | }; |
| 43 | |
| 44 | const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx; |
| 45 | |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 46 | #if defined(CONFIG_OMAP_HSMMC) && !defined(CONFIG_SPL_BUILD) |
Peter Korsgaard | 75a2388 | 2012-10-18 01:21:10 +0000 | [diff] [blame] | 47 | int cpu_mmc_init(bd_t *bis) |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 48 | { |
Tom Rini | 0689a2e | 2012-08-08 10:31:08 -0700 | [diff] [blame] | 49 | int ret; |
Peter Korsgaard | 75a2388 | 2012-10-18 01:21:10 +0000 | [diff] [blame] | 50 | |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 51 | ret = omap_mmc_init(0, 0, 0, -1, -1); |
Tom Rini | 0689a2e | 2012-08-08 10:31:08 -0700 | [diff] [blame] | 52 | if (ret) |
| 53 | return ret; |
| 54 | |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 55 | return omap_mmc_init(1, 0, 0, -1, -1); |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 56 | } |
| 57 | #endif |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 58 | |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 59 | /* AM33XX has two MUSB controllers which can be host or gadget */ |
| 60 | #if (defined(CONFIG_MUSB_GADGET) || defined(CONFIG_MUSB_HOST)) && \ |
| 61 | (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1)) |
| 62 | static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE; |
| 63 | |
| 64 | /* USB 2.0 PHY Control */ |
| 65 | #define CM_PHY_PWRDN (1 << 0) |
| 66 | #define CM_PHY_OTG_PWRDN (1 << 1) |
| 67 | #define OTGVDET_EN (1 << 19) |
| 68 | #define OTGSESSENDEN (1 << 20) |
| 69 | |
| 70 | static void am33xx_usb_set_phy_power(u8 on, u32 *reg_addr) |
| 71 | { |
| 72 | if (on) { |
| 73 | clrsetbits_le32(reg_addr, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN, |
| 74 | OTGVDET_EN | OTGSESSENDEN); |
| 75 | } else { |
| 76 | clrsetbits_le32(reg_addr, 0, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | static struct musb_hdrc_config musb_config = { |
| 81 | .multipoint = 1, |
| 82 | .dyn_fifo = 1, |
| 83 | .num_eps = 16, |
| 84 | .ram_bits = 12, |
| 85 | }; |
| 86 | |
| 87 | #ifdef CONFIG_AM335X_USB0 |
| 88 | static void am33xx_otg0_set_phy_power(u8 on) |
| 89 | { |
| 90 | am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0); |
| 91 | } |
| 92 | |
| 93 | struct omap_musb_board_data otg0_board_data = { |
| 94 | .set_phy_power = am33xx_otg0_set_phy_power, |
| 95 | }; |
| 96 | |
| 97 | static struct musb_hdrc_platform_data otg0_plat = { |
| 98 | .mode = CONFIG_AM335X_USB0_MODE, |
| 99 | .config = &musb_config, |
| 100 | .power = 50, |
| 101 | .platform_ops = &musb_dsps_ops, |
| 102 | .board_data = &otg0_board_data, |
| 103 | }; |
| 104 | #endif |
| 105 | |
| 106 | #ifdef CONFIG_AM335X_USB1 |
| 107 | static void am33xx_otg1_set_phy_power(u8 on) |
| 108 | { |
| 109 | am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1); |
| 110 | } |
| 111 | |
| 112 | struct omap_musb_board_data otg1_board_data = { |
| 113 | .set_phy_power = am33xx_otg1_set_phy_power, |
| 114 | }; |
| 115 | |
| 116 | static struct musb_hdrc_platform_data otg1_plat = { |
| 117 | .mode = CONFIG_AM335X_USB1_MODE, |
| 118 | .config = &musb_config, |
| 119 | .power = 50, |
| 120 | .platform_ops = &musb_dsps_ops, |
| 121 | .board_data = &otg1_board_data, |
| 122 | }; |
| 123 | #endif |
| 124 | #endif |
| 125 | |
| 126 | int arch_misc_init(void) |
| 127 | { |
| 128 | #ifdef CONFIG_AM335X_USB0 |
| 129 | musb_register(&otg0_plat, &otg0_board_data, |
Matt Porter | 81df2ba | 2013-03-15 10:07:02 +0000 | [diff] [blame] | 130 | (void *)USB0_OTG_BASE); |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 131 | #endif |
| 132 | #ifdef CONFIG_AM335X_USB1 |
| 133 | musb_register(&otg1_plat, &otg1_board_data, |
Matt Porter | 81df2ba | 2013-03-15 10:07:02 +0000 | [diff] [blame] | 134 | (void *)USB1_OTG_BASE); |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 135 | #endif |
| 136 | return 0; |
| 137 | } |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 138 | |
Steve Kipisz | c5c7a7c | 2013-07-18 15:13:04 -0400 | [diff] [blame] | 139 | #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_NOR_BOOT) |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 140 | static void rtc32k_enable(void) |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 141 | { |
| 142 | struct rtc_regs *rtc = (struct rtc_regs *)RTC_BASE; |
| 143 | |
| 144 | /* |
| 145 | * Unlock the RTC's registers. For more details please see the |
| 146 | * RTC_SS section of the TRM. In order to unlock we need to |
| 147 | * write these specific values (keys) in this order. |
| 148 | */ |
| 149 | writel(0x83e70b13, &rtc->kick0r); |
| 150 | writel(0x95a4f1e0, &rtc->kick1r); |
| 151 | |
| 152 | /* Enable the RTC 32K OSC by setting bits 3 and 6. */ |
| 153 | writel((1 << 3) | (1 << 6), &rtc->osc); |
| 154 | } |
Heiko Schocher | 7ea7f68 | 2013-06-04 11:00:57 +0200 | [diff] [blame] | 155 | |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 156 | static void uart_soft_reset(void) |
Heiko Schocher | 7ea7f68 | 2013-06-04 11:00:57 +0200 | [diff] [blame] | 157 | { |
| 158 | struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE; |
| 159 | u32 regval; |
| 160 | |
| 161 | regval = readl(&uart_base->uartsyscfg); |
| 162 | regval |= UART_RESET; |
| 163 | writel(regval, &uart_base->uartsyscfg); |
| 164 | while ((readl(&uart_base->uartsyssts) & |
| 165 | UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK) |
| 166 | ; |
| 167 | |
| 168 | /* Disable smart idle */ |
| 169 | regval = readl(&uart_base->uartsyscfg); |
| 170 | regval |= UART_SMART_IDLE_EN; |
| 171 | writel(regval, &uart_base->uartsyscfg); |
| 172 | } |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 173 | |
| 174 | static void watchdog_disable(void) |
| 175 | { |
| 176 | struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE; |
| 177 | |
| 178 | writel(0xAAAA, &wdtimer->wdtwspr); |
| 179 | while (readl(&wdtimer->wdtwwps) != 0x0) |
| 180 | ; |
| 181 | writel(0x5555, &wdtimer->wdtwspr); |
| 182 | while (readl(&wdtimer->wdtwwps) != 0x0) |
| 183 | ; |
| 184 | } |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 185 | #endif |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 186 | |
| 187 | void s_init(void) |
| 188 | { |
| 189 | /* |
| 190 | * The ROM will only have set up sufficient pinmux to allow for the |
| 191 | * first 4KiB NOR to be read, we must finish doing what we know of |
| 192 | * the NOR mux in this space in order to continue. |
| 193 | */ |
| 194 | #ifdef CONFIG_NOR_BOOT |
| 195 | enable_norboot_pin_mux(); |
| 196 | #endif |
| 197 | /* |
| 198 | * Save the boot parameters passed from romcode. |
| 199 | * We cannot delay the saving further than this, |
| 200 | * to prevent overwrites. |
| 201 | */ |
| 202 | #ifdef CONFIG_SPL_BUILD |
| 203 | save_omap_boot_params(); |
| 204 | #endif |
| 205 | #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_NOR_BOOT) |
| 206 | watchdog_disable(); |
| 207 | timer_init(); |
| 208 | set_uart_mux_conf(); |
| 209 | setup_clocks_for_console(); |
| 210 | uart_soft_reset(); |
| 211 | #endif |
| 212 | #ifdef CONFIG_NOR_BOOT |
| 213 | gd->baudrate = CONFIG_BAUDRATE; |
| 214 | serial_init(); |
| 215 | gd->have_console = 1; |
| 216 | #else |
| 217 | gd = &gdata; |
| 218 | preloader_console_init(); |
| 219 | #endif |
| 220 | #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_NOR_BOOT) |
| 221 | prcm_init(); |
| 222 | set_mux_conf_regs(); |
| 223 | /* Enable RTC32K clock */ |
| 224 | rtc32k_enable(); |
| 225 | sdram_init(); |
| 226 | #endif |
| 227 | } |