cavium-mdio.txt 582 B

123456789101112131415161718192021222324252627
  1. * System Management Interface (SMI) / MDIO
  2. Properties:
  3. - compatible: "cavium,octeon-3860-mdio"
  4. Compatibility with all cn3XXX, cn5XXX and cn6XXX SOCs.
  5. - reg: The base address of the MDIO bus controller register bank.
  6. - #address-cells: Must be <1>.
  7. - #size-cells: Must be <0>. MDIO addresses have no size component.
  8. Typically an MDIO bus might have several children.
  9. Example:
  10. mdio@1180000001800 {
  11. compatible = "cavium,octeon-3860-mdio";
  12. #address-cells = <1>;
  13. #size-cells = <0>;
  14. reg = <0x11800 0x00001800 0x0 0x40>;
  15. ethernet-phy@0 {
  16. ...
  17. reg = <0>;
  18. };
  19. };