summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIon Agorria <[email protected]>2026-01-27 11:18:36 +0200
committerSvyatoslav Ryhel <[email protected]>2026-03-20 17:41:53 +0200
commiteb1f4fd7190d21d25f7d6130757044ecbc40de3f (patch)
tree8a1014da121f8b0070fede1c1551a1384f0494fd
parentef1501932b5e5d5eeae0604c4c6f95bc7e8a4a48 (diff)
ARM: tegra: ap: add support T20 A04 SKU id
Add definition for Tegra20 SKU 0x4 / A04 found in Sony Tablet P. Signed-off-by: Ion Agorria <[email protected]> Signed-off-by: Svyatoslav Ryhel <[email protected]>
-rw-r--r--arch/arm/include/asm/arch-tegra/tegra.h1
-rw-r--r--arch/arm/mach-tegra/ap.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-tegra/tegra.h b/arch/arm/include/asm/arch-tegra/tegra.h
index a399c94213b..8c38c71c93a 100644
--- a/arch/arm/include/asm/arch-tegra/tegra.h
+++ b/arch/arm/include/asm/arch-tegra/tegra.h
@@ -68,6 +68,7 @@ struct timerus {
/* These are the available SKUs (product types) for Tegra */
enum {
+ SKU_ID_T20_A04 = 0x4, /* Sony Tablet P value */
SKU_ID_AP20 = 0x7,
SKU_ID_T20 = 0x8,
SKU_ID_AP20H = 0xf,
diff --git a/arch/arm/mach-tegra/ap.c b/arch/arm/mach-tegra/ap.c
index a7938ed7910..ba67cbb1447 100644
--- a/arch/arm/mach-tegra/ap.c
+++ b/arch/arm/mach-tegra/ap.c
@@ -66,6 +66,7 @@ int tegra_get_chip_sku(void)
switch (chip_id) {
case CHIPID_TEGRA20:
switch (sku_id) {
+ case SKU_ID_T20_A04:
case SKU_ID_AP20:
case SKU_ID_T20:
case SKU_ID_AP20H: