blob: 0776d5c6e8a717de4fac944eb36161a6503ec677 [file] [log] [blame]
Steve Sakoman1ad21582010-06-08 13:07:46 -07001/*
2 *
Sricharan9310ff72011-11-15 09:49:55 -05003 * Common functions for OMAP4/5 based boards
Steve Sakoman1ad21582010-06-08 13:07:46 -07004 *
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 Rini28591df2012-08-13 12:03:19 -070031#include <spl.h>
Steve Sakoman1ad21582010-06-08 13:07:46 -070032#include <asm/arch/sys_proto.h>
Aneesh V04bd2b92010-09-12 10:32:55 +053033#include <asm/sizes.h>
Sricharan62a86502011-11-15 09:50:00 -050034#include <asm/emif.h>
SRICHARAN Rfb6aa1f2013-02-04 04:22:00 +000035#include <asm/omap_common.h>
Lokesh Vutla28049632013-02-12 01:33:45 +000036#include <linux/compiler.h>
R Sricharan06396c12013-03-04 20:04:45 +000037#include <asm/cache.h>
38#include <asm/system.h>
39
40#define ARMV7_DCACHE_WRITEBACK 0xe
41#define ARMV7_DOMAIN_CLIENT 1
42#define ARMV7_DOMAIN_MASK (0x3 << 0)
Steve Sakoman1ad21582010-06-08 13:07:46 -070043
Nishanth Menon4e5dd662010-11-19 11:19:40 -050044DECLARE_GLOBAL_DATA_PTR;
45
Aneesh Vf908b632011-07-21 09:10:01 -040046void do_set_mux(u32 base, struct pad_conf_entry const *array, int size)
47{
48 int i;
49 struct pad_conf_entry *pad = (struct pad_conf_entry *) array;
50
51 for (i = 0; i < size; i++, pad++)
52 writew(pad->val, base + pad->offset);
53}
54
Aneesh Vf908b632011-07-21 09:10:01 -040055static void set_mux_conf_regs(void)
56{
Sricharan9310ff72011-11-15 09:49:55 -050057 switch (omap_hw_init_context()) {
Aneesh Vf908b632011-07-21 09:10:01 -040058 case OMAP_INIT_CONTEXT_SPL:
59 set_muxconf_regs_essential();
60 break;
61 case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL:
Sricharan308fe922011-11-15 09:50:03 -050062#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh Vf908b632011-07-21 09:10:01 -040063 set_muxconf_regs_non_essential();
Sricharan308fe922011-11-15 09:50:03 -050064#endif
Aneesh Vf908b632011-07-21 09:10:01 -040065 break;
66 case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR:
67 case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH:
68 set_muxconf_regs_essential();
Sricharan308fe922011-11-15 09:50:03 -050069#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh Vf908b632011-07-21 09:10:01 -040070 set_muxconf_regs_non_essential();
Sricharan308fe922011-11-15 09:50:03 -050071#endif
Aneesh Vf908b632011-07-21 09:10:01 -040072 break;
73 }
74}
75
Sricharan9310ff72011-11-15 09:49:55 -050076u32 cortex_rev(void)
Aneesh V162ced32011-07-21 09:10:04 -040077{
78
79 unsigned int rev;
80
81 /* Read Main ID Register (MIDR) */
82 asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev));
83
84 return rev;
85}
86
Tom Rini01b2dd92013-05-31 10:44:23 -040087static void omap_rev_string(void)
Aneesh V162ced32011-07-21 09:10:04 -040088{
Sricharan9310ff72011-11-15 09:49:55 -050089 u32 omap_rev = omap_revision();
Lokesh Vutla43c296f2013-02-12 21:29:03 +000090 u32 soc_variant = (omap_rev & 0xF0000000) >> 28;
Sricharan9310ff72011-11-15 09:49:55 -050091 u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16;
92 u32 major_rev = (omap_rev & 0x00000F00) >> 8;
93 u32 minor_rev = (omap_rev & 0x000000F0) >> 4;
Aneesh V162ced32011-07-21 09:10:04 -040094
Lokesh Vutla43c296f2013-02-12 21:29:03 +000095 if (soc_variant)
96 printf("OMAP");
97 else
98 printf("DRA");
99 printf("%x ES%x.%x\n", omap_variant, major_rev,
100 minor_rev);
Aneesh V162ced32011-07-21 09:10:04 -0400101}
102
Sricharan308fe922011-11-15 09:50:03 -0500103#ifdef CONFIG_SPL_BUILD
Tom Rinife3b0c72012-08-13 11:37:56 -0700104void spl_display_print(void)
105{
106 omap_rev_string();
107}
Sricharan308fe922011-11-15 09:50:03 -0500108#endif
109
Lokesh Vutla28049632013-02-12 01:33:45 +0000110void __weak srcomp_enable(void)
111{
SRICHARAN R4af19882013-04-24 00:41:23 +0000112}
113
SRICHARAN R669b3372013-04-24 00:41:25 +0000114#ifdef CONFIG_ARCH_CPU_INIT
115/*
116 * SOC specific cpu init
117 */
118int arch_cpu_init(void)
119{
120 save_omap_boot_params();
121 return 0;
122}
123#endif /* CONFIG_ARCH_CPU_INIT */
124
Steve Sakoman1ad21582010-06-08 13:07:46 -0700125/*
126 * Routine: s_init
Aneesh Vf908b632011-07-21 09:10:01 -0400127 * Description: Does early system init of watchdog, muxing, andclocks
128 * Watchdog disable is done always. For the rest what gets done
129 * depends on the boot mode in which this function is executed
130 * 1. s_init of SPL running from SRAM
131 * 2. s_init of U-Boot running from FLASH
132 * 3. s_init of U-Boot loaded to SDRAM by SPL
133 * 4. s_init of U-Boot loaded to SDRAM by ROM code using the
134 * Configuration Header feature
135 * Please have a look at the respective functions to see what gets
136 * done in each of these cases
137 * This function is called with SRAM stack.
Steve Sakoman1ad21582010-06-08 13:07:46 -0700138 */
139void s_init(void)
140{
SRICHARAN R4af19882013-04-24 00:41:23 +0000141 /*
142 * Save the boot parameters passed from romcode.
143 * We cannot delay the saving further than this,
144 * to prevent overwrites.
145 */
146#ifdef CONFIG_SPL_BUILD
147 save_omap_boot_params();
148#endif
Sricharan9310ff72011-11-15 09:49:55 -0500149 init_omap_revision();
SRICHARAN Rfb6aa1f2013-02-04 04:22:00 +0000150 hw_data_init();
151
Lokesh Vutlaba873772012-05-29 19:26:43 +0000152#ifdef CONFIG_SPL_BUILD
153 if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0))
154 force_emif_self_refresh();
155#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700156 watchdog_init();
Aneesh Vf908b632011-07-21 09:10:01 -0400157 set_mux_conf_regs();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400158#ifdef CONFIG_SPL_BUILD
Lokesh Vutla28049632013-02-12 01:33:45 +0000159 srcomp_enable();
Simon Schwarz01a43322011-09-14 15:14:46 -0400160 setup_clocks_for_console();
Tom Rini31dfba42012-08-22 15:31:05 -0700161
162 gd = &gdata;
163
Aneesh Vb8e60b92011-07-21 09:10:21 -0400164 preloader_console_init();
Aneesh Vb35f7cb2011-09-08 11:05:56 -0400165 do_io_settings();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400166#endif
Aneesh V0d2628b2011-07-21 09:10:07 -0400167 prcm_init();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400168#ifdef CONFIG_SPL_BUILD
Dechesne, Nicolasf8c6e1b2012-01-31 07:35:40 +0000169 timer_init();
170
Aneesh Vb8e60b92011-07-21 09:10:21 -0400171 /* For regular u-boot sdram_init() is called from dram_init() */
172 sdram_init();
173#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700174}
175
176/*
177 * Routine: wait_for_command_complete
178 * Description: Wait for posting to finish on watchdog
179 */
180void wait_for_command_complete(struct watchdog *wd_base)
181{
182 int pending = 1;
183 do {
184 pending = readl(&wd_base->wwps);
185 } while (pending);
186}
187
188/*
189 * Routine: watchdog_init
190 * Description: Shut down watch dogs
191 */
192void watchdog_init(void)
193{
194 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
195
196 writel(WD_UNLOCK1, &wd2_base->wspr);
197 wait_for_command_complete(wd2_base);
198 writel(WD_UNLOCK2, &wd2_base->wspr);
199}
200
Aneesh V04bd2b92010-09-12 10:32:55 +0530201
202/*
203 * This function finds the SDRAM size available in the system
204 * based on DMM section configurations
205 * This is needed because the size of memory installed may be
206 * different on different versions of the board
207 */
Sricharan9310ff72011-11-15 09:49:55 -0500208u32 omap_sdram_size(void)
Aneesh V04bd2b92010-09-12 10:32:55 +0530209{
SRICHARAN R015be792012-05-17 00:12:06 +0000210 u32 section, i, valid;
211 u64 sdram_start = 0, sdram_end = 0, addr,
212 size, total_size = 0, trap_size = 0;
Sricharan62a86502011-11-15 09:50:00 -0500213
Aneesh V04bd2b92010-09-12 10:32:55 +0530214 for (i = 0; i < 4; i++) {
Sricharan62a86502011-11-15 09:50:00 -0500215 section = __raw_readl(DMM_BASE + i*4);
SRICHARAN R015be792012-05-17 00:12:06 +0000216 valid = (section & EMIF_SDRC_ADDRSPC_MASK) >>
217 (EMIF_SDRC_ADDRSPC_SHIFT);
Sricharan62a86502011-11-15 09:50:00 -0500218 addr = section & EMIF_SYS_ADDR_MASK;
SRICHARAN R015be792012-05-17 00:12:06 +0000219
Aneesh V04bd2b92010-09-12 10:32:55 +0530220 /* See if the address is valid */
Sricharan62a86502011-11-15 09:50:00 -0500221 if ((addr >= DRAM_ADDR_SPACE_START) &&
222 (addr < DRAM_ADDR_SPACE_END)) {
223 size = ((section & EMIF_SYS_SIZE_MASK) >>
224 EMIF_SYS_SIZE_SHIFT);
225 size = 1 << size;
226 size *= SZ_16M;
SRICHARAN R015be792012-05-17 00:12:06 +0000227
228 if (valid != DMM_SDRC_ADDR_SPC_INVALID) {
229 if (!sdram_start || (addr < sdram_start))
230 sdram_start = addr;
231 if (!sdram_end || ((addr + size) > sdram_end))
232 sdram_end = addr + size;
233 } else {
234 trap_size = size;
235 }
236
Aneesh V04bd2b92010-09-12 10:32:55 +0530237 }
SRICHARAN R015be792012-05-17 00:12:06 +0000238
Aneesh V04bd2b92010-09-12 10:32:55 +0530239 }
SRICHARAN R015be792012-05-17 00:12:06 +0000240 total_size = (sdram_end - sdram_start) - (trap_size);
Sricharan62a86502011-11-15 09:50:00 -0500241
Aneesh V04bd2b92010-09-12 10:32:55 +0530242 return total_size;
243}
244
245
Steve Sakoman1ad21582010-06-08 13:07:46 -0700246/*
247 * Routine: dram_init
248 * Description: sets uboots idea of sdram size
249 */
250int dram_init(void)
251{
Aneesh Vcc565582011-07-21 09:10:09 -0400252 sdram_init();
Sricharan9310ff72011-11-15 09:49:55 -0500253 gd->ram_size = omap_sdram_size();
Steve Sakoman1ad21582010-06-08 13:07:46 -0700254 return 0;
255}
256
257/*
258 * Print board information
259 */
260int checkboard(void)
261{
262 puts(sysinfo.board_string);
263 return 0;
264}
265
Steve Sakoman9bb65b52010-07-15 13:43:10 -0700266/*
Sricharan9310ff72011-11-15 09:49:55 -0500267 * get_device_type(): tell if GP/HS/EMU/TST
268 */
269u32 get_device_type(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000270{
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000271 return (readl((*ctrl)->control_status) &
SRICHARAN R36c366f2012-03-12 02:25:43 +0000272 (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;
Aneesh Ve3405bd2011-06-16 23:30:52 +0000273}
274
Sricharan9310ff72011-11-15 09:49:55 -0500275/*
276 * Print CPU information
277 */
278int print_cpuinfo(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000279{
Andreas Müller0cda7a42012-01-04 15:26:24 +0000280 puts("CPU : ");
281 omap_rev_string();
Sricharan9310ff72011-11-15 09:49:55 -0500282
283 return 0;
284}
Aneesh V572134b2011-08-11 04:35:43 +0000285#ifndef CONFIG_SYS_DCACHE_OFF
286void enable_caches(void)
287{
288 /* Enable D-cache. I-cache is already enabled in start.S */
289 dcache_enable();
290}
R Sricharan06396c12013-03-04 20:04:45 +0000291
292void dram_bank_mmu_setup(int bank)
293{
294 bd_t *bd = gd->bd;
295 int i;
296
297 u32 start = bd->bi_dram[bank].start >> 20;
298 u32 size = bd->bi_dram[bank].size >> 20;
299 u32 end = start + size;
300
301 debug("%s: bank: %d\n", __func__, bank);
302 for (i = start; i < end; i++)
303 set_section_dcache(i, ARMV7_DCACHE_WRITEBACK);
304
305}
306
307void arm_init_domains(void)
308{
309 u32 reg;
310
311 reg = get_dacr();
312 /*
313 * Set DOMAIN to client access so that all permissions
314 * set in pagetables are validated by the mmu.
315 */
316 reg &= ~ARMV7_DOMAIN_MASK;
317 reg |= ARMV7_DOMAIN_CLIENT;
318 set_dacr(reg);
319}
Aneesh V572134b2011-08-11 04:35:43 +0000320#endif