mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 06:04:14 +08:00
e8f08ee0ad
This patch is an attempt to gather the Ethernet related bindings in one file, like it's done in the MMC and some other subsystems. It should save some of the trouble of documenting several properties over and over in each binding document, instead only making reference to the main file. I have used the Embedded Power Architecture(TM) Platform Requirements (ePAPR) standard as a base for the properties description, also documenting some ad-hoc properties that have been introduced over time despite having direct analogs in ePAPR. Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: David S. Miller <davem@davemloft.net>
25 lines
727 B
Plaintext
25 lines
727 B
Plaintext
Davicom DM9000 Fast Ethernet controller
|
|
|
|
Required properties:
|
|
- compatible = "davicom,dm9000";
|
|
- reg : physical addresses and sizes of registers, must contain 2 entries:
|
|
first entry : address register,
|
|
second entry : data register.
|
|
- interrupt-parent : interrupt controller to which the device is connected
|
|
- interrupts : interrupt specifier specific to interrupt controller
|
|
|
|
Optional properties:
|
|
- davicom,no-eeprom : Configuration EEPROM is not available
|
|
- davicom,ext-phy : Use external PHY
|
|
|
|
Example:
|
|
|
|
ethernet@18000000 {
|
|
compatible = "davicom,dm9000";
|
|
reg = <0x18000000 0x2 0x18000004 0x2>;
|
|
interrupt-parent = <&gpn>;
|
|
interrupts = <7 4>;
|
|
local-mac-address = [00 00 de ad be ef];
|
|
davicom,no-eeprom;
|
|
};
|