blob: 190310fd00792ee461dffae46b26a3314c502f86 [file] [log] [blame]
Chandan Nath5289e832011-10-14 02:58:26 +00001/*
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 Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Chandan Nath5289e832011-10-14 02:58:26 +00009 */
10
11#include <common.h>
Simon Glassd12010b2014-10-22 21:37:10 -060012#include <dm.h>
Tom Rini973b6632012-07-30 16:13:10 -070013#include <errno.h>
Simon Glass4119e062014-10-22 21:37:11 -060014#include <ns16550.h>
Tom Rini47f7bca2012-08-13 12:03:19 -070015#include <spl.h>
Chandan Nath5289e832011-10-14 02:58:26 +000016#include <asm/arch/cpu.h>
17#include <asm/arch/hardware.h>
Chandan Nath8a8f0842012-01-09 20:38:59 +000018#include <asm/arch/omap.h>
Chandan Nath5289e832011-10-14 02:58:26 +000019#include <asm/arch/ddr_defs.h>
20#include <asm/arch/clock.h>
Steve Sakoman3b971522012-06-04 05:35:34 +000021#include <asm/arch/gpio.h>
Ilya Yanok8eb16b72012-11-06 13:06:30 +000022#include <asm/arch/mem.h>
Chandan Nath8a8f0842012-01-09 20:38:59 +000023#include <asm/arch/mmc_host_def.h>
Tom Rinidb7dd812012-07-31 10:50:01 -070024#include <asm/arch/sys_proto.h>
Chandan Nath5289e832011-10-14 02:58:26 +000025#include <asm/io.h>
Tom Rinifda35eb2012-07-03 08:51:34 -070026#include <asm/emif.h>
Tom Rini65d750b2012-07-31 08:55:01 -070027#include <asm/gpio.h>
Tom Rini973b6632012-07-30 16:13:10 -070028#include <i2c.h>
29#include <miiphy.h>
30#include <cpsw.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090031#include <linux/errno.h>
Tom Rini6a0d8032013-08-30 16:28:44 -040032#include <linux/compiler.h>
Ilya Yanok7df5cf32012-11-06 13:48:23 +000033#include <linux/usb/ch9.h>
34#include <linux/usb/gadget.h>
35#include <linux/usb/musb.h>
36#include <asm/omap_musb.h>
Tom Rini155d4242013-08-28 09:00:28 -040037#include <asm/davinci_rtc.h>
Chandan Nath5289e832011-10-14 02:58:26 +000038
39DECLARE_GLOBAL_DATA_PTR;
40
Tom Rini75507d52015-12-06 11:09:59 -050041#if !CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glass4119e062014-10-22 21:37:11 -060042static const struct ns16550_platdata am33xx_serial[] = {
Heiko Schocher17fa0322017-01-18 08:05:49 +010043 { .base = CONFIG_SYS_NS16550_COM1, .reg_shift = 2,
44 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
Tom Rini1480fdf2015-07-31 19:55:08 -040045# ifdef CONFIG_SYS_NS16550_COM2
Heiko Schocher17fa0322017-01-18 08:05:49 +010046 { .base = CONFIG_SYS_NS16550_COM2, .reg_shift = 2,
47 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
Tom Rini1480fdf2015-07-31 19:55:08 -040048# ifdef CONFIG_SYS_NS16550_COM3
Heiko Schocher17fa0322017-01-18 08:05:49 +010049 { .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, },
Simon Glass4119e062014-10-22 21:37:11 -060057# endif
Tom Rini1480fdf2015-07-31 19:55:08 -040058# endif
Simon Glass4119e062014-10-22 21:37:11 -060059};
60
61U_BOOT_DEVICES(am33xx_uarts) = {
Tom Rini75507d52015-12-06 11:09:59 -050062 { "ns16550_serial", &am33xx_serial[0] },
Simon Glass4119e062014-10-22 21:37:11 -060063# ifdef CONFIG_SYS_NS16550_COM2
Tom Rini75507d52015-12-06 11:09:59 -050064 { "ns16550_serial", &am33xx_serial[1] },
Simon Glass4119e062014-10-22 21:37:11 -060065# ifdef CONFIG_SYS_NS16550_COM3
Tom Rini75507d52015-12-06 11:09:59 -050066 { "ns16550_serial", &am33xx_serial[2] },
67 { "ns16550_serial", &am33xx_serial[3] },
68 { "ns16550_serial", &am33xx_serial[4] },
69 { "ns16550_serial", &am33xx_serial[5] },
Simon Glass4119e062014-10-22 21:37:11 -060070# endif
71# endif
72};
Simon Glass4119e062014-10-22 21:37:11 -060073
Tom Rini90345c92016-01-05 12:17:15 -050074#ifdef CONFIG_DM_GPIO
75static 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 },
80#ifdef CONFIG_AM43XX
81 { 4, AM33XX_GPIO4_BASE },
82 { 5, AM33XX_GPIO5_BASE },
83#endif
84};
85
86U_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] },
91#ifdef CONFIG_AM43XX
92 { "gpio_omap", &am33xx_gpio[4] },
93 { "gpio_omap", &am33xx_gpio[5] },
94#endif
95};
96#endif
97#endif
Simon Glassd12010b2014-10-22 21:37:10 -060098
Tom Rini1480fdf2015-07-31 19:55:08 -040099#ifndef CONFIG_DM_GPIO
Dave Gerlachcd8341b2014-02-10 11:41:49 -0500100static const struct gpio_bank gpio_bank_am33xx[] = {
Tom Rini0a9e3402015-07-31 19:55:09 -0400101 { (void *)AM33XX_GPIO0_BASE },
102 { (void *)AM33XX_GPIO1_BASE },
103 { (void *)AM33XX_GPIO2_BASE },
104 { (void *)AM33XX_GPIO3_BASE },
Dave Gerlachcd8341b2014-02-10 11:41:49 -0500105#ifdef CONFIG_AM43XX
Tom Rini0a9e3402015-07-31 19:55:09 -0400106 { (void *)AM33XX_GPIO4_BASE },
107 { (void *)AM33XX_GPIO5_BASE },
Dave Gerlachcd8341b2014-02-10 11:41:49 -0500108#endif
Steve Sakoman3b971522012-06-04 05:35:34 +0000109};
110
111const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx;
Simon Glassd12010b2014-10-22 21:37:10 -0600112#endif
113
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900114#if defined(CONFIG_MMC_OMAP_HS) && !defined(CONFIG_SPL_BUILD)
Peter Korsgaard75a23882012-10-18 01:21:10 +0000115int cpu_mmc_init(bd_t *bis)
Chandan Nath876bdd62012-01-09 20:38:58 +0000116{
Tom Rini0689a2e2012-08-08 10:31:08 -0700117 int ret;
Peter Korsgaard75a23882012-10-18 01:21:10 +0000118
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000119 ret = omap_mmc_init(0, 0, 0, -1, -1);
Tom Rini0689a2e2012-08-08 10:31:08 -0700120 if (ret)
121 return ret;
122
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000123 return omap_mmc_init(1, 0, 0, -1, -1);
Chandan Nath876bdd62012-01-09 20:38:58 +0000124}
125#endif
Chandan Nath8a8f0842012-01-09 20:38:59 +0000126
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000127/* AM33XX has two MUSB controllers which can be host or gadget */
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200128#if (defined(CONFIG_USB_MUSB_GADGET) || defined(CONFIG_USB_MUSB_HOST)) && \
Mugunthan V N19570222016-11-17 14:38:07 +0530129 (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1)) && \
130 (!defined(CONFIG_DM_USB))
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000131static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
132
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)
138
139static void am33xx_usb_set_phy_power(u8 on, u32 *reg_addr)
140{
141 if (on) {
142 clrsetbits_le32(reg_addr, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
143 OTGVDET_EN | OTGSESSENDEN);
144 } else {
145 clrsetbits_le32(reg_addr, 0, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
146 }
147}
148
149static struct musb_hdrc_config musb_config = {
150 .multipoint = 1,
151 .dyn_fifo = 1,
152 .num_eps = 16,
153 .ram_bits = 12,
154};
155
156#ifdef CONFIG_AM335X_USB0
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530157static void am33xx_otg0_set_phy_power(struct udevice *dev, u8 on)
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000158{
159 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0);
160}
161
162struct omap_musb_board_data otg0_board_data = {
163 .set_phy_power = am33xx_otg0_set_phy_power,
164};
165
166static struct musb_hdrc_platform_data otg0_plat = {
167 .mode = CONFIG_AM335X_USB0_MODE,
168 .config = &musb_config,
169 .power = 50,
170 .platform_ops = &musb_dsps_ops,
171 .board_data = &otg0_board_data,
172};
173#endif
174
175#ifdef CONFIG_AM335X_USB1
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530176static void am33xx_otg1_set_phy_power(struct udevice *dev, u8 on)
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000177{
178 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1);
179}
180
181struct omap_musb_board_data otg1_board_data = {
182 .set_phy_power = am33xx_otg1_set_phy_power,
183};
184
185static struct musb_hdrc_platform_data otg1_plat = {
186 .mode = CONFIG_AM335X_USB1_MODE,
187 .config = &musb_config,
188 .power = 50,
189 .platform_ops = &musb_dsps_ops,
190 .board_data = &otg1_board_data,
191};
192#endif
193#endif
194
195int arch_misc_init(void)
196{
Mugunthan V N19570222016-11-17 14:38:07 +0530197#ifndef CONFIG_DM_USB
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000198#ifdef CONFIG_AM335X_USB0
199 musb_register(&otg0_plat, &otg0_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000200 (void *)USB0_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000201#endif
202#ifdef CONFIG_AM335X_USB1
203 musb_register(&otg1_plat, &otg1_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000204 (void *)USB1_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000205#endif
Mugunthan V N3aec2642016-11-17 14:38:09 +0530206#else
207 struct udevice *dev;
208 int ret;
209
210 ret = uclass_first_device(UCLASS_MISC, &dev);
211 if (ret || !dev)
212 return ret;
Mugunthan V Nba7916c2016-11-17 14:38:13 +0530213
214#if defined(CONFIG_DM_ETH) && defined(CONFIG_USB_ETHER)
215 ret = usb_ether_init();
216 if (ret) {
217 error("USB ether init failed\n");
218 return ret;
219 }
220#endif
Mugunthan V N19570222016-11-17 14:38:07 +0530221#endif
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000222 return 0;
223}
Heiko Schocher49f78362013-06-05 07:47:56 +0200224
Tom Rinid0e6d342014-04-09 08:25:57 -0400225#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Tom Rini6a0d8032013-08-30 16:28:44 -0400226/*
Tom Rini196311d2014-05-21 12:57:22 -0400227 * 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.
230 */
231int board_early_init_f(void)
232{
233 prcm_init();
234 set_mux_conf_regs();
235
236 return 0;
237}
238
239/*
Tom Rini6a0d8032013-08-30 16:28:44 -0400240 * This function is the place to do per-board things such as ramp up the
241 * MPU clock frequency.
242 */
243__weak void am33xx_spl_board_init(void)
244{
Steve Kipisz52f7d842013-08-14 10:51:31 -0400245 do_setup_dpll(&dpll_core_regs, &dpll_core_opp100);
246 do_setup_dpll(&dpll_mpu_regs, &dpll_mpu_opp100);
Tom Rini6a0d8032013-08-30 16:28:44 -0400247}
248
Heiko Schocher16678eb2013-11-04 14:05:00 +0100249#if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
Heiko Schocher06604812013-07-30 10:48:54 +0530250static void rtc32k_enable(void)
Heiko Schocher49f78362013-06-05 07:47:56 +0200251{
Tom Rini155d4242013-08-28 09:00:28 -0400252 struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE;
Heiko Schocher49f78362013-06-05 07:47:56 +0200253
254 /*
255 * Unlock the RTC's registers. For more details please see the
256 * RTC_SS section of the TRM. In order to unlock we need to
257 * write these specific values (keys) in this order.
258 */
Tom Rini155d4242013-08-28 09:00:28 -0400259 writel(RTC_KICK0R_WE, &rtc->kick0r);
260 writel(RTC_KICK1R_WE, &rtc->kick1r);
Heiko Schocher49f78362013-06-05 07:47:56 +0200261
262 /* Enable the RTC 32K OSC by setting bits 3 and 6. */
263 writel((1 << 3) | (1 << 6), &rtc->osc);
264}
Heiko Schocher16678eb2013-11-04 14:05:00 +0100265#endif
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200266
Heiko Schocher06604812013-07-30 10:48:54 +0530267static void uart_soft_reset(void)
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200268{
269 struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE;
270 u32 regval;
271
272 regval = readl(&uart_base->uartsyscfg);
273 regval |= UART_RESET;
274 writel(regval, &uart_base->uartsyscfg);
275 while ((readl(&uart_base->uartsyssts) &
276 UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK)
277 ;
278
279 /* Disable smart idle */
280 regval = readl(&uart_base->uartsyscfg);
281 regval |= UART_SMART_IDLE_EN;
282 writel(regval, &uart_base->uartsyscfg);
283}
Heiko Schocher06604812013-07-30 10:48:54 +0530284
285static void watchdog_disable(void)
286{
287 struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE;
288
289 writel(0xAAAA, &wdtimer->wdtwspr);
290 while (readl(&wdtimer->wdtwwps) != 0x0)
291 ;
292 writel(0x5555, &wdtimer->wdtwspr);
293 while (readl(&wdtimer->wdtwwps) != 0x0)
294 ;
295}
Heiko Schocher06604812013-07-30 10:48:54 +0530296
297void s_init(void)
298{
Lokesh Vutlac704a992016-10-14 10:35:23 +0530299}
300
301void early_system_init(void)
302{
Heiko Schocher06604812013-07-30 10:48:54 +0530303 /*
304 * The ROM will only have set up sufficient pinmux to allow for the
305 * first 4KiB NOR to be read, we must finish doing what we know of
306 * the NOR mux in this space in order to continue.
307 */
308#ifdef CONFIG_NOR_BOOT
309 enable_norboot_pin_mux();
310#endif
Heiko Schocher06604812013-07-30 10:48:54 +0530311 watchdog_disable();
Heiko Schocher06604812013-07-30 10:48:54 +0530312 set_uart_mux_conf();
Lokesh Vutlab64a7cb2016-10-14 10:35:24 +0530313 setup_early_clocks();
Heiko Schocher06604812013-07-30 10:48:54 +0530314 uart_soft_reset();
Lokesh Vutla140d76a2016-10-14 10:35:25 +0530315#ifdef CONFIG_TI_I2C_BOARD_DETECT
316 do_board_detect();
317#endif
Heiko Schocher16678eb2013-11-04 14:05:00 +0100318#if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
Heiko Schocher06604812013-07-30 10:48:54 +0530319 /* Enable RTC32K clock */
320 rtc32k_enable();
Heiko Schocher16678eb2013-11-04 14:05:00 +0100321#endif
Heiko Schocher06604812013-07-30 10:48:54 +0530322}
Lokesh Vutlac704a992016-10-14 10:35:23 +0530323
324#ifdef CONFIG_SPL_BUILD
325void board_init_f(ulong dummy)
326{
327 early_system_init();
328 board_early_init_f();
329 sdram_init();
330}
Tom Rinid73f38f2014-03-05 14:57:47 -0500331#endif
Lokesh Vutlac704a992016-10-14 10:35:23 +0530332
333#endif
334
335int arch_cpu_init_dm(void)
336{
337#ifndef CONFIG_SKIP_LOWLEVEL_INIT
338 early_system_init();
339#endif
340 return 0;
341}