global_data_flags.h 956 B

12345678910111213141516171819202122232425262728
  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. #ifndef __ASM_GENERIC_GLOBAL_DATA_FLAGS_H
  10. #define __ASM_GENERIC_GLOBAL_DATA_FLAGS_H
  11. /*
  12. * Global Data Flags
  13. *
  14. * Note: The low 16 bits are expected for common code. If your arch
  15. * really needs to add your own, use the high 16bits.
  16. */
  17. #define GD_FLG_RELOC 0x0001 /* Code was relocated to RAM */
  18. #define GD_FLG_DEVINIT 0x0002 /* Devices have been initialized */
  19. #define GD_FLG_SILENT 0x0004 /* Silent mode */
  20. #define GD_FLG_POSTFAIL 0x0008 /* Critical POST test failed */
  21. #define GD_FLG_POSTSTOP 0x0010 /* POST seqeunce aborted */
  22. #define GD_FLG_LOGINIT 0x0020 /* Log Buffer has been initialized */
  23. #define GD_FLG_DISABLE_CONSOLE 0x0040 /* Disable console (in & out) */
  24. #define GD_FLG_ENV_READY 0x0080 /* Environment imported into hash table */
  25. #endif