blob: 70d16a816070b779cb3b6f1fac5bf9b734220f99 [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>
Lokesh Vutlad4d986e2013-02-12 01:33:45 +000036#include <linux/compiler.h>
R Sricharande63ac22013-03-04 20:04:45 +000037#include <asm/cache.h>
38#include <asm/system.h>
39
40#define ARMV7_DCACHE_WRITEBACK 0xe
41#define ARMV7_DOMAIN_CLIENT 1
42#define ARMV7_DOMAIN_MASK (0x3 << 0)
Steve Sakomand34efc72010-06-08 13:07:46 -070043
Nishanth Menon93e35682010-11-19 11:19:40 -050044DECLARE_GLOBAL_DATA_PTR;
45
Aneesh V469ec1e2011-07-21 09:10:01 -040046void do_set_mux(u32 base, struct pad_conf_entry const *array, int size)
47{
48 int i;
49 struct pad_conf_entry *pad = (struct pad_conf_entry *) array;
50
51 for (i = 0; i < size; i++, pad++)
52 writew(pad->val, base + pad->offset);
53}
54
Aneesh V469ec1e2011-07-21 09:10:01 -040055static void set_mux_conf_regs(void)
56{
Sricharan508a58f2011-11-15 09:49:55 -050057 switch (omap_hw_init_context()) {
Aneesh V469ec1e2011-07-21 09:10:01 -040058 case OMAP_INIT_CONTEXT_SPL:
59 set_muxconf_regs_essential();
60 break;
61 case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL:
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 case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR:
67 case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH:
68 set_muxconf_regs_essential();
Sricharan78f455c2011-11-15 09:50:03 -050069#ifdef CONFIG_SYS_ENABLE_PADS_ALL
Aneesh V469ec1e2011-07-21 09:10:01 -040070 set_muxconf_regs_non_essential();
Sricharan78f455c2011-11-15 09:50:03 -050071#endif
Aneesh V469ec1e2011-07-21 09:10:01 -040072 break;
73 }
74}
75
Sricharan508a58f2011-11-15 09:49:55 -050076u32 cortex_rev(void)
Aneesh Vad577c82011-07-21 09:10:04 -040077{
78
79 unsigned int rev;
80
81 /* Read Main ID Register (MIDR) */
82 asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev));
83
84 return rev;
85}
86
Andreas Müller761ca312012-01-04 15:26:24 +000087void omap_rev_string(void)
Aneesh Vad577c82011-07-21 09:10:04 -040088{
Sricharan508a58f2011-11-15 09:49:55 -050089 u32 omap_rev = omap_revision();
Lokesh Vutlade626882013-02-12 21:29:03 +000090 u32 soc_variant = (omap_rev & 0xF0000000) >> 28;
Sricharan508a58f2011-11-15 09:49:55 -050091 u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16;
92 u32 major_rev = (omap_rev & 0x00000F00) >> 8;
93 u32 minor_rev = (omap_rev & 0x000000F0) >> 4;
Aneesh Vad577c82011-07-21 09:10:04 -040094
Lokesh Vutlade626882013-02-12 21:29:03 +000095 if (soc_variant)
96 printf("OMAP");
97 else
98 printf("DRA");
99 printf("%x ES%x.%x\n", omap_variant, major_rev,
100 minor_rev);
Aneesh Vad577c82011-07-21 09:10:04 -0400101}
102
Sricharan78f455c2011-11-15 09:50:03 -0500103#ifdef CONFIG_SPL_BUILD
104static void init_boot_params(void)
105{
106 boot_params_ptr = (u32 *) &boot_params;
107}
Tom Rini861a86f2012-08-13 11:37:56 -0700108
109void spl_display_print(void)
110{
111 omap_rev_string();
112}
Sricharan78f455c2011-11-15 09:50:03 -0500113#endif
114
Lokesh Vutlad4d986e2013-02-12 01:33:45 +0000115void __weak srcomp_enable(void)
116{
117}
118
Steve Sakomand34efc72010-06-08 13:07:46 -0700119/*
120 * Routine: s_init
Aneesh V469ec1e2011-07-21 09:10:01 -0400121 * Description: Does early system init of watchdog, muxing, andclocks
122 * Watchdog disable is done always. For the rest what gets done
123 * depends on the boot mode in which this function is executed
124 * 1. s_init of SPL running from SRAM
125 * 2. s_init of U-Boot running from FLASH
126 * 3. s_init of U-Boot loaded to SDRAM by SPL
127 * 4. s_init of U-Boot loaded to SDRAM by ROM code using the
128 * Configuration Header feature
129 * Please have a look at the respective functions to see what gets
130 * done in each of these cases
131 * This function is called with SRAM stack.
Steve Sakomand34efc72010-06-08 13:07:46 -0700132 */
133void s_init(void)
134{
Sricharan508a58f2011-11-15 09:49:55 -0500135 init_omap_revision();
SRICHARAN R01b753f2013-02-04 04:22:00 +0000136 hw_data_init();
137
Lokesh Vutla38f25b12012-05-29 19:26:43 +0000138#ifdef CONFIG_SPL_BUILD
139 if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0))
140 force_emif_self_refresh();
141#endif
Steve Sakomand34efc72010-06-08 13:07:46 -0700142 watchdog_init();
Aneesh V469ec1e2011-07-21 09:10:01 -0400143 set_mux_conf_regs();
Aneesh Vbcae7212011-07-21 09:10:21 -0400144#ifdef CONFIG_SPL_BUILD
Lokesh Vutlad4d986e2013-02-12 01:33:45 +0000145 srcomp_enable();
Simon Schwarz63ffcfc2011-09-14 15:14:46 -0400146 setup_clocks_for_console();
Tom Rini6507f132012-08-22 15:31:05 -0700147
148 gd = &gdata;
149
Aneesh Vbcae7212011-07-21 09:10:21 -0400150 preloader_console_init();
Aneesh V4ecfcfa2011-09-08 11:05:56 -0400151 do_io_settings();
Aneesh Vbcae7212011-07-21 09:10:21 -0400152#endif
Aneesh V37768012011-07-21 09:10:07 -0400153 prcm_init();
Aneesh Vbcae7212011-07-21 09:10:21 -0400154#ifdef CONFIG_SPL_BUILD
Dechesne, Nicolasf5902172012-01-31 07:35:40 +0000155 timer_init();
156
Aneesh Vbcae7212011-07-21 09:10:21 -0400157 /* For regular u-boot sdram_init() is called from dram_init() */
158 sdram_init();
Sricharan78f455c2011-11-15 09:50:03 -0500159 init_boot_params();
Aneesh Vbcae7212011-07-21 09:10:21 -0400160#endif
Steve Sakomand34efc72010-06-08 13:07:46 -0700161}
162
163/*
164 * Routine: wait_for_command_complete
165 * Description: Wait for posting to finish on watchdog
166 */
167void wait_for_command_complete(struct watchdog *wd_base)
168{
169 int pending = 1;
170 do {
171 pending = readl(&wd_base->wwps);
172 } while (pending);
173}
174
175/*
176 * Routine: watchdog_init
177 * Description: Shut down watch dogs
178 */
179void watchdog_init(void)
180{
181 struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
182
183 writel(WD_UNLOCK1, &wd2_base->wspr);
184 wait_for_command_complete(wd2_base);
185 writel(WD_UNLOCK2, &wd2_base->wspr);
186}
187
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530188
189/*
190 * This function finds the SDRAM size available in the system
191 * based on DMM section configurations
192 * This is needed because the size of memory installed may be
193 * different on different versions of the board
194 */
Sricharan508a58f2011-11-15 09:49:55 -0500195u32 omap_sdram_size(void)
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530196{
SRICHARAN Re06e9142012-05-17 00:12:06 +0000197 u32 section, i, valid;
198 u64 sdram_start = 0, sdram_end = 0, addr,
199 size, total_size = 0, trap_size = 0;
Sricharanbb772a52011-11-15 09:50:00 -0500200
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530201 for (i = 0; i < 4; i++) {
Sricharanbb772a52011-11-15 09:50:00 -0500202 section = __raw_readl(DMM_BASE + i*4);
SRICHARAN Re06e9142012-05-17 00:12:06 +0000203 valid = (section & EMIF_SDRC_ADDRSPC_MASK) >>
204 (EMIF_SDRC_ADDRSPC_SHIFT);
Sricharanbb772a52011-11-15 09:50:00 -0500205 addr = section & EMIF_SYS_ADDR_MASK;
SRICHARAN Re06e9142012-05-17 00:12:06 +0000206
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530207 /* See if the address is valid */
Sricharanbb772a52011-11-15 09:50:00 -0500208 if ((addr >= DRAM_ADDR_SPACE_START) &&
209 (addr < DRAM_ADDR_SPACE_END)) {
210 size = ((section & EMIF_SYS_SIZE_MASK) >>
211 EMIF_SYS_SIZE_SHIFT);
212 size = 1 << size;
213 size *= SZ_16M;
SRICHARAN Re06e9142012-05-17 00:12:06 +0000214
215 if (valid != DMM_SDRC_ADDR_SPC_INVALID) {
216 if (!sdram_start || (addr < sdram_start))
217 sdram_start = addr;
218 if (!sdram_end || ((addr + size) > sdram_end))
219 sdram_end = addr + size;
220 } else {
221 trap_size = size;
222 }
223
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530224 }
SRICHARAN Re06e9142012-05-17 00:12:06 +0000225
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530226 }
SRICHARAN Re06e9142012-05-17 00:12:06 +0000227 total_size = (sdram_end - sdram_start) - (trap_size);
Sricharanbb772a52011-11-15 09:50:00 -0500228
Aneesh V7ca3f9c2010-09-12 10:32:55 +0530229 return total_size;
230}
231
232
Steve Sakomand34efc72010-06-08 13:07:46 -0700233/*
234 * Routine: dram_init
235 * Description: sets uboots idea of sdram size
236 */
237int dram_init(void)
238{
Aneesh V2ae610f2011-07-21 09:10:09 -0400239 sdram_init();
Sricharan508a58f2011-11-15 09:49:55 -0500240 gd->ram_size = omap_sdram_size();
Steve Sakomand34efc72010-06-08 13:07:46 -0700241 return 0;
242}
243
244/*
245 * Print board information
246 */
247int checkboard(void)
248{
249 puts(sysinfo.board_string);
250 return 0;
251}
252
Steve Sakoman2ad853c2010-07-15 13:43:10 -0700253/*
Sricharan508a58f2011-11-15 09:49:55 -0500254 * get_device_type(): tell if GP/HS/EMU/TST
255 */
256u32 get_device_type(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000257{
Lokesh Vutlac43c8332013-02-04 04:22:04 +0000258 return (readl((*ctrl)->control_status) &
SRICHARAN Rc1fa3c32012-03-12 02:25:43 +0000259 (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;
Aneesh V8b457fa2011-06-16 23:30:52 +0000260}
261
Sricharan508a58f2011-11-15 09:49:55 -0500262/*
263 * Print CPU information
264 */
265int print_cpuinfo(void)
Aneesh V8b457fa2011-06-16 23:30:52 +0000266{
Andreas Müller761ca312012-01-04 15:26:24 +0000267 puts("CPU : ");
268 omap_rev_string();
Sricharan508a58f2011-11-15 09:49:55 -0500269
270 return 0;
271}
Aneesh V13d4f9b2011-08-11 04:35:43 +0000272#ifndef CONFIG_SYS_DCACHE_OFF
273void enable_caches(void)
274{
275 /* Enable D-cache. I-cache is already enabled in start.S */
276 dcache_enable();
277}
R Sricharande63ac22013-03-04 20:04:45 +0000278
279void dram_bank_mmu_setup(int bank)
280{
281 bd_t *bd = gd->bd;
282 int i;
283
284 u32 start = bd->bi_dram[bank].start >> 20;
285 u32 size = bd->bi_dram[bank].size >> 20;
286 u32 end = start + size;
287
288 debug("%s: bank: %d\n", __func__, bank);
289 for (i = start; i < end; i++)
290 set_section_dcache(i, ARMV7_DCACHE_WRITEBACK);
291
292}
293
294void arm_init_domains(void)
295{
296 u32 reg;
297
298 reg = get_dacr();
299 /*
300 * Set DOMAIN to client access so that all permissions
301 * set in pagetables are validated by the mmu.
302 */
303 reg &= ~ARMV7_DOMAIN_MASK;
304 reg |= ARMV7_DOMAIN_CLIENT;
305 set_dacr(reg);
306}
Aneesh V13d4f9b2011-08-11 04:35:43 +0000307#endif