diff options
author | Vaishnav Achath <vaishnav.a@ti.com> | 2023-12-11 18:56:00 +0530 |
---|---|---|
committer | Nishanth Menon <nm@ti.com> | 2023-12-13 07:52:32 -0600 |
commit | 2c2235292b33d788a1436f1d2a6108184a657f51 (patch) | |
tree | 41018485398e00327b355e950735287dba790307 /drivers/soc | |
parent | 3ba080bf46e4a9039d0d41356f4a2515e00bf747 (diff) | |
download | linux-2c2235292b33d788a1436f1d2a6108184a657f51.tar.gz linux-2c2235292b33d788a1436f1d2a6108184a657f51.tar.bz2 linux-2c2235292b33d788a1436f1d2a6108184a657f51.zip |
soc: ti: k3-socinfo: Add JTAG ID for J722S
Add JTAG ID info for the J722S SoC family to enable SoC detection.
More details about this SoC can be found in the TRM:
https://www.ti.com/lit/zip/sprujb3
Signed-off-by: Vaishnav Achath <vaishnav.a@ti.com>
Reviewed-by: Andrew Davis <afd@ti.com>
Link: https://lore.kernel.org/r/20231211132600.25289-1-vaishnav.a@ti.com
Signed-off-by: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/ti/k3-socinfo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/soc/ti/k3-socinfo.c b/drivers/soc/ti/k3-socinfo.c index 7517a9c8c8fa..59101bf7cf23 100644 --- a/drivers/soc/ti/k3-socinfo.c +++ b/drivers/soc/ti/k3-socinfo.c @@ -42,6 +42,7 @@ #define JTAG_ID_PARTNO_J784S4 0xBB80 #define JTAG_ID_PARTNO_AM62AX 0xBB8D #define JTAG_ID_PARTNO_AM62PX 0xBB9D +#define JTAG_ID_PARTNO_J722S 0xBBA0 static const struct k3_soc_id { unsigned int id; @@ -56,6 +57,7 @@ static const struct k3_soc_id { { JTAG_ID_PARTNO_J784S4, "J784S4" }, { JTAG_ID_PARTNO_AM62AX, "AM62AX" }, { JTAG_ID_PARTNO_AM62PX, "AM62PX" }, + { JTAG_ID_PARTNO_J722S, "J722S" }, }; static const char * const j721e_rev_string_map[] = { |