* [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95
@ 2024-07-29 1:27 Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control Wei Fang
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Wei Fang @ 2024-07-29 1:27 UTC (permalink / raw)
To: mturquette, sboyd, robh, conor+dt, shawnguo, s.hauer, festevam,
abelvesa, peng.fan
Cc: linux-clk, devicetree, imx, linux-arm-kernel, linux-kernel
The NETCMIX block control consists of registers for configuration of
peripherals in the NETC domain, such as MQS, SAI and NETC. So add the
NETCMIX block control support on i.MX95 platform.
---
V2:
1. Patch 2 is new patch.
2. Add rmii reference clock mux for ENETC0 and ENETC1 in patch 3.
Link to V1: https://lore.kernel.org/all/20240709073603.1967609-3-wei.fang@nxp.com/
Link to V2: https://lore.kernel.org/all/20240710084345.2016687-1-wei.fang@nxp.com/
---
Wei Fang (4):
dt-bindings: clock: add i.MX95 NETCMIX block control
dt-bindings: clock: add RMII clock selection
clk: imx95: enable the clock of NETCMIX block control
arm64: dts: imx95: Add NETCMIX block control support
.../bindings/clock/nxp,imx95-blk-ctl.yaml | 1 +
arch/arm64/boot/dts/freescale/imx95.dtsi | 12 ++++++++
drivers/clk/imx/clk-imx95-blk-ctl.c | 30 +++++++++++++++++++
include/dt-bindings/clock/nxp,imx95-clock.h | 3 ++
4 files changed, 46 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control
2024-07-29 1:27 [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
@ 2024-07-29 1:27 ` Wei Fang
2024-08-28 8:45 ` Abel Vesa
2024-07-29 1:27 ` [PATCH v2 RESEND 2/4] dt-bindings: clock: add RMII clock selection Wei Fang
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Wei Fang @ 2024-07-29 1:27 UTC (permalink / raw)
To: mturquette, sboyd, robh, conor+dt, shawnguo, s.hauer, festevam,
abelvesa, peng.fan
Cc: linux-clk, devicetree, imx, linux-arm-kernel, linux-kernel
Add 'nxp,imx95-netcmix-blk-ctrl' compatible string for i.MX95 platform.
Signed-off-by: Wei Fang <wei.fang@nxp.com>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
---
Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
index 2dffc02dcd8b..b0072bae12d9 100644
--- a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
+++ b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
@@ -17,6 +17,7 @@ properties:
- nxp,imx95-display-csr
- nxp,imx95-camera-csr
- nxp,imx95-vpu-csr
+ - nxp,imx95-netcmix-blk-ctrl
- const: syscon
reg:
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 RESEND 2/4] dt-bindings: clock: add RMII clock selection
2024-07-29 1:27 [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control Wei Fang
@ 2024-07-29 1:27 ` Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 3/4] clk: imx95: enable the clock of NETCMIX block control Wei Fang
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Wei Fang @ 2024-07-29 1:27 UTC (permalink / raw)
To: mturquette, sboyd, robh, conor+dt, shawnguo, s.hauer, festevam,
abelvesa, peng.fan
Cc: linux-clk, devicetree, imx, linux-arm-kernel, linux-kernel
Add RMII clock selection for ENETC0 and ENETC1.
Signed-off-by: Wei Fang <wei.fang@nxp.com>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
---
include/dt-bindings/clock/nxp,imx95-clock.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/dt-bindings/clock/nxp,imx95-clock.h b/include/dt-bindings/clock/nxp,imx95-clock.h
index 782662c3e740..b7a713a9ac8c 100644
--- a/include/dt-bindings/clock/nxp,imx95-clock.h
+++ b/include/dt-bindings/clock/nxp,imx95-clock.h
@@ -25,4 +25,7 @@
#define IMX95_CLK_DISPMIX_ENG0_SEL 0
#define IMX95_CLK_DISPMIX_ENG1_SEL 1
+#define IMX95_CLK_NETCMIX_ENETC0_RMII 0
+#define IMX95_CLK_NETCMIX_ENETC1_RMII 1
+
#endif /* __DT_BINDINGS_CLOCK_IMX95_H */
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 RESEND 3/4] clk: imx95: enable the clock of NETCMIX block control
2024-07-29 1:27 [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 2/4] dt-bindings: clock: add RMII clock selection Wei Fang
@ 2024-07-29 1:27 ` Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 4/4] arm64: dts: imx95: Add NETCMIX block control support Wei Fang
2024-08-12 6:39 ` [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
4 siblings, 0 replies; 10+ messages in thread
From: Wei Fang @ 2024-07-29 1:27 UTC (permalink / raw)
To: mturquette, sboyd, robh, conor+dt, shawnguo, s.hauer, festevam,
abelvesa, peng.fan
Cc: linux-clk, devicetree, imx, linux-arm-kernel, linux-kernel
The NETCMIX block control consists of registers for configuration of
peripherals in the NETC domain, so enable the clock of NETCMIX to
support the configuration.
Signed-off-by: Wei Fang <wei.fang@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
---
drivers/clk/imx/clk-imx95-blk-ctl.c | 30 +++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/drivers/clk/imx/clk-imx95-blk-ctl.c b/drivers/clk/imx/clk-imx95-blk-ctl.c
index 74f595f9e5e3..19a62da74be4 100644
--- a/drivers/clk/imx/clk-imx95-blk-ctl.c
+++ b/drivers/clk/imx/clk-imx95-blk-ctl.c
@@ -248,6 +248,35 @@ static const struct imx95_blk_ctl_dev_data dispmix_csr_dev_data = {
.clk_reg_offset = 0,
};
+static const struct imx95_blk_ctl_clk_dev_data netxmix_clk_dev_data[] = {
+ [IMX95_CLK_NETCMIX_ENETC0_RMII] = {
+ .name = "enetc0_rmii_sel",
+ .parent_names = (const char *[]){"ext_enetref", "enetref"},
+ .num_parents = 2,
+ .reg = 4,
+ .bit_idx = 5,
+ .bit_width = 1,
+ .type = CLK_MUX,
+ .flags = CLK_SET_RATE_NO_REPARENT | CLK_SET_RATE_PARENT,
+ },
+ [IMX95_CLK_NETCMIX_ENETC1_RMII] = {
+ .name = "enetc1_rmii_sel",
+ .parent_names = (const char *[]){"ext_enetref", "enetref"},
+ .num_parents = 2,
+ .reg = 4,
+ .bit_idx = 10,
+ .bit_width = 1,
+ .type = CLK_MUX,
+ .flags = CLK_SET_RATE_NO_REPARENT | CLK_SET_RATE_PARENT,
+ },
+};
+
+static const struct imx95_blk_ctl_dev_data netcmix_dev_data = {
+ .num_clks = ARRAY_SIZE(netxmix_clk_dev_data),
+ .clk_dev_data = netxmix_clk_dev_data,
+ .clk_reg_offset = 0,
+};
+
static int imx95_bc_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
@@ -419,6 +448,7 @@ static const struct of_device_id imx95_bc_of_match[] = {
{ .compatible = "nxp,imx95-lvds-csr", .data = &lvds_csr_dev_data },
{ .compatible = "nxp,imx95-display-csr", .data = &dispmix_csr_dev_data },
{ .compatible = "nxp,imx95-vpu-csr", .data = &vpublk_dev_data },
+ { .compatible = "nxp,imx95-netcmix-blk-ctrl", .data = &netcmix_dev_data},
{ /* Sentinel */ },
};
MODULE_DEVICE_TABLE(of, imx95_bc_of_match);
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 RESEND 4/4] arm64: dts: imx95: Add NETCMIX block control support
2024-07-29 1:27 [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
` (2 preceding siblings ...)
2024-07-29 1:27 ` [PATCH v2 RESEND 3/4] clk: imx95: enable the clock of NETCMIX block control Wei Fang
@ 2024-07-29 1:27 ` Wei Fang
2024-08-12 6:39 ` [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
4 siblings, 0 replies; 10+ messages in thread
From: Wei Fang @ 2024-07-29 1:27 UTC (permalink / raw)
To: mturquette, sboyd, robh, conor+dt, shawnguo, s.hauer, festevam,
abelvesa, peng.fan
Cc: linux-clk, devicetree, imx, linux-arm-kernel, linux-kernel
Add NETCMIX block control support.
Signed-off-by: Wei Fang <wei.fang@nxp.com>
---
arch/arm64/boot/dts/freescale/imx95.dtsi | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm64/boot/dts/freescale/imx95.dtsi b/arch/arm64/boot/dts/freescale/imx95.dtsi
index 1bbf9a0468f6..6e86aa98b431 100644
--- a/arch/arm64/boot/dts/freescale/imx95.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx95.dtsi
@@ -1188,5 +1188,17 @@ pcie1_ep: pcie-ep@4c380000 {
power-domains = <&scmi_devpd IMX95_PD_HSIO_TOP>;
status = "disabled";
};
+
+ netcmix_blk_ctrl: syscon@4c810000 {
+ compatible = "nxp,imx95-netcmix-blk-ctrl", "syscon";
+ reg = <0x0 0x4c810000 0x0 0x10000>;
+ #clock-cells = <1>;
+ clocks = <&scmi_clk IMX95_CLK_BUSNETCMIX>;
+ assigned-clocks = <&scmi_clk IMX95_CLK_BUSNETCMIX>;
+ assigned-clock-parents = <&scmi_clk IMX95_CLK_SYSPLL1_PFD1_DIV2>;
+ assigned-clock-rates = <133333333>;
+ power-domains = <&scmi_devpd IMX95_PD_NETC>;
+ status = "disabled";
+ };
};
};
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95
2024-07-29 1:27 [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
` (3 preceding siblings ...)
2024-07-29 1:27 ` [PATCH v2 RESEND 4/4] arm64: dts: imx95: Add NETCMIX block control support Wei Fang
@ 2024-08-12 6:39 ` Wei Fang
2024-08-13 2:33 ` Shawn Guo
4 siblings, 1 reply; 10+ messages in thread
From: Wei Fang @ 2024-08-12 6:39 UTC (permalink / raw)
To: mturquette@baylibre.com, sboyd@kernel.org, robh@kernel.org,
conor+dt@kernel.org, shawnguo@kernel.org, s.hauer@pengutronix.de,
festevam@gmail.com, abelvesa@kernel.org, Peng Fan
Cc: linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
> -----Original Message-----
> From: Wei Fang
> Sent: 2024年7月29日 9:41
> To: mturquette@baylibre.com; sboyd@kernel.org; robh@kernel.org;
> conor+dt@kernel.org; shawnguo@kernel.org; s.hauer@pengutronix.de;
> festevam@gmail.com; abelvesa@kernel.org; Peng Fan <peng.fan@nxp.com>
> Cc: linux-clk@vger.kernel.org; devicetree@vger.kernel.org;
> imx@lists.linux.dev; linux-arm-kernel@lists.infradead.org;
> linux-kernel@vger.kernel.org
> Subject: [PATCH v2 RESEND 0/4] add NETCMIX block control support on
> i.MX95
>
> The NETCMIX block control consists of registers for configuration of
> peripherals in the NETC domain, such as MQS, SAI and NETC. So add the
> NETCMIX block control support on i.MX95 platform.
>
> ---
> V2:
> 1. Patch 2 is new patch.
> 2. Add rmii reference clock mux for ENETC0 and ENETC1 in patch 3.
> Link to V1:
> https://lore.kernel.org/all/20240709073603.1967609-3-wei.fang@nxp.com/
> Link to V2:
> https://lore.kernel.org/all/20240710084345.2016687-1-wei.fang@nxp.com/
> ---
>
> Wei Fang (4):
> dt-bindings: clock: add i.MX95 NETCMIX block control
> dt-bindings: clock: add RMII clock selection
> clk: imx95: enable the clock of NETCMIX block control
> arm64: dts: imx95: Add NETCMIX block control support
>
> .../bindings/clock/nxp,imx95-blk-ctl.yaml | 1 +
> arch/arm64/boot/dts/freescale/imx95.dtsi | 12 ++++++++
> drivers/clk/imx/clk-imx95-blk-ctl.c | 30 +++++++++++++++++++
> include/dt-bindings/clock/nxp,imx95-clock.h | 3 ++
> 4 files changed, 46 insertions(+)
>
> --
> 2.34.1
There appear to be no further comments.
Hi Abel,
Can you help apply the first three patches to your tree? Our i.MX95 Ethernet
driver depends on this patch set to be able to go upstream. Thanks!
Hi Shawn,
Can you help apply the last patch ("arm64: dts: imx95: Add NETCMIX block
control support") to your tree? Or should I wait until the first three patches
are applied and then send a separate patch about DTS?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95
2024-08-12 6:39 ` [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
@ 2024-08-13 2:33 ` Shawn Guo
0 siblings, 0 replies; 10+ messages in thread
From: Shawn Guo @ 2024-08-13 2:33 UTC (permalink / raw)
To: Wei Fang
Cc: mturquette@baylibre.com, sboyd@kernel.org, robh@kernel.org,
conor+dt@kernel.org, shawnguo@kernel.org, s.hauer@pengutronix.de,
festevam@gmail.com, abelvesa@kernel.org, Peng Fan,
linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
On Mon, Aug 12, 2024 at 06:39:05AM +0000, Wei Fang wrote:
> Hi Abel,
> Can you help apply the first three patches to your tree? Our i.MX95 Ethernet
> driver depends on this patch set to be able to go upstream. Thanks!
>
> Hi Shawn,
> Can you help apply the last patch ("arm64: dts: imx95: Add NETCMIX block
> control support") to your tree? Or should I wait until the first three patches
> are applied and then send a separate patch about DTS?
I will pick up the DTS one after the first 3 patches get applied.
Shawn
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control
2024-07-29 1:27 ` [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control Wei Fang
@ 2024-08-28 8:45 ` Abel Vesa
2024-08-28 9:31 ` Wei Fang
0 siblings, 1 reply; 10+ messages in thread
From: Abel Vesa @ 2024-08-28 8:45 UTC (permalink / raw)
To: Wei Fang
Cc: mturquette, sboyd, robh, conor+dt, shawnguo, s.hauer, festevam,
abelvesa, peng.fan, linux-clk, devicetree, imx, linux-arm-kernel,
linux-kernel
On 24-07-29 09:27:53, Wei Fang wrote:
> Add 'nxp,imx95-netcmix-blk-ctrl' compatible string for i.MX95 platform.
>
> Signed-off-by: Wei Fang <wei.fang@nxp.com>
> Acked-by: Rob Herring (Arm) <robh@kernel.org>
> ---
> Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> index 2dffc02dcd8b..b0072bae12d9 100644
> --- a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> +++ b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> @@ -17,6 +17,7 @@ properties:
> - nxp,imx95-display-csr
> - nxp,imx95-camera-csr
> - nxp,imx95-vpu-csr
> + - nxp,imx95-netcmix-blk-ctrl
Move this above vpu-csr, please.
Also, for some reason, this patchset doesn't apply cleanly.
Please respin.
> - const: syscon
>
> reg:
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control
2024-08-28 8:45 ` Abel Vesa
@ 2024-08-28 9:31 ` Wei Fang
2024-08-29 6:50 ` Abel Vesa
0 siblings, 1 reply; 10+ messages in thread
From: Wei Fang @ 2024-08-28 9:31 UTC (permalink / raw)
To: Abel Vesa
Cc: mturquette@baylibre.com, sboyd@kernel.org, robh@kernel.org,
conor+dt@kernel.org, shawnguo@kernel.org, s.hauer@pengutronix.de,
festevam@gmail.com, abelvesa@kernel.org, Peng Fan,
linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
> On 24-07-29 09:27:53, Wei Fang wrote:
> > Add 'nxp,imx95-netcmix-blk-ctrl' compatible string for i.MX95 platform.
> >
> > Signed-off-by: Wei Fang <wei.fang@nxp.com>
> > Acked-by: Rob Herring (Arm) <robh@kernel.org>
> > ---
> > Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> > index 2dffc02dcd8b..b0072bae12d9 100644
> > --- a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> > +++ b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> > @@ -17,6 +17,7 @@ properties:
> > - nxp,imx95-display-csr
> > - nxp,imx95-camera-csr
> > - nxp,imx95-vpu-csr
> > + - nxp,imx95-netcmix-blk-ctrl
>
> Move this above vpu-csr, please.
>
> Also, for some reason, this patchset doesn't apply cleanly.
>
> Please respin.
>
Okay, let me update my local tree. I use the linux-next tree as the code
Base, is this tree okay?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control
2024-08-28 9:31 ` Wei Fang
@ 2024-08-29 6:50 ` Abel Vesa
0 siblings, 0 replies; 10+ messages in thread
From: Abel Vesa @ 2024-08-29 6:50 UTC (permalink / raw)
To: Wei Fang
Cc: mturquette@baylibre.com, sboyd@kernel.org, robh@kernel.org,
conor+dt@kernel.org, shawnguo@kernel.org, s.hauer@pengutronix.de,
festevam@gmail.com, abelvesa@kernel.org, Peng Fan,
linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
On 24-08-28 09:31:08, Wei Fang wrote:
> > On 24-07-29 09:27:53, Wei Fang wrote:
> > > Add 'nxp,imx95-netcmix-blk-ctrl' compatible string for i.MX95 platform.
> > >
> > > Signed-off-by: Wei Fang <wei.fang@nxp.com>
> > > Acked-by: Rob Herring (Arm) <robh@kernel.org>
> > > ---
> > > Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml | 1 +
> > > 1 file changed, 1 insertion(+)
> > >
> > > diff --git a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> > b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> > > index 2dffc02dcd8b..b0072bae12d9 100644
> > > --- a/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> > > +++ b/Documentation/devicetree/bindings/clock/nxp,imx95-blk-ctl.yaml
> > > @@ -17,6 +17,7 @@ properties:
> > > - nxp,imx95-display-csr
> > > - nxp,imx95-camera-csr
> > > - nxp,imx95-vpu-csr
> > > + - nxp,imx95-netcmix-blk-ctrl
> >
> > Move this above vpu-csr, please.
> >
> > Also, for some reason, this patchset doesn't apply cleanly.
> >
> > Please respin.
> >
>
> Okay, let me update my local tree. I use the linux-next tree as the code
> Base, is this tree okay?
Sure.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-08-29 6:51 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-29 1:27 [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 1/4] dt-bindings: clock: add i.MX95 NETCMIX block control Wei Fang
2024-08-28 8:45 ` Abel Vesa
2024-08-28 9:31 ` Wei Fang
2024-08-29 6:50 ` Abel Vesa
2024-07-29 1:27 ` [PATCH v2 RESEND 2/4] dt-bindings: clock: add RMII clock selection Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 3/4] clk: imx95: enable the clock of NETCMIX block control Wei Fang
2024-07-29 1:27 ` [PATCH v2 RESEND 4/4] arm64: dts: imx95: Add NETCMIX block control support Wei Fang
2024-08-12 6:39 ` [PATCH v2 RESEND 0/4] add NETCMIX block control support on i.MX95 Wei Fang
2024-08-13 2:33 ` Shawn Guo
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).