X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fasm-i386%2Fglobal_data.h;h=5dfb5951091c761005f5d9ae00fcdc48f71083cc;hb=6a19c46cae43c16c528eddefae3db97134f1915d;hp=68a9ad61eface7a2ea9e6adf543a77886f1a15a0;hpb=493a2b1dc97367e904bf83869501f6290f3b374e;p=oweals%2Fu-boot.git diff --git a/include/asm-i386/global_data.h b/include/asm-i386/global_data.h index 68a9ad61ef..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; @@ -55,6 +55,8 @@ typedef struct { #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;