diff options
author | Stephen Warren <swarren@nvidia.com> | 2013-05-17 14:10:14 +0000 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2013-05-28 12:58:43 -0700 |
commit | 840167c2c25342dde4523ab11cd21f41ebcfa6e5 (patch) | |
tree | e12b5572fce46cf248ab1aa19eb80439bca0ebc1 /arch/arm/cpu | |
parent | 9972db5cf0d438ac885405278b02d19139154d16 (diff) | |
download | u-boot-imx-840167c2c25342dde4523ab11cd21f41ebcfa6e5.zip u-boot-imx-840167c2c25342dde4523ab11cd21f41ebcfa6e5.tar.gz u-boot-imx-840167c2c25342dde4523ab11cd21f41ebcfa6e5.tar.bz2 |
ARM: tegra: support SKU 1 of Tegra114
Make U-Boot aware of the Tegra114 SKU 1, and treat it identically
to any other Tegra114.
This value is used on (at least some) Dalmore boards with a production
rather than engineering chip. Such boards are in the hands of some
partners who want to use upstream U-Boot.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/tegra-common/ap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/cpu/tegra-common/ap.c b/arch/arm/cpu/tegra-common/ap.c index 9b77b2b..d7d1df1 100644 --- a/arch/arm/cpu/tegra-common/ap.c +++ b/arch/arm/cpu/tegra-common/ap.c @@ -92,6 +92,7 @@ int tegra_get_chip_sku(void) case CHIPID_TEGRA114: switch (sku_id) { case SKU_ID_T114_ENG: + case SKU_ID_T114_1: return TEGRA_SOC_T114; } break; |