4 * Common board functions for AM33XX based boards
6 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
8 * SPDX-License-Identifier: GPL-2.0+
16 #include <asm/arch/cpu.h>
17 #include <asm/arch/hardware.h>
18 #include <asm/arch/omap.h>
19 #include <asm/arch/ddr_defs.h>
20 #include <asm/arch/clock.h>
21 #include <asm/arch/gpio.h>
22 #include <asm/arch/mem.h>
23 #include <asm/arch/mmc_host_def.h>
24 #include <asm/arch/sys_proto.h>
31 #include <linux/errno.h>
32 #include <linux/compiler.h>
33 #include <linux/usb/ch9.h>
34 #include <linux/usb/gadget.h>
35 #include <linux/usb/musb.h>
36 #include <asm/omap_musb.h>
37 #include <asm/davinci_rtc.h>
39 DECLARE_GLOBAL_DATA_PTR;
41 #if !CONFIG_IS_ENABLED(OF_CONTROL)
42 static const struct ns16550_platdata am33xx_serial[] = {
43 { .base = CONFIG_SYS_NS16550_COM1, .reg_shift = 2,
44 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
45 # ifdef CONFIG_SYS_NS16550_COM2
46 { .base = CONFIG_SYS_NS16550_COM2, .reg_shift = 2,
47 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
48 # ifdef CONFIG_SYS_NS16550_COM3
49 { .base = CONFIG_SYS_NS16550_COM3, .reg_shift = 2,
50 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
51 { .base = CONFIG_SYS_NS16550_COM4, .reg_shift = 2,
52 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
53 { .base = CONFIG_SYS_NS16550_COM5, .reg_shift = 2,
54 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
55 { .base = CONFIG_SYS_NS16550_COM6, .reg_shift = 2,
56 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
61 U_BOOT_DEVICES(am33xx_uarts) = {
62 { "ns16550_serial", &am33xx_serial[0] },
63 # ifdef CONFIG_SYS_NS16550_COM2
64 { "ns16550_serial", &am33xx_serial[1] },
65 # ifdef CONFIG_SYS_NS16550_COM3
66 { "ns16550_serial", &am33xx_serial[2] },
67 { "ns16550_serial", &am33xx_serial[3] },
68 { "ns16550_serial", &am33xx_serial[4] },
69 { "ns16550_serial", &am33xx_serial[5] },
75 static const struct omap_gpio_platdata am33xx_gpio[] = {
76 { 0, AM33XX_GPIO0_BASE },
77 { 1, AM33XX_GPIO1_BASE },
78 { 2, AM33XX_GPIO2_BASE },
79 { 3, AM33XX_GPIO3_BASE },
81 { 4, AM33XX_GPIO4_BASE },
82 { 5, AM33XX_GPIO5_BASE },
86 U_BOOT_DEVICES(am33xx_gpios) = {
87 { "gpio_omap", &am33xx_gpio[0] },
88 { "gpio_omap", &am33xx_gpio[1] },
89 { "gpio_omap", &am33xx_gpio[2] },
90 { "gpio_omap", &am33xx_gpio[3] },
92 { "gpio_omap", &am33xx_gpio[4] },
93 { "gpio_omap", &am33xx_gpio[5] },
99 #ifndef CONFIG_DM_GPIO
100 static const struct gpio_bank gpio_bank_am33xx[] = {
101 { (void *)AM33XX_GPIO0_BASE },
102 { (void *)AM33XX_GPIO1_BASE },
103 { (void *)AM33XX_GPIO2_BASE },
104 { (void *)AM33XX_GPIO3_BASE },
106 { (void *)AM33XX_GPIO4_BASE },
107 { (void *)AM33XX_GPIO5_BASE },
111 const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx;
114 #if defined(CONFIG_MMC_OMAP_HS)
115 int cpu_mmc_init(bd_t *bis)
119 ret = omap_mmc_init(0, 0, 0, -1, -1);
123 return omap_mmc_init(1, 0, 0, -1, -1);
127 /* AM33XX has two MUSB controllers which can be host or gadget */
128 #if (defined(CONFIG_USB_MUSB_GADGET) || defined(CONFIG_USB_MUSB_HOST)) && \
129 (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1)) && \
130 (!defined(CONFIG_DM_USB))
131 static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
133 /* USB 2.0 PHY Control */
134 #define CM_PHY_PWRDN (1 << 0)
135 #define CM_PHY_OTG_PWRDN (1 << 1)
136 #define OTGVDET_EN (1 << 19)
137 #define OTGSESSENDEN (1 << 20)
139 static void am33xx_usb_set_phy_power(u8 on, u32 *reg_addr)
142 clrsetbits_le32(reg_addr, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
143 OTGVDET_EN | OTGSESSENDEN);
145 clrsetbits_le32(reg_addr, 0, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
149 static struct musb_hdrc_config musb_config = {
156 #ifdef CONFIG_AM335X_USB0
157 static void am33xx_otg0_set_phy_power(struct udevice *dev, u8 on)
159 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0);
162 struct omap_musb_board_data otg0_board_data = {
163 .set_phy_power = am33xx_otg0_set_phy_power,
166 static struct musb_hdrc_platform_data otg0_plat = {
167 .mode = CONFIG_AM335X_USB0_MODE,
168 .config = &musb_config,
170 .platform_ops = &musb_dsps_ops,
171 .board_data = &otg0_board_data,
175 #ifdef CONFIG_AM335X_USB1
176 static void am33xx_otg1_set_phy_power(struct udevice *dev, u8 on)
178 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1);
181 struct omap_musb_board_data otg1_board_data = {
182 .set_phy_power = am33xx_otg1_set_phy_power,
185 static struct musb_hdrc_platform_data otg1_plat = {
186 .mode = CONFIG_AM335X_USB1_MODE,
187 .config = &musb_config,
189 .platform_ops = &musb_dsps_ops,
190 .board_data = &otg1_board_data,
195 int arch_misc_init(void)
197 #ifndef CONFIG_DM_USB
198 #ifdef CONFIG_AM335X_USB0
199 musb_register(&otg0_plat, &otg0_board_data,
200 (void *)USB0_OTG_BASE);
202 #ifdef CONFIG_AM335X_USB1
203 musb_register(&otg1_plat, &otg1_board_data,
204 (void *)USB1_OTG_BASE);
210 ret = uclass_first_device(UCLASS_MISC, &dev);
214 #if defined(CONFIG_DM_ETH) && defined(CONFIG_USB_ETHER)
215 ret = usb_ether_init();
217 error("USB ether init failed\n");
225 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
227 * In the case of non-SPL based booting we'll want to call these
228 * functions a tiny bit later as it will require gd to be set and cleared
229 * and that's not true in s_init in this case so we cannot do it there.
231 int board_early_init_f(void)
240 * This function is the place to do per-board things such as ramp up the
241 * MPU clock frequency.
243 __weak void am33xx_spl_board_init(void)
247 #if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
248 static void rtc32k_enable(void)
250 struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE;
253 * Unlock the RTC's registers. For more details please see the
254 * RTC_SS section of the TRM. In order to unlock we need to
255 * write these specific values (keys) in this order.
257 writel(RTC_KICK0R_WE, &rtc->kick0r);
258 writel(RTC_KICK1R_WE, &rtc->kick1r);
260 /* Enable the RTC 32K OSC by setting bits 3 and 6. */
261 writel((1 << 3) | (1 << 6), &rtc->osc);
265 static void uart_soft_reset(void)
267 struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE;
270 regval = readl(&uart_base->uartsyscfg);
271 regval |= UART_RESET;
272 writel(regval, &uart_base->uartsyscfg);
273 while ((readl(&uart_base->uartsyssts) &
274 UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK)
277 /* Disable smart idle */
278 regval = readl(&uart_base->uartsyscfg);
279 regval |= UART_SMART_IDLE_EN;
280 writel(regval, &uart_base->uartsyscfg);
283 static void watchdog_disable(void)
285 struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE;
287 writel(0xAAAA, &wdtimer->wdtwspr);
288 while (readl(&wdtimer->wdtwwps) != 0x0)
290 writel(0x5555, &wdtimer->wdtwspr);
291 while (readl(&wdtimer->wdtwwps) != 0x0)
299 void early_system_init(void)
302 * The ROM will only have set up sufficient pinmux to allow for the
303 * first 4KiB NOR to be read, we must finish doing what we know of
304 * the NOR mux in this space in order to continue.
306 #ifdef CONFIG_NOR_BOOT
307 enable_norboot_pin_mux();
311 setup_early_clocks();
313 #ifdef CONFIG_TI_I2C_BOARD_DETECT
316 #if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
317 /* Enable RTC32K clock */
322 #ifdef CONFIG_SPL_BUILD
323 void board_init_f(ulong dummy)
326 board_early_init_f();
328 /* dram_init must store complete ramsize in gd->ram_size */
329 gd->ram_size = get_ram_size(
330 (void *)CONFIG_SYS_SDRAM_BASE,
331 CONFIG_MAX_RAM_BANK_SIZE);
337 int arch_cpu_init_dm(void)
339 #ifndef CONFIG_SKIP_LOWLEVEL_INIT