boot-common.c 3.3 KB
Newer Older
1 2 3 4 5 6 7
/*
 * boot-common.c
 *
 * Common bootmode functions for omap based boards
 *
 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
 *
8
 * SPDX-License-Identifier:	GPL-2.0+
9 10 11
 */

#include <common.h>
12
#include <spl.h>
13 14
#include <asm/omap_common.h>
#include <asm/arch/omap.h>
T
Tom Rini 已提交
15
#include <asm/arch/mmc_host_def.h>
16
#include <asm/arch/sys_proto.h>
17
#include <watchdog.h>
18

19
DECLARE_GLOBAL_DATA_PTR;
20

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
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)) {
L
Lokesh Vutla 已提交
44 45
#if !defined(CONFIG_AM33XX) && !defined(CONFIG_TI81XX) && \
	!defined(CONFIG_AM43XX)
46 47 48 49 50 51 52 53 54 55 56 57 58
		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));
		}
	}
59 60 61 62 63 64 65 66 67 68 69

#ifdef CONFIG_DRA7XX
	/*
	 * We get different values for QSPI_1 and QSPI_4 being used, but
	 * don't actually care about this difference.  Rather than
	 * mangle the later code, if we're coming in as QSPI_4 just
	 * change to the QSPI_1 value.
	 */
	if (gd->arch.omap_boot_params.omap_bootdevice == 11)
		gd->arch.omap_boot_params.omap_bootdevice = BOOT_DEVICE_SPI;
#endif
70 71
}

72
#ifdef CONFIG_SPL_BUILD
73
u32 spl_boot_device(void)
74
{
75
	return (u32) (gd->arch.omap_boot_params.omap_bootdevice);
76 77
}

78
u32 spl_boot_mode(void)
79
{
80 81 82 83
	u32 val = gd->arch.omap_boot_params.omap_bootmode;

	if (val == MMCSD_MODE_RAW)
		return MMCSD_MODE_RAW;
84 85
	else if (val == MMCSD_MODE_FS)
		return MMCSD_MODE_FS;
86 87 88 89 90 91
	else
#ifdef CONFIG_SUPPORT_EMMC_BOOT
		return MMCSD_MODE_EMMCBOOT;
#else
		return MMCSD_MODE_UNDEFINED;
#endif
92
}
T
Tom Rini 已提交
93

94 95 96 97 98
void spl_board_init(void)
{
#ifdef CONFIG_SPL_NAND_SUPPORT
	gpmc_init();
#endif
99 100 101
#if defined(CONFIG_AM33XX) && defined(CONFIG_SPL_MUSB_NEW_SUPPORT)
	arch_misc_init();
#endif
102 103 104
#if defined(CONFIG_HW_WATCHDOG)
	hw_watchdog_init();
#endif
105 106 107
#ifdef CONFIG_AM33XX
	am33xx_spl_board_init();
#endif
108 109
}

T
Tom Rini 已提交
110 111 112 113
int board_mmc_init(bd_t *bis)
{
	switch (spl_boot_device()) {
	case BOOT_DEVICE_MMC1:
114
		omap_mmc_init(0, 0, 0, -1, -1);
T
Tom Rini 已提交
115 116 117
		break;
	case BOOT_DEVICE_MMC2:
	case BOOT_DEVICE_MMC2_2:
118
		omap_mmc_init(1, 0, 0, -1, -1);
T
Tom Rini 已提交
119 120 121 122
		break;
	}
	return 0;
}
123 124 125 126 127 128 129 130 131 132 133

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);
}
134
#endif