Skip to content
Snippets Groups Projects
Commit 840167c2 authored by Stephen Warren's avatar Stephen Warren Committed by Tom Warren
Browse files

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: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent 9972db5c
No related branches found
No related tags found
No related merge requests found
...@@ -92,6 +92,7 @@ int tegra_get_chip_sku(void) ...@@ -92,6 +92,7 @@ int tegra_get_chip_sku(void)
case CHIPID_TEGRA114: case CHIPID_TEGRA114:
switch (sku_id) { switch (sku_id) {
case SKU_ID_T114_ENG: case SKU_ID_T114_ENG:
case SKU_ID_T114_1:
return TEGRA_SOC_T114; return TEGRA_SOC_T114;
} }
break; break;
......
...@@ -81,6 +81,7 @@ enum { ...@@ -81,6 +81,7 @@ enum {
SKU_ID_T33 = 0x80, SKU_ID_T33 = 0x80,
SKU_ID_T30 = 0x81, /* Cardhu value */ SKU_ID_T30 = 0x81, /* Cardhu value */
SKU_ID_T114_ENG = 0x00, /* Dalmore value, unfused */ SKU_ID_T114_ENG = 0x00, /* Dalmore value, unfused */
SKU_ID_T114_1 = 0x01,
}; };
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment