* [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP
@ 2023-01-11 18:21 Lucas Stach
2023-01-11 18:21 ` [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location Lucas Stach
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Lucas Stach @ 2023-01-11 18:21 UTC (permalink / raw)
To: barebox
i.MX8MP has the same quirk as the i.MX6UL: the MAC address for the
second ethernet interface is stored at an unaligned location and thus
needs to be handled by skipping the first 2 bytes from the OCOTP
register.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
drivers/nvmem/ocotp.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/nvmem/ocotp.c b/drivers/nvmem/ocotp.c
index 7cc2b3b3db58..9d4d6e91db74 100644
--- a/drivers/nvmem/ocotp.c
+++ b/drivers/nvmem/ocotp.c
@@ -88,6 +88,7 @@
#define MAC_OFFSET_0 (0x22 * 4)
#define IMX6UL_MAC_OFFSET_1 (0x23 * 4)
#define MAC_OFFSET_1 (0x24 * 4)
+#define IMX8MP_MAC_OFFSET_1 (0x25 * 4)
#define MAX_MAC_OFFSETS 2
#define MAC_BYTES 8
#define UNIQUE_ID_NUM 2
@@ -598,7 +599,7 @@ static int imx_ocotp_read_mac(const struct imx_ocotp_data *data,
if (ret < 0)
return ret;
- if (offset != IMX6UL_MAC_OFFSET_1)
+ if (offset != IMX6UL_MAC_OFFSET_1 && offset != IMX8MP_MAC_OFFSET_1)
data->format_mac(mac, buf, OCOTP_HW_TO_MAC);
else
data->format_mac(mac, buf + 2, OCOTP_HW_TO_MAC);
@@ -624,7 +625,8 @@ static int imx_ocotp_set_mac(struct param_d *param, void *priv)
if (ret < 0)
return ret;
- if (ethaddr->offset != IMX6UL_MAC_OFFSET_1)
+ if (ethaddr->offset != IMX6UL_MAC_OFFSET_1 &&
+ ethaddr->offset != IMX8MP_MAC_OFFSET_1)
ethaddr->data->format_mac(buf, ethaddr->value,
OCOTP_MAC_TO_HW);
else
@@ -898,7 +900,7 @@ 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 },
+ .mac_offsets = { 0x90, 0x94 },
.format_mac = imx_ocotp_format_mac,
.feat = &imx8mp_featctrl_data,
};
--
2.39.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location
2023-01-11 18:21 [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP Lucas Stach
@ 2023-01-11 18:21 ` Lucas Stach
2023-01-11 19:03 ` Ahmad Fatoum
2023-01-11 18:21 ` [PATCH 3/3] net: eqos: add i.MX8MP support Lucas Stach
2023-01-27 14:14 ` [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP Sascha Hauer
2 siblings, 1 reply; 9+ messages in thread
From: Lucas Stach @ 2023-01-11 18:21 UTC (permalink / raw)
To: barebox
All i.MX8MP boards should consult the common fuse locations for the
MAC address of the network interfaces. Also add the second location
for the EQOS network interface.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
arch/arm/dts/imx8mp-evk.dts | 4 ----
arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts | 4 ----
arch/arm/dts/imx8mp.dtsi | 1 +
3 files changed, 1 insertion(+), 8 deletions(-)
diff --git a/arch/arm/dts/imx8mp-evk.dts b/arch/arm/dts/imx8mp-evk.dts
index d992b14882a3..28d8c5f9292e 100644
--- a/arch/arm/dts/imx8mp-evk.dts
+++ b/arch/arm/dts/imx8mp-evk.dts
@@ -68,7 +68,3 @@
reg = <0xe0000 0x20000>;
};
};
-
-&ocotp {
- barebox,provide-mac-address = <&fec 0x640>;
-};
diff --git a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
index c47e7285a703..6e81f58e2786 100644
--- a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
+++ b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
@@ -53,7 +53,3 @@
reg = <0xe0000 0x20000>;
};
};
-
-&ocotp {
- barebox,provide-mac-address = <&fec 0x640>;
-};
diff --git a/arch/arm/dts/imx8mp.dtsi b/arch/arm/dts/imx8mp.dtsi
index 5da79f13d339..379fa49d6042 100644
--- a/arch/arm/dts/imx8mp.dtsi
+++ b/arch/arm/dts/imx8mp.dtsi
@@ -13,6 +13,7 @@
feat: &ocotp {
#feature-cells = <1>;
barebox,feature-controller;
+ barebox,provide-mac-address = <&fec 0x640 &eqos 0x650>;
};
&pgc_mipi_phy1 {
--
2.39.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 3/3] net: eqos: add i.MX8MP support
2023-01-11 18:21 [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP Lucas Stach
2023-01-11 18:21 ` [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location Lucas Stach
@ 2023-01-11 18:21 ` Lucas Stach
2023-01-12 14:59 ` Ahmad Fatoum
2023-01-27 14:14 ` [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP Sascha Hauer
2 siblings, 1 reply; 9+ messages in thread
From: Lucas Stach @ 2023-01-11 18:21 UTC (permalink / raw)
To: barebox
This adds the platform glue for the Designware EQOS ethernet interface
as implemented on the i.MX8MP SoC.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
drivers/net/Kconfig | 8 ++
drivers/net/Makefile | 1 +
drivers/net/designware_imx8.c | 194 ++++++++++++++++++++++++++++++++++
3 files changed, 203 insertions(+)
create mode 100644 drivers/net/designware_imx8.c
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 2dafd9c7a8b9..e871b7e11af7 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -107,6 +107,14 @@ config DRIVER_NET_DESIGNWARE_EQOS
This option enables support for the Synopsys
Designware Ethernet Quality-of-Service (GMAC4).
+config DRIVER_NET_DESIGNWARE_IMX8
+ bool "Designware EQOS i.MX8 Ethernet driver"
+ depends on HAS_DMA && COMMON_CLK && OFTREE && (ARCH_IMX8M || COMPILE_TEST)
+ select DRIVER_NET_DESIGNWARE_EQOS
+ help
+ This option enables support for the Designware EQOS MAC implemented on
+ the NXP i.MX8 SoCs.
+
config DRIVER_NET_DESIGNWARE_STM32
bool "STM32 Designware Ethernet driver"
depends on HAS_DMA && COMMON_CLK && OFTREE && (ARCH_STM32MP || COMPILE_TEST)
diff --git a/drivers/net/Makefile b/drivers/net/Makefile
index 7ff330a2bf42..6a44a12bf88a 100644
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
@@ -15,6 +15,7 @@ obj-$(CONFIG_DRIVER_NET_DESIGNWARE_GENERIC) += designware_generic.o
obj-$(CONFIG_DRIVER_NET_DESIGNWARE_SOCFPGA) += designware_socfpga.o
obj-$(CONFIG_DRIVER_NET_DESIGNWARE_STARFIVE) += designware_starfive.o
obj-$(CONFIG_DRIVER_NET_DESIGNWARE_EQOS) += designware_eqos.o
+obj-$(CONFIG_DRIVER_NET_DESIGNWARE_IMX8) += designware_imx8.o
obj-$(CONFIG_DRIVER_NET_DESIGNWARE_STM32) += designware_stm32.o
obj-$(CONFIG_DRIVER_NET_DESIGNWARE_TEGRA186) += designware_tegra186.o
obj-$(CONFIG_DRIVER_NET_DESIGNWARE_ROCKCHIP) += designware_rockchip.o
diff --git a/drivers/net/designware_imx8.c b/drivers/net/designware_imx8.c
new file mode 100644
index 000000000000..e64fc57c3e13
--- /dev/null
+++ b/drivers/net/designware_imx8.c
@@ -0,0 +1,194 @@
+// SPDX-License-Identifier: GPL-2.0-only
+
+#include <common.h>
+#include <init.h>
+#include <net.h>
+#include <regmap.h>
+#include <mfd/syscon.h>
+#include <linux/clk.h>
+
+#include "designware_eqos.h"
+
+#define GPR_ENET_QOS_INTF_MODE_MASK GENMASK(21, 16)
+#define GPR_ENET_QOS_INTF_SEL_MII (0x0 << 16)
+#define GPR_ENET_QOS_INTF_SEL_RGMII (0x1 << 16)
+#define GPR_ENET_QOS_INTF_SEL_RMII (0x4 << 16)
+#define GPR_ENET_QOS_CLK_GEN_EN BIT(19)
+#define GPR_ENET_QOS_CLK_TX_CLK_SEL BIT(20)
+#define GPR_ENET_QOS_RGMII_EN BIT(21)
+
+
+struct eqos_imx8_priv {
+ struct device_d *dev;
+ struct clk_bulk_data *clks;
+ int num_clks;
+ struct regmap *intf_regmap;
+ u32 intf_reg_off;
+ bool rmii_refclk_ext;
+};
+
+enum { CLK_STMMACETH, CLK_PCLK, CLK_PTP_REF, CLK_TX};
+static const struct clk_bulk_data imx8_clks[] = {
+ [CLK_STMMACETH] = { .id = "stmmaceth" },
+ [CLK_PCLK] = { .id = "pclk" },
+ [CLK_PTP_REF] = { .id = "ptp_ref" },
+ [CLK_TX] = { .id = "tx" },
+};
+
+static unsigned long eqos_get_csr_clk_rate_imx8(struct eqos *eqos)
+{
+ struct eqos_imx8_priv *priv = eqos->priv;
+
+ return clk_get_rate(priv->clks[CLK_PCLK].clk);
+}
+
+
+static void eqos_adjust_link_imx8(struct eth_device *edev)
+{
+ struct eqos *eqos = edev->priv;
+ struct eqos_imx8_priv *priv = eqos->priv;
+ unsigned long rate;
+ int ret;
+
+ switch (edev->phydev->speed) {
+ case SPEED_10:
+ rate = 2500000;
+ break;
+ case SPEED_100:
+ rate = 25000000;
+ break;
+ case SPEED_1000:
+ rate = 125000000;
+ break;
+ default:
+ dev_err(priv->dev, "unknown speed value for GMAC speed=%d",
+ edev->phydev->speed);
+ return;
+ }
+
+ ret = clk_set_rate(priv->clks[CLK_TX].clk, rate);
+ if (ret)
+ dev_err(priv->dev, "set TX clk rate %ld failed %d\n",
+ rate, ret);
+
+ eqos_adjust_link(edev);
+}
+
+static void eqos_imx8_set_interface_mode(struct eqos *eqos)
+{
+ struct eqos_imx8_priv *priv = eqos->priv;
+ struct device_node *np = priv->dev->device_node;
+ int val;
+
+ if (!of_device_is_compatible(np, "nxp,imx8mp-dwmac-eqos"))
+ return;
+
+ switch (eqos->interface) {
+ case PHY_INTERFACE_MODE_MII:
+ val = GPR_ENET_QOS_INTF_SEL_MII;
+ break;
+ case PHY_INTERFACE_MODE_RMII:
+ val = GPR_ENET_QOS_INTF_SEL_RMII;
+ val |= (priv->rmii_refclk_ext ? 0 : GPR_ENET_QOS_CLK_TX_CLK_SEL);
+ break;
+ case PHY_INTERFACE_MODE_RGMII:
+ case PHY_INTERFACE_MODE_RGMII_ID:
+ case PHY_INTERFACE_MODE_RGMII_RXID:
+ case PHY_INTERFACE_MODE_RGMII_TXID:
+ val = GPR_ENET_QOS_INTF_SEL_RGMII |
+ GPR_ENET_QOS_RGMII_EN;
+ break;
+ default:
+ dev_err(priv->dev, "no valid interface mode found!\n");
+ return;
+ }
+
+ val |= GPR_ENET_QOS_CLK_GEN_EN;
+
+ regmap_update_bits(priv->intf_regmap, priv->intf_reg_off,
+ GPR_ENET_QOS_INTF_MODE_MASK, val);
+}
+
+static int eqos_init_imx8(struct device_d *dev, struct eqos *eqos)
+{
+ struct device_node *np = dev->device_node;
+ struct eqos_imx8_priv *priv = eqos->priv;
+ int ret;
+
+ priv->dev = dev;
+
+ if (of_get_property(np, "snps,rmii_refclk_ext", NULL))
+ priv->rmii_refclk_ext = true;
+
+ if (of_device_is_compatible(np, "nxp,imx8mp-dwmac-eqos")) {
+ priv->intf_regmap = syscon_regmap_lookup_by_phandle(np, "intf_mode");
+ if (IS_ERR(priv->intf_regmap))
+ return PTR_ERR(priv->intf_regmap);
+
+ ret = of_property_read_u32_index(np, "intf_mode", 1, &priv->intf_reg_off);
+ if (ret) {
+ dev_err(dev, "Can't get intf mode reg offset (%d)\n", ret);
+ return ret;
+ }
+ }
+
+ priv->num_clks = ARRAY_SIZE(imx8_clks);
+ priv->clks = xmalloc(priv->num_clks * sizeof(*priv->clks));
+ memcpy(priv->clks, imx8_clks, sizeof imx8_clks);
+
+ ret = clk_bulk_get(dev, priv->num_clks, priv->clks);
+ if (ret) {
+ dev_err(dev, "Failed to get clks: %s\n", strerror(-ret));
+ return ret;
+ }
+
+ ret = clk_bulk_enable(priv->num_clks, priv->clks);
+ if (ret) {
+ dev_err(dev, "Failed to enable clks: %s\n", strerror(-ret));
+ return ret;
+ }
+
+ eqos_imx8_set_interface_mode(eqos);
+
+ return 0;
+}
+
+static struct eqos_ops imx8_ops = {
+ .init = eqos_init_imx8,
+ .get_ethaddr = eqos_get_ethaddr,
+ .set_ethaddr = eqos_set_ethaddr,
+ .adjust_link = eqos_adjust_link_imx8,
+ .get_csr_clk_rate = eqos_get_csr_clk_rate_imx8,
+
+ .clk_csr = EQOS_MDIO_ADDR_CR_250_300,
+ .config_mac = EQOS_MAC_RXQ_CTRL0_RXQ0EN_ENABLED_DCB,
+};
+
+static int eqos_probe_imx8(struct device_d *dev)
+{
+ return eqos_probe(dev, &imx8_ops, xzalloc(sizeof(struct eqos_imx8_priv)));
+}
+
+static void eqos_remove_imx8(struct device_d *dev)
+{
+ struct eqos *eqos = dev->priv;
+ struct eqos_imx8_priv *priv = eqos->priv;
+
+ eqos_remove(dev);
+
+ clk_bulk_disable(priv->num_clks, priv->clks);
+ clk_bulk_put(priv->num_clks, priv->clks);
+}
+
+static __maybe_unused struct of_device_id eqos_imx8_ids[] = {
+ { .compatible = "nxp,imx8mp-dwmac-eqos"},
+ { /* sentinel */ }
+};
+
+static struct driver_d eqos_imx8_driver = {
+ .name = "eqos-imx8",
+ .probe = eqos_probe_imx8,
+ .remove = eqos_remove_imx8,
+ .of_compatible = DRV_OF_COMPAT(eqos_imx8_ids),
+};
+device_platform_driver(eqos_imx8_driver);
--
2.39.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location
2023-01-11 18:21 ` [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location Lucas Stach
@ 2023-01-11 19:03 ` Ahmad Fatoum
2023-01-11 20:00 ` Lucas Stach
0 siblings, 1 reply; 9+ messages in thread
From: Ahmad Fatoum @ 2023-01-11 19:03 UTC (permalink / raw)
To: Lucas Stach, barebox
Hello Lucas,
On 11.01.23 19:21, Lucas Stach wrote:
> All i.MX8MP boards should consult the common fuse locations for the
> MAC address of the network interfaces. Also add the second location
> for the EQOS network interface.
Do we really want to extend use of this binding? The upstream kernel
DT already has nvmem-cells for the MAC addresses and we have support
for reading that out. Only thing missing is the equivalent of
Linux commit d0221a780cbc ("nvmem: imx-ocotp: add support for post processing")
Cheers,
Ahmad
>
> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
> ---
> arch/arm/dts/imx8mp-evk.dts | 4 ----
> arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts | 4 ----
> arch/arm/dts/imx8mp.dtsi | 1 +
> 3 files changed, 1 insertion(+), 8 deletions(-)
>
> diff --git a/arch/arm/dts/imx8mp-evk.dts b/arch/arm/dts/imx8mp-evk.dts
> index d992b14882a3..28d8c5f9292e 100644
> --- a/arch/arm/dts/imx8mp-evk.dts
> +++ b/arch/arm/dts/imx8mp-evk.dts
> @@ -68,7 +68,3 @@
> reg = <0xe0000 0x20000>;
> };
> };
> -
> -&ocotp {
> - barebox,provide-mac-address = <&fec 0x640>;
> -};
> diff --git a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> index c47e7285a703..6e81f58e2786 100644
> --- a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> +++ b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> @@ -53,7 +53,3 @@
> reg = <0xe0000 0x20000>;
> };
> };
> -
> -&ocotp {
> - barebox,provide-mac-address = <&fec 0x640>;
> -};
> diff --git a/arch/arm/dts/imx8mp.dtsi b/arch/arm/dts/imx8mp.dtsi
> index 5da79f13d339..379fa49d6042 100644
> --- a/arch/arm/dts/imx8mp.dtsi
> +++ b/arch/arm/dts/imx8mp.dtsi
> @@ -13,6 +13,7 @@
> feat: &ocotp {
> #feature-cells = <1>;
> barebox,feature-controller;
> + barebox,provide-mac-address = <&fec 0x640 &eqos 0x650>;
> };
>
> &pgc_mipi_phy1 {
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location
2023-01-11 19:03 ` Ahmad Fatoum
@ 2023-01-11 20:00 ` Lucas Stach
2023-01-11 20:13 ` Ahmad Fatoum
0 siblings, 1 reply; 9+ messages in thread
From: Lucas Stach @ 2023-01-11 20:00 UTC (permalink / raw)
To: Ahmad Fatoum, barebox
Hi Ahmad,
Am Mittwoch, dem 11.01.2023 um 20:03 +0100 schrieb Ahmad Fatoum:
> Hello Lucas,
>
> On 11.01.23 19:21, Lucas Stach wrote:
> > All i.MX8MP boards should consult the common fuse locations for the
> > MAC address of the network interfaces. Also add the second location
> > for the EQOS network interface.
>
> Do we really want to extend use of this binding? The upstream kernel
> DT already has nvmem-cells for the MAC addresses and we have support
> for reading that out.
>
I thought about this too, but...
> Only thing missing is the equivalent of
>
> Linux commit d0221a780cbc ("nvmem: imx-ocotp: add support for post processing")
>
This isn't the only thing missing. To handle the second MAC address via
NMEM, we would need to add unaligned read/write support to the OCOTP
driver. The currently used regmap_read/write_bulk API does only work
with register aligned accesses. The benefit of NVMEM didn't look that
tempting anymore when looking at the cost of the necessary OCOTP driver
changes, so I choose to go with the more minimal change.
Regards,
Lucas
> Cheers,
> Ahmad
>
> >
> > Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
> > ---
> > arch/arm/dts/imx8mp-evk.dts | 4 ----
> > arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts | 4 ----
> > arch/arm/dts/imx8mp.dtsi | 1 +
> > 3 files changed, 1 insertion(+), 8 deletions(-)
> >
> > diff --git a/arch/arm/dts/imx8mp-evk.dts b/arch/arm/dts/imx8mp-evk.dts
> > index d992b14882a3..28d8c5f9292e 100644
> > --- a/arch/arm/dts/imx8mp-evk.dts
> > +++ b/arch/arm/dts/imx8mp-evk.dts
> > @@ -68,7 +68,3 @@
> > reg = <0xe0000 0x20000>;
> > };
> > };
> > -
> > -&ocotp {
> > - barebox,provide-mac-address = <&fec 0x640>;
> > -};
> > diff --git a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> > index c47e7285a703..6e81f58e2786 100644
> > --- a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> > +++ b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> > @@ -53,7 +53,3 @@
> > reg = <0xe0000 0x20000>;
> > };
> > };
> > -
> > -&ocotp {
> > - barebox,provide-mac-address = <&fec 0x640>;
> > -};
> > diff --git a/arch/arm/dts/imx8mp.dtsi b/arch/arm/dts/imx8mp.dtsi
> > index 5da79f13d339..379fa49d6042 100644
> > --- a/arch/arm/dts/imx8mp.dtsi
> > +++ b/arch/arm/dts/imx8mp.dtsi
> > @@ -13,6 +13,7 @@
> > feat: &ocotp {
> > #feature-cells = <1>;
> > barebox,feature-controller;
> > + barebox,provide-mac-address = <&fec 0x640 &eqos 0x650>;
> > };
> >
> > &pgc_mipi_phy1 {
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location
2023-01-11 20:00 ` Lucas Stach
@ 2023-01-11 20:13 ` Ahmad Fatoum
2023-01-12 8:41 ` Lucas Stach
0 siblings, 1 reply; 9+ messages in thread
From: Ahmad Fatoum @ 2023-01-11 20:13 UTC (permalink / raw)
To: Lucas Stach, barebox
On 11.01.23 21:00, Lucas Stach wrote:
> Hi Ahmad,
>
> Am Mittwoch, dem 11.01.2023 um 20:03 +0100 schrieb Ahmad Fatoum:
>> Hello Lucas,
>>
>> On 11.01.23 19:21, Lucas Stach wrote:
>>> All i.MX8MP boards should consult the common fuse locations for the
>>> MAC address of the network interfaces. Also add the second location
>>> for the EQOS network interface.
>>
>> Do we really want to extend use of this binding? The upstream kernel
>> DT already has nvmem-cells for the MAC addresses and we have support
>> for reading that out.
>>
> I thought about this too, but...
>
>> Only thing missing is the equivalent of
>>
>> Linux commit d0221a780cbc ("nvmem: imx-ocotp: add support for post processing")
>>
> This isn't the only thing missing. To handle the second MAC address via
> NMEM, we would need to add unaligned read/write support to the OCOTP
> driver. The currently used regmap_read/write_bulk API does only work
> with register aligned accesses. The benefit of NVMEM didn't look that
> tempting anymore when looking at the cost of the necessary OCOTP driver
> changes, so I choose to go with the more minimal change.
You can switch the driver over to use nvmem_regmap_register(), which will
take care of the alignment for you. I still think it's worth it.
Cheers,
Ahmad
>
> Regards,
> Lucas
>
>> Cheers,
>> Ahmad
>>
>>>
>>> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
>>> ---
>>> arch/arm/dts/imx8mp-evk.dts | 4 ----
>>> arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts | 4 ----
>>> arch/arm/dts/imx8mp.dtsi | 1 +
>>> 3 files changed, 1 insertion(+), 8 deletions(-)
>>>
>>> diff --git a/arch/arm/dts/imx8mp-evk.dts b/arch/arm/dts/imx8mp-evk.dts
>>> index d992b14882a3..28d8c5f9292e 100644
>>> --- a/arch/arm/dts/imx8mp-evk.dts
>>> +++ b/arch/arm/dts/imx8mp-evk.dts
>>> @@ -68,7 +68,3 @@
>>> reg = <0xe0000 0x20000>;
>>> };
>>> };
>>> -
>>> -&ocotp {
>>> - barebox,provide-mac-address = <&fec 0x640>;
>>> -};
>>> diff --git a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
>>> index c47e7285a703..6e81f58e2786 100644
>>> --- a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
>>> +++ b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
>>> @@ -53,7 +53,3 @@
>>> reg = <0xe0000 0x20000>;
>>> };
>>> };
>>> -
>>> -&ocotp {
>>> - barebox,provide-mac-address = <&fec 0x640>;
>>> -};
>>> diff --git a/arch/arm/dts/imx8mp.dtsi b/arch/arm/dts/imx8mp.dtsi
>>> index 5da79f13d339..379fa49d6042 100644
>>> --- a/arch/arm/dts/imx8mp.dtsi
>>> +++ b/arch/arm/dts/imx8mp.dtsi
>>> @@ -13,6 +13,7 @@
>>> feat: &ocotp {
>>> #feature-cells = <1>;
>>> barebox,feature-controller;
>>> + barebox,provide-mac-address = <&fec 0x640 &eqos 0x650>;
>>> };
>>>
>>> &pgc_mipi_phy1 {
>>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location
2023-01-11 20:13 ` Ahmad Fatoum
@ 2023-01-12 8:41 ` Lucas Stach
0 siblings, 0 replies; 9+ messages in thread
From: Lucas Stach @ 2023-01-12 8:41 UTC (permalink / raw)
To: Ahmad Fatoum, barebox
Am Mittwoch, dem 11.01.2023 um 21:13 +0100 schrieb Ahmad Fatoum:
> On 11.01.23 21:00, Lucas Stach wrote:
> > Hi Ahmad,
> >
> > Am Mittwoch, dem 11.01.2023 um 20:03 +0100 schrieb Ahmad Fatoum:
> > > Hello Lucas,
> > >
> > > On 11.01.23 19:21, Lucas Stach wrote:
> > > > All i.MX8MP boards should consult the common fuse locations for the
> > > > MAC address of the network interfaces. Also add the second location
> > > > for the EQOS network interface.
> > >
> > > Do we really want to extend use of this binding? The upstream kernel
> > > DT already has nvmem-cells for the MAC addresses and we have support
> > > for reading that out.
> > >
> > I thought about this too, but...
> >
> > > Only thing missing is the equivalent of
> > >
> > > Linux commit d0221a780cbc ("nvmem: imx-ocotp: add support for post processing")
> > >
> > This isn't the only thing missing. To handle the second MAC address via
> > NMEM, we would need to add unaligned read/write support to the OCOTP
> > driver. The currently used regmap_read/write_bulk API does only work
> > with register aligned accesses. The benefit of NVMEM didn't look that
> > tempting anymore when looking at the cost of the necessary OCOTP driver
> > changes, so I choose to go with the more minimal change.
>
> You can switch the driver over to use nvmem_regmap_register(), which will
> take care of the alignment for you. I still think it's worth it.
>
Thanks, didn't know about this one. I'll take a stab at converting the
OCOTP driver.
Regards,
Lucas
> Cheers,
> Ahmad
>
> >
> > Regards,
> > Lucas
> >
> > > Cheers,
> > > Ahmad
> > >
> > > >
> > > > Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
> > > > ---
> > > > arch/arm/dts/imx8mp-evk.dts | 4 ----
> > > > arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts | 4 ----
> > > > arch/arm/dts/imx8mp.dtsi | 1 +
> > > > 3 files changed, 1 insertion(+), 8 deletions(-)
> > > >
> > > > diff --git a/arch/arm/dts/imx8mp-evk.dts b/arch/arm/dts/imx8mp-evk.dts
> > > > index d992b14882a3..28d8c5f9292e 100644
> > > > --- a/arch/arm/dts/imx8mp-evk.dts
> > > > +++ b/arch/arm/dts/imx8mp-evk.dts
> > > > @@ -68,7 +68,3 @@
> > > > reg = <0xe0000 0x20000>;
> > > > };
> > > > };
> > > > -
> > > > -&ocotp {
> > > > - barebox,provide-mac-address = <&fec 0x640>;
> > > > -};
> > > > diff --git a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> > > > index c47e7285a703..6e81f58e2786 100644
> > > > --- a/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> > > > +++ b/arch/arm/dts/imx8mp-tqma8mpql-mba8mpxl.dts
> > > > @@ -53,7 +53,3 @@
> > > > reg = <0xe0000 0x20000>;
> > > > };
> > > > };
> > > > -
> > > > -&ocotp {
> > > > - barebox,provide-mac-address = <&fec 0x640>;
> > > > -};
> > > > diff --git a/arch/arm/dts/imx8mp.dtsi b/arch/arm/dts/imx8mp.dtsi
> > > > index 5da79f13d339..379fa49d6042 100644
> > > > --- a/arch/arm/dts/imx8mp.dtsi
> > > > +++ b/arch/arm/dts/imx8mp.dtsi
> > > > @@ -13,6 +13,7 @@
> > > > feat: &ocotp {
> > > > #feature-cells = <1>;
> > > > barebox,feature-controller;
> > > > + barebox,provide-mac-address = <&fec 0x640 &eqos 0x650>;
> > > > };
> > > >
> > > > &pgc_mipi_phy1 {
> > >
> >
> >
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/3] net: eqos: add i.MX8MP support
2023-01-11 18:21 ` [PATCH 3/3] net: eqos: add i.MX8MP support Lucas Stach
@ 2023-01-12 14:59 ` Ahmad Fatoum
0 siblings, 0 replies; 9+ messages in thread
From: Ahmad Fatoum @ 2023-01-12 14:59 UTC (permalink / raw)
To: Lucas Stach, barebox
On 11.01.23 19:21, Lucas Stach wrote:
> This adds the platform glue for the Designware EQOS ethernet interface
> as implemented on the i.MX8MP SoC.
>
> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> drivers/net/Kconfig | 8 ++
> drivers/net/Makefile | 1 +
> drivers/net/designware_imx8.c | 194 ++++++++++++++++++++++++++++++++++
> 3 files changed, 203 insertions(+)
> create mode 100644 drivers/net/designware_imx8.c
>
> diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
> index 2dafd9c7a8b9..e871b7e11af7 100644
> --- a/drivers/net/Kconfig
> +++ b/drivers/net/Kconfig
> @@ -107,6 +107,14 @@ config DRIVER_NET_DESIGNWARE_EQOS
> This option enables support for the Synopsys
> Designware Ethernet Quality-of-Service (GMAC4).
>
> +config DRIVER_NET_DESIGNWARE_IMX8
> + bool "Designware EQOS i.MX8 Ethernet driver"
> + depends on HAS_DMA && COMMON_CLK && OFTREE && (ARCH_IMX8M || COMPILE_TEST)
> + select DRIVER_NET_DESIGNWARE_EQOS
> + help
> + This option enables support for the Designware EQOS MAC implemented on
> + the NXP i.MX8 SoCs.
> +
> config DRIVER_NET_DESIGNWARE_STM32
> bool "STM32 Designware Ethernet driver"
> depends on HAS_DMA && COMMON_CLK && OFTREE && (ARCH_STM32MP || COMPILE_TEST)
> diff --git a/drivers/net/Makefile b/drivers/net/Makefile
> index 7ff330a2bf42..6a44a12bf88a 100644
> --- a/drivers/net/Makefile
> +++ b/drivers/net/Makefile
> @@ -15,6 +15,7 @@ obj-$(CONFIG_DRIVER_NET_DESIGNWARE_GENERIC) += designware_generic.o
> obj-$(CONFIG_DRIVER_NET_DESIGNWARE_SOCFPGA) += designware_socfpga.o
> obj-$(CONFIG_DRIVER_NET_DESIGNWARE_STARFIVE) += designware_starfive.o
> obj-$(CONFIG_DRIVER_NET_DESIGNWARE_EQOS) += designware_eqos.o
> +obj-$(CONFIG_DRIVER_NET_DESIGNWARE_IMX8) += designware_imx8.o
> obj-$(CONFIG_DRIVER_NET_DESIGNWARE_STM32) += designware_stm32.o
> obj-$(CONFIG_DRIVER_NET_DESIGNWARE_TEGRA186) += designware_tegra186.o
> obj-$(CONFIG_DRIVER_NET_DESIGNWARE_ROCKCHIP) += designware_rockchip.o
> diff --git a/drivers/net/designware_imx8.c b/drivers/net/designware_imx8.c
> new file mode 100644
> index 000000000000..e64fc57c3e13
> --- /dev/null
> +++ b/drivers/net/designware_imx8.c
> @@ -0,0 +1,194 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +
> +#include <common.h>
> +#include <init.h>
> +#include <net.h>
> +#include <regmap.h>
> +#include <mfd/syscon.h>
> +#include <linux/clk.h>
> +
> +#include "designware_eqos.h"
> +
> +#define GPR_ENET_QOS_INTF_MODE_MASK GENMASK(21, 16)
> +#define GPR_ENET_QOS_INTF_SEL_MII (0x0 << 16)
> +#define GPR_ENET_QOS_INTF_SEL_RGMII (0x1 << 16)
> +#define GPR_ENET_QOS_INTF_SEL_RMII (0x4 << 16)
> +#define GPR_ENET_QOS_CLK_GEN_EN BIT(19)
> +#define GPR_ENET_QOS_CLK_TX_CLK_SEL BIT(20)
> +#define GPR_ENET_QOS_RGMII_EN BIT(21)
> +
> +
> +struct eqos_imx8_priv {
> + struct device_d *dev;
> + struct clk_bulk_data *clks;
> + int num_clks;
> + struct regmap *intf_regmap;
> + u32 intf_reg_off;
> + bool rmii_refclk_ext;
> +};
> +
> +enum { CLK_STMMACETH, CLK_PCLK, CLK_PTP_REF, CLK_TX};
> +static const struct clk_bulk_data imx8_clks[] = {
> + [CLK_STMMACETH] = { .id = "stmmaceth" },
> + [CLK_PCLK] = { .id = "pclk" },
> + [CLK_PTP_REF] = { .id = "ptp_ref" },
> + [CLK_TX] = { .id = "tx" },
> +};
> +
> +static unsigned long eqos_get_csr_clk_rate_imx8(struct eqos *eqos)
> +{
> + struct eqos_imx8_priv *priv = eqos->priv;
> +
> + return clk_get_rate(priv->clks[CLK_PCLK].clk);
> +}
> +
> +
> +static void eqos_adjust_link_imx8(struct eth_device *edev)
> +{
> + struct eqos *eqos = edev->priv;
> + struct eqos_imx8_priv *priv = eqos->priv;
> + unsigned long rate;
> + int ret;
> +
> + switch (edev->phydev->speed) {
> + case SPEED_10:
> + rate = 2500000;
> + break;
> + case SPEED_100:
> + rate = 25000000;
> + break;
> + case SPEED_1000:
> + rate = 125000000;
> + break;
> + default:
> + dev_err(priv->dev, "unknown speed value for GMAC speed=%d",
> + edev->phydev->speed);
> + return;
> + }
> +
> + ret = clk_set_rate(priv->clks[CLK_TX].clk, rate);
> + if (ret)
> + dev_err(priv->dev, "set TX clk rate %ld failed %d\n",
> + rate, ret);
> +
> + eqos_adjust_link(edev);
> +}
> +
> +static void eqos_imx8_set_interface_mode(struct eqos *eqos)
> +{
> + struct eqos_imx8_priv *priv = eqos->priv;
> + struct device_node *np = priv->dev->device_node;
> + int val;
> +
> + if (!of_device_is_compatible(np, "nxp,imx8mp-dwmac-eqos"))
> + return;
> +
> + switch (eqos->interface) {
> + case PHY_INTERFACE_MODE_MII:
> + val = GPR_ENET_QOS_INTF_SEL_MII;
> + break;
> + case PHY_INTERFACE_MODE_RMII:
> + val = GPR_ENET_QOS_INTF_SEL_RMII;
> + val |= (priv->rmii_refclk_ext ? 0 : GPR_ENET_QOS_CLK_TX_CLK_SEL);
> + break;
> + case PHY_INTERFACE_MODE_RGMII:
> + case PHY_INTERFACE_MODE_RGMII_ID:
> + case PHY_INTERFACE_MODE_RGMII_RXID:
> + case PHY_INTERFACE_MODE_RGMII_TXID:
> + val = GPR_ENET_QOS_INTF_SEL_RGMII |
> + GPR_ENET_QOS_RGMII_EN;
> + break;
> + default:
> + dev_err(priv->dev, "no valid interface mode found!\n");
> + return;
> + }
> +
> + val |= GPR_ENET_QOS_CLK_GEN_EN;
> +
> + regmap_update_bits(priv->intf_regmap, priv->intf_reg_off,
> + GPR_ENET_QOS_INTF_MODE_MASK, val);
> +}
> +
> +static int eqos_init_imx8(struct device_d *dev, struct eqos *eqos)
> +{
> + struct device_node *np = dev->device_node;
> + struct eqos_imx8_priv *priv = eqos->priv;
> + int ret;
> +
> + priv->dev = dev;
> +
> + if (of_get_property(np, "snps,rmii_refclk_ext", NULL))
> + priv->rmii_refclk_ext = true;
> +
> + if (of_device_is_compatible(np, "nxp,imx8mp-dwmac-eqos")) {
> + priv->intf_regmap = syscon_regmap_lookup_by_phandle(np, "intf_mode");
> + if (IS_ERR(priv->intf_regmap))
> + return PTR_ERR(priv->intf_regmap);
> +
> + ret = of_property_read_u32_index(np, "intf_mode", 1, &priv->intf_reg_off);
> + if (ret) {
> + dev_err(dev, "Can't get intf mode reg offset (%d)\n", ret);
> + return ret;
> + }
> + }
> +
> + priv->num_clks = ARRAY_SIZE(imx8_clks);
> + priv->clks = xmalloc(priv->num_clks * sizeof(*priv->clks));
> + memcpy(priv->clks, imx8_clks, sizeof imx8_clks);
> +
> + ret = clk_bulk_get(dev, priv->num_clks, priv->clks);
> + if (ret) {
> + dev_err(dev, "Failed to get clks: %s\n", strerror(-ret));
> + return ret;
> + }
> +
> + ret = clk_bulk_enable(priv->num_clks, priv->clks);
> + if (ret) {
> + dev_err(dev, "Failed to enable clks: %s\n", strerror(-ret));
> + return ret;
> + }
> +
> + eqos_imx8_set_interface_mode(eqos);
> +
> + return 0;
> +}
> +
> +static struct eqos_ops imx8_ops = {
> + .init = eqos_init_imx8,
> + .get_ethaddr = eqos_get_ethaddr,
> + .set_ethaddr = eqos_set_ethaddr,
> + .adjust_link = eqos_adjust_link_imx8,
> + .get_csr_clk_rate = eqos_get_csr_clk_rate_imx8,
> +
> + .clk_csr = EQOS_MDIO_ADDR_CR_250_300,
> + .config_mac = EQOS_MAC_RXQ_CTRL0_RXQ0EN_ENABLED_DCB,
> +};
> +
> +static int eqos_probe_imx8(struct device_d *dev)
> +{
> + return eqos_probe(dev, &imx8_ops, xzalloc(sizeof(struct eqos_imx8_priv)));
> +}
> +
> +static void eqos_remove_imx8(struct device_d *dev)
> +{
> + struct eqos *eqos = dev->priv;
> + struct eqos_imx8_priv *priv = eqos->priv;
> +
> + eqos_remove(dev);
> +
> + clk_bulk_disable(priv->num_clks, priv->clks);
> + clk_bulk_put(priv->num_clks, priv->clks);
> +}
> +
> +static __maybe_unused struct of_device_id eqos_imx8_ids[] = {
> + { .compatible = "nxp,imx8mp-dwmac-eqos"},
> + { /* sentinel */ }
> +};
> +
> +static struct driver_d eqos_imx8_driver = {
> + .name = "eqos-imx8",
> + .probe = eqos_probe_imx8,
> + .remove = eqos_remove_imx8,
> + .of_compatible = DRV_OF_COMPAT(eqos_imx8_ids),
> +};
> +device_platform_driver(eqos_imx8_driver);
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP
2023-01-11 18:21 [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP Lucas Stach
2023-01-11 18:21 ` [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location Lucas Stach
2023-01-11 18:21 ` [PATCH 3/3] net: eqos: add i.MX8MP support Lucas Stach
@ 2023-01-27 14:14 ` Sascha Hauer
2 siblings, 0 replies; 9+ messages in thread
From: Sascha Hauer @ 2023-01-27 14:14 UTC (permalink / raw)
To: Lucas Stach; +Cc: barebox
On Wed, Jan 11, 2023 at 07:21:55PM +0100, Lucas Stach wrote:
> i.MX8MP has the same quirk as the i.MX6UL: the MAC address for the
> second ethernet interface is stored at an unaligned location and thus
> needs to be handled by skipping the first 2 bytes from the OCOTP
> register.
>
> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
> ---
> drivers/nvmem/ocotp.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
Applied 1/3 and 3/3 for now.
Sascha
>
> diff --git a/drivers/nvmem/ocotp.c b/drivers/nvmem/ocotp.c
> index 7cc2b3b3db58..9d4d6e91db74 100644
> --- a/drivers/nvmem/ocotp.c
> +++ b/drivers/nvmem/ocotp.c
> @@ -88,6 +88,7 @@
> #define MAC_OFFSET_0 (0x22 * 4)
> #define IMX6UL_MAC_OFFSET_1 (0x23 * 4)
> #define MAC_OFFSET_1 (0x24 * 4)
> +#define IMX8MP_MAC_OFFSET_1 (0x25 * 4)
> #define MAX_MAC_OFFSETS 2
> #define MAC_BYTES 8
> #define UNIQUE_ID_NUM 2
> @@ -598,7 +599,7 @@ static int imx_ocotp_read_mac(const struct imx_ocotp_data *data,
> if (ret < 0)
> return ret;
>
> - if (offset != IMX6UL_MAC_OFFSET_1)
> + if (offset != IMX6UL_MAC_OFFSET_1 && offset != IMX8MP_MAC_OFFSET_1)
> data->format_mac(mac, buf, OCOTP_HW_TO_MAC);
> else
> data->format_mac(mac, buf + 2, OCOTP_HW_TO_MAC);
> @@ -624,7 +625,8 @@ static int imx_ocotp_set_mac(struct param_d *param, void *priv)
> if (ret < 0)
> return ret;
>
> - if (ethaddr->offset != IMX6UL_MAC_OFFSET_1)
> + if (ethaddr->offset != IMX6UL_MAC_OFFSET_1 &&
> + ethaddr->offset != IMX8MP_MAC_OFFSET_1)
> ethaddr->data->format_mac(buf, ethaddr->value,
> OCOTP_MAC_TO_HW);
> else
> @@ -898,7 +900,7 @@ 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 },
> + .mac_offsets = { 0x90, 0x94 },
> .format_mac = imx_ocotp_format_mac,
> .feat = &imx8mp_featctrl_data,
> };
> --
> 2.39.0
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-01-27 14:16 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-11 18:21 [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP Lucas Stach
2023-01-11 18:21 ` [PATCH 2/3] ARM: dts: i.MX8MP: move MAC address description to common location Lucas Stach
2023-01-11 19:03 ` Ahmad Fatoum
2023-01-11 20:00 ` Lucas Stach
2023-01-11 20:13 ` Ahmad Fatoum
2023-01-12 8:41 ` Lucas Stach
2023-01-11 18:21 ` [PATCH 3/3] net: eqos: add i.MX8MP support Lucas Stach
2023-01-12 14:59 ` Ahmad Fatoum
2023-01-27 14:14 ` [PATCH 1/3] nvmem: ocotp: add support for second MAC address on i.MX8MP Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox