Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1708651

[PATCH v5 09/11] ARM: dts: rk3228-evb: Enable the integrated PHY for gmac

From David Wu <david.wu@rock-chips.com>
Newsgroups linux.kernel
Subject [PATCH v5 09/11] ARM: dts: rk3228-evb: Enable the integrated PHY for gmac
Date 2017-08-10 16:00 +0200
Message-ID <ucWad-6pd-11@gated-at.bofh.it> (permalink)
References <ucWad-6pd-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


This patch enables the integrated PHY for rk3228 evb board
by default.
To use the external 1000M PHY on evb board, need to make
some switch of evb board to be on.

Signed-off-by: David Wu <david.wu@rock-chips.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
---
changes in v5:
 - Use phy-is-integrated property via PHY node.
 - Move the PHY clock and reset control to PHY node.

 arch/arm/boot/dts/rk3228-evb.dts | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/arch/arm/boot/dts/rk3228-evb.dts b/arch/arm/boot/dts/rk3228-evb.dts
index 5883433..456ddf7 100644
--- a/arch/arm/boot/dts/rk3228-evb.dts
+++ b/arch/arm/boot/dts/rk3228-evb.dts
@@ -50,6 +50,16 @@
 		device_type = "memory";
 		reg = <0x60000000 0x40000000>;
 	};
+
+	vcc_phy: vcc-phy-regulator {
+		compatible = "regulator-fixed";
+		enable-active-high;
+		regulator-name = "vcc_phy";
+		regulator-min-microvolt = <1800000>;
+		regulator-max-microvolt = <1800000>;
+		regulator-always-on;
+		regulator-boot-on;
+	};
 };
 
 &emmc {
@@ -60,6 +70,30 @@
 	status = "okay";
 };
 
+&gmac {
+	assigned-clocks = <&cru SCLK_MAC_SRC>;
+	assigned-clock-rates = <50000000>;
+	clock_in_out = "output";
+	phy-supply = <&vcc_phy>;
+	phy-mode = "rmii";
+	phy-handle = <&phy0>;
+	status = "okay";
+
+	mdio {
+		compatible = "snps,dwmac-mdio";
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		phy@0 {
+			compatible = "ethernet-phy-id1234.d400", "ethernet-phy-ieee802.3-c22";
+			reg = <0>;
+			clocks = <&cru SCLK_MAC_PHY>;
+			resets = <&cru SRST_MACPHY>;
+			phy-is-integrated;
+		};
+	};
+};
+
 &tsadc {
 	status = "okay";
 
-- 
1.9.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v5 00/11] Add the integrated PHY support David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 04/11] net: stmmac: dwmac-rk: Remove unwanted code for rk3328_set_to_rmii() David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 03/11] arm64: defconfig: Enable CONFIG_ROCKCHIP_PHY David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 09/11] ARM: dts: rk3228-evb: Enable the integrated PHY for gmac David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 08/11] net: stmmac: dwmac-rk: Add integrated PHY supprot for rk3328 David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 02/11] multi_v7_defconfig: Make rockchip PHY built-in David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 05/11] Documentation: net: phy: Add phy-is-integrated binding David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 06/11] net: stmmac: dwmac-rk: Add integrated PHY support David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 11/11] ARM64: dts: rockchip: Enable gmac2phy for rk3328-evb David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  [PATCH v5 01/11] net: phy: Add rockchip PHY driver support David Wu <david.wu@rock-chips.com> - 2017-08-10 16:00 +0200
  Re: [PATCH v5 00/11] Add the integrated PHY support David Miller <davem@davemloft.net> - 2017-08-11 23:30 +0200

csiph-web