blob: 49cdc3936e6829a91b98d2c081b0a3bc1387fa85 [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>
Steve Sakomand34efc72010-06-08 13:07:46 -070031#include <asm/arch/sys_proto.h>
Aneesh V7ca3f9c2010-09-12 10:32:55 +053032#include <asm/sizes.h>
Sricharanbb772a52011-11-15 09:50:00 -050033#include <asm/emif.h>
Sricharan78f455c2011-11-15 09:50:03 -050034#include <asm/omap_common.h>
Steve Sakomand34efc72010-06-08 13:07:46 -070035
Nishanth Menon93e35682010-11-19 11:19:40 -050036DECLARE_GLOBAL_DATA_PTR;
37
Aneesh V469ec1e2011-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 V469ec1e2011-07-21 09:10:01 -040047static void set_mux_conf_regs(void)
48{
Sricharan508a58f2011-11-15 09:49:55 -050049 switch (omap_hw_init_context()) {
Aneesh V469ec1e2011-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:
Sricharan78f455c2011-11-15 09:50:03 -050054#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh V469ec1e2011-07-21 09:10:01 -040055 set_muxconf_regs_non_essential();
Sricharan78f455c2011-11-15 09:50:03 -050056#endif
Aneesh V469ec1e2011-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();
Sricharan78f455c2011-11-15 09:50:03 -050061#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh V469ec1e2011-07-21 09:10:01 -040062 set_muxconf_regs_non_essential();
Sricharan78f455c2011-11-15 09:50:03 -050063#endif
Aneesh V469ec1e2011-07-21 09:10:01 -040064 break;
65 }
66}
67
Sricharan508a58f2011-11-15 09:49:55 -050068u32 cortex_rev(void)
Aneesh Vad577c82011-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üller761ca312012-01-04 15:26:24 +000079void omap_rev_string(void)
Aneesh Vad577c82011-07-21 09:10:04 -040080{
Sricharan508a58f2011-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 Vad577c82011-07-21 09:10:04 -040085
Andreas Müller761ca312012-01-04 15:26:24 +000086 printf("OMAP%x ES%x.%x\n", omap_variant, major_rev,
Aneesh Vad577c82011-07-21 09:10:04 -040087 minor_rev);
88}
89
Sricharan78f455c2011-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}
95#endif
96
Steve Sakomand34efc72010-06-08 13:07:46 -070097/*
98 * Routine: s_init
Aneesh V469ec1e2011-07-21 09:10:01 -040099 * Description: Does early system init of watchdog, muxing, andclocks
100 * Watchdog disable is done always. For the rest what gets done
101 * depends on the boot mode in which this function is executed
102 * 1. s_init of SPL running from SRAM
103 * 2. s_init of U-Boot running from FLASH
104 * 3. s_init of U-Boot loaded to SDRAM by SPL
105 * 4. s_init of U-Boot loaded to SDRAM by ROM code using the
106 * Configuration Header feature
107 * Please have a look at the respective functions to see what gets
108 * done in each of these cases
109 * This function is called with SRAM stack.
Steve Sakomand34efc72010-06-08 13:07:46 -0700110 */
111void s_init(void)
112{
Sricharan508a58f2011-11-15 09:49:55 -0500113 init_omap_revision();
Steve Sakomand34efc72010-06-08 13:07:46 -0700114 watchdog_init();
Aneesh V469ec1e2011-07-21 09:10:01 -0400115 set_mux_conf_regs();
Aneesh Vbcae7212011-07-21 09:10:21 -0400116#ifdef CONFIG_SPL_BUILD
Simon Schwarz63ffcfc2011-09-14 15:14:46 -0400117 setup_clocks_for_console();
Aneesh Vbcae7212011-07-21 09:10:21 -0400118 preloader_console_init();
Aneesh V4ecfcfa2011-09-08 11:05:56 -0400119 do_io_settings();
Aneesh Vbcae7212011-07-21 09:10:21 -0400120#endif
Aneesh V37768012011-07-21 09:10:07 -0400121 prcm_init();
Aneesh Vbcae7212011-07-21 09:10:21 -0400122#ifdef CONFIG_SPL_BUILD
123 /* For regular u-boot sdram_init() is called from dram_init() */
124 sdram_init();
Sricharan78f455c2011-11-15 09:50:03 -0500125 init_boot_params();
Aneesh Vbcae7212011-07-21 09:10:21 -0400126#endif
Steve Sakomand34efc72010-06-08 13:07:46 -0700127}
128
129/*
130 * Routine: wait_for_command_complete
131 * Description: Wait for posting to finish on watchdog
132 */
133void wait_for_command_complete(struct watchdog *wd_base)
134{
135 int pending = 1;
136 do {
137 pending = readl(&wd_base->wwps);
138 } while (pending);
139}
140
141/*
142 * Routine: watchdog_init
143 * Description: Shut down watch dogs
144 */
145void watchdog_init(void)
146{
147 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
148
149 writel(WD_UNLOCK1, &wd2_base->wspr);
150 wait_for_command_complete(wd2_base);
151 writel(WD_UNLOCK2, &wd2_base->wspr);
152}
153
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530154
155/*
156 * This function finds the SDRAM size available in the system
157 * based on DMM section configurations
158 * This is needed because the size of memory installed may be
159 * different on different versions of the board
160 */
Sricharan508a58f2011-11-15 09:49:55 -0500161u32 omap_sdram_size(void)
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530162{
163 u32 section, i, total_size = 0, size, addr;
Sricharanbb772a52011-11-15 09:50:00 -0500164
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530165 for (i = 0; i < 4; i++) {
Sricharanbb772a52011-11-15 09:50:00 -0500166 section = __raw_readl(DMM_BASE + i*4);
167 addr = section & EMIF_SYS_ADDR_MASK;
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530168 /* See if the address is valid */
Sricharanbb772a52011-11-15 09:50:00 -0500169 if ((addr >= DRAM_ADDR_SPACE_START) &&
170 (addr < DRAM_ADDR_SPACE_END)) {
171 size = ((section & EMIF_SYS_SIZE_MASK) >>
172 EMIF_SYS_SIZE_SHIFT);
173 size = 1 << size;
174 size *= SZ_16M;
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530175 total_size += size;
176 }
177 }
Sricharanbb772a52011-11-15 09:50:00 -0500178
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530179 return total_size;
180}
181
182
Steve Sakomand34efc72010-06-08 13:07:46 -0700183/*
184 * Routine: dram_init
185 * Description: sets uboots idea of sdram size
186 */
187int dram_init(void)
188{
Aneesh V2ae610f2011-07-21 09:10:09 -0400189 sdram_init();
Sricharan508a58f2011-11-15 09:49:55 -0500190 gd->ram_size = omap_sdram_size();
Steve Sakomand34efc72010-06-08 13:07:46 -0700191 return 0;
192}
193
194/*
195 * Print board information
196 */
197int checkboard(void)
198{
199 puts(sysinfo.board_string);
200 return 0;
201}
202
Steve Sakoman2ad853c2010-07-15 13:43:10 -0700203/*
204* This function is called by start_armboot. You can reliably use static
205* data. Any boot-time function that require static data should be
206* called from here
207*/
208int arch_cpu_init(void)
209{
Steve Sakoman2ad853c2010-07-15 13:43:10 -0700210 return 0;
211}
Aneesh V8b457fa2011-06-16 23:30:52 +0000212
Sricharan508a58f2011-11-15 09:49:55 -0500213/*
214 * get_device_type(): tell if GP/HS/EMU/TST
215 */
216u32 get_device_type(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000217{
Sricharan508a58f2011-11-15 09:49:55 -0500218 return 0;
Aneesh V8b457fa2011-06-16 23:30:52 +0000219}
220
Sricharan508a58f2011-11-15 09:49:55 -0500221/*
222 * Print CPU information
223 */
224int print_cpuinfo(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000225{
Andreas Müller761ca312012-01-04 15:26:24 +0000226 puts("CPU : ");
227 omap_rev_string();
Sricharan508a58f2011-11-15 09:49:55 -0500228
229 return 0;
230}
Aneesh V13d4f9b2011-08-11 04:35:43 +0000231#ifndef CONFIG_SYS_DCACHE_OFF
232void enable_caches(void)
233{
234 /* Enable D-cache. I-cache is already enabled in start.S */
235 dcache_enable();
236}
237#endif