SUPERH platform development
 help / color / mirror / Atom feed
* [PATCH/RFC v2 4/4] ARM: shmobile: APE6EVM-reference: add ethernet support
@ 2013-07-05 15:26 Guennadi Liakhovetski
  2013-07-08  3:44 ` Magnus Damm
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Guennadi Liakhovetski @ 2013-07-05 15:26 UTC (permalink / raw)
  To: linux-sh

Add SMSC9220 support to APE6EVM-reference. Since pinctrl configuration is
not yet available in DT, temporarily add pin configuration in C. Similarly
PHY reset has to be done in C.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
---

Marked "RFC," because it configures pinmux and requests a GPIO in C. If
undesired this patch can just be left out until DT pinctrl configuration
is available on mach-shmobile.

 arch/arm/boot/dts/r8a73a4-ape6evm-reference.dts  |   21 +++++++++++++++++++++
 arch/arm/mach-shmobile/board-ape6evm-reference.c |    6 ++++++
 2 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/r8a73a4-ape6evm-reference.dts b/arch/arm/boot/dts/r8a73a4-ape6evm-reference.dts
index aa84b09..ea386fe 100644
--- a/arch/arm/boot/dts/r8a73a4-ape6evm-reference.dts
+++ b/arch/arm/boot/dts/r8a73a4-ape6evm-reference.dts
@@ -24,11 +24,32 @@
 		reg = <0 0x40000000 0 0x40000000>;
 	};
 
+	ape6evm_fixed_3v3: fixedregulator@0 {
+		compatible = "regulator-fixed";
+		regulator-name = "3V3";
+		regulator-min-microvolt = <3300000>;
+		regulator-max-microvolt = <3300000>;
+		regulator-always-on;
+	};
+
 	lbsc {
 		compatible = "simple-bus";
 		#address-cells = <1>;
 		#size-cells = <1>;
 		ranges = <0 0 0 0x80000000>;
+
+		ethernet@8000000 {
+			compatible = "smsc,lan9118", "smsc,lan9115";
+			reg = <0x08000000 0x1000>;
+			interrupt-parent = <&irqc1>;
+			interrupts = <8 0x4>;
+			phy-mode = "mii";
+			reg-io-width = <4>;
+			smsc,irq-active-high;
+			smsc,irq-push-pull;
+			vdd33a-supply = <&ape6evm_fixed_3v3>;
+			vddvario-supply = <&ape6evm_fixed_3v3>;
+		};
 	};
 };
 
diff --git a/arch/arm/mach-shmobile/board-ape6evm-reference.c b/arch/arm/mach-shmobile/board-ape6evm-reference.c
index ee9f75d..909c1bc 100644
--- a/arch/arm/mach-shmobile/board-ape6evm-reference.c
+++ b/arch/arm/mach-shmobile/board-ape6evm-reference.c
@@ -32,6 +32,9 @@ static const struct pinctrl_map ape6evm_pinctrl_map[] = {
 	/* SCIFA0 console */
 	PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.0", "pfc-r8a73a4",
 				  "scifa0_data", "scifa0"),
+	/* SMSC */
+	PIN_MAP_MUX_GROUP_DEFAULT("smsc911x", "pfc-r8a73a4",
+				  "irqc_irq40", "irqc"),
 };
 
 static void __init ape6evm_add_standard_devices(void)
@@ -57,6 +60,9 @@ static void __init ape6evm_add_standard_devices(void)
 	r8a73a4_add_aux_devices_dt();
 	of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
 	r8a73a4_add_cpufreq_device_dt();
+
+	/* LAN9220 ethernet */
+	gpio_request_one(270, GPIOF_OUT_INIT_HIGH, NULL); /* smsc9220 RESET */
 }
 
 static const char *ape6evm_boards_compat_dt[] __initdata = {
-- 
1.7.2.5


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

end of thread, other threads:[~2013-07-08 11:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-05 15:26 [PATCH/RFC v2 4/4] ARM: shmobile: APE6EVM-reference: add ethernet support Guennadi Liakhovetski
2013-07-08  3:44 ` Magnus Damm
2013-07-08 10:32 ` Laurent Pinchart
2013-07-08 10:46 ` Guennadi Liakhovetski
2013-07-08 10:49 ` Magnus Damm
2013-07-08 10:50 ` Magnus Damm
2013-07-08 11:17 ` Guennadi Liakhovetski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox