davicom-dm9000.txt 880 B

123456789101112131415161718192021222324252627
  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. - interrupts : interrupt specifier specific to interrupt controller
  8. Optional properties:
  9. - davicom,no-eeprom : Configuration EEPROM is not available
  10. - davicom,ext-phy : Use external PHY
  11. - reset-gpios : phandle of gpio that will be used to reset chip during probe
  12. - vcc-supply : phandle of regulator that will be used to enable power to chip
  13. Example:
  14. ethernet@18000000 {
  15. compatible = "davicom,dm9000";
  16. reg = <0x18000000 0x2 0x18000004 0x2>;
  17. interrupt-parent = <&gpn>;
  18. interrupts = <7 4>;
  19. local-mac-address = [00 00 de ad be ef];
  20. davicom,no-eeprom;
  21. reset-gpios = <&gpf 12 GPIO_ACTIVE_LOW>;
  22. vcc-supply = <&eth0_power>;
  23. };