2019-12-26 06:45:43

by Anson Huang

[permalink] [raw]
Subject: [PATCH] soc: imx: Add i.MX8MP SoC driver support

Add i.MX8MP SoC driver support:

root@imx8mpevk:~# cat /sys/devices/soc0/family
Freescale i.MX

root@imx8mpevk:~# cat /sys/devices/soc0/machine
FSL i.MX8MP EVK

root@imx8mpevk:~# cat /sys/devices/soc0/soc_id
i.MX8MP

root@imx8mpevk:~# cat /sys/devices/soc0/revision
1.0

Signed-off-by: Anson Huang <[email protected]>
---
drivers/soc/imx/soc-imx8.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/drivers/soc/imx/soc-imx8.c b/drivers/soc/imx/soc-imx8.c
index 964ff84..719e1f18 100644
--- a/drivers/soc/imx/soc-imx8.c
+++ b/drivers/soc/imx/soc-imx8.c
@@ -142,10 +142,16 @@ static const struct imx8_soc_data imx8mn_soc_data = {
.soc_revision = imx8mm_soc_revision,
};

+static const struct imx8_soc_data imx8mp_soc_data = {
+ .name = "i.MX8MP",
+ .soc_revision = imx8mm_soc_revision,
+};
+
static const struct of_device_id imx8_soc_match[] = {
{ .compatible = "fsl,imx8mq", .data = &imx8mq_soc_data, },
{ .compatible = "fsl,imx8mm", .data = &imx8mm_soc_data, },
{ .compatible = "fsl,imx8mn", .data = &imx8mn_soc_data, },
+ { .compatible = "fsl,imx8mp", .data = &imx8mp_soc_data, },
{ }
};

--
2.7.4


2019-12-26 14:10:17

by Abel Vesa

[permalink] [raw]
Subject: Re: [PATCH] soc: imx: Add i.MX8MP SoC driver support

On 19-12-26 14:40:02, Anson Huang wrote:
> Add i.MX8MP SoC driver support:
>
> root@imx8mpevk:~# cat /sys/devices/soc0/family
> Freescale i.MX
>
> root@imx8mpevk:~# cat /sys/devices/soc0/machine
> FSL i.MX8MP EVK
>
> root@imx8mpevk:~# cat /sys/devices/soc0/soc_id
> i.MX8MP
>
> root@imx8mpevk:~# cat /sys/devices/soc0/revision
> 1.0
>
> Signed-off-by: Anson Huang <[email protected]>

Reviewed-by: Abel Vesa <[email protected]>

> ---
> drivers/soc/imx/soc-imx8.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/soc/imx/soc-imx8.c b/drivers/soc/imx/soc-imx8.c
> index 964ff84..719e1f18 100644
> --- a/drivers/soc/imx/soc-imx8.c
> +++ b/drivers/soc/imx/soc-imx8.c
> @@ -142,10 +142,16 @@ static const struct imx8_soc_data imx8mn_soc_data = {
> .soc_revision = imx8mm_soc_revision,
> };
>
> +static const struct imx8_soc_data imx8mp_soc_data = {
> + .name = "i.MX8MP",
> + .soc_revision = imx8mm_soc_revision,
> +};
> +
> static const struct of_device_id imx8_soc_match[] = {
> { .compatible = "fsl,imx8mq", .data = &imx8mq_soc_data, },
> { .compatible = "fsl,imx8mm", .data = &imx8mm_soc_data, },
> { .compatible = "fsl,imx8mn", .data = &imx8mn_soc_data, },
> + { .compatible = "fsl,imx8mp", .data = &imx8mp_soc_data, },
> { }
> };
>
> --
> 2.7.4
>

2020-01-09 07:54:45

by Shawn Guo

[permalink] [raw]
Subject: Re: [PATCH] soc: imx: Add i.MX8MP SoC driver support

On Thu, Dec 26, 2019 at 02:40:02PM +0800, Anson Huang wrote:
> Add i.MX8MP SoC driver support:
>
> root@imx8mpevk:~# cat /sys/devices/soc0/family
> Freescale i.MX
>
> root@imx8mpevk:~# cat /sys/devices/soc0/machine
> FSL i.MX8MP EVK
>
> root@imx8mpevk:~# cat /sys/devices/soc0/soc_id
> i.MX8MP
>
> root@imx8mpevk:~# cat /sys/devices/soc0/revision
> 1.0
>
> Signed-off-by: Anson Huang <[email protected]>

Applied, thanks.