]> git.sur5r.net Git - u-boot/blobdiff - include/asm-blackfin/global_data.h
[Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
[u-boot] / include / asm-blackfin / global_data.h
index 56a12f07b387f0f01179dc5577de4facc73a701d..1c738533c8401a4a8bf0abfdcf3bbd910f33bf05 100644 (file)
@@ -45,11 +45,16 @@ typedef struct global_data {
        unsigned long board_type;
        unsigned long baudrate;
        unsigned long have_console;     /* serial_init() was called */
-       unsigned long ram_size;         /* RAM size */
+       unsigned long ram_size; /* RAM size */
        unsigned long reloc_off;        /* Relocation Offset */
-       unsigned long env_addr;         /* Address  of Environment struct */
+       unsigned long env_addr; /* Address  of Environment struct */
        unsigned long env_valid;        /* Checksum of Environment valid? */
-       void **jt;                      /* jump table */
+#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
+       unsigned long post_log_word;    /* Record POST activities */
+       unsigned long post_init_f_time; /* When post_init_f started */
+#endif
+
+       void **jt;              /* jump table */
 } gd_t;
 
 /*
@@ -59,6 +64,6 @@ typedef struct global_data {
 #define        GD_FLG_DEVINIT  0x00002 /* Devices have been initialized */
 #define        GD_FLG_SILENT   0x00004 /* Silent mode                   */
 
-#define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("P5")
+#define DECLARE_GLOBAL_DATA_PTR     register gd_t * volatile gd asm ("P5")
 
 #endif