phy.txt 775 B

1234567891011121314151617181920212223242526
  1. PHY nodes
  2. Required properties:
  3. - device_type : Should be "ethernet-phy"
  4. - interrupts : <a b> where a is the interrupt number and b is a
  5. field that represents an encoding of the sense and level
  6. information for the interrupt. This should be encoded based on
  7. the information in section 2) depending on the type of interrupt
  8. controller you have.
  9. - interrupt-parent : the phandle for the interrupt controller that
  10. services interrupts for this device.
  11. - reg : The ID number for the phy, usually a small integer
  12. - linux,phandle : phandle for this node; likely referenced by an
  13. ethernet controller node.
  14. Example:
  15. ethernet-phy@0 {
  16. linux,phandle = <2452000>
  17. interrupt-parent = <40000>;
  18. interrupts = <35 1>;
  19. reg = <0>;
  20. device_type = "ethernet-phy";
  21. };