]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - Documentation/devicetree/bindings/net/cdns-emac.txt
Merge tag 'pci-v4.1-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
[mirror_ubuntu-artful-kernel.git] / Documentation / devicetree / bindings / net / cdns-emac.txt
1 * Cadence EMAC Ethernet controller
2
3 Required properties:
4 - compatible: Should be "cdns,[<chip>-]{emac}"
5 Use "cdns,at91rm9200-emac" Atmel at91rm9200 SoC.
6 Use "cdns,zynq-gem" Xilinx Zynq-7xxx SoC.
7 Or the generic form: "cdns,emac".
8 - reg: Address and length of the register set for the device
9 - interrupts: Should contain macb interrupt
10 - phy-mode: see ethernet.txt file in the same directory.
11
12 Examples:
13
14 macb0: ethernet@fffc4000 {
15 compatible = "cdns,at91rm9200-emac";
16 reg = <0xfffc4000 0x4000>;
17 interrupts = <21>;
18 phy-mode = "rmii";
19 local-mac-address = [3a 0e 03 04 05 06];
20 };