blob: 05ff2e868f2b4f5a99bafde85eca035d8639db25 [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>
Steve Sakoman1ad21582010-06-08 13:07:46 -070037
Nishanth Menon4e5dd662010-11-19 11:19:40 -050038DECLARE_GLOBAL_DATA_PTR;
39
Aneesh Vf908b632011-07-21 09:10:01 -040040void do_set_mux(u32 base, struct pad_conf_entry const *array, int size)
41{
42 int i;
43 struct pad_conf_entry *pad = (struct pad_conf_entry *) array;
44
45 for (i = 0; i < size; i++, pad++)
46 writew(pad->val, base + pad->offset);
47}
48
Aneesh Vf908b632011-07-21 09:10:01 -040049static void set_mux_conf_regs(void)
50{
Sricharan9310ff72011-11-15 09:49:55 -050051 switch (omap_hw_init_context()) {
Aneesh Vf908b632011-07-21 09:10:01 -040052 case OMAP_INIT_CONTEXT_SPL:
53 set_muxconf_regs_essential();
54 break;
55 case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL:
Sricharan308fe922011-11-15 09:50:03 -050056#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh Vf908b632011-07-21 09:10:01 -040057 set_muxconf_regs_non_essential();
Sricharan308fe922011-11-15 09:50:03 -050058#endif
Aneesh Vf908b632011-07-21 09:10:01 -040059 break;
60 case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR:
61 case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH:
62 set_muxconf_regs_essential();
Sricharan308fe922011-11-15 09:50:03 -050063#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh Vf908b632011-07-21 09:10:01 -040064 set_muxconf_regs_non_essential();
Sricharan308fe922011-11-15 09:50:03 -050065#endif
Aneesh Vf908b632011-07-21 09:10:01 -040066 break;
67 }
68}
69
Sricharan9310ff72011-11-15 09:49:55 -050070u32 cortex_rev(void)
Aneesh V162ced32011-07-21 09:10:04 -040071{
72
73 unsigned int rev;
74
75 /* Read Main ID Register (MIDR) */
76 asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev));
77
78 return rev;
79}
80
Andreas Müller0cda7a42012-01-04 15:26:24 +000081void omap_rev_string(void)
Aneesh V162ced32011-07-21 09:10:04 -040082{
Sricharan9310ff72011-11-15 09:49:55 -050083 u32 omap_rev = omap_revision();
Lokesh Vutla43c296f2013-02-12 21:29:03 +000084 u32 soc_variant = (omap_rev & 0xF0000000) >> 28;
Sricharan9310ff72011-11-15 09:49:55 -050085 u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16;
86 u32 major_rev = (omap_rev & 0x00000F00) >> 8;
87 u32 minor_rev = (omap_rev & 0x000000F0) >> 4;
Aneesh V162ced32011-07-21 09:10:04 -040088
Lokesh Vutla43c296f2013-02-12 21:29:03 +000089 if (soc_variant)
90 printf("OMAP");
91 else
92 printf("DRA");
93 printf("%x ES%x.%x\n", omap_variant, major_rev,
94 minor_rev);
Aneesh V162ced32011-07-21 09:10:04 -040095}
96
Sricharan308fe922011-11-15 09:50:03 -050097#ifdef CONFIG_SPL_BUILD
98static void init_boot_params(void)
99{
100 boot_params_ptr = (u32 *) &boot_params;
101}
Tom Rinife3b0c72012-08-13 11:37:56 -0700102
103void spl_display_print(void)
104{
105 omap_rev_string();
106}
Sricharan308fe922011-11-15 09:50:03 -0500107#endif
108
Lokesh Vutla28049632013-02-12 01:33:45 +0000109void __weak srcomp_enable(void)
110{
111}
112
Steve Sakoman1ad21582010-06-08 13:07:46 -0700113/*
114 * Routine: s_init
Aneesh Vf908b632011-07-21 09:10:01 -0400115 * Description: Does early system init of watchdog, muxing, andclocks
116 * Watchdog disable is done always. For the rest what gets done
117 * depends on the boot mode in which this function is executed
118 * 1. s_init of SPL running from SRAM
119 * 2. s_init of U-Boot running from FLASH
120 * 3. s_init of U-Boot loaded to SDRAM by SPL
121 * 4. s_init of U-Boot loaded to SDRAM by ROM code using the
122 * Configuration Header feature
123 * Please have a look at the respective functions to see what gets
124 * done in each of these cases
125 * This function is called with SRAM stack.
Steve Sakoman1ad21582010-06-08 13:07:46 -0700126 */
127void s_init(void)
128{
Sricharan9310ff72011-11-15 09:49:55 -0500129 init_omap_revision();
SRICHARAN Rfb6aa1f2013-02-04 04:22:00 +0000130 hw_data_init();
131
Lokesh Vutlaba873772012-05-29 19:26:43 +0000132#ifdef CONFIG_SPL_BUILD
133 if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0))
134 force_emif_self_refresh();
135#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700136 watchdog_init();
Aneesh Vf908b632011-07-21 09:10:01 -0400137 set_mux_conf_regs();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400138#ifdef CONFIG_SPL_BUILD
Lokesh Vutla28049632013-02-12 01:33:45 +0000139 srcomp_enable();
Simon Schwarz01a43322011-09-14 15:14:46 -0400140 setup_clocks_for_console();
Tom Rini31dfba42012-08-22 15:31:05 -0700141
142 gd = &gdata;
143
Aneesh Vb8e60b92011-07-21 09:10:21 -0400144 preloader_console_init();
Aneesh Vb35f7cb2011-09-08 11:05:56 -0400145 do_io_settings();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400146#endif
Aneesh V0d2628b2011-07-21 09:10:07 -0400147 prcm_init();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400148#ifdef CONFIG_SPL_BUILD
Dechesne, Nicolasf8c6e1b2012-01-31 07:35:40 +0000149 timer_init();
150
Aneesh Vb8e60b92011-07-21 09:10:21 -0400151 /* For regular u-boot sdram_init() is called from dram_init() */
152 sdram_init();
Sricharan308fe922011-11-15 09:50:03 -0500153 init_boot_params();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400154#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700155}
156
157/*
158 * Routine: wait_for_command_complete
159 * Description: Wait for posting to finish on watchdog
160 */
161void wait_for_command_complete(struct watchdog *wd_base)
162{
163 int pending = 1;
164 do {
165 pending = readl(&wd_base->wwps);
166 } while (pending);
167}
168
169/*
170 * Routine: watchdog_init
171 * Description: Shut down watch dogs
172 */
173void watchdog_init(void)
174{
175 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
176
177 writel(WD_UNLOCK1, &wd2_base->wspr);
178 wait_for_command_complete(wd2_base);
179 writel(WD_UNLOCK2, &wd2_base->wspr);
180}
181
Aneesh V04bd2b92010-09-12 10:32:55 +0530182
183/*
184 * This function finds the SDRAM size available in the system
185 * based on DMM section configurations
186 * This is needed because the size of memory installed may be
187 * different on different versions of the board
188 */
Sricharan9310ff72011-11-15 09:49:55 -0500189u32 omap_sdram_size(void)
Aneesh V04bd2b92010-09-12 10:32:55 +0530190{
SRICHARAN R015be792012-05-17 00:12:06 +0000191 u32 section, i, valid;
192 u64 sdram_start = 0, sdram_end = 0, addr,
193 size, total_size = 0, trap_size = 0;
Sricharan62a86502011-11-15 09:50:00 -0500194
Aneesh V04bd2b92010-09-12 10:32:55 +0530195 for (i = 0; i < 4; i++) {
Sricharan62a86502011-11-15 09:50:00 -0500196 section = __raw_readl(DMM_BASE + i*4);
SRICHARAN R015be792012-05-17 00:12:06 +0000197 valid = (section & EMIF_SDRC_ADDRSPC_MASK) >>
198 (EMIF_SDRC_ADDRSPC_SHIFT);
Sricharan62a86502011-11-15 09:50:00 -0500199 addr = section & EMIF_SYS_ADDR_MASK;
SRICHARAN R015be792012-05-17 00:12:06 +0000200
Aneesh V04bd2b92010-09-12 10:32:55 +0530201 /* See if the address is valid */
Sricharan62a86502011-11-15 09:50:00 -0500202 if ((addr >= DRAM_ADDR_SPACE_START) &&
203 (addr < DRAM_ADDR_SPACE_END)) {
204 size = ((section & EMIF_SYS_SIZE_MASK) >>
205 EMIF_SYS_SIZE_SHIFT);
206 size = 1 << size;
207 size *= SZ_16M;
SRICHARAN R015be792012-05-17 00:12:06 +0000208
209 if (valid != DMM_SDRC_ADDR_SPC_INVALID) {
210 if (!sdram_start || (addr < sdram_start))
211 sdram_start = addr;
212 if (!sdram_end || ((addr + size) > sdram_end))
213 sdram_end = addr + size;
214 } else {
215 trap_size = size;
216 }
217
Aneesh V04bd2b92010-09-12 10:32:55 +0530218 }
SRICHARAN R015be792012-05-17 00:12:06 +0000219
Aneesh V04bd2b92010-09-12 10:32:55 +0530220 }
SRICHARAN R015be792012-05-17 00:12:06 +0000221 total_size = (sdram_end - sdram_start) - (trap_size);
Sricharan62a86502011-11-15 09:50:00 -0500222
Aneesh V04bd2b92010-09-12 10:32:55 +0530223 return total_size;
224}
225
226
Steve Sakoman1ad21582010-06-08 13:07:46 -0700227/*
228 * Routine: dram_init
229 * Description: sets uboots idea of sdram size
230 */
231int dram_init(void)
232{
Aneesh Vcc565582011-07-21 09:10:09 -0400233 sdram_init();
Sricharan9310ff72011-11-15 09:49:55 -0500234 gd->ram_size = omap_sdram_size();
Steve Sakoman1ad21582010-06-08 13:07:46 -0700235 return 0;
236}
237
238/*
239 * Print board information
240 */
241int checkboard(void)
242{
243 puts(sysinfo.board_string);
244 return 0;
245}
246
Steve Sakoman9bb65b52010-07-15 13:43:10 -0700247/*
Sricharan9310ff72011-11-15 09:49:55 -0500248 * get_device_type(): tell if GP/HS/EMU/TST
249 */
250u32 get_device_type(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000251{
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000252 return (readl((*ctrl)->control_status) &
SRICHARAN R36c366f2012-03-12 02:25:43 +0000253 (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;
Aneesh Ve3405bd2011-06-16 23:30:52 +0000254}
255
Sricharan9310ff72011-11-15 09:49:55 -0500256/*
257 * Print CPU information
258 */
259int print_cpuinfo(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000260{
Andreas Müller0cda7a42012-01-04 15:26:24 +0000261 puts("CPU : ");
262 omap_rev_string();
Sricharan9310ff72011-11-15 09:49:55 -0500263
264 return 0;
265}
Aneesh V572134b2011-08-11 04:35:43 +0000266#ifndef CONFIG_SYS_DCACHE_OFF
267void enable_caches(void)
268{
269 /* Enable D-cache. I-cache is already enabled in start.S */
270 dcache_enable();
271}
272#endif