diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-05-30 14:45:06 +0200 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-05-30 14:45:06 +0200 | 
| commit | a19b0dd62d7b8efc658fa1aa685ff5665878f3ee (patch) | |
| tree | 1fadf0fb3da83203ba28f209ec99e1b33e03f4d5 /arch/arm/include/asm/bootm.h | |
| parent | 60985bba58e7695dac1fddae8cdbb62d8cfd1254 (diff) | |
| parent | a71d45d706a5b51c348160163b6c159632273fed (diff) | |
| download | olio-uboot-2014.01-a19b0dd62d7b8efc658fa1aa685ff5665878f3ee.tar.xz olio-uboot-2014.01-a19b0dd62d7b8efc658fa1aa685ff5665878f3ee.zip | |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Conflicts:
	common/cmd_fpga.c
	drivers/usb/host/ohci-at91.c
Diffstat (limited to 'arch/arm/include/asm/bootm.h')
| -rw-r--r-- | arch/arm/include/asm/bootm.h | 54 | 
1 files changed, 52 insertions, 2 deletions
| diff --git a/arch/arm/include/asm/bootm.h b/arch/arm/include/asm/bootm.h index db2ff94c6..2c4fa196e 100644 --- a/arch/arm/include/asm/bootm.h +++ b/arch/arm/include/asm/bootm.h @@ -1,4 +1,7 @@ -/* Copyright (C) 2011 +/* + * Copyright (c) 2013, Google Inc. + * + * Copyright (C) 2011   * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>   *   * This program is free software; you can redistribute it and/or modify @@ -19,8 +22,55 @@  #ifndef ARM_BOOTM_H  #define ARM_BOOTM_H -#ifdef CONFIG_USB_DEVICE  extern void udc_disconnect(void); + +#if defined(CONFIG_SETUP_MEMORY_TAGS) || \ +		defined(CONFIG_CMDLINE_TAG) || \ +		defined(CONFIG_INITRD_TAG) || \ +		defined(CONFIG_SERIAL_TAG) || \ +		defined(CONFIG_REVISION_TAG) +# define BOOTM_ENABLE_TAGS		1 +#else +# define BOOTM_ENABLE_TAGS		0 +#endif + +#ifdef CONFIG_SETUP_MEMORY_TAGS +# define BOOTM_ENABLE_MEMORY_TAGS	1 +#else +# define BOOTM_ENABLE_MEMORY_TAGS	0 +#endif + +#ifdef CONFIG_CMDLINE_TAG + #define BOOTM_ENABLE_CMDLINE_TAG	1 +#else + #define BOOTM_ENABLE_CMDLINE_TAG	0 +#endif + +#ifdef CONFIG_INITRD_TAG + #define BOOTM_ENABLE_INITRD_TAG	1 +#else + #define BOOTM_ENABLE_INITRD_TAG	0 +#endif + +#ifdef CONFIG_SERIAL_TAG + #define BOOTM_ENABLE_SERIAL_TAG	1 +void get_board_serial(struct tag_serialnr *serialnr); +#else + #define BOOTM_ENABLE_SERIAL_TAG	0 +static inline void get_board_serial(struct tag_serialnr *serialnr) +{ +} +#endif + +#ifdef CONFIG_REVISION_TAG + #define BOOTM_ENABLE_REVISION_TAG	1 +u32 get_board_rev(void); +#else + #define BOOTM_ENABLE_REVISION_TAG	0 +static inline u32 get_board_rev(void) +{ +	return 0; +}  #endif  #endif |