linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc
@ 2016-11-22 17:52 Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

Hi,

The interrupt controller driver was in arch/microblaze.
The patches to move the driver out from arch/microblaze
to drivers/irqchip/irq-xilinx-intc.c have now been accepted [1]

Hence, xilfpga can make use of the driver in v4.10.

These patches do the following:
- Use the irqchip driver
- Add Device Tree nodes for various peripherals that were blocked
- Enable those drivers in the defconfig

Based on v4.9-rc6

Regards,
ZubairLK

[1] https://lkml.org/lkml/2016/11/22/186

Zubair Lutfullah Kakakhel (6):
  MIPS: xilfpga: Use irqchip instead of the legacy way
  MIPS: xilfpga: Use Xilinx Interrupt Controller
  MIPS: xilfpga: Update DT node and specify uart irq
  MIPS: xilfpga: Add DT node for AXI I2C
  MIPS: xilfpga: Add DT node for AXI emaclite
  MIPS: xilfpga: Update defconfig

 arch/mips/Kconfig                        |  1 +
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 63 ++++++++++++++++++++++++++++++++
 arch/mips/configs/xilfpga_defconfig      | 37 ++++++++++++++++++-
 arch/mips/xilfpga/intc.c                 |  7 +---
 4 files changed, 102 insertions(+), 6 deletions(-)

-- 
2.10.2

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

* [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc
  2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 1/6] MIPS: xilfpga: Use irqchip instead of the legacy way Zubair Lutfullah Kakakhel
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

Hi,

The interrupt controller driver was in arch/microblaze.
The patches to move the driver out from arch/microblaze
to drivers/irqchip/irq-xilinx-intc.c have now been accepted [1]

Hence, xilfpga can make use of the driver in v4.10.

These patches do the following:
- Use the irqchip driver
- Add Device Tree nodes for various peripherals that were blocked
- Enable those drivers in the defconfig

Based on v4.9-rc6

Regards,
ZubairLK

[1] https://lkml.org/lkml/2016/11/22/186

Zubair Lutfullah Kakakhel (6):
  MIPS: xilfpga: Use irqchip instead of the legacy way
  MIPS: xilfpga: Use Xilinx Interrupt Controller
  MIPS: xilfpga: Update DT node and specify uart irq
  MIPS: xilfpga: Add DT node for AXI I2C
  MIPS: xilfpga: Add DT node for AXI emaclite
  MIPS: xilfpga: Update defconfig

 arch/mips/Kconfig                        |  1 +
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 63 ++++++++++++++++++++++++++++++++
 arch/mips/configs/xilfpga_defconfig      | 37 ++++++++++++++++++-
 arch/mips/xilfpga/intc.c                 |  7 +---
 4 files changed, 102 insertions(+), 6 deletions(-)

-- 
2.10.2

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

* [PATCH 1/6] MIPS: xilfpga: Use irqchip instead of the legacy way
  2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 2/6] MIPS: xilfpga: Use Xilinx Interrupt Controller Zubair Lutfullah Kakakhel
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

This prepares the code to use the Xilinx Interrupt Controller
driver in drivers/irqchip/irq-xilinx-intc.c

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/xilfpga/intc.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/arch/mips/xilfpga/intc.c b/arch/mips/xilfpga/intc.c
index c4d1a71..a127cca 100644
--- a/arch/mips/xilfpga/intc.c
+++ b/arch/mips/xilfpga/intc.c
@@ -11,15 +11,12 @@
 
 #include <linux/of.h>
 #include <linux/of_irq.h>
+#include <linux/irqchip.h>
 
 #include <asm/irq_cpu.h>
 
-static struct of_device_id of_irq_ids[] __initdata = {
-	{ .compatible = "mti,cpu-interrupt-controller", .data = mips_cpu_irq_of_init },
-	{},
-};
 
 void __init arch_init_irq(void)
 {
-	of_irq_init(of_irq_ids);
+	irqchip_init();
 }
-- 
2.10.2

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

* [PATCH 1/6] MIPS: xilfpga: Use irqchip instead of the legacy way
  2016-11-22 17:52 ` [PATCH 1/6] MIPS: xilfpga: Use irqchip instead of the legacy way Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  0 siblings, 0 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

This prepares the code to use the Xilinx Interrupt Controller
driver in drivers/irqchip/irq-xilinx-intc.c

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/xilfpga/intc.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/arch/mips/xilfpga/intc.c b/arch/mips/xilfpga/intc.c
index c4d1a71..a127cca 100644
--- a/arch/mips/xilfpga/intc.c
+++ b/arch/mips/xilfpga/intc.c
@@ -11,15 +11,12 @@
 
 #include <linux/of.h>
 #include <linux/of_irq.h>
+#include <linux/irqchip.h>
 
 #include <asm/irq_cpu.h>
 
-static struct of_device_id of_irq_ids[] __initdata = {
-	{ .compatible = "mti,cpu-interrupt-controller", .data = mips_cpu_irq_of_init },
-	{},
-};
 
 void __init arch_init_irq(void)
 {
-	of_irq_init(of_irq_ids);
+	irqchip_init();
 }
-- 
2.10.2

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

* [PATCH 2/6] MIPS: xilfpga: Use Xilinx Interrupt Controller
  2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 1/6] MIPS: xilfpga: Use irqchip instead of the legacy way Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 3/6] MIPS: xilfpga: Update DT node and specify uart irq Zubair Lutfullah Kakakhel
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

IRQs from peripherals such as i2c/uart/ethernet come via
the AXI Interrupt controller.

Select it in Kconfig for xilfpga and add the DT node

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/Kconfig                        |  1 +
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 12 ++++++++++++
 2 files changed, 13 insertions(+)

diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index b3c5bde..3d681c6 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -478,6 +478,7 @@ config MACH_XILFPGA
 	select SYS_SUPPORTS_ZBOOT_UART16550
 	select USE_OF
 	select USE_GENERIC_EARLY_PRINTK_8250
+	select XILINX_INTC
 	help
 	  This enables support for the IMG University Program MIPSfpga platform.
 
diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index 48d2112..8db660b 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -17,6 +17,18 @@
 		compatible = "mti,cpu-interrupt-controller";
 	};
 
+	axi_intc: interrupt-controller@10200000 {
+		#interrupt-cells = <1>;
+		compatible = "xlnx,xps-intc-1.00.a";
+		interrupt-controller;
+		reg = <0x10200000 0x10000>;
+		xlnx,kind-of-intr = <0x0>;
+		xlnx,num-intr-inputs = <0x6>;
+
+		interrupt-parent = <&cpuintc>;
+		interrupts = <6>;
+	};
+
 	axi_gpio: gpio@10600000 {
 		#gpio-cells = <1>;
 		compatible = "xlnx,xps-gpio-1.00.a";
-- 
2.10.2

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

* [PATCH 2/6] MIPS: xilfpga: Use Xilinx Interrupt Controller
  2016-11-22 17:52 ` [PATCH 2/6] MIPS: xilfpga: Use Xilinx Interrupt Controller Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  0 siblings, 0 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

IRQs from peripherals such as i2c/uart/ethernet come via
the AXI Interrupt controller.

Select it in Kconfig for xilfpga and add the DT node

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/Kconfig                        |  1 +
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 12 ++++++++++++
 2 files changed, 13 insertions(+)

diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index b3c5bde..3d681c6 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -478,6 +478,7 @@ config MACH_XILFPGA
 	select SYS_SUPPORTS_ZBOOT_UART16550
 	select USE_OF
 	select USE_GENERIC_EARLY_PRINTK_8250
+	select XILINX_INTC
 	help
 	  This enables support for the IMG University Program MIPSfpga platform.
 
diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index 48d2112..8db660b 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -17,6 +17,18 @@
 		compatible = "mti,cpu-interrupt-controller";
 	};
 
+	axi_intc: interrupt-controller@10200000 {
+		#interrupt-cells = <1>;
+		compatible = "xlnx,xps-intc-1.00.a";
+		interrupt-controller;
+		reg = <0x10200000 0x10000>;
+		xlnx,kind-of-intr = <0x0>;
+		xlnx,num-intr-inputs = <0x6>;
+
+		interrupt-parent = <&cpuintc>;
+		interrupts = <6>;
+	};
+
 	axi_gpio: gpio@10600000 {
 		#gpio-cells = <1>;
 		compatible = "xlnx,xps-gpio-1.00.a";
-- 
2.10.2

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

* [PATCH 3/6] MIPS: xilfpga: Update DT node and specify uart irq
  2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
                   ` (2 preceding siblings ...)
  2016-11-22 17:52 ` [PATCH 2/6] MIPS: xilfpga: Use Xilinx Interrupt Controller Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 4/6] MIPS: xilfpga: Add DT node for AXI I2C Zubair Lutfullah Kakakhel
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

Update the DT node with the UART irq

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index 8db660b..d285c8d 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -50,6 +50,9 @@
 		reg-offset = <0x1000>;
 
 		clocks	= <&ext>;
+
+		interrupt-parent = <&axi_intc>;
+		interrupts = <0>;
 	};
 };
 
-- 
2.10.2

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

* [PATCH 3/6] MIPS: xilfpga: Update DT node and specify uart irq
  2016-11-22 17:52 ` [PATCH 3/6] MIPS: xilfpga: Update DT node and specify uart irq Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  0 siblings, 0 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

Update the DT node with the UART irq

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index 8db660b..d285c8d 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -50,6 +50,9 @@
 		reg-offset = <0x1000>;
 
 		clocks	= <&ext>;
+
+		interrupt-parent = <&axi_intc>;
+		interrupts = <0>;
 	};
 };
 
-- 
2.10.2

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

* [PATCH 4/6] MIPS: xilfpga: Add DT node for AXI I2C
  2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
                   ` (3 preceding siblings ...)
  2016-11-22 17:52 ` [PATCH 3/6] MIPS: xilfpga: Update DT node and specify uart irq Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 5/6] MIPS: xilfpga: Add DT node for AXI emaclite Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 6/6] MIPS: xilfpga: Update defconfig Zubair Lutfullah Kakakhel
  6 siblings, 1 reply; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

The xilfpga platform has an AXI I2C Bus master with a temperature
sensor connected to it.

Add the device tree node to use them.

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index d285c8d..f5ebab8 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -54,6 +54,28 @@
 		interrupt-parent = <&axi_intc>;
 		interrupts = <0>;
 	};
+
+	axi_i2c: i2c@10A00000 {
+	    compatible = "xlnx,xps-iic-2.00.a";
+	    interrupt-parent = <&axi_intc>;
+	    interrupts = <4>;
+	    reg = < 0x10A00000 0x10000 >;
+	    clocks = <&ext>;
+	    xlnx,clk-freq = <0x5f5e100>;
+	    xlnx,family = "Artix7";
+	    xlnx,gpo-width = <0x1>;
+	    xlnx,iic-freq = <0x186a0>;
+	    xlnx,scl-inertial-delay = <0x0>;
+	    xlnx,sda-inertial-delay = <0x0>;
+	    xlnx,ten-bit-adr = <0x0>;
+	    #address-cells = <1>;
+	    #size-cells = <0>;
+
+	    ad7420@4B {
+		compatible = "adi,adt7420";
+		reg = <0x4B>;
+	    };
+	} ;
 };
 
 &ext {
-- 
2.10.2

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

* [PATCH 4/6] MIPS: xilfpga: Add DT node for AXI I2C
  2016-11-22 17:52 ` [PATCH 4/6] MIPS: xilfpga: Add DT node for AXI I2C Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  0 siblings, 0 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

The xilfpga platform has an AXI I2C Bus master with a temperature
sensor connected to it.

Add the device tree node to use them.

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index d285c8d..f5ebab8 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -54,6 +54,28 @@
 		interrupt-parent = <&axi_intc>;
 		interrupts = <0>;
 	};
+
+	axi_i2c: i2c@10A00000 {
+	    compatible = "xlnx,xps-iic-2.00.a";
+	    interrupt-parent = <&axi_intc>;
+	    interrupts = <4>;
+	    reg = < 0x10A00000 0x10000 >;
+	    clocks = <&ext>;
+	    xlnx,clk-freq = <0x5f5e100>;
+	    xlnx,family = "Artix7";
+	    xlnx,gpo-width = <0x1>;
+	    xlnx,iic-freq = <0x186a0>;
+	    xlnx,scl-inertial-delay = <0x0>;
+	    xlnx,sda-inertial-delay = <0x0>;
+	    xlnx,ten-bit-adr = <0x0>;
+	    #address-cells = <1>;
+	    #size-cells = <0>;
+
+	    ad7420@4B {
+		compatible = "adi,adt7420";
+		reg = <0x4B>;
+	    };
+	} ;
 };
 
 &ext {
-- 
2.10.2

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

* [PATCH 5/6] MIPS: xilfpga: Add DT node for AXI emaclite
  2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
                   ` (4 preceding siblings ...)
  2016-11-22 17:52 ` [PATCH 4/6] MIPS: xilfpga: Add DT node for AXI I2C Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52 ` [PATCH 6/6] MIPS: xilfpga: Update defconfig Zubair Lutfullah Kakakhel
  6 siblings, 1 reply; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

The xilfpga platform has a Xilinx AXI emaclite block.

Add the DT node to use it.

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index f5ebab8..09a62f2 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -42,6 +42,32 @@
 		xlnx,tri-default = <0xffffffff>;
 	} ;
 
+	axi_ethernetlite: ethernet@10e00000 {
+		compatible = "xlnx,xps-ethernetlite-3.00.a";
+		device_type = "network";
+		interrupt-parent = <&axi_intc>;
+		interrupts = <1>;
+		phy-handle = <&phy0>;
+		reg = <0x10e00000 0x10000>;
+		xlnx,duplex = <0x1>;
+		xlnx,include-global-buffers = <0x1>;
+		xlnx,include-internal-loopback = <0x0>;
+		xlnx,include-mdio = <0x1>;
+		xlnx,instance = "axi_ethernetlite_inst";
+		xlnx,rx-ping-pong = <0x1>;
+		xlnx,s-axi-id-width = <0x1>;
+		xlnx,tx-ping-pong = <0x1>;
+		xlnx,use-internal = <0x0>;
+		mdio {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			phy0: phy@1 {
+				device_type = "ethernet-phy";
+				reg = <1>;
+			};
+		};
+	};
+
 	axi_uart16550: serial@10400000 {
 		compatible = "ns16550a";
 		reg = <0x10400000 0x10000>;
-- 
2.10.2

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

* [PATCH 5/6] MIPS: xilfpga: Add DT node for AXI emaclite
  2016-11-22 17:52 ` [PATCH 5/6] MIPS: xilfpga: Add DT node for AXI emaclite Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  0 siblings, 0 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

The xilfpga platform has a Xilinx AXI emaclite block.

Add the DT node to use it.

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
index f5ebab8..09a62f2 100644
--- a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
+++ b/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
@@ -42,6 +42,32 @@
 		xlnx,tri-default = <0xffffffff>;
 	} ;
 
+	axi_ethernetlite: ethernet@10e00000 {
+		compatible = "xlnx,xps-ethernetlite-3.00.a";
+		device_type = "network";
+		interrupt-parent = <&axi_intc>;
+		interrupts = <1>;
+		phy-handle = <&phy0>;
+		reg = <0x10e00000 0x10000>;
+		xlnx,duplex = <0x1>;
+		xlnx,include-global-buffers = <0x1>;
+		xlnx,include-internal-loopback = <0x0>;
+		xlnx,include-mdio = <0x1>;
+		xlnx,instance = "axi_ethernetlite_inst";
+		xlnx,rx-ping-pong = <0x1>;
+		xlnx,s-axi-id-width = <0x1>;
+		xlnx,tx-ping-pong = <0x1>;
+		xlnx,use-internal = <0x0>;
+		mdio {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			phy0: phy@1 {
+				device_type = "ethernet-phy";
+				reg = <1>;
+			};
+		};
+	};
+
 	axi_uart16550: serial@10400000 {
 		compatible = "ns16550a";
 		reg = <0x10400000 0x10000>;
-- 
2.10.2

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

* [PATCH 6/6] MIPS: xilfpga: Update defconfig
  2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
                   ` (5 preceding siblings ...)
  2016-11-22 17:52 ` [PATCH 5/6] MIPS: xilfpga: Add DT node for AXI emaclite Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
  2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  6 siblings, 1 reply; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

Update defconfig to enable emaclite, i2c and temp sensor on the
xilfpga platform

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/configs/xilfpga_defconfig | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/arch/mips/configs/xilfpga_defconfig b/arch/mips/configs/xilfpga_defconfig
index ed1dce3..829c637 100644
--- a/arch/mips/configs/xilfpga_defconfig
+++ b/arch/mips/configs/xilfpga_defconfig
@@ -7,6 +7,12 @@ CONFIG_EMBEDDED=y
 CONFIG_SLAB=y
 # CONFIG_BLOCK is not set
 # CONFIG_SUSPEND is not set
+CONFIG_NET=y
+CONFIG_PACKET=y
+CONFIG_UNIX=y
+CONFIG_INET=y
+# CONFIG_IPV6 is not set
+# CONFIG_WIRELESS is not set
 # CONFIG_UEVENT_HELPER is not set
 CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
@@ -14,6 +20,30 @@ CONFIG_DEVTMPFS_MOUNT=y
 # CONFIG_PREVENT_FIRMWARE_BUILD is not set
 # CONFIG_FW_LOADER is not set
 # CONFIG_ALLOW_DEV_COREDUMP is not set
+CONFIG_NETDEVICES=y
+# CONFIG_NET_CORE is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_VENDOR_BROADCOM is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_INTEL is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NETRONOME is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_ROCKER is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+CONFIG_XILINX_EMACLITE=y
+CONFIG_SMSC_PHY=y
+# CONFIG_WLAN is not set
 # CONFIG_INPUT_MOUSEDEV is not set
 # CONFIG_INPUT_KEYBOARD is not set
 # CONFIG_INPUT_MOUSE is not set
@@ -25,13 +55,18 @@ CONFIG_SERIAL_8250=y
 CONFIG_SERIAL_8250_CONSOLE=y
 CONFIG_SERIAL_OF_PLATFORM=y
 # CONFIG_HW_RANDOM is not set
+CONFIG_I2C=y
+CONFIG_I2C_CHARDEV=y
+# CONFIG_I2C_HELPER_AUTO is not set
+CONFIG_I2C_XILINX=y
 CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_XILINX=y
-# CONFIG_HWMON is not set
+CONFIG_SENSORS_ADT7410=y
 # CONFIG_USB_SUPPORT is not set
 # CONFIG_MIPS_PLATFORM_DEVICES is not set
 # CONFIG_IOMMU_SUPPORT is not set
 # CONFIG_PROC_PAGE_MONITOR is not set
+CONFIG_TMPFS=y
 # CONFIG_MISC_FILESYSTEMS is not set
 CONFIG_PANIC_ON_OOPS=y
 # CONFIG_SCHED_DEBUG is not set
-- 
2.10.2

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

* [PATCH 6/6] MIPS: xilfpga: Update defconfig
  2016-11-22 17:52 ` [PATCH 6/6] MIPS: xilfpga: Update defconfig Zubair Lutfullah Kakakhel
@ 2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
  0 siblings, 0 replies; 14+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2016-11-22 17:52 UTC (permalink / raw)
  To: ralf; +Cc: Zubair.Kakakhel, linux-mips, linux-kernel

Update defconfig to enable emaclite, i2c and temp sensor on the
xilfpga platform

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
 arch/mips/configs/xilfpga_defconfig | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/arch/mips/configs/xilfpga_defconfig b/arch/mips/configs/xilfpga_defconfig
index ed1dce3..829c637 100644
--- a/arch/mips/configs/xilfpga_defconfig
+++ b/arch/mips/configs/xilfpga_defconfig
@@ -7,6 +7,12 @@ CONFIG_EMBEDDED=y
 CONFIG_SLAB=y
 # CONFIG_BLOCK is not set
 # CONFIG_SUSPEND is not set
+CONFIG_NET=y
+CONFIG_PACKET=y
+CONFIG_UNIX=y
+CONFIG_INET=y
+# CONFIG_IPV6 is not set
+# CONFIG_WIRELESS is not set
 # CONFIG_UEVENT_HELPER is not set
 CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
@@ -14,6 +20,30 @@ CONFIG_DEVTMPFS_MOUNT=y
 # CONFIG_PREVENT_FIRMWARE_BUILD is not set
 # CONFIG_FW_LOADER is not set
 # CONFIG_ALLOW_DEV_COREDUMP is not set
+CONFIG_NETDEVICES=y
+# CONFIG_NET_CORE is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_VENDOR_BROADCOM is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_INTEL is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NETRONOME is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_ROCKER is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+CONFIG_XILINX_EMACLITE=y
+CONFIG_SMSC_PHY=y
+# CONFIG_WLAN is not set
 # CONFIG_INPUT_MOUSEDEV is not set
 # CONFIG_INPUT_KEYBOARD is not set
 # CONFIG_INPUT_MOUSE is not set
@@ -25,13 +55,18 @@ CONFIG_SERIAL_8250=y
 CONFIG_SERIAL_8250_CONSOLE=y
 CONFIG_SERIAL_OF_PLATFORM=y
 # CONFIG_HW_RANDOM is not set
+CONFIG_I2C=y
+CONFIG_I2C_CHARDEV=y
+# CONFIG_I2C_HELPER_AUTO is not set
+CONFIG_I2C_XILINX=y
 CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_XILINX=y
-# CONFIG_HWMON is not set
+CONFIG_SENSORS_ADT7410=y
 # CONFIG_USB_SUPPORT is not set
 # CONFIG_MIPS_PLATFORM_DEVICES is not set
 # CONFIG_IOMMU_SUPPORT is not set
 # CONFIG_PROC_PAGE_MONITOR is not set
+CONFIG_TMPFS=y
 # CONFIG_MISC_FILESYSTEMS is not set
 CONFIG_PANIC_ON_OOPS=y
 # CONFIG_SCHED_DEBUG is not set
-- 
2.10.2

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

end of thread, other threads:[~2016-11-22 17:55 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-22 17:52 [PATCH 0/6] MIPS: xilfpga: Use irq-xilinx-intc Zubair Lutfullah Kakakhel
2016-11-22 17:52 ` Zubair Lutfullah Kakakhel
2016-11-22 17:52 ` [PATCH 1/6] MIPS: xilfpga: Use irqchip instead of the legacy way Zubair Lutfullah Kakakhel
2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
2016-11-22 17:52 ` [PATCH 2/6] MIPS: xilfpga: Use Xilinx Interrupt Controller Zubair Lutfullah Kakakhel
2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
2016-11-22 17:52 ` [PATCH 3/6] MIPS: xilfpga: Update DT node and specify uart irq Zubair Lutfullah Kakakhel
2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
2016-11-22 17:52 ` [PATCH 4/6] MIPS: xilfpga: Add DT node for AXI I2C Zubair Lutfullah Kakakhel
2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
2016-11-22 17:52 ` [PATCH 5/6] MIPS: xilfpga: Add DT node for AXI emaclite Zubair Lutfullah Kakakhel
2016-11-22 17:52   ` Zubair Lutfullah Kakakhel
2016-11-22 17:52 ` [PATCH 6/6] MIPS: xilfpga: Update defconfig Zubair Lutfullah Kakakhel
2016-11-22 17:52   ` Zubair Lutfullah Kakakhel

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).