davicom-dm9000.txt 727 B

123456789101112131415161718192021222324
  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. - davicom,no-eeprom : Configuration EEPROM is not available
  11. - davicom,ext-phy : Use external PHY
  12. Example:
  13. ethernet@18000000 {
  14. compatible = "davicom,dm9000";
  15. reg = <0x18000000 0x2 0x18000004 0x2>;
  16. interrupt-parent = <&gpn>;
  17. interrupts = <7 4>;
  18. local-mac-address = [00 00 de ad be ef];
  19. davicom,no-eeprom;
  20. };