Add support for Silicon Turnkey eXpress XTc (mpc87x/88x) board.
[oweals/u-boot.git] / include / asm-arm / global_data.h
index 892710df40578cf75734e8fccb3da42e6429f02a..c2d52915a85fc4816dcff69c47e240a98462de8a 100644 (file)
@@ -41,8 +41,8 @@ typedef       struct  global_data {
        unsigned long   reloc_off;      /* Relocation Offset */
        unsigned long   env_addr;       /* Address  of Environment struct */
        unsigned long   env_valid;      /* Checksum of Environment valid? */
-#ifdef CONFIG_VFD
        unsigned long   fb_base;        /* base address of frame buffer */
+#ifdef CONFIG_VFD
        unsigned char   vfd_type;       /* display type */
 #endif
 #if 0
@@ -51,6 +51,7 @@ typedef       struct  global_data {
        unsigned long   ram_size;       /* RAM size */
        unsigned long   reset_status;   /* reset status register at boot */
 #endif
+       void            **jt;           /* jump table */
 } gd_t;
 
 /*
@@ -58,7 +59,8 @@ typedef       struct  global_data {
  */
 #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 DECLARE_GLOBAL_DATA_PTR     register gd_t *gd asm ("r8")
+#define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r8")
 
 #endif /* __ASM_GBL_DATA_H */