diff options
| author | Apurva Nandan <[email protected]> | 2024-02-24 01:51:43 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-03-04 13:41:03 -0500 |
| commit | 4e3b94d7ba254322d75ea72da840be0a0af6a892 (patch) | |
| tree | 4a710247e0365a207f0b78791390185ff67d165a /drivers | |
| parent | 2ba26e15d24c39f1f48f2aa0f3be89f0281b84ca (diff) | |
soc: ti: k3-socinfo: Add entry for J784S4 SoC
Add support for J784S4 SoC Identification.
Signed-off-by: Hari Nagalla <[email protected]>
Signed-off-by: Apurva Nandan <[email protected]>
Reviewed-by: Nishanth Menon <[email protected]>
Reviewed-by: Roger Quadros <[email protected]>
Tested-by: Marcel Ziswiler <[email protected]> # AM69-SK
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/soc/soc_ti_k3.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/soc/soc_ti_k3.c b/drivers/soc/soc_ti_k3.c index 355a5368dd4..d1769809156 100644 --- a/drivers/soc/soc_ti_k3.c +++ b/drivers/soc/soc_ti_k3.c @@ -45,6 +45,9 @@ static const char *get_family_string(u32 idreg) case JTAG_ID_PARTNO_AM62AX: family = "AM62AX"; break; + case JTAG_ID_PARTNO_J784S4: + family = "J784S4"; + break; default: family = "Unknown Silicon"; }; |
