linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible
@ 2019-07-11  2:37 Anson.Huang
  2019-07-11  2:37 ` [PATCH 2/2] nvmem: imx-ocotp: Add i.MX8MN support Anson.Huang
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Anson.Huang @ 2019-07-11  2:37 UTC (permalink / raw)
  To: srinivas.kandagatla, robh+dt, mark.rutland, shawnguo, s.hauer,
	kernel, festevam, devicetree, linux-arm-kernel, linux-kernel
  Cc: Linux-imx

From: Anson Huang <Anson.Huang@nxp.com>

Add compatible for i.MX8MN and add i.MX8MM/i.MX8MN to the description.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 Documentation/devicetree/bindings/nvmem/imx-ocotp.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt b/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
index 96ffd06..904dadf 100644
--- a/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
+++ b/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
@@ -2,7 +2,7 @@ Freescale i.MX6 On-Chip OTP Controller (OCOTP) device tree bindings
 
 This binding represents the on-chip eFuse OTP controller found on
 i.MX6Q/D, i.MX6DL/S, i.MX6SL, i.MX6SX, i.MX6UL, i.MX6ULL/ULZ, i.MX6SLL,
-i.MX7D/S, i.MX7ULP and i.MX8MQ SoCs.
+i.MX7D/S, i.MX7ULP, i.MX8MQ, i.MX8MM and i.MX8MN SoCs.
 
 Required properties:
 - compatible: should be one of
@@ -16,6 +16,7 @@ Required properties:
 	"fsl,imx7ulp-ocotp" (i.MX7ULP),
 	"fsl,imx8mq-ocotp" (i.MX8MQ),
 	"fsl,imx8mm-ocotp" (i.MX8MM),
+	"fsl,imx8mn-ocotp" (i.MX8MN),
 	followed by "syscon".
 - #address-cells : Should be 1
 - #size-cells : Should be 1
-- 
2.7.4


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] nvmem: imx-ocotp: Add i.MX8MN support
  2019-07-11  2:37 [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Anson.Huang
@ 2019-07-11  2:37 ` Anson.Huang
  2019-07-24 20:34 ` [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Rob Herring
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Anson.Huang @ 2019-07-11  2:37 UTC (permalink / raw)
  To: srinivas.kandagatla, robh+dt, mark.rutland, shawnguo, s.hauer,
	kernel, festevam, devicetree, linux-arm-kernel, linux-kernel
  Cc: Linux-imx

From: Anson Huang <Anson.Huang@nxp.com>

i.MX8MN is a new SoC of i.MX8M series, it is similar to i.MX8MM
in terms of addressing and clock setup, add support for its fuse
read/write.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 drivers/nvmem/imx-ocotp.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c
index 42d4451..dff2f3c 100644
--- a/drivers/nvmem/imx-ocotp.c
+++ b/drivers/nvmem/imx-ocotp.c
@@ -479,6 +479,12 @@ static const struct ocotp_params imx8mm_params = {
 	.set_timing = imx_ocotp_set_imx6_timing,
 };
 
+static const struct ocotp_params imx8mn_params = {
+	.nregs = 256,
+	.bank_address_words = 0,
+	.set_timing = imx_ocotp_set_imx6_timing,
+};
+
 static const struct of_device_id imx_ocotp_dt_ids[] = {
 	{ .compatible = "fsl,imx6q-ocotp",  .data = &imx6q_params },
 	{ .compatible = "fsl,imx6sl-ocotp", .data = &imx6sl_params },
@@ -490,6 +496,7 @@ static const struct of_device_id imx_ocotp_dt_ids[] = {
 	{ .compatible = "fsl,imx7ulp-ocotp", .data = &imx7ulp_params },
 	{ .compatible = "fsl,imx8mq-ocotp", .data = &imx8mq_params },
 	{ .compatible = "fsl,imx8mm-ocotp", .data = &imx8mm_params },
+	{ .compatible = "fsl,imx8mn-ocotp", .data = &imx8mn_params },
 	{ },
 };
 MODULE_DEVICE_TABLE(of, imx_ocotp_dt_ids);
-- 
2.7.4


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible
  2019-07-11  2:37 [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Anson.Huang
  2019-07-11  2:37 ` [PATCH 2/2] nvmem: imx-ocotp: Add i.MX8MN support Anson.Huang
@ 2019-07-24 20:34 ` Rob Herring
  2019-08-06  5:59 ` Anson Huang
  2019-08-06  9:39 ` Srinivas Kandagatla
  3 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2019-07-24 20:34 UTC (permalink / raw)
  To: Anson.Huang
  Cc: mark.rutland, devicetree, festevam, s.hauer, linux-kernel,
	robh+dt, srinivas.kandagatla, Linux-imx, kernel, shawnguo,
	linux-arm-kernel

On Thu, 11 Jul 2019 10:37:13 +0800, Anson.Huang@nxp.com wrote:
> From: Anson Huang <Anson.Huang@nxp.com>
> 
> Add compatible for i.MX8MN and add i.MX8MM/i.MX8MN to the description.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> ---
>  Documentation/devicetree/bindings/nvmem/imx-ocotp.txt | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 

Reviewed-by: Rob Herring <robh@kernel.org>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible
  2019-07-11  2:37 [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Anson.Huang
  2019-07-11  2:37 ` [PATCH 2/2] nvmem: imx-ocotp: Add i.MX8MN support Anson.Huang
  2019-07-24 20:34 ` [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Rob Herring
@ 2019-08-06  5:59 ` Anson Huang
  2019-08-06  9:39 ` Srinivas Kandagatla
  3 siblings, 0 replies; 5+ messages in thread
From: Anson Huang @ 2019-08-06  5:59 UTC (permalink / raw)
  To: srinivas.kandagatla, robh+dt, mark.rutland, shawnguo, s.hauer,
	kernel, festevam, devicetree, linux-arm-kernel, linux-kernel
  Cc: dl-linux-imx

Gentle Ping...

> From: Anson Huang <Anson.Huang@nxp.com>
> 
> Add compatible for i.MX8MN and add i.MX8MM/i.MX8MN to the description.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> ---
>  Documentation/devicetree/bindings/nvmem/imx-ocotp.txt | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
> b/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
> index 96ffd06..904dadf 100644
> --- a/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
> +++ b/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
> @@ -2,7 +2,7 @@ Freescale i.MX6 On-Chip OTP Controller (OCOTP) device
> tree bindings
> 
>  This binding represents the on-chip eFuse OTP controller found on
> i.MX6Q/D, i.MX6DL/S, i.MX6SL, i.MX6SX, i.MX6UL, i.MX6ULL/ULZ, i.MX6SLL, -
> i.MX7D/S, i.MX7ULP and i.MX8MQ SoCs.
> +i.MX7D/S, i.MX7ULP, i.MX8MQ, i.MX8MM and i.MX8MN SoCs.
> 
>  Required properties:
>  - compatible: should be one of
> @@ -16,6 +16,7 @@ Required properties:
>  	"fsl,imx7ulp-ocotp" (i.MX7ULP),
>  	"fsl,imx8mq-ocotp" (i.MX8MQ),
>  	"fsl,imx8mm-ocotp" (i.MX8MM),
> +	"fsl,imx8mn-ocotp" (i.MX8MN),
>  	followed by "syscon".
>  - #address-cells : Should be 1
>  - #size-cells : Should be 1
> --
> 2.7.4

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible
  2019-07-11  2:37 [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Anson.Huang
                   ` (2 preceding siblings ...)
  2019-08-06  5:59 ` Anson Huang
@ 2019-08-06  9:39 ` Srinivas Kandagatla
  3 siblings, 0 replies; 5+ messages in thread
From: Srinivas Kandagatla @ 2019-08-06  9:39 UTC (permalink / raw)
  To: Anson.Huang, robh+dt, mark.rutland, shawnguo, s.hauer, kernel,
	festevam, devicetree, linux-arm-kernel, linux-kernel
  Cc: Linux-imx



On 11/07/2019 03:37, Anson.Huang@nxp.com wrote:
> From: Anson Huang <Anson.Huang@nxp.com>
> 
> Add compatible for i.MX8MN and add i.MX8MM/i.MX8MN to the description.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>

Applied both the patches.

Thanks,
srini

> ---
>   Documentation/devicetree/bindings/nvmem/imx-ocotp.txt | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt b/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
> index 96ffd06..904dadf 100644
> --- a/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
> +++ b/Documentation/devicetree/bindings/nvmem/imx-ocotp.txt
> @@ -2,7 +2,7 @@ Freescale i.MX6 On-Chip OTP Controller (OCOTP) device tree bindings
>   
>   This binding represents the on-chip eFuse OTP controller found on
>   i.MX6Q/D, i.MX6DL/S, i.MX6SL, i.MX6SX, i.MX6UL, i.MX6ULL/ULZ, i.MX6SLL,
> -i.MX7D/S, i.MX7ULP and i.MX8MQ SoCs.
> +i.MX7D/S, i.MX7ULP, i.MX8MQ, i.MX8MM and i.MX8MN SoCs.
>   
>   Required properties:
>   - compatible: should be one of
> @@ -16,6 +16,7 @@ Required properties:
>   	"fsl,imx7ulp-ocotp" (i.MX7ULP),
>   	"fsl,imx8mq-ocotp" (i.MX8MQ),
>   	"fsl,imx8mm-ocotp" (i.MX8MM),
> +	"fsl,imx8mn-ocotp" (i.MX8MN),
>   	followed by "syscon".
>   - #address-cells : Should be 1
>   - #size-cells : Should be 1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-08-06  9:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-11  2:37 [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Anson.Huang
2019-07-11  2:37 ` [PATCH 2/2] nvmem: imx-ocotp: Add i.MX8MN support Anson.Huang
2019-07-24 20:34 ` [PATCH 1/2] dt-bindings: imx-ocotp: Add i.MX8MN compatible Rob Herring
2019-08-06  5:59 ` Anson Huang
2019-08-06  9:39 ` Srinivas Kandagatla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).