2012-01-09 20:38:59 +00:00
|
|
|
/*
|
|
|
|
* boot-common.c
|
|
|
|
*
|
|
|
|
* Common bootmode functions for omap based boards
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-01-09 20:38:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2012-08-13 19:03:19 +00:00
|
|
|
#include <spl.h>
|
2012-01-09 20:38:59 +00:00
|
|
|
#include <asm/omap_common.h>
|
|
|
|
#include <asm/arch/omap.h>
|
2012-08-14 17:25:15 +00:00
|
|
|
#include <asm/arch/mmc_host_def.h>
|
2012-11-06 13:06:28 +00:00
|
|
|
#include <asm/arch/sys_proto.h>
|
2013-10-01 16:32:04 +00:00
|
|
|
#include <watchdog.h>
|
2012-01-09 20:38:59 +00:00
|
|
|
|
2013-04-24 00:41:24 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2012-01-09 20:38:59 +00:00
|
|
|
|
2013-05-31 16:31:59 +00:00
|
|
|
void save_omap_boot_params(void)
|
|
|
|
{
|
|
|
|
u32 rom_params = *((u32 *)OMAP_SRAM_SCRATCH_BOOT_PARAMS);
|
|
|
|
u8 boot_device;
|
|
|
|
u32 dev_desc, dev_data;
|
|
|
|
|
|
|
|
if ((rom_params < NON_SECURE_SRAM_START) ||
|
|
|
|
(rom_params > NON_SECURE_SRAM_END))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rom_params can be type casted to omap_boot_parameters and
|
|
|
|
* used. But it not correct to assume that romcode structure
|
|
|
|
* encoding would be same as u-boot. So use the defined offsets.
|
|
|
|
*/
|
|
|
|
gd->arch.omap_boot_params.omap_bootdevice = boot_device =
|
|
|
|
*((u8 *)(rom_params + BOOT_DEVICE_OFFSET));
|
|
|
|
|
|
|
|
gd->arch.omap_boot_params.ch_flags =
|
|
|
|
*((u8 *)(rom_params + CH_FLAGS_OFFSET));
|
|
|
|
|
|
|
|
if ((boot_device >= MMC_BOOT_DEVICES_START) &&
|
|
|
|
(boot_device <= MMC_BOOT_DEVICES_END)) {
|
2013-07-30 06:06:31 +00:00
|
|
|
#if !defined(CONFIG_AM33XX) && !defined(CONFIG_TI81XX) && \
|
|
|
|
!defined(CONFIG_AM43XX)
|
2013-05-31 16:31:59 +00:00
|
|
|
if ((omap_hw_init_context() ==
|
|
|
|
OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL)) {
|
|
|
|
gd->arch.omap_boot_params.omap_bootmode =
|
|
|
|
*((u8 *)(rom_params + BOOT_MODE_OFFSET));
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
dev_desc = *((u32 *)(rom_params + DEV_DESC_PTR_OFFSET));
|
|
|
|
dev_data = *((u32 *)(dev_desc + DEV_DATA_PTR_OFFSET));
|
|
|
|
gd->arch.omap_boot_params.omap_bootmode =
|
|
|
|
*((u32 *)(dev_data + BOOT_MODE_OFFSET));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-09 20:38:59 +00:00
|
|
|
#ifdef CONFIG_SPL_BUILD
|
2012-08-13 19:53:23 +00:00
|
|
|
u32 spl_boot_device(void)
|
2012-01-09 20:38:59 +00:00
|
|
|
{
|
2013-04-24 00:41:24 +00:00
|
|
|
return (u32) (gd->arch.omap_boot_params.omap_bootdevice);
|
2012-01-09 20:38:59 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 16:19:44 +00:00
|
|
|
u32 spl_boot_mode(void)
|
2012-01-09 20:38:59 +00:00
|
|
|
{
|
2013-04-24 00:41:24 +00:00
|
|
|
return gd->arch.omap_boot_params.omap_bootmode;
|
2012-01-09 20:38:59 +00:00
|
|
|
}
|
2012-08-14 17:25:15 +00:00
|
|
|
|
2012-08-14 19:26:08 +00:00
|
|
|
void spl_board_init(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SPL_NAND_SUPPORT
|
|
|
|
gpmc_init();
|
|
|
|
#endif
|
2013-02-05 11:36:25 +00:00
|
|
|
#if defined(CONFIG_AM33XX) && defined(CONFIG_SPL_MUSB_NEW_SUPPORT)
|
|
|
|
arch_misc_init();
|
|
|
|
#endif
|
2013-10-01 16:32:04 +00:00
|
|
|
#if defined(CONFIG_HW_WATCHDOG)
|
|
|
|
hw_watchdog_init();
|
|
|
|
#endif
|
2013-08-30 20:28:44 +00:00
|
|
|
#ifdef CONFIG_AM33XX
|
|
|
|
am33xx_spl_board_init();
|
|
|
|
#endif
|
2012-08-14 19:26:08 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 17:25:15 +00:00
|
|
|
int board_mmc_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
switch (spl_boot_device()) {
|
|
|
|
case BOOT_DEVICE_MMC1:
|
2012-12-03 02:19:47 +00:00
|
|
|
omap_mmc_init(0, 0, 0, -1, -1);
|
2012-08-14 17:25:15 +00:00
|
|
|
break;
|
|
|
|
case BOOT_DEVICE_MMC2:
|
|
|
|
case BOOT_DEVICE_MMC2_2:
|
2012-12-03 02:19:47 +00:00
|
|
|
omap_mmc_init(1, 0, 0, -1, -1);
|
2012-08-14 17:25:15 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2013-04-24 00:41:24 +00:00
|
|
|
|
|
|
|
void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
|
|
|
{
|
|
|
|
typedef void __noreturn (*image_entry_noargs_t)(u32 *);
|
|
|
|
image_entry_noargs_t image_entry =
|
|
|
|
(image_entry_noargs_t) spl_image->entry_point;
|
|
|
|
|
|
|
|
debug("image entry point: 0x%X\n", spl_image->entry_point);
|
|
|
|
/* Pass the saved boot_params from rom code */
|
|
|
|
image_entry((u32 *)&gd->arch.omap_boot_params);
|
|
|
|
}
|
2012-01-09 20:38:59 +00:00
|
|
|
#endif
|