summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-04-05 16:07:35 -0600
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:36 -0600
commit7b9cf8403136e8aa229009050bc4f7ef0f6fdf2e (patch)
tree5ecde9cdf79589314f0cfc5114ba11978eaea24b /doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt
parentef48f6dd305e9b8ab8873599acfe26df0e625606 (diff)
downloadu-boot-imx-7b9cf8403136e8aa229009050bc4f7ef0f6fdf2e.zip
u-boot-imx-7b9cf8403136e8aa229009050bc4f7ef0f6fdf2e.tar.gz
u-boot-imx-7b9cf8403136e8aa229009050bc4f7ef0f6fdf2e.tar.bz2
dts: sunxi: Bring in Ethernet device tree bindings
Since we will use these bindings on sunxi, bring them in from Linux 4.0-rc1. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt')
-rw-r--r--doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt b/doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt
new file mode 100644
index 0000000..4ec5641
--- /dev/null
+++ b/doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt
@@ -0,0 +1,27 @@
+* Allwinner A10 MDIO Ethernet Controller interface
+
+Required properties:
+- compatible: should be "allwinner,sun4i-a10-mdio"
+ (Deprecated: "allwinner,sun4i-mdio").
+- reg: address and length of the register set for the device.
+
+Optional properties:
+- phy-supply: phandle to a regulator if the PHY needs one
+
+Example at the SoC level:
+mdio@01c0b080 {
+ compatible = "allwinner,sun4i-a10-mdio";
+ reg = <0x01c0b080 0x14>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+};
+
+And at the board level:
+
+mdio@01c0b080 {
+ phy-supply = <&reg_emac_3v3>;
+
+ phy0: ethernet-phy@0 {
+ reg = <0>;
+ };
+};