blob: ce58bf811f29b99b1f679698aedae4de07dd9b89 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Chandan Nath5289e832011-10-14 02:58:26 +00002/*
3 * board.c
4 *
5 * Common board functions for AM33XX based boards
6 *
7 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
Chandan Nath5289e832011-10-14 02:58:26 +00008 */
9
10#include <common.h>
Simon Glassd12010b2014-10-22 21:37:10 -060011#include <dm.h>
Lokesh Vutla878d8852017-05-05 13:45:28 +053012#include <debug_uart.h>
Tom Rini973b6632012-07-30 16:13:10 -070013#include <errno.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070014#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060015#include <net.h>
Simon Glass4119e062014-10-22 21:37:11 -060016#include <ns16550.h>
Tom Rini47f7bca2012-08-13 12:03:19 -070017#include <spl.h>
Chandan Nath5289e832011-10-14 02:58:26 +000018#include <asm/arch/cpu.h>
19#include <asm/arch/hardware.h>
Chandan Nath8a8f0842012-01-09 20:38:59 +000020#include <asm/arch/omap.h>
Chandan Nath5289e832011-10-14 02:58:26 +000021#include <asm/arch/ddr_defs.h>
22#include <asm/arch/clock.h>
Steve Sakoman3b971522012-06-04 05:35:34 +000023#include <asm/arch/gpio.h>
Jean-Jacques Hiblot0e6e67c2018-12-07 14:50:43 +010024#include <asm/arch/i2c.h>
Ilya Yanok8eb16b72012-11-06 13:06:30 +000025#include <asm/arch/mem.h>
Chandan Nath8a8f0842012-01-09 20:38:59 +000026#include <asm/arch/mmc_host_def.h>
Tom Rinidb7dd812012-07-31 10:50:01 -070027#include <asm/arch/sys_proto.h>
Chandan Nath5289e832011-10-14 02:58:26 +000028#include <asm/io.h>
Tom Rinifda35eb2012-07-03 08:51:34 -070029#include <asm/emif.h>
Tom Rini65d750b2012-07-31 08:55:01 -070030#include <asm/gpio.h>
Semen Protsenko00bbe962017-06-02 18:00:00 +030031#include <asm/omap_common.h>
Tom Rini973b6632012-07-30 16:13:10 -070032#include <i2c.h>
33#include <miiphy.h>
34#include <cpsw.h>
Simon Glassc05ed002020-05-10 11:40:11 -060035#include <linux/delay.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090036#include <linux/errno.h>
Tom Rini6a0d8032013-08-30 16:28:44 -040037#include <linux/compiler.h>
Ilya Yanok7df5cf32012-11-06 13:48:23 +000038#include <linux/usb/ch9.h>
39#include <linux/usb/gadget.h>
40#include <linux/usb/musb.h>
41#include <asm/omap_musb.h>
Tom Rini155d4242013-08-28 09:00:28 -040042#include <asm/davinci_rtc.h>
Chandan Nath5289e832011-10-14 02:58:26 +000043
Brad Griffis6fe3e5b2019-04-29 09:59:30 +053044#define AM43XX_EMIF_BASE 0x4C000000
45#define AM43XX_SDRAM_CONFIG_OFFSET 0x8
46#define AM43XX_SDRAM_TYPE_MASK 0xE0000000
47#define AM43XX_SDRAM_TYPE_SHIFT 29
48#define AM43XX_SDRAM_TYPE_DDR3 3
49#define AM43XX_READ_WRITE_LEVELING_CTRL_OFFSET 0xDC
50#define AM43XX_RDWRLVLFULL_START 0x80000000
51
Chandan Nath5289e832011-10-14 02:58:26 +000052DECLARE_GLOBAL_DATA_PTR;
53
Tom Rini86277332017-05-16 14:46:35 -040054int dram_init(void)
55{
56#ifndef CONFIG_SKIP_LOWLEVEL_INIT
57 sdram_init();
58#endif
59
60 /* dram_init must store complete ramsize in gd->ram_size */
61 gd->ram_size = get_ram_size(
62 (void *)CONFIG_SYS_SDRAM_BASE,
63 CONFIG_MAX_RAM_BANK_SIZE);
64 return 0;
65}
66
67int dram_init_banksize(void)
68{
69 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
70 gd->bd->bi_dram[0].size = gd->ram_size;
71
72 return 0;
73}
74
Tom Rini75507d52015-12-06 11:09:59 -050075#if !CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glass4119e062014-10-22 21:37:11 -060076static const struct ns16550_platdata am33xx_serial[] = {
Heiko Schocher17fa0322017-01-18 08:05:49 +010077 { .base = CONFIG_SYS_NS16550_COM1, .reg_shift = 2,
78 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
Tom Rini1480fdf2015-07-31 19:55:08 -040079# ifdef CONFIG_SYS_NS16550_COM2
Heiko Schocher17fa0322017-01-18 08:05:49 +010080 { .base = CONFIG_SYS_NS16550_COM2, .reg_shift = 2,
81 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
Tom Rini1480fdf2015-07-31 19:55:08 -040082# ifdef CONFIG_SYS_NS16550_COM3
Heiko Schocher17fa0322017-01-18 08:05:49 +010083 { .base = CONFIG_SYS_NS16550_COM3, .reg_shift = 2,
84 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
85 { .base = CONFIG_SYS_NS16550_COM4, .reg_shift = 2,
86 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
87 { .base = CONFIG_SYS_NS16550_COM5, .reg_shift = 2,
88 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
89 { .base = CONFIG_SYS_NS16550_COM6, .reg_shift = 2,
90 .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, },
Simon Glass4119e062014-10-22 21:37:11 -060091# endif
Tom Rini1480fdf2015-07-31 19:55:08 -040092# endif
Simon Glass4119e062014-10-22 21:37:11 -060093};
94
95U_BOOT_DEVICES(am33xx_uarts) = {
Tom Rini75507d52015-12-06 11:09:59 -050096 { "ns16550_serial", &am33xx_serial[0] },
Simon Glass4119e062014-10-22 21:37:11 -060097# ifdef CONFIG_SYS_NS16550_COM2
Tom Rini75507d52015-12-06 11:09:59 -050098 { "ns16550_serial", &am33xx_serial[1] },
Simon Glass4119e062014-10-22 21:37:11 -060099# ifdef CONFIG_SYS_NS16550_COM3
Tom Rini75507d52015-12-06 11:09:59 -0500100 { "ns16550_serial", &am33xx_serial[2] },
101 { "ns16550_serial", &am33xx_serial[3] },
102 { "ns16550_serial", &am33xx_serial[4] },
103 { "ns16550_serial", &am33xx_serial[5] },
Simon Glass4119e062014-10-22 21:37:11 -0600104# endif
105# endif
106};
Simon Glass4119e062014-10-22 21:37:11 -0600107
Jean-Jacques Hiblot0e6e67c2018-12-07 14:50:43 +0100108#ifdef CONFIG_DM_I2C
109static const struct omap_i2c_platdata am33xx_i2c[] = {
110 { I2C_BASE1, 100000, OMAP_I2C_REV_V2},
111 { I2C_BASE2, 100000, OMAP_I2C_REV_V2},
112 { I2C_BASE3, 100000, OMAP_I2C_REV_V2},
113};
114
115U_BOOT_DEVICES(am33xx_i2c) = {
116 { "i2c_omap", &am33xx_i2c[0] },
117 { "i2c_omap", &am33xx_i2c[1] },
118 { "i2c_omap", &am33xx_i2c[2] },
119};
120#endif
121
Simon Glassbcee8d62019-12-06 21:41:35 -0700122#if CONFIG_IS_ENABLED(DM_GPIO)
Tom Rini90345c92016-01-05 12:17:15 -0500123static const struct omap_gpio_platdata am33xx_gpio[] = {
124 { 0, AM33XX_GPIO0_BASE },
125 { 1, AM33XX_GPIO1_BASE },
126 { 2, AM33XX_GPIO2_BASE },
127 { 3, AM33XX_GPIO3_BASE },
128#ifdef CONFIG_AM43XX
129 { 4, AM33XX_GPIO4_BASE },
130 { 5, AM33XX_GPIO5_BASE },
131#endif
132};
133
134U_BOOT_DEVICES(am33xx_gpios) = {
135 { "gpio_omap", &am33xx_gpio[0] },
136 { "gpio_omap", &am33xx_gpio[1] },
137 { "gpio_omap", &am33xx_gpio[2] },
138 { "gpio_omap", &am33xx_gpio[3] },
139#ifdef CONFIG_AM43XX
140 { "gpio_omap", &am33xx_gpio[4] },
141 { "gpio_omap", &am33xx_gpio[5] },
142#endif
143};
144#endif
145#endif
Simon Glassd12010b2014-10-22 21:37:10 -0600146
Simon Glassbcee8d62019-12-06 21:41:35 -0700147#if !CONFIG_IS_ENABLED(DM_GPIO)
Dave Gerlachcd8341b2014-02-10 11:41:49 -0500148static const struct gpio_bank gpio_bank_am33xx[] = {
Tom Rini0a9e3402015-07-31 19:55:09 -0400149 { (void *)AM33XX_GPIO0_BASE },
150 { (void *)AM33XX_GPIO1_BASE },
151 { (void *)AM33XX_GPIO2_BASE },
152 { (void *)AM33XX_GPIO3_BASE },
Dave Gerlachcd8341b2014-02-10 11:41:49 -0500153#ifdef CONFIG_AM43XX
Tom Rini0a9e3402015-07-31 19:55:09 -0400154 { (void *)AM33XX_GPIO4_BASE },
155 { (void *)AM33XX_GPIO5_BASE },
Dave Gerlachcd8341b2014-02-10 11:41:49 -0500156#endif
Steve Sakoman3b971522012-06-04 05:35:34 +0000157};
158
159const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx;
Simon Glassd12010b2014-10-22 21:37:10 -0600160#endif
161
Jean-Jacques Hiblotd5abcf92017-02-01 11:39:14 +0100162#if defined(CONFIG_MMC_OMAP_HS)
Peter Korsgaard75a23882012-10-18 01:21:10 +0000163int cpu_mmc_init(bd_t *bis)
Chandan Nath876bdd62012-01-09 20:38:58 +0000164{
Tom Rini0689a2e2012-08-08 10:31:08 -0700165 int ret;
Peter Korsgaard75a23882012-10-18 01:21:10 +0000166
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000167 ret = omap_mmc_init(0, 0, 0, -1, -1);
Tom Rini0689a2e2012-08-08 10:31:08 -0700168 if (ret)
169 return ret;
170
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000171 return omap_mmc_init(1, 0, 0, -1, -1);
Chandan Nath876bdd62012-01-09 20:38:58 +0000172}
173#endif
Chandan Nath8a8f0842012-01-09 20:38:59 +0000174
Tero Kristo7619bad2018-03-17 13:32:52 +0530175/*
176 * RTC only with DDR in self-refresh mode magic value, checked against during
177 * boot to see if we have a valid config. This should be in sync with the value
178 * that will be in drivers/soc/ti/pm33xx.c.
179 */
180#define RTC_MAGIC_VAL 0x8cd0
181
182/* Board type field bit shift for RTC only with DDR in self-refresh mode */
183#define RTC_BOARD_TYPE_SHIFT 16
184
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000185/* AM33XX has two MUSB controllers which can be host or gadget */
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200186#if (defined(CONFIG_USB_MUSB_GADGET) || defined(CONFIG_USB_MUSB_HOST)) && \
Mugunthan V N19570222016-11-17 14:38:07 +0530187 (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1)) && \
Jean-Jacques Hiblot7a43dd72018-12-04 11:30:58 +0100188 (!CONFIG_IS_ENABLED(DM_USB) || !CONFIG_IS_ENABLED(OF_CONTROL)) && \
189 (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_MUSB_NEW_SUPPORT))
190
191static struct musb_hdrc_config musb_config = {
192 .multipoint = 1,
193 .dyn_fifo = 1,
194 .num_eps = 16,
195 .ram_bits = 12,
196};
197
198#if CONFIG_IS_ENABLED(DM_USB) && !CONFIG_IS_ENABLED(OF_CONTROL)
199static struct ti_musb_platdata usb0 = {
200 .base = (void *)USB0_OTG_BASE,
201 .ctrl_mod_base = &((struct ctrl_dev *)CTRL_DEVICE_BASE)->usb_ctrl0,
202 .plat = {
203 .config = &musb_config,
204 .power = 50,
205 .platform_ops = &musb_dsps_ops,
206 },
207};
208
209static struct ti_musb_platdata usb1 = {
210 .base = (void *)USB1_OTG_BASE,
211 .ctrl_mod_base = &((struct ctrl_dev *)CTRL_DEVICE_BASE)->usb_ctrl1,
212 .plat = {
213 .config = &musb_config,
214 .power = 50,
215 .platform_ops = &musb_dsps_ops,
216 },
217};
218
219U_BOOT_DEVICES(am33xx_usbs) = {
220#if CONFIG_AM335X_USB0_MODE == MUSB_PERIPHERAL
221 { "ti-musb-peripheral", &usb0 },
222#elif CONFIG_AM335X_USB0_MODE == MUSB_HOST
223 { "ti-musb-host", &usb0 },
224#endif
225#if CONFIG_AM335X_USB1_MODE == MUSB_PERIPHERAL
226 { "ti-musb-peripheral", &usb1 },
227#elif CONFIG_AM335X_USB1_MODE == MUSB_HOST
228 { "ti-musb-host", &usb1 },
229#endif
230};
231
232int arch_misc_init(void)
233{
234 return 0;
235}
236#else
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000237static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
238
239/* USB 2.0 PHY Control */
240#define CM_PHY_PWRDN (1 << 0)
241#define CM_PHY_OTG_PWRDN (1 << 1)
242#define OTGVDET_EN (1 << 19)
243#define OTGSESSENDEN (1 << 20)
244
245static void am33xx_usb_set_phy_power(u8 on, u32 *reg_addr)
246{
247 if (on) {
248 clrsetbits_le32(reg_addr, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
249 OTGVDET_EN | OTGSESSENDEN);
250 } else {
251 clrsetbits_le32(reg_addr, 0, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
252 }
253}
254
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000255#ifdef CONFIG_AM335X_USB0
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530256static void am33xx_otg0_set_phy_power(struct udevice *dev, u8 on)
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000257{
258 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0);
259}
260
261struct omap_musb_board_data otg0_board_data = {
262 .set_phy_power = am33xx_otg0_set_phy_power,
263};
264
265static struct musb_hdrc_platform_data otg0_plat = {
266 .mode = CONFIG_AM335X_USB0_MODE,
267 .config = &musb_config,
268 .power = 50,
269 .platform_ops = &musb_dsps_ops,
270 .board_data = &otg0_board_data,
271};
272#endif
273
274#ifdef CONFIG_AM335X_USB1
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530275static void am33xx_otg1_set_phy_power(struct udevice *dev, u8 on)
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000276{
277 am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1);
278}
279
280struct omap_musb_board_data otg1_board_data = {
281 .set_phy_power = am33xx_otg1_set_phy_power,
282};
283
284static struct musb_hdrc_platform_data otg1_plat = {
285 .mode = CONFIG_AM335X_USB1_MODE,
286 .config = &musb_config,
287 .power = 50,
288 .platform_ops = &musb_dsps_ops,
289 .board_data = &otg1_board_data,
290};
291#endif
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000292
293int arch_misc_init(void)
294{
295#ifdef CONFIG_AM335X_USB0
296 musb_register(&otg0_plat, &otg0_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000297 (void *)USB0_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000298#endif
299#ifdef CONFIG_AM335X_USB1
300 musb_register(&otg1_plat, &otg1_board_data,
Matt Porter81df2ba2013-03-15 10:07:02 +0000301 (void *)USB1_OTG_BASE);
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000302#endif
Alexandru Gagniuc409a81d2017-02-06 19:17:33 -0800303 return 0;
304}
Jean-Jacques Hiblot7a43dd72018-12-04 11:30:58 +0100305#endif
Alexandru Gagniuc409a81d2017-02-06 19:17:33 -0800306
307#else /* CONFIG_USB_MUSB_* && CONFIG_AM335X_USB* && !CONFIG_DM_USB */
308
309int arch_misc_init(void)
310{
Mugunthan V N3aec2642016-11-17 14:38:09 +0530311 struct udevice *dev;
312 int ret;
313
314 ret = uclass_first_device(UCLASS_MISC, &dev);
315 if (ret || !dev)
316 return ret;
Mugunthan V Nba7916c2016-11-17 14:38:13 +0530317
318#if defined(CONFIG_DM_ETH) && defined(CONFIG_USB_ETHER)
319 ret = usb_ether_init();
320 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900321 pr_err("USB ether init failed\n");
Mugunthan V Nba7916c2016-11-17 14:38:13 +0530322 return ret;
323 }
324#endif
Alexandru Gagniuc409a81d2017-02-06 19:17:33 -0800325
Ilya Yanok7df5cf32012-11-06 13:48:23 +0000326 return 0;
327}
Heiko Schocher49f78362013-06-05 07:47:56 +0200328
Alexandru Gagniuc409a81d2017-02-06 19:17:33 -0800329#endif /* CONFIG_USB_MUSB_* && CONFIG_AM335X_USB* && !CONFIG_DM_USB */
330
Tom Rinid0e6d342014-04-09 08:25:57 -0400331#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Tero Kristo7619bad2018-03-17 13:32:52 +0530332
333#if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC) || \
334 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT))
335static void rtc32k_unlock(struct davinci_rtc *rtc)
336{
337 /*
338 * Unlock the RTC's registers. For more details please see the
339 * RTC_SS section of the TRM. In order to unlock we need to
340 * write these specific values (keys) in this order.
341 */
342 writel(RTC_KICK0R_WE, &rtc->kick0r);
343 writel(RTC_KICK1R_WE, &rtc->kick1r);
344}
345#endif
346
347#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT)
348/*
349 * Write contents of the RTC_SCRATCH1 register based on board type
350 * Two things are passed
351 * on. First 16 bits (0:15) are written with RTC_MAGIC value. Once the
352 * control gets to kernel, kernel reads the scratchpad register and gets to
353 * know that bootloader has rtc_only support.
354 *
355 * Second important thing is the board type (16:31). This is needed in the
356 * rtc_only boot where in we want to avoid costly i2c reads to eeprom to
357 * identify the board type and we go ahead and copy the board strings to
358 * am43xx_board_name.
359 */
360void update_rtc_magic(void)
361{
362 struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE;
363 u32 magic = RTC_MAGIC_VAL;
364
365 magic |= (rtc_only_get_board_type() << RTC_BOARD_TYPE_SHIFT);
366
367 rtc32k_unlock(rtc);
368
369 /* write magic */
370 writel(magic, &rtc->scratch1);
371}
372#endif
373
Tom Rini6a0d8032013-08-30 16:28:44 -0400374/*
Tom Rini196311d2014-05-21 12:57:22 -0400375 * In the case of non-SPL based booting we'll want to call these
376 * functions a tiny bit later as it will require gd to be set and cleared
377 * and that's not true in s_init in this case so we cannot do it there.
378 */
379int board_early_init_f(void)
380{
Tom Rini196311d2014-05-21 12:57:22 -0400381 set_mux_conf_regs();
Marek Vasutb2a2bf42019-05-25 22:40:35 +0200382 prcm_init();
Tero Kristo7619bad2018-03-17 13:32:52 +0530383#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT)
384 update_rtc_magic();
385#endif
Tom Rini196311d2014-05-21 12:57:22 -0400386 return 0;
387}
388
389/*
Tom Rini6a0d8032013-08-30 16:28:44 -0400390 * This function is the place to do per-board things such as ramp up the
391 * MPU clock frequency.
392 */
393__weak void am33xx_spl_board_init(void)
394{
395}
396
Heiko Schocher16678eb2013-11-04 14:05:00 +0100397#if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
Heiko Schocher06604812013-07-30 10:48:54 +0530398static void rtc32k_enable(void)
Heiko Schocher49f78362013-06-05 07:47:56 +0200399{
Tom Rini155d4242013-08-28 09:00:28 -0400400 struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE;
Heiko Schocher49f78362013-06-05 07:47:56 +0200401
Tero Kristo7619bad2018-03-17 13:32:52 +0530402 rtc32k_unlock(rtc);
Heiko Schocher49f78362013-06-05 07:47:56 +0200403
404 /* Enable the RTC 32K OSC by setting bits 3 and 6. */
405 writel((1 << 3) | (1 << 6), &rtc->osc);
406}
Heiko Schocher16678eb2013-11-04 14:05:00 +0100407#endif
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200408
Heiko Schocher06604812013-07-30 10:48:54 +0530409static void uart_soft_reset(void)
Heiko Schocher7ea7f682013-06-04 11:00:57 +0200410{
411 struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE;
412 u32 regval;
413
414 regval = readl(&uart_base->uartsyscfg);
415 regval |= UART_RESET;
416 writel(regval, &uart_base->uartsyscfg);
417 while ((readl(&uart_base->uartsyssts) &
418 UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK)
419 ;
420
421 /* Disable smart idle */
422 regval = readl(&uart_base->uartsyscfg);
423 regval |= UART_SMART_IDLE_EN;
424 writel(regval, &uart_base->uartsyscfg);
425}
Heiko Schocher06604812013-07-30 10:48:54 +0530426
427static void watchdog_disable(void)
428{
429 struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE;
430
431 writel(0xAAAA, &wdtimer->wdtwspr);
432 while (readl(&wdtimer->wdtwwps) != 0x0)
433 ;
434 writel(0x5555, &wdtimer->wdtwspr);
435 while (readl(&wdtimer->wdtwwps) != 0x0)
436 ;
437}
Heiko Schocher06604812013-07-30 10:48:54 +0530438
Tero Kristo7619bad2018-03-17 13:32:52 +0530439#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT)
440/*
441 * Check if we are executing rtc-only + DDR mode, and resume from it if needed
442 */
443static void rtc_only(void)
444{
445 struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE;
Russ Dill025a0d42018-03-20 12:23:00 +0530446 struct prm_device_inst *prm_device =
447 (struct prm_device_inst *)PRM_DEVICE_INST;
448
Brad Griffis6fe3e5b2019-04-29 09:59:30 +0530449 u32 scratch1, sdrc;
Tero Kristo7619bad2018-03-17 13:32:52 +0530450 void (*resume_func)(void);
451
452 scratch1 = readl(&rtc->scratch1);
453
454 /*
455 * Check RTC scratch against RTC_MAGIC_VAL, RTC_MAGIC_VAL is only
456 * written to this register when we want to wake up from RTC only
457 * with DDR in self-refresh mode. Contents of the RTC_SCRATCH1:
458 * bits 0-15: RTC_MAGIC_VAL
459 * bits 16-31: board type (needed for sdram_init)
460 */
461 if ((scratch1 & 0xffff) != RTC_MAGIC_VAL)
462 return;
463
464 rtc32k_unlock(rtc);
465
466 /* Clear RTC magic */
467 writel(0, &rtc->scratch1);
468
469 /*
470 * Update board type based on value stored on RTC_SCRATCH1, this
471 * is done so that we don't need to read the board type from eeprom
472 * over i2c bus which is expensive
473 */
474 rtc_only_update_board_type(scratch1 >> RTC_BOARD_TYPE_SHIFT);
475
Russ Dill025a0d42018-03-20 12:23:00 +0530476 /*
477 * Enable EMIF_DEVOFF in PRCM_PRM_EMIF_CTRL to indicate to EMIF we
478 * are resuming from self-refresh. This avoids an unnecessary re-init
479 * of the DDR. The re-init takes time and we would need to wait for
480 * it to complete before accessing DDR to avoid L3 NOC errors.
481 */
482 writel(EMIF_CTRL_DEVOFF, &prm_device->emif_ctrl);
483
Tero Kristo7619bad2018-03-17 13:32:52 +0530484 rtc_only_prcm_init();
485 sdram_init();
486
Brad Griffis6fe3e5b2019-04-29 09:59:30 +0530487 /* Check EMIF4D_SDRAM_CONFIG[31:29] SDRAM_TYPE */
488 /* Only perform leveling if SDRAM_TYPE = 3 (DDR3) */
489 sdrc = readl(AM43XX_EMIF_BASE + AM43XX_SDRAM_CONFIG_OFFSET);
490
491 sdrc &= AM43XX_SDRAM_TYPE_MASK;
492 sdrc >>= AM43XX_SDRAM_TYPE_SHIFT;
493
494 if (sdrc == AM43XX_SDRAM_TYPE_DDR3) {
495 writel(AM43XX_RDWRLVLFULL_START,
496 AM43XX_EMIF_BASE +
497 AM43XX_READ_WRITE_LEVELING_CTRL_OFFSET);
498 mdelay(1);
499
500am43xx_wait:
501 sdrc = readl(AM43XX_EMIF_BASE +
502 AM43XX_READ_WRITE_LEVELING_CTRL_OFFSET);
503 if (sdrc == AM43XX_RDWRLVLFULL_START)
504 goto am43xx_wait;
505 }
506
Tero Kristo7619bad2018-03-17 13:32:52 +0530507 resume_func = (void *)readl(&rtc->scratch0);
508 if (resume_func)
509 resume_func();
510}
511#endif
512
Heiko Schocher06604812013-07-30 10:48:54 +0530513void s_init(void)
514{
Tero Kristo7619bad2018-03-17 13:32:52 +0530515#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT)
516 rtc_only();
517#endif
Lokesh Vutlac704a992016-10-14 10:35:23 +0530518}
519
520void early_system_init(void)
521{
Heiko Schocher06604812013-07-30 10:48:54 +0530522 /*
523 * The ROM will only have set up sufficient pinmux to allow for the
524 * first 4KiB NOR to be read, we must finish doing what we know of
525 * the NOR mux in this space in order to continue.
526 */
527#ifdef CONFIG_NOR_BOOT
528 enable_norboot_pin_mux();
529#endif
Heiko Schocher06604812013-07-30 10:48:54 +0530530 watchdog_disable();
Heiko Schocher06604812013-07-30 10:48:54 +0530531 set_uart_mux_conf();
Lokesh Vutlab64a7cb2016-10-14 10:35:24 +0530532 setup_early_clocks();
Heiko Schocher06604812013-07-30 10:48:54 +0530533 uart_soft_reset();
Lokesh Vutla4bd754d2017-06-27 13:50:56 +0530534#ifdef CONFIG_SPL_BUILD
535 /*
536 * Save the boot parameters passed from romcode.
537 * We cannot delay the saving further than this,
538 * to prevent overwrites.
539 */
540 save_omap_boot_params();
541#endif
Lokesh Vutla878d8852017-05-05 13:45:28 +0530542#ifdef CONFIG_DEBUG_UART_OMAP
543 debug_uart_init();
544#endif
Jean-Jacques Hiblot2b30b382018-12-07 14:50:45 +0100545
Faiz Abbasb442e162018-01-24 14:44:49 +0530546#ifdef CONFIG_SPL_BUILD
547 spl_early_init();
548#endif
Jean-Jacques Hiblot2b30b382018-12-07 14:50:45 +0100549
550#ifdef CONFIG_TI_I2C_BOARD_DETECT
551 do_board_detect();
552#endif
553
Heiko Schocher16678eb2013-11-04 14:05:00 +0100554#if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC)
Heiko Schocher06604812013-07-30 10:48:54 +0530555 /* Enable RTC32K clock */
556 rtc32k_enable();
Heiko Schocher16678eb2013-11-04 14:05:00 +0100557#endif
Heiko Schocher06604812013-07-30 10:48:54 +0530558}
Lokesh Vutlac704a992016-10-14 10:35:23 +0530559
560#ifdef CONFIG_SPL_BUILD
561void board_init_f(ulong dummy)
562{
Semen Protsenko00bbe962017-06-02 18:00:00 +0300563 hw_data_init();
Lokesh Vutlac704a992016-10-14 10:35:23 +0530564 early_system_init();
565 board_early_init_f();
566 sdram_init();
Lokesh Vutla86282792017-04-18 17:27:24 +0530567 /* dram_init must store complete ramsize in gd->ram_size */
568 gd->ram_size = get_ram_size(
569 (void *)CONFIG_SYS_SDRAM_BASE,
570 CONFIG_MAX_RAM_BANK_SIZE);
Lokesh Vutlac704a992016-10-14 10:35:23 +0530571}
Tom Rinid73f38f2014-03-05 14:57:47 -0500572#endif
Lokesh Vutlac704a992016-10-14 10:35:23 +0530573
574#endif
575
576int arch_cpu_init_dm(void)
577{
Semen Protsenko00bbe962017-06-02 18:00:00 +0300578 hw_data_init();
Lokesh Vutlac704a992016-10-14 10:35:23 +0530579#ifndef CONFIG_SKIP_LOWLEVEL_INIT
580 early_system_init();
581#endif
582 return 0;
583}