]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/omap3/board.c
ARM: SPL: Move gpmc_init() to spl_board_init()
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / omap3 / board.c
1 /*
2  *
3  * Common board functions for OMAP3 based boards.
4  *
5  * (C) Copyright 2004-2008
6  * Texas Instruments, <www.ti.com>
7  *
8  * Author :
9  *      Sunil Kumar <sunilsaini05@gmail.com>
10  *      Shashi Ranjan <shashiranjanmca05@gmail.com>
11  *
12  * Derived from Beagle Board and 3430 SDP code by
13  *      Richard Woodruff <r-woodruff2@ti.com>
14  *      Syed Mohammed Khasim <khasim@ti.com>
15  *
16  *
17  * See file CREDITS for list of people who contributed to this
18  * project.
19  *
20  * This program is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU General Public License as
22  * published by the Free Software Foundation; either version 2 of
23  * the License, or (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program; if not, write to the Free Software
32  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33  * MA 02111-1307 USA
34  */
35 #include <common.h>
36 #include <asm/io.h>
37 #include <asm/arch/sys_proto.h>
38 #include <asm/arch/mem.h>
39 #include <asm/cache.h>
40 #include <asm/armv7.h>
41 #include <asm/arch/gpio.h>
42 #include <asm/spl.h>
43 #include <asm/omap_common.h>
44 #include <asm/arch/mmc_host_def.h>
45 #include <i2c.h>
46 #include <linux/compiler.h>
47
48 /* Declarations */
49 extern omap3_sysinfo sysinfo;
50 static void omap3_setup_aux_cr(void);
51 static void omap3_invalidate_l2_cache_secure(void);
52
53 static const struct gpio_bank gpio_bank_34xx[6] = {
54         { (void *)OMAP34XX_GPIO1_BASE, METHOD_GPIO_24XX },
55         { (void *)OMAP34XX_GPIO2_BASE, METHOD_GPIO_24XX },
56         { (void *)OMAP34XX_GPIO3_BASE, METHOD_GPIO_24XX },
57         { (void *)OMAP34XX_GPIO4_BASE, METHOD_GPIO_24XX },
58         { (void *)OMAP34XX_GPIO5_BASE, METHOD_GPIO_24XX },
59         { (void *)OMAP34XX_GPIO6_BASE, METHOD_GPIO_24XX },
60 };
61
62 const struct gpio_bank *const omap_gpio_bank = gpio_bank_34xx;
63
64 #ifdef CONFIG_SPL_BUILD
65 /*
66 * We use static variables because global data is not ready yet.
67 * Initialized data is available in SPL right from the beginning.
68 * We would not typically need to save these parameters in regular
69 * U-Boot. This is needed only in SPL at the moment.
70 */
71 u32 omap3_boot_device = BOOT_DEVICE_NAND;
72
73 /* auto boot mode detection is not possible for OMAP3 - hard code */
74 u32 spl_boot_mode(void)
75 {
76         switch (spl_boot_device()) {
77         case BOOT_DEVICE_MMC2:
78                 return MMCSD_MODE_RAW;
79         case BOOT_DEVICE_MMC1:
80                 return MMCSD_MODE_FAT;
81                 break;
82         default:
83                 puts("spl: ERROR:  unknown device - can't select boot mode\n");
84                 hang();
85         }
86 }
87
88 u32 spl_boot_device(void)
89 {
90         return omap3_boot_device;
91 }
92
93 int board_mmc_init(bd_t *bis)
94 {
95         switch (spl_boot_device()) {
96         case BOOT_DEVICE_MMC1:
97                 omap_mmc_init(0, 0, 0);
98                 break;
99         case BOOT_DEVICE_MMC2:
100         case BOOT_DEVICE_MMC2_2:
101                 omap_mmc_init(1, 0, 0);
102                 break;
103         }
104         return 0;
105 }
106
107 void spl_board_init(void)
108 {
109 #ifdef CONFIG_SPL_NAND_SUPPORT
110         gpmc_init();
111 #endif
112 #ifdef CONFIG_SPL_I2C_SUPPORT
113         i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
114 #endif
115 }
116 #endif /* CONFIG_SPL_BUILD */
117
118
119 /******************************************************************************
120  * Routine: secure_unlock
121  * Description: Setup security registers for access
122  *              (GP Device only)
123  *****************************************************************************/
124 void secure_unlock_mem(void)
125 {
126         struct pm *pm_rt_ape_base = (struct pm *)PM_RT_APE_BASE_ADDR_ARM;
127         struct pm *pm_gpmc_base = (struct pm *)PM_GPMC_BASE_ADDR_ARM;
128         struct pm *pm_ocm_ram_base = (struct pm *)PM_OCM_RAM_BASE_ADDR_ARM;
129         struct pm *pm_iva2_base = (struct pm *)PM_IVA2_BASE_ADDR_ARM;
130         struct sms *sms_base = (struct sms *)OMAP34XX_SMS_BASE;
131
132         /* Protection Module Register Target APE (PM_RT) */
133         writel(UNLOCK_1, &pm_rt_ape_base->req_info_permission_1);
134         writel(UNLOCK_1, &pm_rt_ape_base->read_permission_0);
135         writel(UNLOCK_1, &pm_rt_ape_base->wirte_permission_0);
136         writel(UNLOCK_2, &pm_rt_ape_base->addr_match_1);
137
138         writel(UNLOCK_3, &pm_gpmc_base->req_info_permission_0);
139         writel(UNLOCK_3, &pm_gpmc_base->read_permission_0);
140         writel(UNLOCK_3, &pm_gpmc_base->wirte_permission_0);
141
142         writel(UNLOCK_3, &pm_ocm_ram_base->req_info_permission_0);
143         writel(UNLOCK_3, &pm_ocm_ram_base->read_permission_0);
144         writel(UNLOCK_3, &pm_ocm_ram_base->wirte_permission_0);
145         writel(UNLOCK_2, &pm_ocm_ram_base->addr_match_2);
146
147         /* IVA Changes */
148         writel(UNLOCK_3, &pm_iva2_base->req_info_permission_0);
149         writel(UNLOCK_3, &pm_iva2_base->read_permission_0);
150         writel(UNLOCK_3, &pm_iva2_base->wirte_permission_0);
151
152         /* SDRC region 0 public */
153         writel(UNLOCK_1, &sms_base->rg_att0);
154 }
155
156 /******************************************************************************
157  * Routine: secureworld_exit()
158  * Description: If chip is EMU and boot type is external
159  *              configure secure registers and exit secure world
160  *              general use.
161  *****************************************************************************/
162 void secureworld_exit()
163 {
164         unsigned long i;
165
166         /* configure non-secure access control register */
167         __asm__ __volatile__("mrc p15, 0, %0, c1, c1, 2":"=r"(i));
168         /* enabling co-processor CP10 and CP11 accesses in NS world */
169         __asm__ __volatile__("orr %0, %0, #0xC00":"=r"(i));
170         /*
171          * allow allocation of locked TLBs and L2 lines in NS world
172          * allow use of PLE registers in NS world also
173          */
174         __asm__ __volatile__("orr %0, %0, #0x70000":"=r"(i));
175         __asm__ __volatile__("mcr p15, 0, %0, c1, c1, 2":"=r"(i));
176
177         /* Enable ASA in ACR register */
178         __asm__ __volatile__("mrc p15, 0, %0, c1, c0, 1":"=r"(i));
179         __asm__ __volatile__("orr %0, %0, #0x10":"=r"(i));
180         __asm__ __volatile__("mcr p15, 0, %0, c1, c0, 1":"=r"(i));
181
182         /* Exiting secure world */
183         __asm__ __volatile__("mrc p15, 0, %0, c1, c1, 0":"=r"(i));
184         __asm__ __volatile__("orr %0, %0, #0x31":"=r"(i));
185         __asm__ __volatile__("mcr p15, 0, %0, c1, c1, 0":"=r"(i));
186 }
187
188 /******************************************************************************
189  * Routine: try_unlock_sram()
190  * Description: If chip is GP/EMU(special) type, unlock the SRAM for
191  *              general use.
192  *****************************************************************************/
193 void try_unlock_memory()
194 {
195         int mode;
196         int in_sdram = is_running_in_sdram();
197
198         /*
199          * if GP device unlock device SRAM for general use
200          * secure code breaks for Secure/Emulation device - HS/E/T
201          */
202         mode = get_device_type();
203         if (mode == GP_DEVICE)
204                 secure_unlock_mem();
205
206         /*
207          * If device is EMU and boot is XIP external booting
208          * Unlock firewalls and disable L2 and put chip
209          * out of secure world
210          *
211          * Assuming memories are unlocked by the demon who put us in SDRAM
212          */
213         if ((mode <= EMU_DEVICE) && (get_boot_type() == 0x1F)
214             && (!in_sdram)) {
215                 secure_unlock_mem();
216                 secureworld_exit();
217         }
218
219         return;
220 }
221
222 /******************************************************************************
223  * Routine: s_init
224  * Description: Does early system init of muxing and clocks.
225  *              - Called path is with SRAM stack.
226  *****************************************************************************/
227 void s_init(void)
228 {
229         int in_sdram = is_running_in_sdram();
230
231         watchdog_init();
232
233         try_unlock_memory();
234
235         /* Errata workarounds */
236         omap3_setup_aux_cr();
237
238 #ifndef CONFIG_SYS_L2CACHE_OFF
239         /* Invalidate L2-cache from secure mode */
240         omap3_invalidate_l2_cache_secure();
241 #endif
242
243         set_muxconf_regs();
244         sdelay(100);
245
246         prcm_init();
247
248         per_clocks_enable();
249
250 #ifdef CONFIG_USB_EHCI_OMAP
251         ehci_clocks_enable();
252 #endif
253
254 #ifdef CONFIG_SPL_BUILD
255         preloader_console_init();
256
257         timer_init();
258 #endif
259
260         if (!in_sdram)
261                 mem_init();
262 }
263
264 /*
265  * Routine: misc_init_r
266  * Description: A basic misc_init_r that just displays the die ID
267  */
268 int __weak misc_init_r(void)
269 {
270         dieid_num_r();
271
272         return 0;
273 }
274
275 /******************************************************************************
276  * Routine: wait_for_command_complete
277  * Description: Wait for posting to finish on watchdog
278  *****************************************************************************/
279 void wait_for_command_complete(struct watchdog *wd_base)
280 {
281         int pending = 1;
282         do {
283                 pending = readl(&wd_base->wwps);
284         } while (pending);
285 }
286
287 /******************************************************************************
288  * Routine: watchdog_init
289  * Description: Shut down watch dogs
290  *****************************************************************************/
291 void watchdog_init(void)
292 {
293         struct watchdog *wd2_base = (struct watchdog *)WD2_BASE;
294         struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
295
296         /*
297          * There are 3 watch dogs WD1=Secure, WD2=MPU, WD3=IVA. WD1 is
298          * either taken care of by ROM (HS/EMU) or not accessible (GP).
299          * We need to take care of WD2-MPU or take a PRCM reset. WD3
300          * should not be running and does not generate a PRCM reset.
301          */
302
303         sr32(&prcm_base->fclken_wkup, 5, 1, 1);
304         sr32(&prcm_base->iclken_wkup, 5, 1, 1);
305         wait_on_value(ST_WDT2, 0x20, &prcm_base->idlest_wkup, 5);
306
307         writel(WD_UNLOCK1, &wd2_base->wspr);
308         wait_for_command_complete(wd2_base);
309         writel(WD_UNLOCK2, &wd2_base->wspr);
310 }
311
312 /******************************************************************************
313  * Dummy function to handle errors for EABI incompatibility
314  *****************************************************************************/
315 void abort(void)
316 {
317 }
318
319 #if defined(CONFIG_NAND_OMAP_GPMC) & !defined(CONFIG_SPL_BUILD)
320 /******************************************************************************
321  * OMAP3 specific command to switch between NAND HW and SW ecc
322  *****************************************************************************/
323 static int do_switch_ecc(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
324 {
325         if (argc != 2)
326                 goto usage;
327         if (strncmp(argv[1], "hw", 2) == 0)
328                 omap_nand_switch_ecc(1);
329         else if (strncmp(argv[1], "sw", 2) == 0)
330                 omap_nand_switch_ecc(0);
331         else
332                 goto usage;
333
334         return 0;
335
336 usage:
337         printf ("Usage: nandecc %s\n", cmdtp->usage);
338         return 1;
339 }
340
341 U_BOOT_CMD(
342         nandecc, 2, 1,  do_switch_ecc,
343         "switch OMAP3 NAND ECC calculation algorithm",
344         "[hw/sw] - Switch between NAND hardware (hw) or software (sw) ecc algorithm"
345 );
346
347 #endif /* CONFIG_NAND_OMAP_GPMC & !CONFIG_SPL_BUILD */
348
349 #ifdef CONFIG_DISPLAY_BOARDINFO
350 /**
351  * Print board information
352  */
353 int checkboard (void)
354 {
355         char *mem_s ;
356
357         if (is_mem_sdr())
358                 mem_s = "mSDR";
359         else
360                 mem_s = "LPDDR";
361
362         printf("%s + %s/%s\n", sysinfo.board_string, mem_s,
363                         sysinfo.nand_string);
364
365         return 0;
366 }
367 #endif  /* CONFIG_DISPLAY_BOARDINFO */
368
369 static void omap3_emu_romcode_call(u32 service_id, u32 *parameters)
370 {
371         u32 i, num_params = *parameters;
372         u32 *sram_scratch_space = (u32 *)OMAP3_PUBLIC_SRAM_SCRATCH_AREA;
373
374         /*
375          * copy the parameters to an un-cached area to avoid coherency
376          * issues
377          */
378         for (i = 0; i < num_params; i++) {
379                 __raw_writel(*parameters, sram_scratch_space);
380                 parameters++;
381                 sram_scratch_space++;
382         }
383
384         /* Now make the PPA call */
385         do_omap3_emu_romcode_call(service_id, OMAP3_PUBLIC_SRAM_SCRATCH_AREA);
386 }
387
388 static void omap3_update_aux_cr_secure(u32 set_bits, u32 clear_bits)
389 {
390         u32 acr;
391
392         /* Read ACR */
393         asm volatile ("mrc p15, 0, %0, c1, c0, 1" : "=r" (acr));
394         acr &= ~clear_bits;
395         acr |= set_bits;
396
397         if (get_device_type() == GP_DEVICE) {
398                 omap3_gp_romcode_call(OMAP3_GP_ROMCODE_API_WRITE_ACR,
399                                        acr);
400         } else {
401                 struct emu_hal_params emu_romcode_params;
402                 emu_romcode_params.num_params = 1;
403                 emu_romcode_params.param1 = acr;
404                 omap3_emu_romcode_call(OMAP3_EMU_HAL_API_WRITE_ACR,
405                                        (u32 *)&emu_romcode_params);
406         }
407 }
408
409 static void omap3_update_aux_cr(u32 set_bits, u32 clear_bits)
410 {
411         u32 acr;
412
413         /* Read ACR */
414         asm volatile ("mrc p15, 0, %0, c1, c0, 1" : "=r" (acr));
415         acr &= ~clear_bits;
416         acr |= set_bits;
417
418         /* Write ACR - affects non-secure banked bits */
419         asm volatile ("mcr p15, 0, %0, c1, c0, 1" : : "r" (acr));
420 }
421
422 static void omap3_setup_aux_cr(void)
423 {
424         /* Workaround for Cortex-A8 errata: #454179 #430973
425          *      Set "IBE" bit
426          *      Set "Disable Branch Size Mispredicts" bit
427          * Workaround for erratum #621766
428          *      Enable L1NEON bit
429          * ACR |= (IBE | DBSM | L1NEON) => ACR |= 0xE0
430          */
431         omap3_update_aux_cr_secure(0xE0, 0);
432 }
433
434 #ifndef CONFIG_SYS_L2CACHE_OFF
435 /* Invalidate the entire L2 cache from secure mode */
436 static void omap3_invalidate_l2_cache_secure(void)
437 {
438         if (get_device_type() == GP_DEVICE) {
439                 omap3_gp_romcode_call(OMAP3_GP_ROMCODE_API_L2_INVAL,
440                                       0);
441         } else {
442                 struct emu_hal_params emu_romcode_params;
443                 emu_romcode_params.num_params = 1;
444                 emu_romcode_params.param1 = 0;
445                 omap3_emu_romcode_call(OMAP3_EMU_HAL_API_L2_INVAL,
446                                        (u32 *)&emu_romcode_params);
447         }
448 }
449
450 void v7_outer_cache_enable(void)
451 {
452         /* Set L2EN */
453         omap3_update_aux_cr_secure(0x2, 0);
454
455         /*
456          * On some revisions L2EN bit is banked on some revisions it's not
457          * No harm in setting both banked bits(in fact this is required
458          * by an erratum)
459          */
460         omap3_update_aux_cr(0x2, 0);
461 }
462
463 void omap3_outer_cache_disable(void)
464 {
465         /* Clear L2EN */
466         omap3_update_aux_cr_secure(0, 0x2);
467
468         /*
469          * On some revisions L2EN bit is banked on some revisions it's not
470          * No harm in clearing both banked bits(in fact this is required
471          * by an erratum)
472          */
473         omap3_update_aux_cr(0, 0x2);
474 }
475 #endif
476
477 #ifndef CONFIG_SYS_DCACHE_OFF
478 void enable_caches(void)
479 {
480         /* Enable D-cache. I-cache is already enabled in start.S */
481         dcache_enable();
482 }
483 #endif