Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 3 | * Common functions for OMAP4/5 based boards |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 4 | * |
| 5 | * (C) Copyright 2010 |
| 6 | * Texas Instruments, <www.ti.com> |
| 7 | * |
| 8 | * Author : |
| 9 | * Aneesh V <aneesh@ti.com> |
| 10 | * Steve Sakoman <steve@sakoman.com> |
| 11 | * |
| 12 | * See file CREDITS for list of people who contributed to this |
| 13 | * project. |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or |
| 16 | * modify it under the terms of the GNU General Public License as |
| 17 | * published by the Free Software Foundation; either version 2 of |
| 18 | * the License, or (at your option) any later version. |
| 19 | * |
| 20 | * This program is distributed in the hope that it will be useful, |
| 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 23 | * GNU General Public License for more details. |
| 24 | * |
| 25 | * You should have received a copy of the GNU General Public License |
| 26 | * along with this program; if not, write to the Free Software |
| 27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 28 | * MA 02111-1307 USA |
| 29 | */ |
| 30 | #include <common.h> |
Tom Rini | 28591df | 2012-08-13 12:03:19 -0700 | [diff] [blame^] | 31 | #include <spl.h> |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 32 | #include <asm/arch/sys_proto.h> |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 33 | #include <asm/sizes.h> |
Sricharan | 62a8650 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 34 | #include <asm/emif.h> |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 35 | |
Nishanth Menon | 4e5dd66 | 2010-11-19 11:19:40 -0500 | [diff] [blame] | 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 38 | void do_set_mux(u32 base, struct pad_conf_entry const *array, int size) |
| 39 | { |
| 40 | int i; |
| 41 | struct pad_conf_entry *pad = (struct pad_conf_entry *) array; |
| 42 | |
| 43 | for (i = 0; i < size; i++, pad++) |
| 44 | writew(pad->val, base + pad->offset); |
| 45 | } |
| 46 | |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 47 | static void set_mux_conf_regs(void) |
| 48 | { |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 49 | switch (omap_hw_init_context()) { |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 50 | case OMAP_INIT_CONTEXT_SPL: |
| 51 | set_muxconf_regs_essential(); |
| 52 | break; |
| 53 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL: |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 54 | #ifdef CONFIG_SYS_ENABLE_PADS_ALL |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 55 | set_muxconf_regs_non_essential(); |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 56 | #endif |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 57 | break; |
| 58 | case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR: |
| 59 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH: |
| 60 | set_muxconf_regs_essential(); |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 61 | #ifdef CONFIG_SYS_ENABLE_PADS_ALL |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 62 | set_muxconf_regs_non_essential(); |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 63 | #endif |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 64 | break; |
| 65 | } |
| 66 | } |
| 67 | |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 68 | u32 cortex_rev(void) |
Aneesh V | 162ced3 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 69 | { |
| 70 | |
| 71 | unsigned int rev; |
| 72 | |
| 73 | /* Read Main ID Register (MIDR) */ |
| 74 | asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev)); |
| 75 | |
| 76 | return rev; |
| 77 | } |
| 78 | |
Andreas Müller | 0cda7a4 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 79 | void omap_rev_string(void) |
Aneesh V | 162ced3 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 80 | { |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 81 | u32 omap_rev = omap_revision(); |
| 82 | u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16; |
| 83 | u32 major_rev = (omap_rev & 0x00000F00) >> 8; |
| 84 | u32 minor_rev = (omap_rev & 0x000000F0) >> 4; |
Aneesh V | 162ced3 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 85 | |
Andreas Müller | 0cda7a4 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 86 | printf("OMAP%x ES%x.%x\n", omap_variant, major_rev, |
Aneesh V | 162ced3 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 87 | minor_rev); |
| 88 | } |
| 89 | |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 90 | #ifdef CONFIG_SPL_BUILD |
| 91 | static void init_boot_params(void) |
| 92 | { |
| 93 | boot_params_ptr = (u32 *) &boot_params; |
| 94 | } |
Tom Rini | fe3b0c7 | 2012-08-13 11:37:56 -0700 | [diff] [blame] | 95 | |
| 96 | void spl_display_print(void) |
| 97 | { |
| 98 | omap_rev_string(); |
| 99 | } |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 100 | #endif |
| 101 | |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 102 | /* |
| 103 | * Routine: s_init |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 104 | * Description: Does early system init of watchdog, muxing, andclocks |
| 105 | * Watchdog disable is done always. For the rest what gets done |
| 106 | * depends on the boot mode in which this function is executed |
| 107 | * 1. s_init of SPL running from SRAM |
| 108 | * 2. s_init of U-Boot running from FLASH |
| 109 | * 3. s_init of U-Boot loaded to SDRAM by SPL |
| 110 | * 4. s_init of U-Boot loaded to SDRAM by ROM code using the |
| 111 | * Configuration Header feature |
| 112 | * Please have a look at the respective functions to see what gets |
| 113 | * done in each of these cases |
| 114 | * This function is called with SRAM stack. |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 115 | */ |
| 116 | void s_init(void) |
| 117 | { |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 118 | init_omap_revision(); |
Lokesh Vutla | ba87377 | 2012-05-29 19:26:43 +0000 | [diff] [blame] | 119 | #ifdef CONFIG_SPL_BUILD |
| 120 | if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0)) |
| 121 | force_emif_self_refresh(); |
| 122 | #endif |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 123 | watchdog_init(); |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 124 | set_mux_conf_regs(); |
Aneesh V | b8e60b9 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 125 | #ifdef CONFIG_SPL_BUILD |
Simon Schwarz | 01a4332 | 2011-09-14 15:14:46 -0400 | [diff] [blame] | 126 | setup_clocks_for_console(); |
Aneesh V | b8e60b9 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 127 | preloader_console_init(); |
Aneesh V | b35f7cb | 2011-09-08 11:05:56 -0400 | [diff] [blame] | 128 | do_io_settings(); |
Aneesh V | b8e60b9 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 129 | #endif |
Aneesh V | 0d2628b | 2011-07-21 09:10:07 -0400 | [diff] [blame] | 130 | prcm_init(); |
Aneesh V | b8e60b9 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 131 | #ifdef CONFIG_SPL_BUILD |
Dechesne, Nicolas | f8c6e1b | 2012-01-31 07:35:40 +0000 | [diff] [blame] | 132 | timer_init(); |
| 133 | |
Aneesh V | b8e60b9 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 134 | /* For regular u-boot sdram_init() is called from dram_init() */ |
| 135 | sdram_init(); |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 136 | init_boot_params(); |
Aneesh V | b8e60b9 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 137 | #endif |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | /* |
| 141 | * Routine: wait_for_command_complete |
| 142 | * Description: Wait for posting to finish on watchdog |
| 143 | */ |
| 144 | void wait_for_command_complete(struct watchdog *wd_base) |
| 145 | { |
| 146 | int pending = 1; |
| 147 | do { |
| 148 | pending = readl(&wd_base->wwps); |
| 149 | } while (pending); |
| 150 | } |
| 151 | |
| 152 | /* |
| 153 | * Routine: watchdog_init |
| 154 | * Description: Shut down watch dogs |
| 155 | */ |
| 156 | void watchdog_init(void) |
| 157 | { |
| 158 | struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE; |
| 159 | |
| 160 | writel(WD_UNLOCK1, &wd2_base->wspr); |
| 161 | wait_for_command_complete(wd2_base); |
| 162 | writel(WD_UNLOCK2, &wd2_base->wspr); |
| 163 | } |
| 164 | |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 165 | |
| 166 | /* |
| 167 | * This function finds the SDRAM size available in the system |
| 168 | * based on DMM section configurations |
| 169 | * This is needed because the size of memory installed may be |
| 170 | * different on different versions of the board |
| 171 | */ |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 172 | u32 omap_sdram_size(void) |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 173 | { |
SRICHARAN R | 015be79 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 174 | u32 section, i, valid; |
| 175 | u64 sdram_start = 0, sdram_end = 0, addr, |
| 176 | size, total_size = 0, trap_size = 0; |
Sricharan | 62a8650 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 177 | |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 178 | for (i = 0; i < 4; i++) { |
Sricharan | 62a8650 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 179 | section = __raw_readl(DMM_BASE + i*4); |
SRICHARAN R | 015be79 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 180 | valid = (section & EMIF_SDRC_ADDRSPC_MASK) >> |
| 181 | (EMIF_SDRC_ADDRSPC_SHIFT); |
Sricharan | 62a8650 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 182 | addr = section & EMIF_SYS_ADDR_MASK; |
SRICHARAN R | 015be79 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 183 | |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 184 | /* See if the address is valid */ |
Sricharan | 62a8650 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 185 | if ((addr >= DRAM_ADDR_SPACE_START) && |
| 186 | (addr < DRAM_ADDR_SPACE_END)) { |
| 187 | size = ((section & EMIF_SYS_SIZE_MASK) >> |
| 188 | EMIF_SYS_SIZE_SHIFT); |
| 189 | size = 1 << size; |
| 190 | size *= SZ_16M; |
SRICHARAN R | 015be79 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 191 | |
| 192 | if (valid != DMM_SDRC_ADDR_SPC_INVALID) { |
| 193 | if (!sdram_start || (addr < sdram_start)) |
| 194 | sdram_start = addr; |
| 195 | if (!sdram_end || ((addr + size) > sdram_end)) |
| 196 | sdram_end = addr + size; |
| 197 | } else { |
| 198 | trap_size = size; |
| 199 | } |
| 200 | |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 201 | } |
SRICHARAN R | 015be79 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 202 | |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 203 | } |
SRICHARAN R | 015be79 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 204 | total_size = (sdram_end - sdram_start) - (trap_size); |
Sricharan | 62a8650 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 205 | |
Aneesh V | 04bd2b9 | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 206 | return total_size; |
| 207 | } |
| 208 | |
| 209 | |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 210 | /* |
| 211 | * Routine: dram_init |
| 212 | * Description: sets uboots idea of sdram size |
| 213 | */ |
| 214 | int dram_init(void) |
| 215 | { |
Aneesh V | cc56558 | 2011-07-21 09:10:09 -0400 | [diff] [blame] | 216 | sdram_init(); |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 217 | gd->ram_size = omap_sdram_size(); |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | /* |
| 222 | * Print board information |
| 223 | */ |
| 224 | int checkboard(void) |
| 225 | { |
| 226 | puts(sysinfo.board_string); |
| 227 | return 0; |
| 228 | } |
| 229 | |
Steve Sakoman | 9bb65b5 | 2010-07-15 13:43:10 -0700 | [diff] [blame] | 230 | /* |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 231 | * get_device_type(): tell if GP/HS/EMU/TST |
| 232 | */ |
| 233 | u32 get_device_type(void) |
Aneesh V | e3405bd | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 234 | { |
SRICHARAN R | 36c366f | 2012-03-12 02:25:43 +0000 | [diff] [blame] | 235 | struct omap_sys_ctrl_regs *ctrl = |
| 236 | (struct omap_sys_ctrl_regs *) SYSCTRL_GENERAL_CORE_BASE; |
| 237 | |
| 238 | return (readl(&ctrl->control_status) & |
| 239 | (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT; |
Aneesh V | e3405bd | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 240 | } |
| 241 | |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 242 | /* |
| 243 | * Print CPU information |
| 244 | */ |
| 245 | int print_cpuinfo(void) |
Aneesh V | e3405bd | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 246 | { |
Andreas Müller | 0cda7a4 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 247 | puts("CPU : "); |
| 248 | omap_rev_string(); |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 249 | |
| 250 | return 0; |
| 251 | } |
Aneesh V | 572134b | 2011-08-11 04:35:43 +0000 | [diff] [blame] | 252 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 253 | void enable_caches(void) |
| 254 | { |
| 255 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 256 | dcache_enable(); |
| 257 | } |
| 258 | #endif |