projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e802ef
)
soc: soc_ti_k3: Add device identification for J7200 SoC
author
Kishon Vijay Abraham I
<kishon@ti.com>
Wed, 5 Aug 2020 17:14:27 +0000
(22:44 +0530)
committer
Lokesh Vutla
<lokeshvutla@ti.com>
Tue, 11 Aug 2020 15:04:46 +0000
(20:34 +0530)
Add device identification for J7200 SoC
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Suman Anna <s-anna@ti.com>
drivers/soc/soc_ti_k3.c
patch
|
blob
|
history
diff --git
a/drivers/soc/soc_ti_k3.c
b/drivers/soc/soc_ti_k3.c
index ae23ef7475206543ea4d6227ef853ea12b766dd3..94285403ca23c05c0fc643ca37c239d963bc7487 100644
(file)
--- a/
drivers/soc/soc_ti_k3.c
+++ b/
drivers/soc/soc_ti_k3.c
@@
-12,6
+12,7
@@
#define AM65X 0xbb5a
#define J721E 0xbb64
+#define J7200 0xbb6d
#define REV_SR1_0 0
#define REV_SR2_0 1
@@
-40,6
+41,9
@@
static const char *get_family_string(u32 idreg)
case J721E:
family = "J721E";
break;
+ case J7200:
+ family = "J7200";
+ break;
default:
family = "Unknown Silicon";
};