diff options
Diffstat (limited to 'arch/arm/include/asm/arch-omap4')
| -rw-r--r-- | arch/arm/include/asm/arch-omap4/omap.h | 36 | ||||
| -rw-r--r-- | arch/arm/include/asm/arch-omap4/sys_proto.h | 12 | 
2 files changed, 4 insertions, 44 deletions
| diff --git a/arch/arm/include/asm/arch-omap4/omap.h b/arch/arm/include/asm/arch-omap4/omap.h index ad984da0b..e9a6ffeb8 100644 --- a/arch/arm/include/asm/arch-omap4/omap.h +++ b/arch/arm/include/asm/arch-omap4/omap.h @@ -143,40 +143,4 @@ struct s32ktimer {  #define NON_SECURE_SRAM_END	0x4030E000	/* Not inclusive */  /* base address for indirect vectors (internal boot mode) */  #define SRAM_ROM_VECT_BASE	0x4030D000 -/* Temporary SRAM stack used while low level init is done */ -#define SRAM_SCRATCH_SPACE_ADDR		NON_SECURE_SRAM_START -/* SRAM scratch space entries */ -#define OMAP4_SRAM_SCRATCH_OMAP4_REV	SRAM_SCRATCH_SPACE_ADDR -#define OMAP4_SRAM_SCRATCH_EMIF_T_NUM	(SRAM_SCRATCH_SPACE_ADDR + 0xC) -#define OMAP4_SRAM_SCRATCH_EMIF_T_DEN	(SRAM_SCRATCH_SPACE_ADDR + 0x10) -#define OMAP_SRAM_SCRATCH_PRCM_PTR      (SRAM_SCRATCH_SPACE_ADDR + 0x14) -#define OMAP_SRAM_SCRATCH_DPLLS_PTR     (SRAM_SCRATCH_SPACE_ADDR + 0x18) -#define OMAP_SRAM_SCRATCH_VCORES_PTR	(SRAM_SCRATCH_SPACE_ADDR + 0x1C) -#define OMAP4_SRAM_SCRATCH_SYS_CTRL	(SRAM_SCRATCH_SPACE_ADDR + 0x20) -#define OMAP4_SRAM_SCRATCH_SPACE_END	(SRAM_SCRATCH_SPACE_ADDR + 0x24) - -/* ROM code defines */ -/* Boot device */ -#define BOOT_DEVICE_MASK	0xFF -#define BOOT_DEVICE_OFFSET	0x8 -#define DEV_DESC_PTR_OFFSET	0x4 -#define DEV_DATA_PTR_OFFSET	0x18 -#define BOOT_MODE_OFFSET	0x8 -#define RESET_REASON_OFFSET	0x9 -#define CH_FLAGS_OFFSET		0xA - -#define CH_FLAGS_CHSETTINGS	(0x1 << 0) -#define CH_FLAGS_CHRAM		(0x1 << 1) -#define CH_FLAGS_CHFLASH	(0x1 << 2) -#define CH_FLAGS_CHMMCSD	(0x1 << 3) - -#ifndef __ASSEMBLY__ -struct omap_boot_parameters { -	char *boot_message; -	unsigned int mem_boot_descriptor; -	unsigned char omap_bootdevice; -	unsigned char reset_reason; -	unsigned char ch_flags; -}; -#endif  #endif diff --git a/arch/arm/include/asm/arch-omap4/sys_proto.h b/arch/arm/include/asm/arch-omap4/sys_proto.h index d5f1868ee..039a1f260 100644 --- a/arch/arm/include/asm/arch-omap4/sys_proto.h +++ b/arch/arm/include/asm/arch-omap4/sys_proto.h @@ -27,6 +27,8 @@  #include <asm/omap_common.h>  #include <asm/arch/mux_omap4.h> +DECLARE_GLOBAL_DATA_PTR; +  struct omap_sysinfo {  	char *board_string;  }; @@ -58,13 +60,7 @@ void omap_vc_init(u16 speed_khz);  int omap_vc_bypass_send_value(u8 sa, u8 reg_addr, u8 reg_data);  u32 warm_reset(void);  void force_emif_self_refresh(void); -/* - * This is used to verify if the configuration header - * was executed by Romcode prior to control of transfer - * to the bootloader. SPL is responsible for saving and - * passing this to the u-boot. - */ -extern struct omap_boot_parameters boot_params; +void setup_warmreset_time(void);  static inline u32 running_from_sdram(void)  { @@ -84,7 +80,7 @@ static inline u8 uboot_loaded_by_spl(void)  	 * variable by both SPL and u-boot.Check out for CHSETTINGS, which is a  	 * mandatory section if CH is present.  	 */ -	if ((boot_params.ch_flags) & (CH_FLAGS_CHSETTINGS)) +	if ((gd->arch.omap_boot_params.ch_flags) & (CH_FLAGS_CHSETTINGS))  		return 0;  	else  		return running_from_sdram(); |