summaryrefslogtreecommitdiff
path: root/drivers/soc
diff options
context:
space:
mode:
authorBryan Brattlof <[email protected]>2024-03-12 15:20:19 -0500
committerTom Rini <[email protected]>2024-03-13 10:10:04 -0400
commit026c972fa324ee749c3531c05c63a996f503ce06 (patch)
tree09e8a2a36832d39a7b79f50fbe05f0478148f697 /drivers/soc
parent20a0ce574d6642e0dfe651467159039fac48cc4f (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 Reviewed-by: Igor Opaniuk <[email protected]> Reviewed-by: Neha Malcom Francis <[email protected]> Signed-off-by: Bryan Brattlof <[email protected]>
Diffstat (limited to 'drivers/soc')
-rw-r--r--drivers/soc/soc_ti_k3.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/soc/soc_ti_k3.c b/drivers/soc/soc_ti_k3.c
index d1769809156..3a4e58bba67 100644
--- a/drivers/soc/soc_ti_k3.c
+++ b/drivers/soc/soc_ti_k3.c
@@ -48,6 +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";
};