Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 2 | /* |
| 3 | * |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 4 | * Common functions for OMAP4/5 based boards |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 5 | * |
| 6 | * (C) Copyright 2010 |
| 7 | * Texas Instruments, <www.ti.com> |
| 8 | * |
| 9 | * Author : |
| 10 | * Aneesh V <aneesh@ti.com> |
| 11 | * Steve Sakoman <steve@sakoman.com> |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 12 | */ |
| 13 | #include <common.h> |
Lokesh Vutla | 01fe119 | 2017-05-05 13:45:27 +0530 | [diff] [blame] | 14 | #include <debug_uart.h> |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 15 | #include <spl.h> |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 16 | #include <asm/arch/sys_proto.h> |
Alexey Brodkin | 1ace402 | 2014-02-26 17:47:58 +0400 | [diff] [blame] | 17 | #include <linux/sizes.h> |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 18 | #include <asm/emif.h> |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 19 | #include <asm/omap_common.h> |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 20 | #include <linux/compiler.h> |
R Sricharan | de63ac2 | 2013-03-04 20:04:45 +0000 | [diff] [blame] | 21 | #include <asm/system.h> |
| 22 | |
Nishanth Menon | 93e3568 | 2010-11-19 11:19:40 -0500 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 25 | void do_set_mux(u32 base, struct pad_conf_entry const *array, int size) |
| 26 | { |
| 27 | int i; |
| 28 | struct pad_conf_entry *pad = (struct pad_conf_entry *) array; |
| 29 | |
| 30 | for (i = 0; i < size; i++, pad++) |
| 31 | writew(pad->val, base + pad->offset); |
| 32 | } |
| 33 | |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 34 | static void set_mux_conf_regs(void) |
| 35 | { |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 36 | switch (omap_hw_init_context()) { |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 37 | case OMAP_INIT_CONTEXT_SPL: |
Paul Kocialkowski | 3ef56e6 | 2016-02-27 19:18:56 +0100 | [diff] [blame] | 38 | set_muxconf_regs(); |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 39 | break; |
| 40 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL: |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 41 | break; |
| 42 | case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR: |
| 43 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH: |
Paul Kocialkowski | 3ef56e6 | 2016-02-27 19:18:56 +0100 | [diff] [blame] | 44 | set_muxconf_regs(); |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 45 | break; |
| 46 | } |
| 47 | } |
| 48 | |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 49 | u32 cortex_rev(void) |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 50 | { |
| 51 | |
| 52 | unsigned int rev; |
| 53 | |
| 54 | /* Read Main ID Register (MIDR) */ |
| 55 | asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev)); |
| 56 | |
| 57 | return rev; |
| 58 | } |
| 59 | |
Tom Rini | 0ac6db2 | 2013-05-31 10:44:23 -0400 | [diff] [blame] | 60 | static void omap_rev_string(void) |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 61 | { |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 62 | u32 omap_rev = omap_revision(); |
Lokesh Vutla | de62688 | 2013-02-12 21:29:03 +0000 | [diff] [blame] | 63 | u32 soc_variant = (omap_rev & 0xF0000000) >> 28; |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 64 | u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16; |
| 65 | u32 major_rev = (omap_rev & 0x00000F00) >> 8; |
| 66 | u32 minor_rev = (omap_rev & 0x000000F0) >> 4; |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 67 | |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 68 | const char *sec_s, *package = NULL; |
Daniel Allred | 47c331e | 2016-05-19 19:10:52 -0500 | [diff] [blame] | 69 | |
| 70 | switch (get_device_type()) { |
| 71 | case TST_DEVICE: |
| 72 | sec_s = "TST"; |
| 73 | break; |
| 74 | case EMU_DEVICE: |
| 75 | sec_s = "EMU"; |
| 76 | break; |
| 77 | case HS_DEVICE: |
| 78 | sec_s = "HS"; |
| 79 | break; |
| 80 | case GP_DEVICE: |
| 81 | sec_s = "GP"; |
| 82 | break; |
| 83 | default: |
| 84 | sec_s = "?"; |
| 85 | } |
| 86 | |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 87 | #if defined(CONFIG_DRA7XX) |
| 88 | if (is_dra76x()) { |
| 89 | switch (omap_rev & 0xF) { |
| 90 | case DRA762_ABZ_PACKAGE: |
| 91 | package = "ABZ"; |
| 92 | break; |
| 93 | case DRA762_ACD_PACKAGE: |
| 94 | default: |
| 95 | package = "ACD"; |
| 96 | break; |
| 97 | } |
| 98 | } |
| 99 | #endif |
| 100 | |
Lokesh Vutla | de62688 | 2013-02-12 21:29:03 +0000 | [diff] [blame] | 101 | if (soc_variant) |
| 102 | printf("OMAP"); |
| 103 | else |
| 104 | printf("DRA"); |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 105 | printf("%x-%s ES%x.%x", omap_variant, sec_s, major_rev, minor_rev); |
| 106 | if (package) |
| 107 | printf(" %s package\n", package); |
| 108 | else |
| 109 | puts("\n"); |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 110 | } |
| 111 | |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 112 | #ifdef CONFIG_SPL_BUILD |
Tom Rini | 861a86f | 2012-08-13 11:37:56 -0700 | [diff] [blame] | 113 | void spl_display_print(void) |
| 114 | { |
| 115 | omap_rev_string(); |
| 116 | } |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 117 | #endif |
| 118 | |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 119 | void __weak srcomp_enable(void) |
| 120 | { |
| 121 | } |
| 122 | |
Kipisz, Steven | d88d6c8 | 2016-02-24 12:30:57 -0600 | [diff] [blame] | 123 | /** |
| 124 | * do_board_detect() - Detect board description |
| 125 | * |
| 126 | * Function to detect board description. This is expected to be |
| 127 | * overridden in the SoC family board file where desired. |
| 128 | */ |
| 129 | void __weak do_board_detect(void) |
| 130 | { |
| 131 | } |
| 132 | |
Keerthy | 61462cd | 2016-05-24 11:45:05 +0530 | [diff] [blame] | 133 | /** |
| 134 | * vcores_init() - Assign omap_vcores based on board |
| 135 | * |
| 136 | * Function to pick the vcores based on board. This is expected to be |
| 137 | * overridden in the SoC family board file where desired. |
| 138 | */ |
| 139 | void __weak vcores_init(void) |
| 140 | { |
| 141 | } |
| 142 | |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 143 | void s_init(void) |
| 144 | { |
| 145 | } |
| 146 | |
| 147 | /** |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 148 | * init_package_revision() - Initialize package revision |
| 149 | * |
| 150 | * Function to get the pacakage information. This is expected to be |
| 151 | * overridden in the SoC family file where desired. |
| 152 | */ |
| 153 | void __weak init_package_revision(void) |
| 154 | { |
| 155 | } |
| 156 | |
| 157 | /** |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 158 | * early_system_init - Does Early system initialization. |
| 159 | * |
| 160 | * Does early system init of watchdog, muxing, andclocks |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 161 | * Watchdog disable is done always. For the rest what gets done |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 162 | * depends on the boot mode in which this function is executed when |
| 163 | * 1. SPL running from SRAM |
| 164 | * 2. U-Boot running from FLASH |
| 165 | * 3. U-Boot loaded to SDRAM by SPL |
| 166 | * 4. U-Boot loaded to SDRAM by ROM code using the |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 167 | * Configuration Header feature |
| 168 | * Please have a look at the respective functions to see what gets |
| 169 | * done in each of these cases |
| 170 | * This function is called with SRAM stack. |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 171 | */ |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 172 | void early_system_init(void) |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 173 | { |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 174 | init_omap_revision(); |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 175 | hw_data_init(); |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 176 | init_package_revision(); |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 177 | |
Lokesh Vutla | 38f25b1 | 2012-05-29 19:26:43 +0000 | [diff] [blame] | 178 | #ifdef CONFIG_SPL_BUILD |
Lokesh Vutla | 663f6fc | 2016-07-12 14:47:41 +0530 | [diff] [blame] | 179 | if (warm_reset()) |
Lokesh Vutla | 38f25b1 | 2012-05-29 19:26:43 +0000 | [diff] [blame] | 180 | force_emif_self_refresh(); |
| 181 | #endif |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 182 | watchdog_init(); |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 183 | set_mux_conf_regs(); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 184 | #ifdef CONFIG_SPL_BUILD |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 185 | srcomp_enable(); |
Aneesh V | 4ecfcfa | 2011-09-08 11:05:56 -0400 | [diff] [blame] | 186 | do_io_settings(); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 187 | #endif |
Kipisz, Steven | 93e6253 | 2016-02-24 12:30:52 -0600 | [diff] [blame] | 188 | setup_early_clocks(); |
Lokesh Vutla | 4bd754d | 2017-06-27 13:50:56 +0530 | [diff] [blame] | 189 | #ifdef CONFIG_SPL_BUILD |
| 190 | /* |
| 191 | * Save the boot parameters passed from romcode. |
| 192 | * We cannot delay the saving further than this, |
| 193 | * to prevent overwrites. |
| 194 | */ |
| 195 | save_omap_boot_params(); |
| 196 | #endif |
Kipisz, Steven | d88d6c8 | 2016-02-24 12:30:57 -0600 | [diff] [blame] | 197 | do_board_detect(); |
Jean-Jacques Hiblot | a4d7286 | 2017-09-15 12:57:33 +0200 | [diff] [blame] | 198 | #ifdef CONFIG_SPL_BUILD |
| 199 | spl_early_init(); |
| 200 | #endif |
Keerthy | 61462cd | 2016-05-24 11:45:05 +0530 | [diff] [blame] | 201 | vcores_init(); |
Lokesh Vutla | 01fe119 | 2017-05-05 13:45:27 +0530 | [diff] [blame] | 202 | #ifdef CONFIG_DEBUG_UART_OMAP |
| 203 | debug_uart_init(); |
| 204 | #endif |
Aneesh V | 3776801 | 2011-07-21 09:10:07 -0400 | [diff] [blame] | 205 | prcm_init(); |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 208 | #ifdef CONFIG_SPL_BUILD |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 209 | void board_init_f(ulong dummy) |
| 210 | { |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 211 | early_system_init(); |
Lokesh Vutla | 7b92252 | 2014-08-04 19:42:24 +0530 | [diff] [blame] | 212 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 213 | board_early_init_f(); |
| 214 | #endif |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 215 | /* For regular u-boot sdram_init() is called from dram_init() */ |
| 216 | sdram_init(); |
Lokesh Vutla | 8628279 | 2017-04-18 17:27:24 +0530 | [diff] [blame] | 217 | gd->ram_size = omap_sdram_size(); |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 218 | } |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 219 | #endif |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 220 | |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 221 | int arch_cpu_init_dm(void) |
| 222 | { |
| 223 | early_system_init(); |
| 224 | return 0; |
| 225 | } |
| 226 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 227 | /* |
| 228 | * Routine: wait_for_command_complete |
| 229 | * Description: Wait for posting to finish on watchdog |
| 230 | */ |
| 231 | void wait_for_command_complete(struct watchdog *wd_base) |
| 232 | { |
| 233 | int pending = 1; |
| 234 | do { |
| 235 | pending = readl(&wd_base->wwps); |
| 236 | } while (pending); |
| 237 | } |
| 238 | |
| 239 | /* |
| 240 | * Routine: watchdog_init |
| 241 | * Description: Shut down watch dogs |
| 242 | */ |
| 243 | void watchdog_init(void) |
| 244 | { |
| 245 | struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE; |
| 246 | |
| 247 | writel(WD_UNLOCK1, &wd2_base->wspr); |
| 248 | wait_for_command_complete(wd2_base); |
| 249 | writel(WD_UNLOCK2, &wd2_base->wspr); |
| 250 | } |
| 251 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 252 | |
| 253 | /* |
| 254 | * This function finds the SDRAM size available in the system |
| 255 | * based on DMM section configurations |
| 256 | * This is needed because the size of memory installed may be |
| 257 | * different on different versions of the board |
| 258 | */ |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 259 | u32 omap_sdram_size(void) |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 260 | { |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 261 | u32 section, i, valid; |
| 262 | u64 sdram_start = 0, sdram_end = 0, addr, |
Lokesh Vutla | d7630da | 2014-05-12 13:49:33 +0530 | [diff] [blame] | 263 | size, total_size = 0, trap_size = 0, trap_start = 0; |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 264 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 265 | for (i = 0; i < 4; i++) { |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 266 | section = __raw_readl(DMM_BASE + i*4); |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 267 | valid = (section & EMIF_SDRC_ADDRSPC_MASK) >> |
| 268 | (EMIF_SDRC_ADDRSPC_SHIFT); |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 269 | addr = section & EMIF_SYS_ADDR_MASK; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 270 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 271 | /* See if the address is valid */ |
Tom Rini | 939911a | 2014-05-16 13:02:24 -0400 | [diff] [blame] | 272 | if ((addr >= TI_ARMV7_DRAM_ADDR_SPACE_START) && |
| 273 | (addr < TI_ARMV7_DRAM_ADDR_SPACE_END)) { |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 274 | size = ((section & EMIF_SYS_SIZE_MASK) >> |
| 275 | EMIF_SYS_SIZE_SHIFT); |
| 276 | size = 1 << size; |
| 277 | size *= SZ_16M; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 278 | |
| 279 | if (valid != DMM_SDRC_ADDR_SPC_INVALID) { |
| 280 | if (!sdram_start || (addr < sdram_start)) |
| 281 | sdram_start = addr; |
| 282 | if (!sdram_end || ((addr + size) > sdram_end)) |
| 283 | sdram_end = addr + size; |
| 284 | } else { |
| 285 | trap_size = size; |
Lokesh Vutla | d7630da | 2014-05-12 13:49:33 +0530 | [diff] [blame] | 286 | trap_start = addr; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 287 | } |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 288 | } |
| 289 | } |
Lokesh Vutla | d7630da | 2014-05-12 13:49:33 +0530 | [diff] [blame] | 290 | |
| 291 | if ((trap_start >= sdram_start) && (trap_start < sdram_end)) |
| 292 | total_size = (sdram_end - sdram_start) - (trap_size); |
| 293 | else |
| 294 | total_size = sdram_end - sdram_start; |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 295 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 296 | return total_size; |
| 297 | } |
| 298 | |
| 299 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 300 | /* |
| 301 | * Routine: dram_init |
| 302 | * Description: sets uboots idea of sdram size |
| 303 | */ |
| 304 | int dram_init(void) |
| 305 | { |
Aneesh V | 2ae610f | 2011-07-21 09:10:09 -0400 | [diff] [blame] | 306 | sdram_init(); |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 307 | gd->ram_size = omap_sdram_size(); |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * Print board information |
| 313 | */ |
| 314 | int checkboard(void) |
| 315 | { |
| 316 | puts(sysinfo.board_string); |
| 317 | return 0; |
| 318 | } |
| 319 | |
Masahiro Yamada | 365475e | 2014-02-13 18:30:26 +0900 | [diff] [blame] | 320 | #if defined(CONFIG_DISPLAY_CPUINFO) |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 321 | /* |
| 322 | * Print CPU information |
| 323 | */ |
| 324 | int print_cpuinfo(void) |
Aneesh V | 8b457fa | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 325 | { |
Andreas Müller | 761ca31 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 326 | puts("CPU : "); |
| 327 | omap_rev_string(); |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 328 | |
| 329 | return 0; |
| 330 | } |
Masahiro Yamada | 365475e | 2014-02-13 18:30:26 +0900 | [diff] [blame] | 331 | #endif |