diff options
author | Stefan Roese <sr@denx.de> | 2006-09-13 13:51:58 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-09-13 13:56:49 +0200 |
commit | 854bc8da75709f13dab4cfa6e9094c0cb49b5c5a (patch) | |
tree | 980b4d3d91394c491ffabe8570c81e06991d67d2 /include/configs/sequoia.h | |
parent | aeec782b020930732eab075af97212c3f03afcae (diff) | |
download | u-boot-imx-854bc8da75709f13dab4cfa6e9094c0cb49b5c5a.zip u-boot-imx-854bc8da75709f13dab4cfa6e9094c0cb49b5c5a.tar.gz u-boot-imx-854bc8da75709f13dab4cfa6e9094c0cb49b5c5a.tar.bz2 |
Add support for AMCC Rainier PPX440GRx eval board
Patch by Stefan Roese, 13 Sep 2006
Diffstat (limited to 'include/configs/sequoia.h')
-rw-r--r-- | include/configs/sequoia.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/configs/sequoia.h b/include/configs/sequoia.h index 639765d..f67fd91 100644 --- a/include/configs/sequoia.h +++ b/include/configs/sequoia.h @@ -31,8 +31,13 @@ /*----------------------------------------------------------------------- * High Level Configuration Options *----------------------------------------------------------------------*/ +/* This config file is used for Sequoia (440EPx) and Rainier (440GRx) */ +#ifndef CONFIG_RAINIER #define CONFIG_SEQUOIA 1 /* Board is Sequoia */ #define CONFIG_440EPX 1 /* Specific PPC440EPx */ +#else +#define CONFIG_440GRX 1 /* Specific PPC440GRx */ +#endif #define CONFIG_4xx 1 /* ... PPC4xx family */ #define CONFIG_SYS_CLK_FREQ 33333333 /* external freq to pll */ @@ -272,12 +277,18 @@ #define CONFIG_PHY1_ADDR 1 /* USB */ +#ifdef CONFIG_440EPX #define CONFIG_USB_OHCI #define CONFIG_USB_STORAGE /* Comment this out to enable USB 1.1 device */ #define USB_2_0_DEVICE +#define CMD_USB CFG_CMD_USB +#else +#define CMD_USB 0 /* no USB on 440GRx */ +#endif /* CONFIG_440EPX */ + /* Partitions */ #define CONFIG_MAC_PARTITION #define CONFIG_DOS_PARTITION @@ -301,7 +312,7 @@ CFG_CMD_PING | \ CFG_CMD_REGINFO | \ CFG_CMD_SDRAM | \ - CFG_CMD_USB ) + CMD_USB) #define CONFIG_SUPPORT_VFAT |