upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
593 B
28 lines
593 B
10 years ago
|
* 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 = <®_emac_3v3>;
|
||
|
|
||
|
phy0: ethernet-phy@0 {
|
||
|
reg = <0>;
|
||
|
};
|
||
|
};
|