blob: 453effa541a8837b8c34489c0dc63db91dcfd99f [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>
Tom Rini973b6632012-07-30 16:13:10 -070012#include <errno.h>
Tom Rini47f7bca2012-08-13 12:03:19 -070013#include <spl.h>
Chandan Nath5289e832011-10-14 02:58:26 +000014#include <asm/arch/cpu.h>
15#include <asm/arch/hardware.h>
Chandan Nath8a8f0842012-01-09 20:38:59 +000016#include <asm/arch/omap.h>
Chandan Nath5289e832011-10-14 02:58:26 +000017#include <asm/arch/ddr_defs.h>
18#include <asm/arch/clock.h>
Steve Sakoman3b971522012-06-04 05:35:34 +000019#include <asm/arch/gpio.h>
Ilya Yanok8eb16b72012-11-06 13:06:30 +000020#include <asm/arch/mem.h>
Chandan Nath8a8f0842012-01-09 20:38:59 +000021#include <asm/arch/mmc_host_def.h>
Tom Rinidb7dd812012-07-31 10:50:01 -070022#include <asm/arch/sys_proto.h>
Chandan Nath5289e832011-10-14 02:58:26 +000023#include <asm/io.h>
Tom Rinifda35eb2012-07-03 08:51:34 -070024#include <asm/emif.h>
Tom Rini65d750b2012-07-31 08:55:01 -070025#include <asm/gpio.h>
Tom Rini973b6632012-07-30 16:13:10 -070026#include <i2c.h>
27#include <miiphy.h>
28#include <cpsw.h>
Ilya Yanok7df5cf32012-11-06 13:48:23 +000029#include <asm/errno.h>
Tom Rini6a0d8032013-08-30 16:28:44 -040030#include <linux/compiler.h>
Ilya Yanok7df5cf32012-11-06 13:48:23 +000031#include <linux/usb/ch9.h>
32#include <linux/usb/gadget.h>
33#include <linux/usb/musb.h>
34#include <asm/omap_musb.h>
Tom Rini155d4242013-08-28 09:00:28 -040035#include <asm/davinci_rtc.h>
Chandan Nath5289e832011-10-14 02:58:26 +000036
37DECLARE_GLOBAL_DATA_PTR;
38
Steve Sakoman3b971522012-06-04 05:35:34 +000039static const struct gpio_bank gpio_bank_am33xx[4] = {
40 { (void *)AM33XX_GPIO0_BASE, METHOD_GPIO_24XX },
41 { (void *)AM33XX_GPIO1_BASE, METHOD_GPIO_24XX },
42 { (void *)AM33XX_GPIO2_BASE, METHOD_GPIO_24XX },
43 { (void *)AM33XX_GPIO3_BASE, METHOD_GPIO_24XX },
44};
45
46const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx;
47
Chandan Nath876bdd62012-01-09 20:38:58 +000048#if defined(CONFIG_OMAP_HSMMC) && !defined(CONFIG_SPL_BUILD)
Peter Korsgaard75a23882012-10-18 01:21:10 +000049int cpu_mmc_init(bd_t *bis)
Chandan Nath876bdd62012-01-09 20:38:58 +000050{
Tom Rini0689a2e2012-08-08 10:31:08 -070051 int ret;
Peter Korsgaard75a23882012-10-18 01:21:10 +000052
Nikita Kiryanove3913f52012-12-03 02:19:47 +000053 ret = omap_mmc_init(0, 0, 0, -1, -1);
Tom Rini0689a2e2012-08-08 10:31:08 -070054 if (ret)
55 return ret;
56
Nikita Kiryanove3913f52012-12-03 02:19:47 +000057 return omap_mmc_init(1, 0, 0, -1, -1);
Chandan Nath876bdd62012-01-09 20:38:58 +000058}
59#endif
Chandan Nath8a8f0842012-01-09 20:38:59 +000060
Ilya Yanok7df5cf32012-11-06 13:48:23 +000061/* AM33XX has two MUSB controllers which can be host or gadget */
62#if (defined(CONFIG_MUSB_GADGET) || defined(CONFIG_MUSB_HOST)) && \
63 (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1))
64static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
65
66/* USB 2.0 PHY Control */
67#define CM_PHY_PWRDN (1 << 0)
68#define CM_PHY_OTG_PWRDN (1 << 1)
69#define OTGVDET_EN (1 << 19)
70#define OTGSESSENDEN (1 << 20)
71
72static void am33xx_usb_set_phy_power(u8 on, u32 *reg_addr)
73{
74 if (on) {
75 clrsetbits_le32(reg_addr, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
76 OTGVDET_EN | OTGSESSENDEN);
77 } else {
78 clrsetbits_le32(reg_addr, 0, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
79 }
80}
81
82static struct musb_hdrc_config musb_config = {
83 .multipoint = 1,
84 .dyn_fifo = 1,
85 .num_eps = 16,
86 .ram_bits = 12,
87};
88
89#ifdef CONFIG_AM335X_USB0
90static void am33xx_otg0_set_phy_power(u8 on)
91{
92 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0);
93}
94
95struct omap_musb_board_data otg0_board_data = {
96 .set_phy_power = am33xx_otg0_set_phy_power,
97};
98
99static struct musb_hdrc_platform_data otg0_plat = {
100 .mode = CONFIG_AM335X_USB0_MODE,
101 .config = &musb_config,
102 .power = 50,
103 .platform_ops = &musb_dsps_ops,
104 .board_data = &otg0_board_data,
105};
106#endif
107
108#ifdef CONFIG_AM335X_USB1
109static void am33xx_otg1_set_phy_power(u8 on)
110{
111 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1);
112}
113
114struct omap_musb_board_data otg1_board_data = {
115 .set_phy_power = am33xx_otg1_set_phy_power,
116};
117
118static struct musb_hdrc_platform_data otg1_plat = {
119 .mode = CONFIG_AM335X_USB1_MODE,
120 .config = &musb_config,
121 .power = 50,
122 .platform_ops = &musb_dsps_ops,
123 .board_data = &otg1_board_data,
124};
125#endif
126#endif
127
128int arch_misc_init(void)
129{
130#ifdef CONFIG_AM335X_USB0
131 musb_register(&otg0_plat, &otg0_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000132 (void *)USB0_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000133#endif
134#ifdef CONFIG_AM335X_USB1
135 musb_register(&otg1_plat, &otg1_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000136 (void *)USB1_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000137#endif
138 return 0;
139}
Heiko Schocher49f78362013-06-05 07:47:56 +0200140
Steve Kipiszc5c7a7c2013-07-18 15:13:04 -0400141#if defined(CONFIG_SPL_BUILD) || defined(CONFIG_NOR_BOOT)
Tom Rini6a0d8032013-08-30 16:28:44 -0400142/*
143 * This function is the place to do per-board things such as ramp up the
144 * MPU clock frequency.
145 */
146__weak void am33xx_spl_board_init(void)
147{
Steve Kipisz52f7d842013-08-14 10:51:31 -0400148 do_setup_dpll(&dpll_core_regs, &dpll_core_opp100);
149 do_setup_dpll(&dpll_mpu_regs, &dpll_mpu_opp100);
Tom Rini6a0d8032013-08-30 16:28:44 -0400150}
151
Heiko Schocher06604812013-07-30 10:48:54 +0530152static void rtc32k_enable(void)
Heiko Schocher49f78362013-06-05 07:47:56 +0200153{
Tom Rini155d4242013-08-28 09:00:28 -0400154 struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE;
Heiko Schocher49f78362013-06-05 07:47:56 +0200155
156 /*
157 * Unlock the RTC's registers. For more details please see the
158 * RTC_SS section of the TRM. In order to unlock we need to
159 * write these specific values (keys) in this order.
160 */
Tom Rini155d4242013-08-28 09:00:28 -0400161 writel(RTC_KICK0R_WE, &rtc->kick0r);
162 writel(RTC_KICK1R_WE, &rtc->kick1r);
Heiko Schocher49f78362013-06-05 07:47:56 +0200163
164 /* Enable the RTC 32K OSC by setting bits 3 and 6. */
165 writel((1 << 3) | (1 << 6), &rtc->osc);
166}
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200167
Heiko Schocher06604812013-07-30 10:48:54 +0530168static void uart_soft_reset(void)
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200169{
170 struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE;
171 u32 regval;
172
173 regval = readl(&uart_base->uartsyscfg);
174 regval |= UART_RESET;
175 writel(regval, &uart_base->uartsyscfg);
176 while ((readl(&uart_base->uartsyssts) &
177 UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK)
178 ;
179
180 /* Disable smart idle */
181 regval = readl(&uart_base->uartsyscfg);
182 regval |= UART_SMART_IDLE_EN;
183 writel(regval, &uart_base->uartsyscfg);
184}
Heiko Schocher06604812013-07-30 10:48:54 +0530185
186static void watchdog_disable(void)
187{
188 struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE;
189
190 writel(0xAAAA, &wdtimer->wdtwspr);
191 while (readl(&wdtimer->wdtwwps) != 0x0)
192 ;
193 writel(0x5555, &wdtimer->wdtwspr);
194 while (readl(&wdtimer->wdtwwps) != 0x0)
195 ;
196}
Heiko Schocher49f78362013-06-05 07:47:56 +0200197#endif
Heiko Schocher06604812013-07-30 10:48:54 +0530198
199void s_init(void)
200{
201 /*
202 * The ROM will only have set up sufficient pinmux to allow for the
203 * first 4KiB NOR to be read, we must finish doing what we know of
204 * the NOR mux in this space in order to continue.
205 */
206#ifdef CONFIG_NOR_BOOT
207 enable_norboot_pin_mux();
208#endif
209 /*
210 * Save the boot parameters passed from romcode.
211 * We cannot delay the saving further than this,
212 * to prevent overwrites.
213 */
214#ifdef CONFIG_SPL_BUILD
215 save_omap_boot_params();
216#endif
217#if defined(CONFIG_SPL_BUILD) || defined(CONFIG_NOR_BOOT)
218 watchdog_disable();
219 timer_init();
220 set_uart_mux_conf();
221 setup_clocks_for_console();
222 uart_soft_reset();
223#endif
224#ifdef CONFIG_NOR_BOOT
225 gd->baudrate = CONFIG_BAUDRATE;
226 serial_init();
227 gd->have_console = 1;
228#else
229 gd = &gdata;
230 preloader_console_init();
231#endif
232#if defined(CONFIG_SPL_BUILD) || defined(CONFIG_NOR_BOOT)
233 prcm_init();
234 set_mux_conf_regs();
235 /* Enable RTC32K clock */
236 rtc32k_enable();
237 sdram_init();
238#endif
239}