diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2010-10-18 22:58:31 +0200 |
---|---|---|
committer | Reinhard Meyer <u-boot@emk-elektronik.de> | 2010-10-19 15:12:04 +0200 |
commit | 3b83522bcf99bb4cdf1b792f391e3b93b6ed5ce5 (patch) | |
tree | 084c13260790b7990743e788eecad7f86cd48bf1 /include/configs | |
parent | ab8fe79c994af8da8241b395b94f6d62cdae6f3e (diff) | |
download | u-boot-imx-3b83522bcf99bb4cdf1b792f391e3b93b6ed5ce5.zip u-boot-imx-3b83522bcf99bb4cdf1b792f391e3b93b6ed5ce5.tar.gz u-boot-imx-3b83522bcf99bb4cdf1b792f391e3b93b6ed5ce5.tar.bz2 |
at91rm9200ek: enbable USB support
This patch enables USB for at91rm9200ek board.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Signed-off-by: Reinhard Meyer <u-boot@emk-elektronik.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/at91rm9200ek.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/configs/at91rm9200ek.h b/include/configs/at91rm9200ek.h index 6b2dd63..b386057 100644 --- a/include/configs/at91rm9200ek.h +++ b/include/configs/at91rm9200ek.h @@ -122,6 +122,7 @@ #define CONFIG_CMD_FAT #define CONFIG_CMD_MII #define CONFIG_CMD_PING +#define CONFIG_CMD_USB #undef CONFIG_CMD_FPGA /* @@ -146,6 +147,20 @@ #define CONFIG_SYS_FLASH_PROTECTION /* + * USB Config + */ +#define CONFIG_USB_ATMEL 1 +#define CONFIG_USB_OHCI_NEW 1 +#define CONFIG_USB_KEYBOARD 1 +#define CONFIG_USB_STORAGE 1 +#define CONFIG_DOS_PARTITION 1 + +#define CONFIG_SYS_USB_OHCI_CPU_INIT 1 +#define CONFIG_SYS_USB_OHCI_REGS_BASE AT91_USB_HOST_BASE +#define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91rm9200" +#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15 + +/* * Environment Settings */ #define CONFIG_ENV_IS_IN_FLASH |