diff options
| author | Bryan Brattlof <bb@ti.com> | 2025-09-08 14:15:28 -0500 |
|---|---|---|
| committer | Nishanth Menon <nm@ti.com> | 2025-09-12 09:42:44 +0530 |
| commit | 037e496038f6e4cfb3642a0ffc2db19838d564dd (patch) | |
| tree | b083c903cf9f8a46e048464d9a11370ac36a500c | |
| parent | firmware: ti_sci: Enable abort handling of entry to LPM (diff) | |
| download | linux-037e496038f6e4cfb3642a0ffc2db19838d564dd.tar.gz linux-037e496038f6e4cfb3642a0ffc2db19838d564dd.zip | |
soc: ti: k3-socinfo: Add information for AM62L SR1.1
The second silicon revision for the AM62L was mainly a ROM revision
and therefore this silicon revision is labeled SR1.1
Add a new decode array to properly identify this revision as SR1.1
Signed-off-by: Bryan Brattlof <bb@ti.com>
Link: https://patch.msgid.link/20250908-62l-chipid-v1-1-9c7194148140@ti.com
Signed-off-by: Nishanth Menon <nm@ti.com>
| -rw-r--r-- | drivers/soc/ti/k3-socinfo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/soc/ti/k3-socinfo.c b/drivers/soc/ti/k3-socinfo.c index d716be113c84..50c170a995f9 100644 --- a/drivers/soc/ti/k3-socinfo.c +++ b/drivers/soc/ti/k3-socinfo.c @@ -66,6 +66,10 @@ static const char * const j721e_rev_string_map[] = { "1.0", "1.1", "2.0", }; +static const char * const am62lx_rev_string_map[] = { + "1.0", "1.1", +}; + static int k3_chipinfo_partno_to_names(unsigned int partno, struct soc_device_attribute *soc_dev_attr) @@ -92,6 +96,12 @@ k3_chipinfo_variant_to_sr(unsigned int partno, unsigned int variant, soc_dev_attr->revision = kasprintf(GFP_KERNEL, "SR%s", j721e_rev_string_map[variant]); break; + case JTAG_ID_PARTNO_AM62LX: + if (variant >= ARRAY_SIZE(am62lx_rev_string_map)) + goto err_unknown_variant; + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "SR%s", + am62lx_rev_string_map[variant]); + break; default: variant++; soc_dev_attr->revision = kasprintf(GFP_KERNEL, "SR%x.0", |
