mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 21:02:19 +00:00
96f6360c5a
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Tested-by: Joachim Eastwood <manabian@gmail.com> Cc: Nicolas Ferre <nicolas.ferre@atmel.com> Cc: netdev@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
24 lines
653 B
Plaintext
24 lines
653 B
Plaintext
* Cadence EMAC Ethernet controller
|
|
|
|
Required properties:
|
|
- compatible: Should be "cdns,[<chip>-]{emac}"
|
|
Use "cdns,at91rm9200-emac" Atmel at91rm9200 SoC.
|
|
or the generic form: "cdns,emac".
|
|
- reg: Address and length of the register set for the device
|
|
- interrupts: Should contain macb interrupt
|
|
- phy-mode: String, operation mode of the PHY interface.
|
|
Supported values are: "mii", "rmii".
|
|
|
|
Optional properties:
|
|
- local-mac-address: 6 bytes, mac address
|
|
|
|
Examples:
|
|
|
|
macb0: ethernet@fffc4000 {
|
|
compatible = "cdns,at91rm9200-emac";
|
|
reg = <0xfffc4000 0x4000>;
|
|
interrupts = <21>;
|
|
phy-mode = "rmii";
|
|
local-mac-address = [3a 0e 03 04 05 06];
|
|
};
|