mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
85c10f2828
Add support for the XGMAC 10Gb ethernet device in the Calxeda Highbank SOC. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: David S. Miller <davem@davemloft.net>
16 lines
471 B
Plaintext
16 lines
471 B
Plaintext
* Calxeda Highbank 10Gb XGMAC Ethernet
|
|
|
|
Required properties:
|
|
- compatible : Should be "calxeda,hb-xgmac"
|
|
- reg : Address and length of the register set for the device
|
|
- interrupts : Should contain 3 xgmac interrupts. The 1st is main interrupt.
|
|
The 2nd is pwr mgt interrupt. The 3rd is low power state interrupt.
|
|
|
|
Example:
|
|
|
|
ethernet@fff50000 {
|
|
compatible = "calxeda,hb-xgmac";
|
|
reg = <0xfff50000 0x1000>;
|
|
interrupts = <0 77 4 0 78 4 0 79 4>;
|
|
};
|