davicom-dm9000.txt 955 B

12345678910111213141516171819202122232425262728
  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. - reset-gpios : phandle of gpio that will be used to reset chip during probe
  13. - vcc-supply : phandle of regulator that will be used to enable power to chip
  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. reset-gpios = <&gpf 12 GPIO_ACTIVE_LOW>;
  23. vcc-supply = <&eth0_power>;
  24. };