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