diff options
author | Jim Lin <jilin@nvidia.com> | 2013-06-21 19:05:48 +0800 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2013-07-11 14:15:16 -0700 |
commit | d6cf707e819546623ed742b2324e8b4f106fcf5d (patch) | |
tree | d51b00b46ec8ff3924c711dd140adff735b96498 /include/configs/cardhu.h | |
parent | 7e44d9320ed4a9994b97eb1c9b2efd04491ff431 (diff) | |
download | u-boot-imx-d6cf707e819546623ed742b2324e8b4f106fcf5d.zip u-boot-imx-d6cf707e819546623ed742b2324e8b4f106fcf5d.tar.gz u-boot-imx-d6cf707e819546623ed742b2324e8b4f106fcf5d.tar.bz2 |
Tegra: Config: Enable Tegra30/Tegra114 USB function
Add USB EHCI, storage and network support.
Tested on Tegra30 Cardhu, and Tegra114 Dalmore
platforms. All works well.
Signed-off-by: Jim Lin <jilin@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'include/configs/cardhu.h')
-rw-r--r-- | include/configs/cardhu.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/configs/cardhu.h b/include/configs/cardhu.h index 6a99175..fd46083 100644 --- a/include/configs/cardhu.h +++ b/include/configs/cardhu.h @@ -70,6 +70,20 @@ #define CONFIG_CMD_SF #define CONFIG_SPI_FLASH_SIZE (4 << 20) +/* USB Host support */ +#define CONFIG_USB_EHCI +#define CONFIG_USB_EHCI_TEGRA +#define CONFIG_USB_STORAGE +#define CONFIG_CMD_USB + +/* USB networking support */ +#define CONFIG_USB_HOST_ETHER +#define CONFIG_USB_ETHER_ASIX + +/* General networking support */ +#define CONFIG_CMD_NET +#define CONFIG_CMD_DHCP + #include "tegra-common-post.h" #endif /* __CONFIG_H */ |