Add both MACB/GEM instances found in the Mobileye EyeQ5 SoC.
Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
---
arch/mips/boot/dts/mobileye/eyeq5.dtsi | 45 ++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/arch/mips/boot/dts/mobileye/eyeq5.dtsi b/arch/mips/boot/dts/mobileye/eyeq5.dtsi
index 36a73e8a63a1..cec5ad875228 100644
--- a/arch/mips/boot/dts/mobileye/eyeq5.dtsi
+++ b/arch/mips/boot/dts/mobileye/eyeq5.dtsi
@@ -77,6 +77,8 @@ aliases {
serial0 = &uart0;
serial1 = &uart1;
serial2 = &uart2;
+ ethernet0 = &macb0;
+ ethernet1 = &macb1;
};
cpu_intc: interrupt-controller {
@@ -231,6 +233,7 @@ olb: system-controller@e00000 {
#clock-cells = <1>;
clocks = <&xtal>;
clock-names = "ref";
+ #phy-cells = <1>;
};
gic: interrupt-controller@140000 {
@@ -305,6 +308,48 @@ gpio1: gpio@1500000 {
#interrupt-cells = <2>;
resets = <&olb 0 26>;
};
+
+ iocu-bus {
+ compatible = "simple-bus";
+ #address-cells = <2>;
+ #size-cells = <2>;
+ ranges;
+ dma-coherent;
+ dma-ranges = <0x10 0x00000000 0x0 0x0 0x10 0>;
+
+ macb0: ethernet@2a00000 {
+ compatible = "mobileye,eyeq5-gem";
+ reg = <0x0 0x02a00000 0x0 0x4000>;
+ interrupt-parent = <&gic>;
+ /* One interrupt per queue */
+ interrupts = <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>;
+ clock-names = "pclk", "hclk", "tsu_clk";
+ clocks = <&pclk>, <&pclk>, <&tsu_clk>;
+ nvmem-cells = <ð0_mac>;
+ nvmem-cell-names = "mac-address";
+ phys = <&olb 0>;
+ };
+
+ macb1: ethernet@2b00000 {
+ compatible = "mobileye,eyeq5-gem";
+ reg = <0x0 0x02b00000 0x0 0x4000>;
+ interrupt-parent = <&gic>;
+ /* One interrupt per queue */
+ interrupts = <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>;
+ clock-names = "pclk", "hclk", "tsu_clk";
+ clocks = <&pclk>, <&pclk>, <&tsu_clk>;
+ nvmem-cells = <ð1_mac>;
+ nvmem-cell-names = "mac-address";
+ phys = <&olb 1>;
+ };
+ };
+
};
};
--
2.51.2
Hello Thomas,
> Add both MACB/GEM instances found in the Mobileye EyeQ5 SoC.
>
> Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Can you confirm that you will include this patch and the following one
in your mips-next branch?
As you gave your Acked-by on it, I believe this will be the case, but I
want to be sure they aren't forgotten.
Thanks!
Gregory
> Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
> ---
> arch/mips/boot/dts/mobileye/eyeq5.dtsi | 45 ++++++++++++++++++++++++++++++++++
> 1 file changed, 45 insertions(+)
>
> diff --git a/arch/mips/boot/dts/mobileye/eyeq5.dtsi b/arch/mips/boot/dts/mobileye/eyeq5.dtsi
> index 36a73e8a63a1..cec5ad875228 100644
> --- a/arch/mips/boot/dts/mobileye/eyeq5.dtsi
> +++ b/arch/mips/boot/dts/mobileye/eyeq5.dtsi
> @@ -77,6 +77,8 @@ aliases {
> serial0 = &uart0;
> serial1 = &uart1;
> serial2 = &uart2;
> + ethernet0 = &macb0;
> + ethernet1 = &macb1;
> };
>
> cpu_intc: interrupt-controller {
> @@ -231,6 +233,7 @@ olb: system-controller@e00000 {
> #clock-cells = <1>;
> clocks = <&xtal>;
> clock-names = "ref";
> + #phy-cells = <1>;
> };
>
> gic: interrupt-controller@140000 {
> @@ -305,6 +308,48 @@ gpio1: gpio@1500000 {
> #interrupt-cells = <2>;
> resets = <&olb 0 26>;
> };
> +
> + iocu-bus {
> + compatible = "simple-bus";
> + #address-cells = <2>;
> + #size-cells = <2>;
> + ranges;
> + dma-coherent;
> + dma-ranges = <0x10 0x00000000 0x0 0x0 0x10 0>;
> +
> + macb0: ethernet@2a00000 {
> + compatible = "mobileye,eyeq5-gem";
> + reg = <0x0 0x02a00000 0x0 0x4000>;
> + interrupt-parent = <&gic>;
> + /* One interrupt per queue */
> + interrupts = <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SHARED 23 IRQ_TYPE_LEVEL_HIGH>;
> + clock-names = "pclk", "hclk", "tsu_clk";
> + clocks = <&pclk>, <&pclk>, <&tsu_clk>;
> + nvmem-cells = <ð0_mac>;
> + nvmem-cell-names = "mac-address";
> + phys = <&olb 0>;
> + };
> +
> + macb1: ethernet@2b00000 {
> + compatible = "mobileye,eyeq5-gem";
> + reg = <0x0 0x02b00000 0x0 0x4000>;
> + interrupt-parent = <&gic>;
> + /* One interrupt per queue */
> + interrupts = <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SHARED 24 IRQ_TYPE_LEVEL_HIGH>;
> + clock-names = "pclk", "hclk", "tsu_clk";
> + clocks = <&pclk>, <&pclk>, <&tsu_clk>;
> + nvmem-cells = <ð1_mac>;
> + nvmem-cell-names = "mac-address";
> + phys = <&olb 1>;
> + };
> + };
> +
> };
> };
>
>
> --
> 2.51.2
>
--
Grégory CLEMENT, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
On Fri, Nov 28, 2025 at 10:49:13AM +0100, Gregory CLEMENT wrote: > Hello Thomas, > > > Add both MACB/GEM instances found in the Mobileye EyeQ5 SoC. > > > > Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de> > > Can you confirm that you will include this patch and the following one > in your mips-next branch? I haven't planned doing this. > As you gave your Acked-by on it, I believe this will be the case, but I > want to be sure they aren't forgotten. the Acked-by is meant for including the patches into the tree, where the rest of this series is going in. Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]
Thomas Bogendoerfer <tsbogend@alpha.franken.de> writes: > On Fri, Nov 28, 2025 at 10:49:13AM +0100, Gregory CLEMENT wrote: >> Hello Thomas, >> >> > Add both MACB/GEM instances found in the Mobileye EyeQ5 SoC. >> > >> > Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de> >> >> Can you confirm that you will include this patch and the following one >> in your mips-next branch? > > I haven't planned doing this. > >> As you gave your Acked-by on it, I believe this will be the case, but I >> want to be sure they aren't forgotten. > > the Acked-by is meant for including the patches into the tree, where the > rest of this series is going in. However, according to the cover letter, there are no build dependencies between these patches and the driver-related patch. Furthermore, since it introduces a new compatible string, even if the driver part is not yet merged, we won’t experience any regression. Therefore, I believe it is safe to merge these two patches unless you have any concerns about them. Gregory > > Thomas. > > -- > Crap can work. Given enough thrust pigs will fly, but it's not necessarily a > good idea. [ RFC1925, 2.3 ] -- Grégory CLEMENT, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
On Fri, Nov 28, 2025 at 11:47:16AM +0100, Gregory CLEMENT wrote: > Thomas Bogendoerfer <tsbogend@alpha.franken.de> writes: > > > On Fri, Nov 28, 2025 at 10:49:13AM +0100, Gregory CLEMENT wrote: > >> Hello Thomas, > >> > >> > Add both MACB/GEM instances found in the Mobileye EyeQ5 SoC. > >> > > >> > Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de> > >> > >> Can you confirm that you will include this patch and the following one > >> in your mips-next branch? > > > > I haven't planned doing this. > > > >> As you gave your Acked-by on it, I believe this will be the case, but I > >> want to be sure they aren't forgotten. > > > > the Acked-by is meant for including the patches into the tree, where the > > rest of this series is going in. > > However, according to the cover letter, there are no build dependencies > between these patches and the driver-related patch. Furthermore, since > it introduces a new compatible string, even if the driver part is not > yet merged, we won’t experience any regression. Therefore, I believe it > is safe to merge these two patches unless you have any concerns about > them. no concerns, but aren't they useless without the code changes ? Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]
© 2016 - 2025 Red Hat, Inc.