summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorBryan Brattlof <bb@ti.com>2023-10-23 16:35:17 -0500
committerPraneeth Bajjuri <praneeth@ti.com>2023-10-24 15:35:41 -0500
commit835854816dea0928764c12f33108ccae5c9d3228 (patch)
treeef6c70e5e4c2e880a7ed40a2ab9f6a53e1e8567f /drivers
parentded83c57a2cfe9ec29628f52734c8f92ff07a9db (diff)
soc: add info to identify the am62p SoC family
Include the part number for TI's am62px family of SoCs so we can properly identify it during boot [bb@ti.com: rebased to TI's 2023.04 uboot] Signed-off-by: Bryan Brattlof <bb@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/soc/soc_ti_k3.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/soc/soc_ti_k3.c b/drivers/soc/soc_ti_k3.c
index 332664e80b..7b9fdba5bc 100644
--- a/drivers/soc/soc_ti_k3.c
+++ b/drivers/soc/soc_ti_k3.c
@@ -48,7 +48,9 @@ static const char *get_family_string(u32 idreg)
case JTAG_ID_PARTNO_J784S4:
family = "J784S4";
break;
-
+ case JTAG_ID_PARTNO_AM62PX:
+ family = "AM62PX";
+ break;
default:
family = "Unknown Silicon";
};