]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/asm-generic/global_data_flags.h
NET: fec_mxc: fix MDIO clock prescaler calculation
[karo-tx-uboot.git] / include / asm-generic / global_data_flags.h
1 /*
2  * transitional header until we merge global_data.h
3  *
4  * (C) Copyright 2000-2010
5  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6  *
7  * Licensed under the GPL-2 or later.
8  */
9
10 #ifndef __ASM_GENERIC_GLOBAL_DATA_FLAGS_H
11 #define __ASM_GENERIC_GLOBAL_DATA_FLAGS_H
12
13 /*
14  * Global Data Flags
15  *
16  * Note: The low 16 bits are expected for common code.  If your arch
17  *       really needs to add your own, use the high 16bits.
18  */
19 #define GD_FLG_RELOC            0x0001  /* Code was relocated to RAM */
20 #define GD_FLG_DEVINIT          0x0002  /* Devices have been initialized */
21 #define GD_FLG_SILENT           0x0004  /* Silent mode */
22 #define GD_FLG_POSTFAIL         0x0008  /* Critical POST test failed */
23 #define GD_FLG_POSTSTOP         0x0010  /* POST seqeunce aborted */
24 #define GD_FLG_LOGINIT          0x0020  /* Log Buffer has been initialized */
25 #define GD_FLG_DISABLE_CONSOLE  0x0040  /* Disable console (in & out) */
26 #define GD_FLG_ENV_READY        0x0080  /* Environment imported into hash table */
27
28 #endif