[PATCH 19/20] ARM: i.MX8MP: Add ocotp support
Sascha Hauer
s.hauer at pengutronix.de
Tue Jun 23 09:16:05 EDT 2020
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
drivers/nvmem/ocotp.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/nvmem/ocotp.c b/drivers/nvmem/ocotp.c
index 34e33dee82..62f510785b 100644
--- a/drivers/nvmem/ocotp.c
+++ b/drivers/nvmem/ocotp.c
@@ -728,6 +728,14 @@ static struct imx_ocotp_data vf610_ocotp_data = {
.format_mac = vf610_ocotp_format_mac,
};
+static struct imx_ocotp_data imx8mp_ocotp_data = {
+ .num_regs = 1024,
+ .addr_to_offset = imx6sl_addr_to_offset,
+ .mac_offsets_num = 2,
+ .mac_offsets = { 0x90, 0x96 },
+ .format_mac = imx_ocotp_format_mac,
+};
+
static struct imx_ocotp_data imx8mq_ocotp_data = {
.num_regs = 2048,
.addr_to_offset = imx6sl_addr_to_offset,
@@ -752,6 +760,9 @@ static __maybe_unused struct of_device_id imx_ocotp_dt_ids[] = {
}, {
.compatible = "fsl,imx6ull-ocotp",
.data = &imx6ull_ocotp_data,
+ }, {
+ .compatible = "fsl,imx8mp-ocotp",
+ .data = &imx8mp_ocotp_data,
}, {
.compatible = "fsl,imx8mq-ocotp",
.data = &imx8mq_ocotp_data,
--
2.27.0
More information about the barebox
mailing list