blob: 24cbe2da05dc55b08b07c17abeb057c5321fa434 [file] [log] [blame]
Chandan Nath77a73fe2012-01-09 20:38:59 +00001/*
2 * boot-common.c
3 *
4 * Common bootmode functions for omap based boards
5 *
6 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19#include <common.h>
Tom Rini28591df2012-08-13 12:03:19 -070020#include <spl.h>
Chandan Nath77a73fe2012-01-09 20:38:59 +000021#include <asm/omap_common.h>
22#include <asm/arch/omap.h>
Tom Rinia0b9fa52012-08-14 10:25:15 -070023#include <asm/arch/mmc_host_def.h>
Ilya Yanok741c57f2012-11-06 13:06:28 +000024#include <asm/arch/sys_proto.h>
Chandan Nath77a73fe2012-01-09 20:38:59 +000025
26/*
27 * This is used to verify if the configuration header
28 * was executed by rom code prior to control of transfer
29 * to the bootloader. SPL is responsible for saving and
30 * passing the boot_params pointer to the u-boot.
31 */
32struct omap_boot_parameters boot_params __attribute__ ((section(".data")));
33
34#ifdef CONFIG_SPL_BUILD
35/*
36 * We use static variables because global data is not ready yet.
37 * Initialized data is available in SPL right from the beginning.
38 * We would not typically need to save these parameters in regular
39 * U-Boot. This is needed only in SPL at the moment.
40 */
41u32 omap_bootmode = MMCSD_MODE_FAT;
42
Tom Rini0be93ff2012-08-13 12:53:23 -070043u32 spl_boot_device(void)
Chandan Nath77a73fe2012-01-09 20:38:59 +000044{
45 return (u32) (boot_params.omap_bootdevice);
46}
47
Tom Rinia76ff952012-08-14 09:19:44 -070048u32 spl_boot_mode(void)
Chandan Nath77a73fe2012-01-09 20:38:59 +000049{
50 return omap_bootmode;
51}
Tom Rinia0b9fa52012-08-14 10:25:15 -070052
Tom Rini9e0c2602012-08-14 12:26:08 -070053void spl_board_init(void)
54{
55#ifdef CONFIG_SPL_NAND_SUPPORT
56 gpmc_init();
57#endif
Ilya Yanok87b82cc2013-02-05 11:36:25 +000058#if defined(CONFIG_AM33XX) && defined(CONFIG_SPL_MUSB_NEW_SUPPORT)
59 arch_misc_init();
60#endif
Tom Rini9e0c2602012-08-14 12:26:08 -070061}
62
Tom Rinia0b9fa52012-08-14 10:25:15 -070063int board_mmc_init(bd_t *bis)
64{
65 switch (spl_boot_device()) {
66 case BOOT_DEVICE_MMC1:
Nikita Kiryanov4be9dbc2012-12-03 02:19:47 +000067 omap_mmc_init(0, 0, 0, -1, -1);
Tom Rinia0b9fa52012-08-14 10:25:15 -070068 break;
69 case BOOT_DEVICE_MMC2:
70 case BOOT_DEVICE_MMC2_2:
Nikita Kiryanov4be9dbc2012-12-03 02:19:47 +000071 omap_mmc_init(1, 0, 0, -1, -1);
Tom Rinia0b9fa52012-08-14 10:25:15 -070072 break;
73 }
74 return 0;
75}
Chandan Nath77a73fe2012-01-09 20:38:59 +000076#endif