blob: 8ebc0ce251632cff1b2564130496d7cb34970982 [file] [log] [blame]
Steve Sakomand34efc72010-06-08 13:07:46 -07001/*
2 *
Sricharan508a58f2011-11-15 09:49:55 -05003 * Common functions for OMAP4/5 based boards
Steve Sakomand34efc72010-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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Steve Sakomand34efc72010-06-08 13:07:46 -070013 */
14#include <common.h>
Tom Rini47f7bca2012-08-13 12:03:19 -070015#include <spl.h>
Steve Sakomand34efc72010-06-08 13:07:46 -070016#include <asm/arch/sys_proto.h>
Alexey Brodkin1ace4022014-02-26 17:47:58 +040017#include <linux/sizes.h>
Sricharanbb772a52011-11-15 09:50:00 -050018#include <asm/emif.h>
SRICHARAN R01b753f2013-02-04 04:22:00 +000019#include <asm/omap_common.h>
Lokesh Vutlad4d986e2013-02-12 01:33:45 +000020#include <linux/compiler.h>
R Sricharande63ac22013-03-04 20:04:45 +000021#include <asm/cache.h>
22#include <asm/system.h>
23
24#define ARMV7_DCACHE_WRITEBACK 0xe
25#define ARMV7_DOMAIN_CLIENT 1
26#define ARMV7_DOMAIN_MASK (0x3 << 0)
Steve Sakomand34efc72010-06-08 13:07:46 -070027
Nishanth Menon93e35682010-11-19 11:19:40 -050028DECLARE_GLOBAL_DATA_PTR;
29
Aneesh V469ec1e2011-07-21 09:10:01 -040030void do_set_mux(u32 base, struct pad_conf_entry const *array, int size)
31{
32 int i;
33 struct pad_conf_entry *pad = (struct pad_conf_entry *) array;
34
35 for (i = 0; i < size; i++, pad++)
36 writew(pad->val, base + pad->offset);
37}
38
Aneesh V469ec1e2011-07-21 09:10:01 -040039static void set_mux_conf_regs(void)
40{
Sricharan508a58f2011-11-15 09:49:55 -050041 switch (omap_hw_init_context()) {
Aneesh V469ec1e2011-07-21 09:10:01 -040042 case OMAP_INIT_CONTEXT_SPL:
43 set_muxconf_regs_essential();
44 break;
45 case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL:
Aneesh V469ec1e2011-07-21 09:10:01 -040046 break;
47 case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR:
48 case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH:
49 set_muxconf_regs_essential();
Aneesh V469ec1e2011-07-21 09:10:01 -040050 break;
51 }
52}
53
Sricharan508a58f2011-11-15 09:49:55 -050054u32 cortex_rev(void)
Aneesh Vad577c82011-07-21 09:10:04 -040055{
56
57 unsigned int rev;
58
59 /* Read Main ID Register (MIDR) */
60 asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev));
61
62 return rev;
63}
64
Tom Rini0ac6db22013-05-31 10:44:23 -040065static void omap_rev_string(void)
Aneesh Vad577c82011-07-21 09:10:04 -040066{
Sricharan508a58f2011-11-15 09:49:55 -050067 u32 omap_rev = omap_revision();
Lokesh Vutlade626882013-02-12 21:29:03 +000068 u32 soc_variant = (omap_rev & 0xF0000000) >> 28;
Sricharan508a58f2011-11-15 09:49:55 -050069 u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16;
70 u32 major_rev = (omap_rev & 0x00000F00) >> 8;
71 u32 minor_rev = (omap_rev & 0x000000F0) >> 4;
Aneesh Vad577c82011-07-21 09:10:04 -040072
Lokesh Vutlade626882013-02-12 21:29:03 +000073 if (soc_variant)
74 printf("OMAP");
75 else
76 printf("DRA");
77 printf("%x ES%x.%x\n", omap_variant, major_rev,
78 minor_rev);
Aneesh Vad577c82011-07-21 09:10:04 -040079}
80
Sricharan78f455c2011-11-15 09:50:03 -050081#ifdef CONFIG_SPL_BUILD
Tom Rini861a86f2012-08-13 11:37:56 -070082void spl_display_print(void)
83{
84 omap_rev_string();
85}
Sricharan78f455c2011-11-15 09:50:03 -050086#endif
87
Lokesh Vutlad4d986e2013-02-12 01:33:45 +000088void __weak srcomp_enable(void)
89{
90}
91
SRICHARAN R47c6ea02013-04-24 00:41:25 +000092#ifdef CONFIG_ARCH_CPU_INIT
93/*
94 * SOC specific cpu init
95 */
96int arch_cpu_init(void)
97{
98 save_omap_boot_params();
99 return 0;
100}
101#endif /* CONFIG_ARCH_CPU_INIT */
102
Steve Sakomand34efc72010-06-08 13:07:46 -0700103/*
104 * Routine: s_init
Aneesh V469ec1e2011-07-21 09:10:01 -0400105 * Description: Does early system init of watchdog, muxing, andclocks
106 * Watchdog disable is done always. For the rest what gets done
107 * depends on the boot mode in which this function is executed
108 * 1. s_init of SPL running from SRAM
109 * 2. s_init of U-Boot running from FLASH
110 * 3. s_init of U-Boot loaded to SDRAM by SPL
111 * 4. s_init of U-Boot loaded to SDRAM by ROM code using the
112 * Configuration Header feature
113 * Please have a look at the respective functions to see what gets
114 * done in each of these cases
115 * This function is called with SRAM stack.
Steve Sakomand34efc72010-06-08 13:07:46 -0700116 */
117void s_init(void)
118{
SRICHARAN Rfda06812013-04-24 00:41:23 +0000119 /*
120 * Save the boot parameters passed from romcode.
121 * We cannot delay the saving further than this,
122 * to prevent overwrites.
123 */
124#ifdef CONFIG_SPL_BUILD
125 save_omap_boot_params();
126#endif
Sricharan508a58f2011-11-15 09:49:55 -0500127 init_omap_revision();
SRICHARAN R01b753f2013-02-04 04:22:00 +0000128 hw_data_init();
129
Lokesh Vutla38f25b12012-05-29 19:26:43 +0000130#ifdef CONFIG_SPL_BUILD
131 if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0))
132 force_emif_self_refresh();
133#endif
Steve Sakomand34efc72010-06-08 13:07:46 -0700134 watchdog_init();
Aneesh V469ec1e2011-07-21 09:10:01 -0400135 set_mux_conf_regs();
Aneesh Vbcae7212011-07-21 09:10:21 -0400136#ifdef CONFIG_SPL_BUILD
Lokesh Vutlad4d986e2013-02-12 01:33:45 +0000137 srcomp_enable();
Simon Schwarz63ffcfc2011-09-14 15:14:46 -0400138 setup_clocks_for_console();
Tom Rini6507f132012-08-22 15:31:05 -0700139
140 gd = &gdata;
141
Aneesh Vbcae7212011-07-21 09:10:21 -0400142 preloader_console_init();
Aneesh V4ecfcfa2011-09-08 11:05:56 -0400143 do_io_settings();
Aneesh Vbcae7212011-07-21 09:10:21 -0400144#endif
Aneesh V37768012011-07-21 09:10:07 -0400145 prcm_init();
Aneesh Vbcae7212011-07-21 09:10:21 -0400146#ifdef CONFIG_SPL_BUILD
147 /* For regular u-boot sdram_init() is called from dram_init() */
148 sdram_init();
149#endif
Steve Sakomand34efc72010-06-08 13:07:46 -0700150}
151
152/*
153 * Routine: wait_for_command_complete
154 * Description: Wait for posting to finish on watchdog
155 */
156void wait_for_command_complete(struct watchdog *wd_base)
157{
158 int pending = 1;
159 do {
160 pending = readl(&wd_base->wwps);
161 } while (pending);
162}
163
164/*
165 * Routine: watchdog_init
166 * Description: Shut down watch dogs
167 */
168void watchdog_init(void)
169{
170 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
171
172 writel(WD_UNLOCK1, &wd2_base->wspr);
173 wait_for_command_complete(wd2_base);
174 writel(WD_UNLOCK2, &wd2_base->wspr);
175}
176
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530177
178/*
179 * This function finds the SDRAM size available in the system
180 * based on DMM section configurations
181 * This is needed because the size of memory installed may be
182 * different on different versions of the board
183 */
Sricharan508a58f2011-11-15 09:49:55 -0500184u32 omap_sdram_size(void)
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530185{
SRICHARAN Re06e9142012-05-17 00:12:06 +0000186 u32 section, i, valid;
187 u64 sdram_start = 0, sdram_end = 0, addr,
188 size, total_size = 0, trap_size = 0;
Sricharanbb772a52011-11-15 09:50:00 -0500189
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530190 for (i = 0; i < 4; i++) {
Sricharanbb772a52011-11-15 09:50:00 -0500191 section = __raw_readl(DMM_BASE + i*4);
SRICHARAN Re06e9142012-05-17 00:12:06 +0000192 valid = (section & EMIF_SDRC_ADDRSPC_MASK) >>
193 (EMIF_SDRC_ADDRSPC_SHIFT);
Sricharanbb772a52011-11-15 09:50:00 -0500194 addr = section & EMIF_SYS_ADDR_MASK;
SRICHARAN Re06e9142012-05-17 00:12:06 +0000195
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530196 /* See if the address is valid */
Sricharanbb772a52011-11-15 09:50:00 -0500197 if ((addr >= DRAM_ADDR_SPACE_START) &&
198 (addr < DRAM_ADDR_SPACE_END)) {
199 size = ((section & EMIF_SYS_SIZE_MASK) >>
200 EMIF_SYS_SIZE_SHIFT);
201 size = 1 << size;
202 size *= SZ_16M;
SRICHARAN Re06e9142012-05-17 00:12:06 +0000203
204 if (valid != DMM_SDRC_ADDR_SPC_INVALID) {
205 if (!sdram_start || (addr < sdram_start))
206 sdram_start = addr;
207 if (!sdram_end || ((addr + size) > sdram_end))
208 sdram_end = addr + size;
209 } else {
210 trap_size = size;
211 }
212
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530213 }
SRICHARAN Re06e9142012-05-17 00:12:06 +0000214
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530215 }
SRICHARAN Re06e9142012-05-17 00:12:06 +0000216 total_size = (sdram_end - sdram_start) - (trap_size);
Sricharanbb772a52011-11-15 09:50:00 -0500217
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530218 return total_size;
219}
220
221
Steve Sakomand34efc72010-06-08 13:07:46 -0700222/*
223 * Routine: dram_init
224 * Description: sets uboots idea of sdram size
225 */
226int dram_init(void)
227{
Aneesh V2ae610f2011-07-21 09:10:09 -0400228 sdram_init();
Sricharan508a58f2011-11-15 09:49:55 -0500229 gd->ram_size = omap_sdram_size();
Steve Sakomand34efc72010-06-08 13:07:46 -0700230 return 0;
231}
232
233/*
234 * Print board information
235 */
236int checkboard(void)
237{
238 puts(sysinfo.board_string);
239 return 0;
240}
241
Steve Sakoman2ad853c2010-07-15 13:43:10 -0700242/*
Sricharan508a58f2011-11-15 09:49:55 -0500243 * get_device_type(): tell if GP/HS/EMU/TST
244 */
245u32 get_device_type(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000246{
Lokesh Vutlac43c8332013-02-04 04:22:04 +0000247 return (readl((*ctrl)->control_status) &
SRICHARAN Rc1fa3c32012-03-12 02:25:43 +0000248 (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;
Aneesh V8b457fa2011-06-16 23:30:52 +0000249}
250
Masahiro Yamada365475e2014-02-13 18:30:26 +0900251#if defined(CONFIG_DISPLAY_CPUINFO)
Sricharan508a58f2011-11-15 09:49:55 -0500252/*
253 * Print CPU information
254 */
255int print_cpuinfo(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000256{
Andreas Müller761ca312012-01-04 15:26:24 +0000257 puts("CPU : ");
258 omap_rev_string();
Sricharan508a58f2011-11-15 09:49:55 -0500259
260 return 0;
261}
Masahiro Yamada365475e2014-02-13 18:30:26 +0900262#endif
263
Aneesh V13d4f9b2011-08-11 04:35:43 +0000264#ifndef CONFIG_SYS_DCACHE_OFF
265void enable_caches(void)
266{
267 /* Enable D-cache. I-cache is already enabled in start.S */
268 dcache_enable();
269}
R Sricharande63ac22013-03-04 20:04:45 +0000270
271void dram_bank_mmu_setup(int bank)
272{
273 bd_t *bd = gd->bd;
274 int i;
275
276 u32 start = bd->bi_dram[bank].start >> 20;
277 u32 size = bd->bi_dram[bank].size >> 20;
278 u32 end = start + size;
279
280 debug("%s: bank: %d\n", __func__, bank);
281 for (i = start; i < end; i++)
282 set_section_dcache(i, ARMV7_DCACHE_WRITEBACK);
283
284}
285
286void arm_init_domains(void)
287{
288 u32 reg;
289
290 reg = get_dacr();
291 /*
292 * Set DOMAIN to client access so that all permissions
293 * set in pagetables are validated by the mmu.
294 */
295 reg &= ~ARMV7_DOMAIN_MASK;
296 reg |= ARMV7_DOMAIN_CLIENT;
297 set_dacr(reg);
298}
Aneesh V13d4f9b2011-08-11 04:35:43 +0000299#endif