mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07: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>
20 lines
575 B
Plaintext
20 lines
575 B
Plaintext
* Allwinner EMAC ethernet controller
|
|
|
|
Required properties:
|
|
- compatible: should be "allwinner,sun4i-a10-emac" (Deprecated:
|
|
"allwinner,sun4i-emac")
|
|
- reg: address and length of the register set for the device.
|
|
- interrupts: interrupt for the device
|
|
- phy: see ethernet.txt file in the same directory.
|
|
- clocks: A phandle to the reference clock for this device
|
|
|
|
Example:
|
|
|
|
emac: ethernet@1c0b000 {
|
|
compatible = "allwinner,sun4i-a10-emac";
|
|
reg = <0x01c0b000 0x1000>;
|
|
interrupts = <55>;
|
|
clocks = <&ahb_gates 17>;
|
|
phy = <&phy0>;
|
|
};
|