aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJayesh Choudhary2024-06-12 14:41:12 +0530
committerTom Rini2024-06-19 12:07:43 -0600
commitc826deebe2158e2b74f6057b028d00357cff38f0 (patch)
tree9ec0c9a29dc3714b978bb91bbce3de70f919d132 /drivers
parent6f6f288f92a3b2d938e1f98e226c7a5e067852ca (diff)
soc: add info to identify the J722S SoC family
Include the part number for TI's j722s family of SoC to identify it during boot. Signed-off-by: Vaishnav Achath <vaishnav.a@ti.com> Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com>
Diffstat (limited to 'drivers')
-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 0838808515f..f948914d218 100644
--- a/drivers/soc/soc_ti_k3.c
+++ b/drivers/soc/soc_ti_k3.c
@@ -47,6 +47,9 @@ static const char *get_family_string(u32 idreg)
case JTAG_ID_PARTNO_J721S2:
family = "J721S2";
break;
+ case JTAG_ID_PARTNO_J722S:
+ family = "J722S";
+ break;
case JTAG_ID_PARTNO_J784S4:
family = "J784S4";
break;