diff options
author | Wolfgang Denk <wd@denx.de> | 2012-01-13 20:11:25 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-01-13 20:11:25 +0100 |
commit | f563db33c1085bf7d616b98cac62337beb65b0a2 (patch) | |
tree | fedb727b35c0ce1b2404907c6b8c34ffb1dd811c /board/mpl/common/common_util.h | |
parent | c0219cf08f53d914b4557ef658472b8799c3f9a7 (diff) | |
parent | c30186c60af24bc397b733910ca6fc39e74515f2 (diff) |
Merge branch 'master' of /home/wd/git/u-boot/custodians
* 'master' of /home/wd/git/u-boot/custodians:
board/mpl/pati: use the CFI driver for the PATI board
board/mpl/mip405: use the CFI driver for the MIP405/MIP405T board
board/mpl/pip405: use the CFI driver for the PIP405 board
board/mpl/common: remove the old legacy flash
ppc4xx: Setup HICB on Io64
Diffstat (limited to 'board/mpl/common/common_util.h')
-rw-r--r-- | board/mpl/common/common_util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/mpl/common/common_util.h b/board/mpl/common/common_util.h index 29cd14fa6cb..a0ea2397409 100644 --- a/board/mpl/common/common_util.h +++ b/board/mpl/common/common_util.h @@ -30,11 +30,15 @@ typedef struct { char eth_addr[21]; /* "00:60:C2:0a:00:00" */ } backup_t; +extern flash_info_t flash_info[]; /* info for FLASH chips */ + void get_backup_values(backup_t *buf); #if defined(CONFIG_PIP405) || defined(CONFIG_MIP405) #define BOOT_MPS 0x01 #define BOOT_PCI 0x02 +int get_boot_mode(void); +void setup_cs_reloc(void); #endif void check_env(void); |