mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
48c926cd34
Improve the binding example by removing all the leading zeros to fix the following dtc warnings: Warning (unit_address_format): Node /XXX unit name should not have leading 0s Converted using the following command: perl -p -i -e 's/\@0+([0-9a-f])/\@$1/g' `find ./Documentation/devicetree/bindings "*.txt"` Some unnecessary changes were manually fixed. Signed-off-by: Marco Franchi <marco.franchi@nxp.com> Signed-off-by: Rob Herring <robh@kernel.org>
28 lines
591 B
Plaintext
28 lines
591 B
Plaintext
* 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@1c0b080 {
|
|
compatible = "allwinner,sun4i-a10-mdio";
|
|
reg = <0x01c0b080 0x14>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
|
|
And at the board level:
|
|
|
|
mdio@1c0b080 {
|
|
phy-supply = <®_emac_3v3>;
|
|
|
|
phy0: ethernet-phy@0 {
|
|
reg = <0>;
|
|
};
|
|
};
|