Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F143324373
D54916.id170538.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D54916.id170538.diff
View Options
diff --git a/sys/arm/allwinner/aw_sid.c b/sys/arm/allwinner/aw_sid.c
--- a/sys/arm/allwinner/aw_sid.c
+++ b/sys/arm/allwinner/aw_sid.c
@@ -169,6 +169,27 @@
},
};
+static struct aw_sid_efuse h616_efuses[] = {
+ {
+ .name = "rootkey",
+ .desc = "Root Key or ChipID",
+ .base = EFUSE_OFFSET,
+ .offset = 0x00,
+ .size = 16,
+ .id = AW_SID_FUSE_ROOTKEY,
+ .public = true,
+ },
+ {
+ .name = "calibration",
+ .desc = "Thermal Sensor Calibration Data",
+ .base = EFUSE_OFFSET,
+ .offset = 0x34,
+ .size = 4,
+ .id = AW_SID_FUSE_THSSENSOR,
+ .public = true,
+ },
+};
+
static struct aw_sid_efuse d1_efuses[] = {
{
.name = "rootkey",
@@ -225,6 +246,11 @@
.nfuses = nitems(h5_efuses),
};
+static const struct aw_sid_conf h616_conf = {
+ .efuses = h616_efuses,
+ .nfuses = nitems(h616_efuses),
+};
+
static const struct aw_sid_conf d1_conf = {
.efuses = d1_efuses,
.nfuses = nitems(d1_efuses),
@@ -237,6 +263,7 @@
{ "allwinner,sun8i-a83t-sid", (uintptr_t)&a83t_conf},
{ "allwinner,sun8i-h3-sid", (uintptr_t)&h3_conf},
{ "allwinner,sun50i-h5-sid", (uintptr_t)&h5_conf},
+ { "allwinner,sun50i-h616-sid", (uintptr_t)&h616_conf},
{ "allwinner,sun20i-d1-sid", (uintptr_t)&d1_conf},
{ NULL, 0 }
};
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 29, 10:07 PM (16 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28067125
Default Alt Text
D54916.id170538.diff (1 KB)
Attached To
Mode
D54916: aw_sid: Add H616 configuration and compat string
Attached
Detach File
Event Timeline
Log In to Comment