diff options
author | wdenk <wdenk> | 2003-03-25 16:50:56 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-03-25 16:50:56 +0000 |
commit | 4d75a504d00e65253229e1d1b798a7c37041f078 (patch) | |
tree | 47a665a7382343883c5d28c741c39d5c36d4a855 /include/asm-mips | |
parent | 44e5c5c4f1b46991477140540b73df224eb1e4fc (diff) | |
download | u-boot-imx-4d75a504d00e65253229e1d1b798a7c37041f078.zip u-boot-imx-4d75a504d00e65253229e1d1b798a7c37041f078.tar.gz u-boot-imx-4d75a504d00e65253229e1d1b798a7c37041f078.tar.bz2 |
Add PCI support for MPC8250 Boards (PM825 module)
Diffstat (limited to 'include/asm-mips')
-rw-r--r-- | include/asm-mips/u-boot.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/include/asm-mips/u-boot.h b/include/asm-mips/u-boot.h index ff189d9..0de0b4d 100644 --- a/include/asm-mips/u-boot.h +++ b/include/asm-mips/u-boot.h @@ -25,19 +25,17 @@ #define _U_BOOT_H_ 1 typedef struct bd_info { - int bi_baudrate; /* serial console baudrate */ - unsigned long bi_ip_addr; /* IP Address */ - unsigned char bi_enetaddr[6]; /* Ethernet adress */ - struct environment_s *bi_env; - ulong bi_arch_number; /* unique id for this board */ - ulong bi_boot_params; /* where this board expects params */ - struct /* RAM configuration */ - { - ulong start; - ulong size; - } bi_dram[CONFIG_NR_DRAM_BANKS]; + int bi_baudrate; /* serial console baudrate */ + unsigned long bi_ip_addr; /* IP Address */ + unsigned char bi_enetaddr[6]; /* Ethernet adress */ + unsigned long bi_arch_number; /* unique id for this board */ + unsigned long bi_boot_params; /* where this board expects params */ + unsigned long bi_memstart; /* start of DRAM memory */ + unsigned long bi_memsize; /* size of DRAM memory in bytes */ + unsigned long bi_flashstart; /* start of FLASH memory */ + unsigned long bi_flashsize; /* size of FLASH memory */ + unsigned long bi_flashoffset; /* reserved area for startup monitor */ } bd_t; - #define bi_env_data bi_env->data #define bi_env_crc bi_env->crc |