]> git.sur5r.net Git - u-boot/blobdiff - include/asm-i386/global_data.h
ColdFire: Fix code flash configuration for M547x/M548x boards
[u-boot] / include / asm-i386 / global_data.h
index 4ffbc074bc77922590248e24cd07a61cf3f5a46a..5dfb5951091c761005f5d9ae00fcdc48f71083cc 100644 (file)
@@ -43,7 +43,7 @@ typedef       struct {
        unsigned long   env_valid;      /* Checksum of Environment valid? */
        unsigned long   cpu_clk;        /* CPU clock in Hz!             */
        unsigned long   bus_clk;
-       unsigned long   ram_size;       /* RAM size */
+       phys_size_t     ram_size;       /* RAM size */
        unsigned long   reset_status;   /* reset status register at boot */
        void            **jt;           /* jump table */
 } gd_t;
@@ -53,6 +53,10 @@ typedef      struct {
  */
 #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      */
 
 extern gd_t *global_data;