davicom-dm9000.txt 846 B

1234567891011121314151617181920212223242526
  1. Davicom DM9000 Fast Ethernet controller
  2. Required properties:
  3. - compatible = "davicom,dm9000";
  4. - reg : physical addresses and sizes of registers, must contain 2 entries:
  5. first entry : address register,
  6. second entry : data register.
  7. - interrupt-parent : interrupt controller to which the device is connected
  8. - interrupts : interrupt specifier specific to interrupt controller
  9. Optional properties:
  10. - local-mac-address : A bytestring of 6 bytes specifying Ethernet MAC address
  11. to use (from firmware or bootloader)
  12. - davicom,no-eeprom : Configuration EEPROM is not available
  13. - davicom,ext-phy : Use external PHY
  14. Example:
  15. ethernet@18000000 {
  16. compatible = "davicom,dm9000";
  17. reg = <0x18000000 0x2 0x18000004 0x2>;
  18. interrupt-parent = <&gpn>;
  19. interrupts = <7 4>;
  20. local-mac-address = [00 00 de ad be ef];
  21. davicom,no-eeprom;
  22. };