blob: 01c2d576c99ba5b5c088a55636f35141c2458a5c [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 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Steve Sakoman1ad21582010-06-08 13:07:46 -070013 */
14#include <common.h>
Tom Rini28591df2012-08-13 12:03:19 -070015#include <spl.h>
Steve Sakoman1ad21582010-06-08 13:07:46 -070016#include <asm/arch/sys_proto.h>
Alexey Brodkin267d8e22014-02-26 17:47:58 +040017#include <linux/sizes.h>
Sricharan62a86502011-11-15 09:50:00 -050018#include <asm/emif.h>
SRICHARAN Rfb6aa1f2013-02-04 04:22:00 +000019#include <asm/omap_common.h>
Lokesh Vutla28049632013-02-12 01:33:45 +000020#include <linux/compiler.h>
R Sricharan06396c12013-03-04 20:04:45 +000021#include <asm/system.h>
22
Nishanth Menon4e5dd662010-11-19 11:19:40 -050023DECLARE_GLOBAL_DATA_PTR;
24
Aneesh Vf908b632011-07-21 09:10:01 -040025void 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 Vf908b632011-07-21 09:10:01 -040034static void set_mux_conf_regs(void)
35{
Sricharan9310ff72011-11-15 09:49:55 -050036 switch (omap_hw_init_context()) {
Aneesh Vf908b632011-07-21 09:10:01 -040037 case OMAP_INIT_CONTEXT_SPL:
Paul Kocialkowskia00b1e52016-02-27 19:18:56 +010038 set_muxconf_regs();
Aneesh Vf908b632011-07-21 09:10:01 -040039 break;
40 case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL:
Aneesh Vf908b632011-07-21 09:10:01 -040041 break;
42 case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR:
43 case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH:
Paul Kocialkowskia00b1e52016-02-27 19:18:56 +010044 set_muxconf_regs();
Aneesh Vf908b632011-07-21 09:10:01 -040045 break;
46 }
47}
48
Sricharan9310ff72011-11-15 09:49:55 -050049u32 cortex_rev(void)
Aneesh V162ced32011-07-21 09:10:04 -040050{
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 Rini01b2dd92013-05-31 10:44:23 -040060static void omap_rev_string(void)
Aneesh V162ced32011-07-21 09:10:04 -040061{
Sricharan9310ff72011-11-15 09:49:55 -050062 u32 omap_rev = omap_revision();
Lokesh Vutla43c296f2013-02-12 21:29:03 +000063 u32 soc_variant = (omap_rev & 0xF0000000) >> 28;
Sricharan9310ff72011-11-15 09:49:55 -050064 u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16;
65 u32 major_rev = (omap_rev & 0x00000F00) >> 8;
66 u32 minor_rev = (omap_rev & 0x000000F0) >> 4;
Aneesh V162ced32011-07-21 09:10:04 -040067
Lokesh Vutla43c296f2013-02-12 21:29:03 +000068 if (soc_variant)
69 printf("OMAP");
70 else
71 printf("DRA");
72 printf("%x ES%x.%x\n", omap_variant, major_rev,
73 minor_rev);
Aneesh V162ced32011-07-21 09:10:04 -040074}
75
Sricharan308fe922011-11-15 09:50:03 -050076#ifdef CONFIG_SPL_BUILD
Tom Rinife3b0c72012-08-13 11:37:56 -070077void spl_display_print(void)
78{
79 omap_rev_string();
80}
Sricharan308fe922011-11-15 09:50:03 -050081#endif
82
Lokesh Vutla28049632013-02-12 01:33:45 +000083void __weak srcomp_enable(void)
84{
SRICHARAN R4af19882013-04-24 00:41:23 +000085}
86
Kipisz, Steven4466dfb2016-02-24 12:30:57 -060087/**
88 * do_board_detect() - Detect board description
89 *
90 * Function to detect board description. This is expected to be
91 * overridden in the SoC family board file where desired.
92 */
93void __weak do_board_detect(void)
94{
95}
96
Lokesh Vutlae8534d22016-03-07 14:49:54 +053097void s_init(void)
98{
99}
100
101/**
102 * early_system_init - Does Early system initialization.
103 *
104 * Does early system init of watchdog, muxing, andclocks
Aneesh Vf908b632011-07-21 09:10:01 -0400105 * Watchdog disable is done always. For the rest what gets done
Lokesh Vutlae8534d22016-03-07 14:49:54 +0530106 * depends on the boot mode in which this function is executed when
107 * 1. SPL running from SRAM
108 * 2. U-Boot running from FLASH
109 * 3. U-Boot loaded to SDRAM by SPL
110 * 4. U-Boot loaded to SDRAM by ROM code using the
Aneesh Vf908b632011-07-21 09:10:01 -0400111 * 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 Sakoman1ad21582010-06-08 13:07:46 -0700115 */
Lokesh Vutlae8534d22016-03-07 14:49:54 +0530116void early_system_init(void)
Steve Sakoman1ad21582010-06-08 13:07:46 -0700117{
Sricharan9310ff72011-11-15 09:49:55 -0500118 init_omap_revision();
SRICHARAN Rfb6aa1f2013-02-04 04:22:00 +0000119 hw_data_init();
120
Lokesh Vutlaba873772012-05-29 19:26:43 +0000121#ifdef CONFIG_SPL_BUILD
Rajendra Nayakc4495232014-07-18 11:18:48 +0530122 if (warm_reset() &&
123 (is_omap44xx() || (omap_revision() == OMAP5430_ES1_0)))
Lokesh Vutlaba873772012-05-29 19:26:43 +0000124 force_emif_self_refresh();
125#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700126 watchdog_init();
Aneesh Vf908b632011-07-21 09:10:01 -0400127 set_mux_conf_regs();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400128#ifdef CONFIG_SPL_BUILD
Lokesh Vutla28049632013-02-12 01:33:45 +0000129 srcomp_enable();
Aneesh Vb35f7cb2011-09-08 11:05:56 -0400130 do_io_settings();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400131#endif
Kipisz, Stevenebe86dc2016-02-24 12:30:52 -0600132 setup_early_clocks();
Kipisz, Steven4466dfb2016-02-24 12:30:57 -0600133 do_board_detect();
Aneesh V0d2628b2011-07-21 09:10:07 -0400134 prcm_init();
Simon Glass0c078ea2015-03-03 08:03:02 -0700135}
136
Aneesh Vb8e60b92011-07-21 09:10:21 -0400137#ifdef CONFIG_SPL_BUILD
Simon Glass0c078ea2015-03-03 08:03:02 -0700138void board_init_f(ulong dummy)
139{
Lokesh Vutlae8534d22016-03-07 14:49:54 +0530140 early_system_init();
Lokesh Vutlabe86f0e2014-08-04 19:42:24 +0530141#ifdef CONFIG_BOARD_EARLY_INIT_F
142 board_early_init_f();
143#endif
Aneesh Vb8e60b92011-07-21 09:10:21 -0400144 /* For regular u-boot sdram_init() is called from dram_init() */
145 sdram_init();
Steve Sakoman1ad21582010-06-08 13:07:46 -0700146}
Simon Glass0c078ea2015-03-03 08:03:02 -0700147#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700148
Lokesh Vutlae8534d22016-03-07 14:49:54 +0530149int arch_cpu_init_dm(void)
150{
151 early_system_init();
152 return 0;
153}
154
Steve Sakoman1ad21582010-06-08 13:07:46 -0700155/*
156 * Routine: wait_for_command_complete
157 * Description: Wait for posting to finish on watchdog
158 */
159void wait_for_command_complete(struct watchdog *wd_base)
160{
161 int pending = 1;
162 do {
163 pending = readl(&wd_base->wwps);
164 } while (pending);
165}
166
167/*
168 * Routine: watchdog_init
169 * Description: Shut down watch dogs
170 */
171void watchdog_init(void)
172{
173 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
174
175 writel(WD_UNLOCK1, &wd2_base->wspr);
176 wait_for_command_complete(wd2_base);
177 writel(WD_UNLOCK2, &wd2_base->wspr);
178}
179
Aneesh V04bd2b92010-09-12 10:32:55 +0530180
181/*
182 * This function finds the SDRAM size available in the system
183 * based on DMM section configurations
184 * This is needed because the size of memory installed may be
185 * different on different versions of the board
186 */
Sricharan9310ff72011-11-15 09:49:55 -0500187u32 omap_sdram_size(void)
Aneesh V04bd2b92010-09-12 10:32:55 +0530188{
SRICHARAN R015be792012-05-17 00:12:06 +0000189 u32 section, i, valid;
190 u64 sdram_start = 0, sdram_end = 0, addr,
Lokesh Vutlae45d3bb2014-05-12 13:49:33 +0530191 size, total_size = 0, trap_size = 0, trap_start = 0;
Sricharan62a86502011-11-15 09:50:00 -0500192
Aneesh V04bd2b92010-09-12 10:32:55 +0530193 for (i = 0; i < 4; i++) {
Sricharan62a86502011-11-15 09:50:00 -0500194 section = __raw_readl(DMM_BASE + i*4);
SRICHARAN R015be792012-05-17 00:12:06 +0000195 valid = (section & EMIF_SDRC_ADDRSPC_MASK) >>
196 (EMIF_SDRC_ADDRSPC_SHIFT);
Sricharan62a86502011-11-15 09:50:00 -0500197 addr = section & EMIF_SYS_ADDR_MASK;
SRICHARAN R015be792012-05-17 00:12:06 +0000198
Aneesh V04bd2b92010-09-12 10:32:55 +0530199 /* See if the address is valid */
Tom Rini72f36002014-05-16 13:02:24 -0400200 if ((addr >= TI_ARMV7_DRAM_ADDR_SPACE_START) &&
201 (addr < TI_ARMV7_DRAM_ADDR_SPACE_END)) {
Sricharan62a86502011-11-15 09:50:00 -0500202 size = ((section & EMIF_SYS_SIZE_MASK) >>
203 EMIF_SYS_SIZE_SHIFT);
204 size = 1 << size;
205 size *= SZ_16M;
SRICHARAN R015be792012-05-17 00:12:06 +0000206
207 if (valid != DMM_SDRC_ADDR_SPC_INVALID) {
208 if (!sdram_start || (addr < sdram_start))
209 sdram_start = addr;
210 if (!sdram_end || ((addr + size) > sdram_end))
211 sdram_end = addr + size;
212 } else {
213 trap_size = size;
Lokesh Vutlae45d3bb2014-05-12 13:49:33 +0530214 trap_start = addr;
SRICHARAN R015be792012-05-17 00:12:06 +0000215 }
Aneesh V04bd2b92010-09-12 10:32:55 +0530216 }
217 }
Lokesh Vutlae45d3bb2014-05-12 13:49:33 +0530218
219 if ((trap_start >= sdram_start) && (trap_start < sdram_end))
220 total_size = (sdram_end - sdram_start) - (trap_size);
221 else
222 total_size = sdram_end - sdram_start;
Sricharan62a86502011-11-15 09:50:00 -0500223
Aneesh V04bd2b92010-09-12 10:32:55 +0530224 return total_size;
225}
226
227
Steve Sakoman1ad21582010-06-08 13:07:46 -0700228/*
229 * Routine: dram_init
230 * Description: sets uboots idea of sdram size
231 */
232int dram_init(void)
233{
Aneesh Vcc565582011-07-21 09:10:09 -0400234 sdram_init();
Sricharan9310ff72011-11-15 09:49:55 -0500235 gd->ram_size = omap_sdram_size();
Steve Sakoman1ad21582010-06-08 13:07:46 -0700236 return 0;
237}
238
239/*
240 * Print board information
241 */
242int checkboard(void)
243{
244 puts(sysinfo.board_string);
245 return 0;
246}
247
Steve Sakoman9bb65b52010-07-15 13:43:10 -0700248/*
Sricharan9310ff72011-11-15 09:49:55 -0500249 * get_device_type(): tell if GP/HS/EMU/TST
250 */
251u32 get_device_type(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000252{
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000253 return (readl((*ctrl)->control_status) &
SRICHARAN R36c366f2012-03-12 02:25:43 +0000254 (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;
Aneesh Ve3405bd2011-06-16 23:30:52 +0000255}
256
Masahiro Yamada81a689e2014-02-13 18:30:26 +0900257#if defined(CONFIG_DISPLAY_CPUINFO)
Sricharan9310ff72011-11-15 09:49:55 -0500258/*
259 * Print CPU information
260 */
261int print_cpuinfo(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000262{
Andreas Müller0cda7a42012-01-04 15:26:24 +0000263 puts("CPU : ");
264 omap_rev_string();
Sricharan9310ff72011-11-15 09:49:55 -0500265
266 return 0;
267}
Masahiro Yamada81a689e2014-02-13 18:30:26 +0900268#endif