Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.13 22 lines 648 B view raw
1* Allwinner EMAC ethernet controller 2 3Required properties: 4- compatible: should be "allwinner,sun4i-emac". 5- reg: address and length of the register set for the device. 6- interrupts: interrupt for the device 7- phy: A phandle to a phy node defining the PHY address (as the reg 8 property, a single integer). 9- clocks: A phandle to the reference clock for this device 10 11Optional properties: 12- (local-)mac-address: mac address to be used by this driver 13 14Example: 15 16emac: ethernet@01c0b000 { 17 compatible = "allwinner,sun4i-emac"; 18 reg = <0x01c0b000 0x1000>; 19 interrupts = <55>; 20 clocks = <&ahb_gates 17>; 21 phy = <&phy0>; 22};