]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/include/asm/u-boot.h
mx23: Add register base addresses
[u-boot] / arch / arm / include / asm / u-boot.h
index cfd5a9ba45006e6f61a0406292d579fa3fdcb6da..2ba98bca7da953e8493205bb806aa5c0a6af44fe 100644 (file)
 #define _U_BOOT_H_     1
 
 typedef struct bd_info {
-    int                        bi_baudrate;    /* serial console baudrate */
-    unsigned long      bi_ip_addr;     /* IP Address */
-    struct environment_s              *bi_env;
+       unsigned int    bi_baudrate;    /* serial console baudrate */
     ulong              bi_arch_number; /* unique id for this board */
     ulong              bi_boot_params; /* where this board expects params */
+       unsigned long   bi_arm_freq; /* arm frequency */
+       unsigned long   bi_dsp_freq; /* dsp core frequency */
+       unsigned long   bi_ddr_freq; /* ddr frequency */
     struct                             /* RAM configuration */
     {
        ulong start;
@@ -49,7 +50,7 @@ typedef struct bd_info {
     }                  bi_dram[CONFIG_NR_DRAM_BANKS];
 } bd_t;
 
-#define bi_env_data bi_env->data
-#define bi_env_crc  bi_env->crc
+/* For image.h:image_check_target_arch() */
+#define IH_ARCH_DEFAULT IH_ARCH_ARM
 
 #endif /* _U_BOOT_H_ */