blob: 67bef23ea90592f93cf176c6cadb3963c04ab8e1 [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>
Ilya Yanok7df5cf32012-11-06 13:48:23 +000031#include <asm/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
Simon Glassd12010b2014-10-22 21:37:10 -060041#ifdef CONFIG_DM_GPIO
42static 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
53U_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 Glass4119e062014-10-22 21:37:11 -060064# 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 */
69static 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
82U_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 Glassd12010b2014-10-22 21:37:10 -060096#else
97
Dave Gerlachcd8341b2014-02-10 11:41:49 -050098static const struct gpio_bank gpio_bank_am33xx[] = {
Steve Sakoman3b971522012-06-04 05:35:34 +000099 { (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 Gerlachcd8341b2014-02-10 11:41:49 -0500103#ifdef CONFIG_AM43XX
104 { (void *)AM33XX_GPIO4_BASE, METHOD_GPIO_24XX },
105 { (void *)AM33XX_GPIO5_BASE, METHOD_GPIO_24XX },
106#endif
Steve Sakoman3b971522012-06-04 05:35:34 +0000107};
108
109const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx;
110
Simon Glassd12010b2014-10-22 21:37:10 -0600111#endif
112
Chandan Nath876bdd62012-01-09 20:38:58 +0000113#if defined(CONFIG_OMAP_HSMMC) && !defined(CONFIG_SPL_BUILD)
Peter Korsgaard75a23882012-10-18 01:21:10 +0000114int cpu_mmc_init(bd_t *bis)
Chandan Nath876bdd62012-01-09 20:38:58 +0000115{
Tom Rini0689a2e2012-08-08 10:31:08 -0700116 int ret;
Peter Korsgaard75a23882012-10-18 01:21:10 +0000117
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000118 ret = omap_mmc_init(0, 0, 0, -1, -1);
Tom Rini0689a2e2012-08-08 10:31:08 -0700119 if (ret)
120 return ret;
121
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000122 return omap_mmc_init(1, 0, 0, -1, -1);
Chandan Nath876bdd62012-01-09 20:38:58 +0000123}
124#endif
Chandan Nath8a8f0842012-01-09 20:38:59 +0000125
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000126/* 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))
129static 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
137static 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
147static 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
155static void am33xx_otg0_set_phy_power(u8 on)
156{
157 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0);
158}
159
160struct omap_musb_board_data otg0_board_data = {
161 .set_phy_power = am33xx_otg0_set_phy_power,
162};
163
164static 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
174static void am33xx_otg1_set_phy_power(u8 on)
175{
176 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1);
177}
178
179struct omap_musb_board_data otg1_board_data = {
180 .set_phy_power = am33xx_otg1_set_phy_power,
181};
182
183static 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
193int arch_misc_init(void)
194{
195#ifdef CONFIG_AM335X_USB0
196 musb_register(&otg0_plat, &otg0_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000197 (void *)USB0_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000198#endif
199#ifdef CONFIG_AM335X_USB1
200 musb_register(&otg1_plat, &otg1_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000201 (void *)USB1_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000202#endif
203 return 0;
204}
Heiko Schocher49f78362013-06-05 07:47:56 +0200205
Tom Rinid0e6d342014-04-09 08:25:57 -0400206#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Tom Rini6a0d8032013-08-30 16:28:44 -0400207/*
Tom Rini196311d2014-05-21 12:57:22 -0400208 * 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 */
212int board_early_init_f(void)
213{
214 prcm_init();
215 set_mux_conf_regs();
216
217 return 0;
218}
219
220/*
Tom Rini6a0d8032013-08-30 16:28:44 -0400221 * 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 Kipisz52f7d842013-08-14 10:51:31 -0400226 do_setup_dpll(&dpll_core_regs, &dpll_core_opp100);
227 do_setup_dpll(&dpll_mpu_regs, &dpll_mpu_opp100);
Tom Rini6a0d8032013-08-30 16:28:44 -0400228}
229
Heiko Schocher16678eb2013-11-04 14:05:00 +0100230#if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
Heiko Schocher06604812013-07-30 10:48:54 +0530231static void rtc32k_enable(void)
Heiko Schocher49f78362013-06-05 07:47:56 +0200232{
Tom Rini155d4242013-08-28 09:00:28 -0400233 struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE;
Heiko Schocher49f78362013-06-05 07:47:56 +0200234
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 Rini155d4242013-08-28 09:00:28 -0400240 writel(RTC_KICK0R_WE, &rtc->kick0r);
241 writel(RTC_KICK1R_WE, &rtc->kick1r);
Heiko Schocher49f78362013-06-05 07:47:56 +0200242
243 /* Enable the RTC 32K OSC by setting bits 3 and 6. */
244 writel((1 << 3) | (1 << 6), &rtc->osc);
245}
Heiko Schocher16678eb2013-11-04 14:05:00 +0100246#endif
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200247
Heiko Schocher06604812013-07-30 10:48:54 +0530248static void uart_soft_reset(void)
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200249{
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 Schocher06604812013-07-30 10:48:54 +0530265
266static 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 Schocher06604812013-07-30 10:48:54 +0530277
Simon Glass7ae83502015-03-03 08:03:02 -0700278#ifdef CONFIG_SPL_BUILD
279void board_init_f(ulong dummy)
280{
281 board_early_init_f();
282 sdram_init();
283}
284#endif
285
Heiko Schocher06604812013-07-30 10:48:54 +0530286void 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 Schocher06604812013-07-30 10:48:54 +0530296 watchdog_disable();
Heiko Schocher06604812013-07-30 10:48:54 +0530297 set_uart_mux_conf();
298 setup_clocks_for_console();
299 uart_soft_reset();
Sourav Poddar7a5f71b2014-05-19 16:53:37 -0400300#if defined(CONFIG_NOR_BOOT) || defined(CONFIG_QSPI_BOOT)
Simon Glass7ae83502015-03-03 08:03:02 -0700301 /* TODO: This does not work, gd is not available yet */
Heiko Schocher06604812013-07-30 10:48:54 +0530302 gd->baudrate = CONFIG_BAUDRATE;
303 serial_init();
304 gd->have_console = 1;
Heiko Schocher06604812013-07-30 10:48:54 +0530305#endif
Heiko Schocher16678eb2013-11-04 14:05:00 +0100306#if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
Heiko Schocher06604812013-07-30 10:48:54 +0530307 /* Enable RTC32K clock */
308 rtc32k_enable();
Heiko Schocher16678eb2013-11-04 14:05:00 +0100309#endif
Heiko Schocher06604812013-07-30 10:48:54 +0530310}
Tom Rinid73f38f2014-03-05 14:57:47 -0500311#endif