X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fasm-i386%2Fglobal_data.h;h=5dfb5951091c761005f5d9ae00fcdc48f71083cc;hb=6a19c46cae43c16c528eddefae3db97134f1915d;hp=4ffbc074bc77922590248e24cd07a61cf3f5a46a;hpb=27b207fd0a0941b03f27e2a82c0468b1a090c745;p=oweals%2Fu-boot.git diff --git a/include/asm-i386/global_data.h b/include/asm-i386/global_data.h index 4ffbc074bc..5dfb595109 100644 --- a/include/asm-i386/global_data.h +++ b/include/asm-i386/global_data.h @@ -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;