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

ARM: tegra: support SKU 7 of Tegra20


Make U-Boot aware of the Tegra20 SKU 7, and treat it identically
to any other Tegra20.

My Whistler board has a SoC with this SKU.

Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent 840167c2
No related branches found
No related tags found
No related merge requests found
...@@ -72,6 +72,7 @@ int tegra_get_chip_sku(void) ...@@ -72,6 +72,7 @@ int tegra_get_chip_sku(void)
switch (chip_id) { switch (chip_id) {
case CHIPID_TEGRA20: case CHIPID_TEGRA20:
switch (sku_id) { switch (sku_id) {
case SKU_ID_T20_7:
case SKU_ID_T20: case SKU_ID_T20:
return TEGRA_SOC_T20; return TEGRA_SOC_T20;
case SKU_ID_T25SE: case SKU_ID_T25SE:
......
...@@ -72,6 +72,7 @@ struct timerus { ...@@ -72,6 +72,7 @@ struct timerus {
/* These are the available SKUs (product types) for Tegra */ /* These are the available SKUs (product types) for Tegra */
enum { enum {
SKU_ID_T20_7 = 0x7,
SKU_ID_T20 = 0x8, SKU_ID_T20 = 0x8,
SKU_ID_T25SE = 0x14, SKU_ID_T25SE = 0x14,
SKU_ID_AP25 = 0x17, SKU_ID_AP25 = 0x17,
......
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