blob: fff89da571071e8c25a8d2d73643b0a2d53366f0 [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 *
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 Rini47f7bca2012-08-13 12:03:19 -070031#include <spl.h>
Steve Sakomand34efc72010-06-08 13:07:46 -070032#include <asm/arch/sys_proto.h>
Aneesh V7ca3f9c2010-09-12 10:32:55 +053033#include <asm/sizes.h>
Sricharanbb772a52011-11-15 09:50:00 -050034#include <asm/emif.h>
SRICHARAN R01b753f2013-02-04 04:22:00 +000035#include <asm/omap_common.h>
Steve Sakomand34efc72010-06-08 13:07:46 -070036
Nishanth Menon93e35682010-11-19 11:19:40 -050037DECLARE_GLOBAL_DATA_PTR;
38
Aneesh V469ec1e2011-07-21 09:10:01 -040039void do_set_mux(u32 base, struct pad_conf_entry const *array, int size)
40{
41 int i;
42 struct pad_conf_entry *pad = (struct pad_conf_entry *) array;
43
44 for (i = 0; i < size; i++, pad++)
45 writew(pad->val, base + pad->offset);
46}
47
Aneesh V469ec1e2011-07-21 09:10:01 -040048static void set_mux_conf_regs(void)
49{
Sricharan508a58f2011-11-15 09:49:55 -050050 switch (omap_hw_init_context()) {
Aneesh V469ec1e2011-07-21 09:10:01 -040051 case OMAP_INIT_CONTEXT_SPL:
52 set_muxconf_regs_essential();
53 break;
54 case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL:
Sricharan78f455c2011-11-15 09:50:03 -050055#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh V469ec1e2011-07-21 09:10:01 -040056 set_muxconf_regs_non_essential();
Sricharan78f455c2011-11-15 09:50:03 -050057#endif
Aneesh V469ec1e2011-07-21 09:10:01 -040058 break;
59 case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR:
60 case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH:
61 set_muxconf_regs_essential();
Sricharan78f455c2011-11-15 09:50:03 -050062#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh V469ec1e2011-07-21 09:10:01 -040063 set_muxconf_regs_non_essential();
Sricharan78f455c2011-11-15 09:50:03 -050064#endif
Aneesh V469ec1e2011-07-21 09:10:01 -040065 break;
66 }
67}
68
Sricharan508a58f2011-11-15 09:49:55 -050069u32 cortex_rev(void)
Aneesh Vad577c82011-07-21 09:10:04 -040070{
71
72 unsigned int rev;
73
74 /* Read Main ID Register (MIDR) */
75 asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev));
76
77 return rev;
78}
79
Andreas Müller761ca312012-01-04 15:26:24 +000080void omap_rev_string(void)
Aneesh Vad577c82011-07-21 09:10:04 -040081{
Sricharan508a58f2011-11-15 09:49:55 -050082 u32 omap_rev = omap_revision();
83 u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16;
84 u32 major_rev = (omap_rev & 0x00000F00) >> 8;
85 u32 minor_rev = (omap_rev & 0x000000F0) >> 4;
Aneesh Vad577c82011-07-21 09:10:04 -040086
Andreas Müller761ca312012-01-04 15:26:24 +000087 printf("OMAP%x ES%x.%x\n", omap_variant, major_rev,
Aneesh Vad577c82011-07-21 09:10:04 -040088 minor_rev);
89}
90
Sricharan78f455c2011-11-15 09:50:03 -050091#ifdef CONFIG_SPL_BUILD
92static void init_boot_params(void)
93{
94 boot_params_ptr = (u32 *) &boot_params;
95}
Tom Rini861a86f2012-08-13 11:37:56 -070096
97void spl_display_print(void)
98{
99 omap_rev_string();
100}
Sricharan78f455c2011-11-15 09:50:03 -0500101#endif
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{
Sricharan508a58f2011-11-15 09:49:55 -0500119 init_omap_revision();
SRICHARAN R01b753f2013-02-04 04:22:00 +0000120 hw_data_init();
121
Lokesh Vutla38f25b12012-05-29 19:26:43 +0000122#ifdef CONFIG_SPL_BUILD
123 if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0))
124 force_emif_self_refresh();
125#endif
Steve Sakomand34efc72010-06-08 13:07:46 -0700126 watchdog_init();
Aneesh V469ec1e2011-07-21 09:10:01 -0400127 set_mux_conf_regs();
Aneesh Vbcae7212011-07-21 09:10:21 -0400128#ifdef CONFIG_SPL_BUILD
Simon Schwarz63ffcfc2011-09-14 15:14:46 -0400129 setup_clocks_for_console();
Tom Rini6507f132012-08-22 15:31:05 -0700130
131 gd = &gdata;
132
Aneesh Vbcae7212011-07-21 09:10:21 -0400133 preloader_console_init();
Aneesh V4ecfcfa2011-09-08 11:05:56 -0400134 do_io_settings();
Aneesh Vbcae7212011-07-21 09:10:21 -0400135#endif
Aneesh V37768012011-07-21 09:10:07 -0400136 prcm_init();
Aneesh Vbcae7212011-07-21 09:10:21 -0400137#ifdef CONFIG_SPL_BUILD
Dechesne, Nicolasf5902172012-01-31 07:35:40 +0000138 timer_init();
139
Aneesh Vbcae7212011-07-21 09:10:21 -0400140 /* For regular u-boot sdram_init() is called from dram_init() */
141 sdram_init();
Sricharan78f455c2011-11-15 09:50:03 -0500142 init_boot_params();
Aneesh Vbcae7212011-07-21 09:10:21 -0400143#endif
Steve Sakomand34efc72010-06-08 13:07:46 -0700144}
145
146/*
147 * Routine: wait_for_command_complete
148 * Description: Wait for posting to finish on watchdog
149 */
150void wait_for_command_complete(struct watchdog *wd_base)
151{
152 int pending = 1;
153 do {
154 pending = readl(&wd_base->wwps);
155 } while (pending);
156}
157
158/*
159 * Routine: watchdog_init
160 * Description: Shut down watch dogs
161 */
162void watchdog_init(void)
163{
164 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
165
166 writel(WD_UNLOCK1, &wd2_base->wspr);
167 wait_for_command_complete(wd2_base);
168 writel(WD_UNLOCK2, &wd2_base->wspr);
169}
170
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530171
172/*
173 * This function finds the SDRAM size available in the system
174 * based on DMM section configurations
175 * This is needed because the size of memory installed may be
176 * different on different versions of the board
177 */
Sricharan508a58f2011-11-15 09:49:55 -0500178u32 omap_sdram_size(void)
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530179{
SRICHARAN Re06e9142012-05-17 00:12:06 +0000180 u32 section, i, valid;
181 u64 sdram_start = 0, sdram_end = 0, addr,
182 size, total_size = 0, trap_size = 0;
Sricharanbb772a52011-11-15 09:50:00 -0500183
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530184 for (i = 0; i < 4; i++) {
Sricharanbb772a52011-11-15 09:50:00 -0500185 section = __raw_readl(DMM_BASE + i*4);
SRICHARAN Re06e9142012-05-17 00:12:06 +0000186 valid = (section & EMIF_SDRC_ADDRSPC_MASK) >>
187 (EMIF_SDRC_ADDRSPC_SHIFT);
Sricharanbb772a52011-11-15 09:50:00 -0500188 addr = section & EMIF_SYS_ADDR_MASK;
SRICHARAN Re06e9142012-05-17 00:12:06 +0000189
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530190 /* See if the address is valid */
Sricharanbb772a52011-11-15 09:50:00 -0500191 if ((addr >= DRAM_ADDR_SPACE_START) &&
192 (addr < DRAM_ADDR_SPACE_END)) {
193 size = ((section & EMIF_SYS_SIZE_MASK) >>
194 EMIF_SYS_SIZE_SHIFT);
195 size = 1 << size;
196 size *= SZ_16M;
SRICHARAN Re06e9142012-05-17 00:12:06 +0000197
198 if (valid != DMM_SDRC_ADDR_SPC_INVALID) {
199 if (!sdram_start || (addr < sdram_start))
200 sdram_start = addr;
201 if (!sdram_end || ((addr + size) > sdram_end))
202 sdram_end = addr + size;
203 } else {
204 trap_size = size;
205 }
206
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530207 }
SRICHARAN Re06e9142012-05-17 00:12:06 +0000208
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530209 }
SRICHARAN Re06e9142012-05-17 00:12:06 +0000210 total_size = (sdram_end - sdram_start) - (trap_size);
Sricharanbb772a52011-11-15 09:50:00 -0500211
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530212 return total_size;
213}
214
215
Steve Sakomand34efc72010-06-08 13:07:46 -0700216/*
217 * Routine: dram_init
218 * Description: sets uboots idea of sdram size
219 */
220int dram_init(void)
221{
Aneesh V2ae610f2011-07-21 09:10:09 -0400222 sdram_init();
Sricharan508a58f2011-11-15 09:49:55 -0500223 gd->ram_size = omap_sdram_size();
Steve Sakomand34efc72010-06-08 13:07:46 -0700224 return 0;
225}
226
227/*
228 * Print board information
229 */
230int checkboard(void)
231{
232 puts(sysinfo.board_string);
233 return 0;
234}
235
Steve Sakoman2ad853c2010-07-15 13:43:10 -0700236/*
Sricharan508a58f2011-11-15 09:49:55 -0500237 * get_device_type(): tell if GP/HS/EMU/TST
238 */
239u32 get_device_type(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000240{
SRICHARAN Rc1fa3c32012-03-12 02:25:43 +0000241 struct omap_sys_ctrl_regs *ctrl =
242 (struct omap_sys_ctrl_regs *) SYSCTRL_GENERAL_CORE_BASE;
243
244 return (readl(&ctrl->control_status) &
245 (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;
Aneesh V8b457fa2011-06-16 23:30:52 +0000246}
247
Sricharan508a58f2011-11-15 09:49:55 -0500248/*
249 * Print CPU information
250 */
251int print_cpuinfo(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000252{
Andreas Müller761ca312012-01-04 15:26:24 +0000253 puts("CPU : ");
254 omap_rev_string();
Sricharan508a58f2011-11-15 09:49:55 -0500255
256 return 0;
257}
Aneesh V13d4f9b2011-08-11 04:35:43 +0000258#ifndef CONFIG_SYS_DCACHE_OFF
259void enable_caches(void)
260{
261 /* Enable D-cache. I-cache is already enabled in start.S */
262 dcache_enable();
263}
264#endif