blob: 9ef10bdf2da272bc63482c939b4a6f153f4f1099 [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>
Steve Sakoman1ad21582010-06-08 13:07:46 -070035
Nishanth Menon4e5dd662010-11-19 11:19:40 -050036DECLARE_GLOBAL_DATA_PTR;
37
Aneesh Vf908b632011-07-21 09:10:01 -040038void 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 Vf908b632011-07-21 09:10:01 -040047static void set_mux_conf_regs(void)
48{
Sricharan9310ff72011-11-15 09:49:55 -050049 switch (omap_hw_init_context()) {
Aneesh Vf908b632011-07-21 09:10:01 -040050 case OMAP_INIT_CONTEXT_SPL:
51 set_muxconf_regs_essential();
52 break;
53 case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL:
Sricharan308fe922011-11-15 09:50:03 -050054#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh Vf908b632011-07-21 09:10:01 -040055 set_muxconf_regs_non_essential();
Sricharan308fe922011-11-15 09:50:03 -050056#endif
Aneesh Vf908b632011-07-21 09:10:01 -040057 break;
58 case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR:
59 case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH:
60 set_muxconf_regs_essential();
Sricharan308fe922011-11-15 09:50:03 -050061#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh Vf908b632011-07-21 09:10:01 -040062 set_muxconf_regs_non_essential();
Sricharan308fe922011-11-15 09:50:03 -050063#endif
Aneesh Vf908b632011-07-21 09:10:01 -040064 break;
65 }
66}
67
Sricharan9310ff72011-11-15 09:49:55 -050068u32 cortex_rev(void)
Aneesh V162ced32011-07-21 09:10:04 -040069{
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üller0cda7a42012-01-04 15:26:24 +000079void omap_rev_string(void)
Aneesh V162ced32011-07-21 09:10:04 -040080{
Sricharan9310ff72011-11-15 09:49:55 -050081 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 V162ced32011-07-21 09:10:04 -040085
Andreas Müller0cda7a42012-01-04 15:26:24 +000086 printf("OMAP%x ES%x.%x\n", omap_variant, major_rev,
Aneesh V162ced32011-07-21 09:10:04 -040087 minor_rev);
88}
89
Sricharan308fe922011-11-15 09:50:03 -050090#ifdef CONFIG_SPL_BUILD
91static void init_boot_params(void)
92{
93 boot_params_ptr = (u32 *) &boot_params;
94}
Tom Rinife3b0c72012-08-13 11:37:56 -070095
96void spl_display_print(void)
97{
98 omap_rev_string();
99}
Sricharan308fe922011-11-15 09:50:03 -0500100#endif
101
Steve Sakoman1ad21582010-06-08 13:07:46 -0700102/*
103 * Routine: s_init
Aneesh Vf908b632011-07-21 09:10:01 -0400104 * 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 Sakoman1ad21582010-06-08 13:07:46 -0700115 */
116void s_init(void)
117{
Sricharan9310ff72011-11-15 09:49:55 -0500118 init_omap_revision();
Lokesh Vutlaba873772012-05-29 19:26:43 +0000119#ifdef CONFIG_SPL_BUILD
120 if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0))
121 force_emif_self_refresh();
122#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700123 watchdog_init();
Aneesh Vf908b632011-07-21 09:10:01 -0400124 set_mux_conf_regs();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400125#ifdef CONFIG_SPL_BUILD
Simon Schwarz01a43322011-09-14 15:14:46 -0400126 setup_clocks_for_console();
Tom Rini31dfba42012-08-22 15:31:05 -0700127
128 gd = &gdata;
129
Aneesh Vb8e60b92011-07-21 09:10:21 -0400130 preloader_console_init();
Aneesh Vb35f7cb2011-09-08 11:05:56 -0400131 do_io_settings();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400132#endif
Aneesh V0d2628b2011-07-21 09:10:07 -0400133 prcm_init();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400134#ifdef CONFIG_SPL_BUILD
Dechesne, Nicolasf8c6e1b2012-01-31 07:35:40 +0000135 timer_init();
136
Aneesh Vb8e60b92011-07-21 09:10:21 -0400137 /* For regular u-boot sdram_init() is called from dram_init() */
138 sdram_init();
Sricharan308fe922011-11-15 09:50:03 -0500139 init_boot_params();
Aneesh Vb8e60b92011-07-21 09:10:21 -0400140#endif
Steve Sakoman1ad21582010-06-08 13:07:46 -0700141}
142
143/*
144 * Routine: wait_for_command_complete
145 * Description: Wait for posting to finish on watchdog
146 */
147void wait_for_command_complete(struct watchdog *wd_base)
148{
149 int pending = 1;
150 do {
151 pending = readl(&wd_base->wwps);
152 } while (pending);
153}
154
155/*
156 * Routine: watchdog_init
157 * Description: Shut down watch dogs
158 */
159void watchdog_init(void)
160{
161 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
162
163 writel(WD_UNLOCK1, &wd2_base->wspr);
164 wait_for_command_complete(wd2_base);
165 writel(WD_UNLOCK2, &wd2_base->wspr);
166}
167
Aneesh V04bd2b92010-09-12 10:32:55 +0530168
169/*
170 * This function finds the SDRAM size available in the system
171 * based on DMM section configurations
172 * This is needed because the size of memory installed may be
173 * different on different versions of the board
174 */
Sricharan9310ff72011-11-15 09:49:55 -0500175u32 omap_sdram_size(void)
Aneesh V04bd2b92010-09-12 10:32:55 +0530176{
SRICHARAN R015be792012-05-17 00:12:06 +0000177 u32 section, i, valid;
178 u64 sdram_start = 0, sdram_end = 0, addr,
179 size, total_size = 0, trap_size = 0;
Sricharan62a86502011-11-15 09:50:00 -0500180
Aneesh V04bd2b92010-09-12 10:32:55 +0530181 for (i = 0; i < 4; i++) {
Sricharan62a86502011-11-15 09:50:00 -0500182 section = __raw_readl(DMM_BASE + i*4);
SRICHARAN R015be792012-05-17 00:12:06 +0000183 valid = (section & EMIF_SDRC_ADDRSPC_MASK) >>
184 (EMIF_SDRC_ADDRSPC_SHIFT);
Sricharan62a86502011-11-15 09:50:00 -0500185 addr = section & EMIF_SYS_ADDR_MASK;
SRICHARAN R015be792012-05-17 00:12:06 +0000186
Aneesh V04bd2b92010-09-12 10:32:55 +0530187 /* See if the address is valid */
Sricharan62a86502011-11-15 09:50:00 -0500188 if ((addr >= DRAM_ADDR_SPACE_START) &&
189 (addr < DRAM_ADDR_SPACE_END)) {
190 size = ((section & EMIF_SYS_SIZE_MASK) >>
191 EMIF_SYS_SIZE_SHIFT);
192 size = 1 << size;
193 size *= SZ_16M;
SRICHARAN R015be792012-05-17 00:12:06 +0000194
195 if (valid != DMM_SDRC_ADDR_SPC_INVALID) {
196 if (!sdram_start || (addr < sdram_start))
197 sdram_start = addr;
198 if (!sdram_end || ((addr + size) > sdram_end))
199 sdram_end = addr + size;
200 } else {
201 trap_size = size;
202 }
203
Aneesh V04bd2b92010-09-12 10:32:55 +0530204 }
SRICHARAN R015be792012-05-17 00:12:06 +0000205
Aneesh V04bd2b92010-09-12 10:32:55 +0530206 }
SRICHARAN R015be792012-05-17 00:12:06 +0000207 total_size = (sdram_end - sdram_start) - (trap_size);
Sricharan62a86502011-11-15 09:50:00 -0500208
Aneesh V04bd2b92010-09-12 10:32:55 +0530209 return total_size;
210}
211
212
Steve Sakoman1ad21582010-06-08 13:07:46 -0700213/*
214 * Routine: dram_init
215 * Description: sets uboots idea of sdram size
216 */
217int dram_init(void)
218{
Aneesh Vcc565582011-07-21 09:10:09 -0400219 sdram_init();
Sricharan9310ff72011-11-15 09:49:55 -0500220 gd->ram_size = omap_sdram_size();
Steve Sakoman1ad21582010-06-08 13:07:46 -0700221 return 0;
222}
223
224/*
225 * Print board information
226 */
227int checkboard(void)
228{
229 puts(sysinfo.board_string);
230 return 0;
231}
232
Steve Sakoman9bb65b52010-07-15 13:43:10 -0700233/*
Sricharan9310ff72011-11-15 09:49:55 -0500234 * get_device_type(): tell if GP/HS/EMU/TST
235 */
236u32 get_device_type(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000237{
SRICHARAN R36c366f2012-03-12 02:25:43 +0000238 struct omap_sys_ctrl_regs *ctrl =
239 (struct omap_sys_ctrl_regs *) SYSCTRL_GENERAL_CORE_BASE;
240
241 return (readl(&ctrl->control_status) &
242 (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;
Aneesh Ve3405bd2011-06-16 23:30:52 +0000243}
244
Sricharan9310ff72011-11-15 09:49:55 -0500245/*
246 * Print CPU information
247 */
248int print_cpuinfo(void)
Aneesh Ve3405bd2011-06-16 23:30:52 +0000249{
Andreas Müller0cda7a42012-01-04 15:26:24 +0000250 puts("CPU : ");
251 omap_rev_string();
Sricharan9310ff72011-11-15 09:49:55 -0500252
253 return 0;
254}
Aneesh V572134b2011-08-11 04:35:43 +0000255#ifndef CONFIG_SYS_DCACHE_OFF
256void enable_caches(void)
257{
258 /* Enable D-cache. I-cache is already enabled in start.S */
259 dcache_enable();
260}
261#endif