[PATCH 4/8] soc: ti: k3-socinfo: add am62a SoC entry
Bryan Brattlof
bb at ti.com
Fri Nov 4 01:13:54 CET 2022
Add identification support for TI's am62ax family of SoCs
Signed-off-by: Bryan Brattlof <bb at ti.com>
---
drivers/soc/soc_ti_k3.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/soc/soc_ti_k3.c b/drivers/soc/soc_ti_k3.c
index b1e7c4ae5f6aa..8af0ac7051925 100644
--- a/drivers/soc/soc_ti_k3.c
+++ b/drivers/soc/soc_ti_k3.c
@@ -16,6 +16,7 @@
#define AM64X 0xbb38
#define J721S2 0xbb75
#define AM62X 0xbb7e
+#define AM62AX 0xbb8d
#define JTAG_ID_VARIANT_SHIFT 28
#define JTAG_ID_VARIANT_MASK (0xf << 28)
@@ -53,6 +54,9 @@ static const char *get_family_string(u32 idreg)
case AM62X:
family = "AM62X";
break;
+ case AM62AX:
+ family = "AM62AX";
+ break;
default:
family = "Unknown Silicon";
};
--
2.38.1
More information about the U-Boot
mailing list