Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 2 | /* |
| 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 Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | d12010b | 2014-10-22 21:37:10 -0600 | [diff] [blame] | 11 | #include <dm.h> |
Lokesh Vutla | 878d885 | 2017-05-05 13:45:28 +0530 | [diff] [blame] | 12 | #include <debug_uart.h> |
Tom Rini | 973b663 | 2012-07-30 16:13:10 -0700 | [diff] [blame] | 13 | #include <errno.h> |
Simon Glass | 7fe32b3 | 2022-03-04 08:43:05 -0700 | [diff] [blame] | 14 | #include <event.h> |
Simon Glass | 9b4a205 | 2019-12-28 10:45:05 -0700 | [diff] [blame] | 15 | #include <init.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 16 | #include <net.h> |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 17 | #include <ns16550.h> |
Faiz Abbas | 41cf3cb | 2020-09-14 12:11:15 +0530 | [diff] [blame] | 18 | #include <omap3_spi.h> |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 19 | #include <spl.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 20 | #include <asm/arch/cpu.h> |
| 21 | #include <asm/arch/hardware.h> |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 22 | #include <asm/arch/omap.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 23 | #include <asm/arch/ddr_defs.h> |
| 24 | #include <asm/arch/clock.h> |
Steve Sakoman | 3b97152 | 2012-06-04 05:35:34 +0000 | [diff] [blame] | 25 | #include <asm/arch/gpio.h> |
Jean-Jacques Hiblot | 0e6e67c | 2018-12-07 14:50:43 +0100 | [diff] [blame] | 26 | #include <asm/arch/i2c.h> |
Moses Christopher | 050531d | 2021-06-11 16:13:34 +0000 | [diff] [blame] | 27 | #if IS_ENABLED(CONFIG_TARGET_AM335X_GUARDIAN) |
| 28 | #include <asm/arch/mem-guardian.h> |
| 29 | #else |
Ilya Yanok | 8eb16b7 | 2012-11-06 13:06:30 +0000 | [diff] [blame] | 30 | #include <asm/arch/mem.h> |
Moses Christopher | 050531d | 2021-06-11 16:13:34 +0000 | [diff] [blame] | 31 | #endif |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 32 | #include <asm/arch/mmc_host_def.h> |
Tom Rini | db7dd81 | 2012-07-31 10:50:01 -0700 | [diff] [blame] | 33 | #include <asm/arch/sys_proto.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 34 | #include <asm/global_data.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 35 | #include <asm/io.h> |
Tom Rini | fda35eb | 2012-07-03 08:51:34 -0700 | [diff] [blame] | 36 | #include <asm/emif.h> |
Tom Rini | 65d750b | 2012-07-31 08:55:01 -0700 | [diff] [blame] | 37 | #include <asm/gpio.h> |
Semen Protsenko | 00bbe96 | 2017-06-02 18:00:00 +0300 | [diff] [blame] | 38 | #include <asm/omap_common.h> |
Tom Rini | 973b663 | 2012-07-30 16:13:10 -0700 | [diff] [blame] | 39 | #include <i2c.h> |
| 40 | #include <miiphy.h> |
| 41 | #include <cpsw.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 42 | #include <linux/delay.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 43 | #include <linux/errno.h> |
Tom Rini | 6a0d803 | 2013-08-30 16:28:44 -0400 | [diff] [blame] | 44 | #include <linux/compiler.h> |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 45 | #include <linux/usb/ch9.h> |
| 46 | #include <linux/usb/gadget.h> |
| 47 | #include <linux/usb/musb.h> |
| 48 | #include <asm/omap_musb.h> |
Tom Rini | 155d424 | 2013-08-28 09:00:28 -0400 | [diff] [blame] | 49 | #include <asm/davinci_rtc.h> |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 50 | |
Brad Griffis | 6fe3e5b | 2019-04-29 09:59:30 +0530 | [diff] [blame] | 51 | #define AM43XX_EMIF_BASE 0x4C000000 |
| 52 | #define AM43XX_SDRAM_CONFIG_OFFSET 0x8 |
| 53 | #define AM43XX_SDRAM_TYPE_MASK 0xE0000000 |
| 54 | #define AM43XX_SDRAM_TYPE_SHIFT 29 |
| 55 | #define AM43XX_SDRAM_TYPE_DDR3 3 |
| 56 | #define AM43XX_READ_WRITE_LEVELING_CTRL_OFFSET 0xDC |
| 57 | #define AM43XX_RDWRLVLFULL_START 0x80000000 |
| 58 | |
Faiz Abbas | 41cf3cb | 2020-09-14 12:11:15 +0530 | [diff] [blame] | 59 | /* SPI flash. */ |
| 60 | #if CONFIG_IS_ENABLED(DM_SPI) && !CONFIG_IS_ENABLED(OF_CONTROL) |
| 61 | #define AM33XX_SPI0_BASE 0x48030000 |
| 62 | #define AM33XX_SPI0_OFFSET (AM33XX_SPI0_BASE + OMAP4_MCSPI_REG_OFFSET) |
| 63 | #endif |
| 64 | |
Chandan Nath | 5289e83 | 2011-10-14 02:58:26 +0000 | [diff] [blame] | 65 | DECLARE_GLOBAL_DATA_PTR; |
| 66 | |
Tom Rini | 8627733 | 2017-05-16 14:46:35 -0400 | [diff] [blame] | 67 | int dram_init(void) |
| 68 | { |
Tom Rini | a2ac2b9 | 2021-08-27 21:18:30 -0400 | [diff] [blame] | 69 | #if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT) |
Tom Rini | 8627733 | 2017-05-16 14:46:35 -0400 | [diff] [blame] | 70 | sdram_init(); |
| 71 | #endif |
| 72 | |
| 73 | /* dram_init must store complete ramsize in gd->ram_size */ |
| 74 | gd->ram_size = get_ram_size( |
| 75 | (void *)CONFIG_SYS_SDRAM_BASE, |
| 76 | CONFIG_MAX_RAM_BANK_SIZE); |
| 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | int dram_init_banksize(void) |
| 81 | { |
| 82 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 83 | gd->bd->bi_dram[0].size = gd->ram_size; |
| 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | |
Tom Rini | 75507d5 | 2015-12-06 11:09:59 -0500 | [diff] [blame] | 88 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 89 | static const struct ns16550_plat am33xx_serial[] = { |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 90 | { .base = CONFIG_SYS_NS16550_COM1, .reg_shift = 2, |
| 91 | .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, }, |
Tom Rini | 1480fdf | 2015-07-31 19:55:08 -0400 | [diff] [blame] | 92 | # ifdef CONFIG_SYS_NS16550_COM2 |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 93 | { .base = CONFIG_SYS_NS16550_COM2, .reg_shift = 2, |
| 94 | .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, }, |
Tom Rini | 1480fdf | 2015-07-31 19:55:08 -0400 | [diff] [blame] | 95 | # ifdef CONFIG_SYS_NS16550_COM3 |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 96 | { .base = CONFIG_SYS_NS16550_COM3, .reg_shift = 2, |
| 97 | .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, }, |
| 98 | { .base = CONFIG_SYS_NS16550_COM4, .reg_shift = 2, |
| 99 | .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, }, |
| 100 | { .base = CONFIG_SYS_NS16550_COM5, .reg_shift = 2, |
| 101 | .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, }, |
| 102 | { .base = CONFIG_SYS_NS16550_COM6, .reg_shift = 2, |
| 103 | .clock = CONFIG_SYS_NS16550_CLK, .fcr = UART_FCR_DEFVAL, }, |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 104 | # endif |
Tom Rini | 1480fdf | 2015-07-31 19:55:08 -0400 | [diff] [blame] | 105 | # endif |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 106 | }; |
| 107 | |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 108 | U_BOOT_DRVINFOS(am33xx_uarts) = { |
Tom Rini | 75507d5 | 2015-12-06 11:09:59 -0500 | [diff] [blame] | 109 | { "ns16550_serial", &am33xx_serial[0] }, |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 110 | # ifdef CONFIG_SYS_NS16550_COM2 |
Tom Rini | 75507d5 | 2015-12-06 11:09:59 -0500 | [diff] [blame] | 111 | { "ns16550_serial", &am33xx_serial[1] }, |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 112 | # ifdef CONFIG_SYS_NS16550_COM3 |
Tom Rini | 75507d5 | 2015-12-06 11:09:59 -0500 | [diff] [blame] | 113 | { "ns16550_serial", &am33xx_serial[2] }, |
| 114 | { "ns16550_serial", &am33xx_serial[3] }, |
| 115 | { "ns16550_serial", &am33xx_serial[4] }, |
| 116 | { "ns16550_serial", &am33xx_serial[5] }, |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 117 | # endif |
| 118 | # endif |
| 119 | }; |
Simon Glass | 4119e06 | 2014-10-22 21:37:11 -0600 | [diff] [blame] | 120 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 121 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 122 | static const struct omap_i2c_plat am33xx_i2c[] = { |
Jean-Jacques Hiblot | 0e6e67c | 2018-12-07 14:50:43 +0100 | [diff] [blame] | 123 | { I2C_BASE1, 100000, OMAP_I2C_REV_V2}, |
| 124 | { I2C_BASE2, 100000, OMAP_I2C_REV_V2}, |
| 125 | { I2C_BASE3, 100000, OMAP_I2C_REV_V2}, |
| 126 | }; |
| 127 | |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 128 | U_BOOT_DRVINFOS(am33xx_i2c) = { |
Jean-Jacques Hiblot | 0e6e67c | 2018-12-07 14:50:43 +0100 | [diff] [blame] | 129 | { "i2c_omap", &am33xx_i2c[0] }, |
| 130 | { "i2c_omap", &am33xx_i2c[1] }, |
| 131 | { "i2c_omap", &am33xx_i2c[2] }, |
| 132 | }; |
| 133 | #endif |
| 134 | |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 135 | #if CONFIG_IS_ENABLED(DM_GPIO) |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 136 | static const struct omap_gpio_plat am33xx_gpio[] = { |
Tom Rini | 90345c9 | 2016-01-05 12:17:15 -0500 | [diff] [blame] | 137 | { 0, AM33XX_GPIO0_BASE }, |
| 138 | { 1, AM33XX_GPIO1_BASE }, |
| 139 | { 2, AM33XX_GPIO2_BASE }, |
| 140 | { 3, AM33XX_GPIO3_BASE }, |
| 141 | #ifdef CONFIG_AM43XX |
| 142 | { 4, AM33XX_GPIO4_BASE }, |
| 143 | { 5, AM33XX_GPIO5_BASE }, |
| 144 | #endif |
| 145 | }; |
| 146 | |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 147 | U_BOOT_DRVINFOS(am33xx_gpios) = { |
Tom Rini | 90345c9 | 2016-01-05 12:17:15 -0500 | [diff] [blame] | 148 | { "gpio_omap", &am33xx_gpio[0] }, |
| 149 | { "gpio_omap", &am33xx_gpio[1] }, |
| 150 | { "gpio_omap", &am33xx_gpio[2] }, |
| 151 | { "gpio_omap", &am33xx_gpio[3] }, |
| 152 | #ifdef CONFIG_AM43XX |
| 153 | { "gpio_omap", &am33xx_gpio[4] }, |
| 154 | { "gpio_omap", &am33xx_gpio[5] }, |
| 155 | #endif |
| 156 | }; |
| 157 | #endif |
Faiz Abbas | 41cf3cb | 2020-09-14 12:11:15 +0530 | [diff] [blame] | 158 | #if CONFIG_IS_ENABLED(DM_SPI) && !CONFIG_IS_ENABLED(OF_CONTROL) |
| 159 | static const struct omap3_spi_plat omap3_spi_pdata = { |
| 160 | .regs = (struct mcspi *)AM33XX_SPI0_OFFSET, |
| 161 | .pin_dir = MCSPI_PINDIR_D0_IN_D1_OUT, |
| 162 | }; |
| 163 | |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 164 | U_BOOT_DRVINFO(am33xx_spi) = { |
Faiz Abbas | 41cf3cb | 2020-09-14 12:11:15 +0530 | [diff] [blame] | 165 | .name = "omap3_spi", |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 166 | .plat = &omap3_spi_pdata, |
Faiz Abbas | 41cf3cb | 2020-09-14 12:11:15 +0530 | [diff] [blame] | 167 | }; |
| 168 | #endif |
Tom Rini | 90345c9 | 2016-01-05 12:17:15 -0500 | [diff] [blame] | 169 | #endif |
Simon Glass | d12010b | 2014-10-22 21:37:10 -0600 | [diff] [blame] | 170 | |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 171 | #if !CONFIG_IS_ENABLED(DM_GPIO) |
Dave Gerlach | cd8341b | 2014-02-10 11:41:49 -0500 | [diff] [blame] | 172 | static const struct gpio_bank gpio_bank_am33xx[] = { |
Tom Rini | 0a9e340 | 2015-07-31 19:55:09 -0400 | [diff] [blame] | 173 | { (void *)AM33XX_GPIO0_BASE }, |
| 174 | { (void *)AM33XX_GPIO1_BASE }, |
| 175 | { (void *)AM33XX_GPIO2_BASE }, |
| 176 | { (void *)AM33XX_GPIO3_BASE }, |
Dave Gerlach | cd8341b | 2014-02-10 11:41:49 -0500 | [diff] [blame] | 177 | #ifdef CONFIG_AM43XX |
Tom Rini | 0a9e340 | 2015-07-31 19:55:09 -0400 | [diff] [blame] | 178 | { (void *)AM33XX_GPIO4_BASE }, |
| 179 | { (void *)AM33XX_GPIO5_BASE }, |
Dave Gerlach | cd8341b | 2014-02-10 11:41:49 -0500 | [diff] [blame] | 180 | #endif |
Steve Sakoman | 3b97152 | 2012-06-04 05:35:34 +0000 | [diff] [blame] | 181 | }; |
| 182 | |
| 183 | const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx; |
Simon Glass | d12010b | 2014-10-22 21:37:10 -0600 | [diff] [blame] | 184 | #endif |
| 185 | |
Jean-Jacques Hiblot | d5abcf9 | 2017-02-01 11:39:14 +0100 | [diff] [blame] | 186 | #if defined(CONFIG_MMC_OMAP_HS) |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 187 | int cpu_mmc_init(struct bd_info *bis) |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 188 | { |
Tom Rini | 0689a2e | 2012-08-08 10:31:08 -0700 | [diff] [blame] | 189 | int ret; |
Peter Korsgaard | 75a2388 | 2012-10-18 01:21:10 +0000 | [diff] [blame] | 190 | |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 191 | ret = omap_mmc_init(0, 0, 0, -1, -1); |
Tom Rini | 0689a2e | 2012-08-08 10:31:08 -0700 | [diff] [blame] | 192 | if (ret) |
| 193 | return ret; |
| 194 | |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 195 | return omap_mmc_init(1, 0, 0, -1, -1); |
Chandan Nath | 876bdd6 | 2012-01-09 20:38:58 +0000 | [diff] [blame] | 196 | } |
| 197 | #endif |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 198 | |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 199 | /* |
| 200 | * RTC only with DDR in self-refresh mode magic value, checked against during |
| 201 | * boot to see if we have a valid config. This should be in sync with the value |
| 202 | * that will be in drivers/soc/ti/pm33xx.c. |
| 203 | */ |
| 204 | #define RTC_MAGIC_VAL 0x8cd0 |
| 205 | |
| 206 | /* Board type field bit shift for RTC only with DDR in self-refresh mode */ |
| 207 | #define RTC_BOARD_TYPE_SHIFT 16 |
| 208 | |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 209 | /* AM33XX has two MUSB controllers which can be host or gadget */ |
Tom Rini | 6815a66 | 2022-03-21 21:33:27 -0400 | [diff] [blame^] | 210 | #if (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1)) && \ |
| 211 | defined(CONFIG_SPL_BUILD) |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 212 | |
| 213 | static struct musb_hdrc_config musb_config = { |
| 214 | .multipoint = 1, |
| 215 | .dyn_fifo = 1, |
| 216 | .num_eps = 16, |
| 217 | .ram_bits = 12, |
| 218 | }; |
| 219 | |
Tom Rini | 6815a66 | 2022-03-21 21:33:27 -0400 | [diff] [blame^] | 220 | #ifdef CONFIG_AM335X_USB0 |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 221 | static struct ti_musb_plat usb0 = { |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 222 | .base = (void *)USB0_OTG_BASE, |
| 223 | .ctrl_mod_base = &((struct ctrl_dev *)CTRL_DEVICE_BASE)->usb_ctrl0, |
| 224 | .plat = { |
| 225 | .config = &musb_config, |
| 226 | .power = 50, |
| 227 | .platform_ops = &musb_dsps_ops, |
| 228 | }, |
| 229 | }; |
Tom Rini | 6815a66 | 2022-03-21 21:33:27 -0400 | [diff] [blame^] | 230 | #endif |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 231 | |
Tom Rini | 6815a66 | 2022-03-21 21:33:27 -0400 | [diff] [blame^] | 232 | #ifdef CONFIG_AM335X_USB1 |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 233 | static struct ti_musb_plat usb1 = { |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 234 | .base = (void *)USB1_OTG_BASE, |
| 235 | .ctrl_mod_base = &((struct ctrl_dev *)CTRL_DEVICE_BASE)->usb_ctrl1, |
| 236 | .plat = { |
| 237 | .config = &musb_config, |
| 238 | .power = 50, |
| 239 | .platform_ops = &musb_dsps_ops, |
| 240 | }, |
| 241 | }; |
Tom Rini | 6815a66 | 2022-03-21 21:33:27 -0400 | [diff] [blame^] | 242 | #endif |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 243 | |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 244 | U_BOOT_DRVINFOS(am33xx_usbs) = { |
Tom Rini | ae3f467 | 2022-03-11 23:07:29 -0500 | [diff] [blame] | 245 | #ifdef CONFIG_AM335X_USB0_PERIPHERAL |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 246 | { "ti-musb-peripheral", &usb0 }, |
Tom Rini | ae3f467 | 2022-03-11 23:07:29 -0500 | [diff] [blame] | 247 | #elif defined(CONFIG_AM335X_USB0_HOST) |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 248 | { "ti-musb-host", &usb0 }, |
| 249 | #endif |
Tom Rini | ae3f467 | 2022-03-11 23:07:29 -0500 | [diff] [blame] | 250 | #ifdef CONFIG_AM335X_USB1_PERIPHERAL |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 251 | { "ti-musb-peripheral", &usb1 }, |
Tom Rini | ae3f467 | 2022-03-11 23:07:29 -0500 | [diff] [blame] | 252 | #elif defined(CONFIG_AM335X_USB1_HOST) |
Jean-Jacques Hiblot | 7a43dd7 | 2018-12-04 11:30:58 +0100 | [diff] [blame] | 253 | { "ti-musb-host", &usb1 }, |
| 254 | #endif |
| 255 | }; |
| 256 | |
| 257 | int arch_misc_init(void) |
| 258 | { |
| 259 | return 0; |
| 260 | } |
Alexandru Gagniuc | 409a81d | 2017-02-06 19:17:33 -0800 | [diff] [blame] | 261 | #else /* CONFIG_USB_MUSB_* && CONFIG_AM335X_USB* && !CONFIG_DM_USB */ |
| 262 | |
| 263 | int arch_misc_init(void) |
| 264 | { |
Mugunthan V N | 3aec264 | 2016-11-17 14:38:09 +0530 | [diff] [blame] | 265 | struct udevice *dev; |
| 266 | int ret; |
| 267 | |
| 268 | ret = uclass_first_device(UCLASS_MISC, &dev); |
| 269 | if (ret || !dev) |
| 270 | return ret; |
Mugunthan V N | ba7916c | 2016-11-17 14:38:13 +0530 | [diff] [blame] | 271 | |
| 272 | #if defined(CONFIG_DM_ETH) && defined(CONFIG_USB_ETHER) |
| 273 | ret = usb_ether_init(); |
| 274 | if (ret) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 275 | pr_err("USB ether init failed\n"); |
Mugunthan V N | ba7916c | 2016-11-17 14:38:13 +0530 | [diff] [blame] | 276 | return ret; |
| 277 | } |
| 278 | #endif |
Alexandru Gagniuc | 409a81d | 2017-02-06 19:17:33 -0800 | [diff] [blame] | 279 | |
Ilya Yanok | 7df5cf3 | 2012-11-06 13:48:23 +0000 | [diff] [blame] | 280 | return 0; |
| 281 | } |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 282 | |
Alexandru Gagniuc | 409a81d | 2017-02-06 19:17:33 -0800 | [diff] [blame] | 283 | #endif /* CONFIG_USB_MUSB_* && CONFIG_AM335X_USB* && !CONFIG_DM_USB */ |
| 284 | |
Tom Rini | a2ac2b9 | 2021-08-27 21:18:30 -0400 | [diff] [blame] | 285 | #if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT) |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 286 | |
| 287 | #if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC) || \ |
| 288 | (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT)) |
| 289 | static void rtc32k_unlock(struct davinci_rtc *rtc) |
| 290 | { |
| 291 | /* |
| 292 | * Unlock the RTC's registers. For more details please see the |
| 293 | * RTC_SS section of the TRM. In order to unlock we need to |
| 294 | * write these specific values (keys) in this order. |
| 295 | */ |
| 296 | writel(RTC_KICK0R_WE, &rtc->kick0r); |
| 297 | writel(RTC_KICK1R_WE, &rtc->kick1r); |
| 298 | } |
| 299 | #endif |
| 300 | |
| 301 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT) |
| 302 | /* |
| 303 | * Write contents of the RTC_SCRATCH1 register based on board type |
| 304 | * Two things are passed |
| 305 | * on. First 16 bits (0:15) are written with RTC_MAGIC value. Once the |
| 306 | * control gets to kernel, kernel reads the scratchpad register and gets to |
| 307 | * know that bootloader has rtc_only support. |
| 308 | * |
| 309 | * Second important thing is the board type (16:31). This is needed in the |
| 310 | * rtc_only boot where in we want to avoid costly i2c reads to eeprom to |
| 311 | * identify the board type and we go ahead and copy the board strings to |
| 312 | * am43xx_board_name. |
| 313 | */ |
| 314 | void update_rtc_magic(void) |
| 315 | { |
| 316 | struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE; |
| 317 | u32 magic = RTC_MAGIC_VAL; |
| 318 | |
| 319 | magic |= (rtc_only_get_board_type() << RTC_BOARD_TYPE_SHIFT); |
| 320 | |
| 321 | rtc32k_unlock(rtc); |
| 322 | |
| 323 | /* write magic */ |
| 324 | writel(magic, &rtc->scratch1); |
| 325 | } |
| 326 | #endif |
| 327 | |
Tom Rini | 6a0d803 | 2013-08-30 16:28:44 -0400 | [diff] [blame] | 328 | /* |
Tom Rini | 196311d | 2014-05-21 12:57:22 -0400 | [diff] [blame] | 329 | * In the case of non-SPL based booting we'll want to call these |
| 330 | * functions a tiny bit later as it will require gd to be set and cleared |
| 331 | * and that's not true in s_init in this case so we cannot do it there. |
| 332 | */ |
| 333 | int board_early_init_f(void) |
| 334 | { |
Tom Rini | 196311d | 2014-05-21 12:57:22 -0400 | [diff] [blame] | 335 | set_mux_conf_regs(); |
Marek Vasut | b2a2bf4 | 2019-05-25 22:40:35 +0200 | [diff] [blame] | 336 | prcm_init(); |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 337 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT) |
| 338 | update_rtc_magic(); |
| 339 | #endif |
Tom Rini | 196311d | 2014-05-21 12:57:22 -0400 | [diff] [blame] | 340 | return 0; |
| 341 | } |
| 342 | |
| 343 | /* |
Tom Rini | 6a0d803 | 2013-08-30 16:28:44 -0400 | [diff] [blame] | 344 | * This function is the place to do per-board things such as ramp up the |
| 345 | * MPU clock frequency. |
| 346 | */ |
| 347 | __weak void am33xx_spl_board_init(void) |
| 348 | { |
| 349 | } |
| 350 | |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 351 | #if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC) |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 352 | static void rtc32k_enable(void) |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 353 | { |
Tom Rini | 155d424 | 2013-08-28 09:00:28 -0400 | [diff] [blame] | 354 | struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE; |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 355 | |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 356 | rtc32k_unlock(rtc); |
Heiko Schocher | 49f7836 | 2013-06-05 07:47:56 +0200 | [diff] [blame] | 357 | |
| 358 | /* Enable the RTC 32K OSC by setting bits 3 and 6. */ |
| 359 | writel((1 << 3) | (1 << 6), &rtc->osc); |
| 360 | } |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 361 | #endif |
Heiko Schocher | 7ea7f68 | 2013-06-04 11:00:57 +0200 | [diff] [blame] | 362 | |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 363 | static void uart_soft_reset(void) |
Heiko Schocher | 7ea7f68 | 2013-06-04 11:00:57 +0200 | [diff] [blame] | 364 | { |
| 365 | struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE; |
| 366 | u32 regval; |
| 367 | |
| 368 | regval = readl(&uart_base->uartsyscfg); |
| 369 | regval |= UART_RESET; |
| 370 | writel(regval, &uart_base->uartsyscfg); |
| 371 | while ((readl(&uart_base->uartsyssts) & |
| 372 | UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK) |
| 373 | ; |
| 374 | |
| 375 | /* Disable smart idle */ |
| 376 | regval = readl(&uart_base->uartsyscfg); |
| 377 | regval |= UART_SMART_IDLE_EN; |
| 378 | writel(regval, &uart_base->uartsyscfg); |
| 379 | } |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 380 | |
| 381 | static void watchdog_disable(void) |
| 382 | { |
| 383 | struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE; |
| 384 | |
| 385 | writel(0xAAAA, &wdtimer->wdtwspr); |
| 386 | while (readl(&wdtimer->wdtwwps) != 0x0) |
| 387 | ; |
| 388 | writel(0x5555, &wdtimer->wdtwspr); |
| 389 | while (readl(&wdtimer->wdtwwps) != 0x0) |
| 390 | ; |
| 391 | } |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 392 | |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 393 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT) |
| 394 | /* |
| 395 | * Check if we are executing rtc-only + DDR mode, and resume from it if needed |
| 396 | */ |
| 397 | static void rtc_only(void) |
| 398 | { |
| 399 | struct davinci_rtc *rtc = (struct davinci_rtc *)RTC_BASE; |
Russ Dill | 025a0d4 | 2018-03-20 12:23:00 +0530 | [diff] [blame] | 400 | struct prm_device_inst *prm_device = |
| 401 | (struct prm_device_inst *)PRM_DEVICE_INST; |
| 402 | |
Brad Griffis | 6fe3e5b | 2019-04-29 09:59:30 +0530 | [diff] [blame] | 403 | u32 scratch1, sdrc; |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 404 | void (*resume_func)(void); |
| 405 | |
| 406 | scratch1 = readl(&rtc->scratch1); |
| 407 | |
| 408 | /* |
| 409 | * Check RTC scratch against RTC_MAGIC_VAL, RTC_MAGIC_VAL is only |
| 410 | * written to this register when we want to wake up from RTC only |
| 411 | * with DDR in self-refresh mode. Contents of the RTC_SCRATCH1: |
| 412 | * bits 0-15: RTC_MAGIC_VAL |
| 413 | * bits 16-31: board type (needed for sdram_init) |
| 414 | */ |
| 415 | if ((scratch1 & 0xffff) != RTC_MAGIC_VAL) |
| 416 | return; |
| 417 | |
| 418 | rtc32k_unlock(rtc); |
| 419 | |
| 420 | /* Clear RTC magic */ |
| 421 | writel(0, &rtc->scratch1); |
| 422 | |
| 423 | /* |
| 424 | * Update board type based on value stored on RTC_SCRATCH1, this |
| 425 | * is done so that we don't need to read the board type from eeprom |
| 426 | * over i2c bus which is expensive |
| 427 | */ |
| 428 | rtc_only_update_board_type(scratch1 >> RTC_BOARD_TYPE_SHIFT); |
| 429 | |
Russ Dill | 025a0d4 | 2018-03-20 12:23:00 +0530 | [diff] [blame] | 430 | /* |
| 431 | * Enable EMIF_DEVOFF in PRCM_PRM_EMIF_CTRL to indicate to EMIF we |
| 432 | * are resuming from self-refresh. This avoids an unnecessary re-init |
| 433 | * of the DDR. The re-init takes time and we would need to wait for |
| 434 | * it to complete before accessing DDR to avoid L3 NOC errors. |
| 435 | */ |
| 436 | writel(EMIF_CTRL_DEVOFF, &prm_device->emif_ctrl); |
| 437 | |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 438 | rtc_only_prcm_init(); |
| 439 | sdram_init(); |
| 440 | |
Brad Griffis | 6fe3e5b | 2019-04-29 09:59:30 +0530 | [diff] [blame] | 441 | /* Check EMIF4D_SDRAM_CONFIG[31:29] SDRAM_TYPE */ |
| 442 | /* Only perform leveling if SDRAM_TYPE = 3 (DDR3) */ |
| 443 | sdrc = readl(AM43XX_EMIF_BASE + AM43XX_SDRAM_CONFIG_OFFSET); |
| 444 | |
| 445 | sdrc &= AM43XX_SDRAM_TYPE_MASK; |
| 446 | sdrc >>= AM43XX_SDRAM_TYPE_SHIFT; |
| 447 | |
| 448 | if (sdrc == AM43XX_SDRAM_TYPE_DDR3) { |
| 449 | writel(AM43XX_RDWRLVLFULL_START, |
| 450 | AM43XX_EMIF_BASE + |
| 451 | AM43XX_READ_WRITE_LEVELING_CTRL_OFFSET); |
| 452 | mdelay(1); |
| 453 | |
| 454 | am43xx_wait: |
| 455 | sdrc = readl(AM43XX_EMIF_BASE + |
| 456 | AM43XX_READ_WRITE_LEVELING_CTRL_OFFSET); |
| 457 | if (sdrc == AM43XX_RDWRLVLFULL_START) |
| 458 | goto am43xx_wait; |
| 459 | } |
| 460 | |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 461 | resume_func = (void *)readl(&rtc->scratch0); |
| 462 | if (resume_func) |
| 463 | resume_func(); |
| 464 | } |
| 465 | #endif |
| 466 | |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 467 | void s_init(void) |
| 468 | { |
Tero Kristo | 7619bad | 2018-03-17 13:32:52 +0530 | [diff] [blame] | 469 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_RTC_DDR_SUPPORT) |
| 470 | rtc_only(); |
| 471 | #endif |
Lokesh Vutla | c704a99 | 2016-10-14 10:35:23 +0530 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | void early_system_init(void) |
| 475 | { |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 476 | /* |
| 477 | * The ROM will only have set up sufficient pinmux to allow for the |
| 478 | * first 4KiB NOR to be read, we must finish doing what we know of |
| 479 | * the NOR mux in this space in order to continue. |
| 480 | */ |
| 481 | #ifdef CONFIG_NOR_BOOT |
| 482 | enable_norboot_pin_mux(); |
| 483 | #endif |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 484 | watchdog_disable(); |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 485 | set_uart_mux_conf(); |
Lokesh Vutla | b64a7cb | 2016-10-14 10:35:24 +0530 | [diff] [blame] | 486 | setup_early_clocks(); |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 487 | uart_soft_reset(); |
Lokesh Vutla | 4bd754d | 2017-06-27 13:50:56 +0530 | [diff] [blame] | 488 | #ifdef CONFIG_SPL_BUILD |
| 489 | /* |
| 490 | * Save the boot parameters passed from romcode. |
| 491 | * We cannot delay the saving further than this, |
| 492 | * to prevent overwrites. |
| 493 | */ |
| 494 | save_omap_boot_params(); |
| 495 | #endif |
Lokesh Vutla | 878d885 | 2017-05-05 13:45:28 +0530 | [diff] [blame] | 496 | #ifdef CONFIG_DEBUG_UART_OMAP |
| 497 | debug_uart_init(); |
| 498 | #endif |
Jean-Jacques Hiblot | 2b30b38 | 2018-12-07 14:50:45 +0100 | [diff] [blame] | 499 | |
Faiz Abbas | b442e16 | 2018-01-24 14:44:49 +0530 | [diff] [blame] | 500 | #ifdef CONFIG_SPL_BUILD |
| 501 | spl_early_init(); |
| 502 | #endif |
Jean-Jacques Hiblot | 2b30b38 | 2018-12-07 14:50:45 +0100 | [diff] [blame] | 503 | |
| 504 | #ifdef CONFIG_TI_I2C_BOARD_DETECT |
| 505 | do_board_detect(); |
| 506 | #endif |
| 507 | |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 508 | #if defined(CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC) |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 509 | /* Enable RTC32K clock */ |
| 510 | rtc32k_enable(); |
Heiko Schocher | 16678eb | 2013-11-04 14:05:00 +0100 | [diff] [blame] | 511 | #endif |
Heiko Schocher | 0660481 | 2013-07-30 10:48:54 +0530 | [diff] [blame] | 512 | } |
Lokesh Vutla | c704a99 | 2016-10-14 10:35:23 +0530 | [diff] [blame] | 513 | |
| 514 | #ifdef CONFIG_SPL_BUILD |
| 515 | void board_init_f(ulong dummy) |
| 516 | { |
Semen Protsenko | 00bbe96 | 2017-06-02 18:00:00 +0300 | [diff] [blame] | 517 | hw_data_init(); |
Lokesh Vutla | c704a99 | 2016-10-14 10:35:23 +0530 | [diff] [blame] | 518 | early_system_init(); |
| 519 | board_early_init_f(); |
| 520 | sdram_init(); |
Lokesh Vutla | 8628279 | 2017-04-18 17:27:24 +0530 | [diff] [blame] | 521 | /* dram_init must store complete ramsize in gd->ram_size */ |
| 522 | gd->ram_size = get_ram_size( |
| 523 | (void *)CONFIG_SYS_SDRAM_BASE, |
| 524 | CONFIG_MAX_RAM_BANK_SIZE); |
Lokesh Vutla | c704a99 | 2016-10-14 10:35:23 +0530 | [diff] [blame] | 525 | } |
Tom Rini | d73f38f | 2014-03-05 14:57:47 -0500 | [diff] [blame] | 526 | #endif |
Lokesh Vutla | c704a99 | 2016-10-14 10:35:23 +0530 | [diff] [blame] | 527 | |
| 528 | #endif |
| 529 | |
Simon Glass | 7fe32b3 | 2022-03-04 08:43:05 -0700 | [diff] [blame] | 530 | static int am33xx_dm_post_init(void *ctx, struct event *event) |
Lokesh Vutla | c704a99 | 2016-10-14 10:35:23 +0530 | [diff] [blame] | 531 | { |
Semen Protsenko | 00bbe96 | 2017-06-02 18:00:00 +0300 | [diff] [blame] | 532 | hw_data_init(); |
Tom Rini | a2ac2b9 | 2021-08-27 21:18:30 -0400 | [diff] [blame] | 533 | #if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT) |
Lokesh Vutla | c704a99 | 2016-10-14 10:35:23 +0530 | [diff] [blame] | 534 | early_system_init(); |
| 535 | #endif |
| 536 | return 0; |
| 537 | } |
Simon Glass | 7fe32b3 | 2022-03-04 08:43:05 -0700 | [diff] [blame] | 538 | EVENT_SPY(EVT_DM_POST_INIT, am33xx_dm_post_init); |