diff options
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/avr32/include/asm/global_data.h | 15 | ||||
| -rw-r--r-- | arch/blackfin/include/asm/global_data.h | 15 | ||||
| -rw-r--r-- | arch/i386/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/m68k/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/microblaze/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/mips/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/nios2/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/powerpc/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/sh/include/asm/global_data.h | 13 | ||||
| -rw-r--r-- | arch/sparc/include/asm/global_data.h | 15 | 
11 files changed, 80 insertions, 69 deletions
| diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h index bd3c3eaf4..0bc464a3f 100644 --- a/arch/arm/include/asm/global_data.h +++ b/arch/arm/include/asm/global_data.h @@ -54,13 +54,14 @@ typedef	struct	global_data {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM		*/ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized	*/ -#define	GD_FLG_SILENT	0x00004		/* Silent mode				*/ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buffer has been initialized	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r8") diff --git a/arch/avr32/include/asm/global_data.h b/arch/avr32/include/asm/global_data.h index 521a6a2f6..5a7aed94e 100644 --- a/arch/avr32/include/asm/global_data.h +++ b/arch/avr32/include/asm/global_data.h @@ -52,13 +52,14 @@ typedef	struct	global_data {  /*   * Global Data Flags   */ -#define GD_FLG_RELOC	0x00001		/* Code was relocated to RAM	 */ -#define GD_FLG_DEVINIT	0x00002		/* Devices have been initialized */ -#define GD_FLG_SILENT	0x00004		/* Silent mode			 */ -#define GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed	 */ -#define GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted	 */ -#define GD_FLG_LOGINIT	0x00020		/* Log Buf has been initialized	 */ -#define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)	 */ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/ +#define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm("r5") diff --git a/arch/blackfin/include/asm/global_data.h b/arch/blackfin/include/asm/global_data.h index 3cfd00e66..d5514b0df 100644 --- a/arch/blackfin/include/asm/global_data.h +++ b/arch/blackfin/include/asm/global_data.h @@ -60,13 +60,14 @@ typedef struct global_data {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001	/* Code was relocated to RAM     */ -#define	GD_FLG_DEVINIT	0x00002	/* Devices have been initialized */ -#define	GD_FLG_SILENT	0x00004	/* Silent mode                   */ -#define	GD_FLG_POSTFAIL	0x00008	/* Critical POST test failed     */ -#define	GD_FLG_POSTSTOP	0x00010	/* POST seqeunce aborted	 */ -#define	GD_FLG_LOGINIT	0x00020	/* Log Buf has been initialized	 */ -#define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/ +#define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR     register gd_t * volatile gd asm ("P3") diff --git a/arch/i386/include/asm/global_data.h b/arch/i386/include/asm/global_data.h index adf62915e..3a9adc9c6 100644 --- a/arch/i386/include/asm/global_data.h +++ b/arch/i386/include/asm/global_data.h @@ -52,13 +52,14 @@ typedef	struct {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM		*/ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized	*/ -#define	GD_FLG_SILENT	0x00004		/* Silent mode				*/ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buffer has been initialized	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  extern gd_t *gd; diff --git a/arch/m68k/include/asm/global_data.h b/arch/m68k/include/asm/global_data.h index a8578d8a8..3a36f8225 100644 --- a/arch/m68k/include/asm/global_data.h +++ b/arch/m68k/include/asm/global_data.h @@ -70,13 +70,14 @@ typedef	struct	global_data {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM		*/ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized	*/ -#define	GD_FLG_SILENT	0x00004		/* Silent mode				*/ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buffer has been initialized	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #if 0  extern gd_t *global_data; diff --git a/arch/microblaze/include/asm/global_data.h b/arch/microblaze/include/asm/global_data.h index c7c1472b2..03444ef33 100644 --- a/arch/microblaze/include/asm/global_data.h +++ b/arch/microblaze/include/asm/global_data.h @@ -49,13 +49,14 @@ typedef	struct	global_data {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM		*/ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized	*/ -#define	GD_FLG_SILENT	0x00004		/* Silent mode				*/ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buffer has been initialized	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r31") diff --git a/arch/mips/include/asm/global_data.h b/arch/mips/include/asm/global_data.h index 994e7702e..bf1bfc390 100644 --- a/arch/mips/include/asm/global_data.h +++ b/arch/mips/include/asm/global_data.h @@ -52,13 +52,14 @@ typedef	struct	global_data {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM     */ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized */ -#define	GD_FLG_SILENT	0x00004		/* Silent mode			 */ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed	 */ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted	 */ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buf has been initialized	 */ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("k0") diff --git a/arch/nios2/include/asm/global_data.h b/arch/nios2/include/asm/global_data.h index c292a527e..2c4a71940 100644 --- a/arch/nios2/include/asm/global_data.h +++ b/arch/nios2/include/asm/global_data.h @@ -41,13 +41,14 @@ typedef	struct	global_data {  } gd_t;  /* flags */ -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM		*/ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized	*/ -#define	GD_FLG_SILENT	0x00004		/* Silent mode				*/ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buffer has been initialized	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR     register gd_t *gd asm ("gp") diff --git a/arch/powerpc/include/asm/global_data.h b/arch/powerpc/include/asm/global_data.h index 3e97f7661..2a323e13d 100644 --- a/arch/powerpc/include/asm/global_data.h +++ b/arch/powerpc/include/asm/global_data.h @@ -182,13 +182,14 @@ typedef	struct	global_data {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM		*/ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized	*/ -#define	GD_FLG_SILENT	0x00004		/* Silent mode				*/ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buffer has been initialized	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #if 1  #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r2") diff --git a/arch/sh/include/asm/global_data.h b/arch/sh/include/asm/global_data.h index 7fda1e1b6..0c09ba9ba 100644 --- a/arch/sh/include/asm/global_data.h +++ b/arch/sh/include/asm/global_data.h @@ -41,13 +41,14 @@ typedef	struct global_data  	char		env_buf[32];	/* buffer for getenv() before reloc. */  } gd_t; -#define	GD_FLG_RELOC	0x00001		/* Code was relocated to RAM		*/ -#define	GD_FLG_DEVINIT	0x00002		/* Devices have been initialized	*/ -#define	GD_FLG_SILENT	0x00004		/* Silent mode				*/ -#define	GD_FLG_POSTFAIL	0x00008		/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010		/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020		/* Log Buffer has been initialized	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR	register gd_t *gd asm ("r13") diff --git a/arch/sparc/include/asm/global_data.h b/arch/sparc/include/asm/global_data.h index de6482f51..7c1ac0ddd 100644 --- a/arch/sparc/include/asm/global_data.h +++ b/arch/sparc/include/asm/global_data.h @@ -77,13 +77,14 @@ typedef struct global_data {  /*   * Global Data Flags   */ -#define	GD_FLG_RELOC	0x00001	/* Code was relocated to RAM            */ -#define	GD_FLG_DEVINIT	0x00002	/* Devices have been initialized        */ -#define	GD_FLG_SILENT	0x00004	/* Silent mode                          */ -#define	GD_FLG_POSTFAIL	0x00008	/* Critical POST test failed		*/ -#define	GD_FLG_POSTSTOP	0x00010	/* POST seqeunce aborted		*/ -#define	GD_FLG_LOGINIT	0x00020	/* Log Buffer has been initialized	*/ -#define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)	*/ +#define	GD_FLG_RELOC		0x00001	/* Code was relocated to RAM		*/ +#define	GD_FLG_DEVINIT		0x00002	/* Devices have been initialized	*/ +#define	GD_FLG_SILENT		0x00004	/* Silent mode				*/ +#define	GD_FLG_POSTFAIL		0x00008	/* Critical POST test failed		*/ +#define	GD_FLG_POSTSTOP		0x00010	/* POST seqeunce aborted		*/ +#define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/ +#define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/ +#define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/  #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("%g7") |