diff options
author | Thierry Reding <treding@nvidia.com> | 2014-12-09 22:25:21 -0700 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2014-12-18 13:19:21 -0700 |
commit | 6e2fca94ff4f754024e46e7d986221a75be611f3 (patch) | |
tree | 795fb823649f94034ce2f32c2b7939a0d719512b /include | |
parent | 9c46e6cb454cc2ab81ca59f94944e7208d0cfb95 (diff) | |
download | u-boot-imx-6e2fca94ff4f754024e46e7d986221a75be611f3.zip u-boot-imx-6e2fca94ff4f754024e46e7d986221a75be611f3.tar.gz u-boot-imx-6e2fca94ff4f754024e46e7d986221a75be611f3.tar.bz2 |
ARM: tegra: Enable PCIe on Jetson TK1
The Jetson TK1 has an ethernet NIC connected to the PCIe bus and routes
the second root port to a miniPCIe slot. Enable the PCIe controller and
the network driver to allow the device to boot over the network.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/jetson-tk1.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/configs/jetson-tk1.h b/include/configs/jetson-tk1.h index a7d7665..0a79c7c 100644 --- a/include/configs/jetson-tk1.h +++ b/include/configs/jetson-tk1.h @@ -10,6 +10,9 @@ #include <linux/sizes.h> +/* enable PMIC */ +#define CONFIG_AS3722_POWER + #include "tegra124-common.h" /* High-level configuration options */ @@ -61,6 +64,16 @@ #define CONFIG_USB_HOST_ETHER #define CONFIG_USB_ETHER_ASIX +/* PCI host support */ +#define CONFIG_PCI +#define CONFIG_PCI_TEGRA +#define CONFIG_PCI_PNP +#define CONFIG_CMD_PCI +#define CONFIG_CMD_PCI_ENUM + +/* PCI networking support */ +#define CONFIG_RTL8169 + /* General networking support */ #define CONFIG_CMD_NET #define CONFIG_CMD_DHCP |