hisilicon-hns-mdio.txt 695 B

12345678910111213141516171819202122
  1. Hisilicon MDIO bus controller
  2. Properties:
  3. - compatible: "hisilicon,mdio","hisilicon,hns-mdio".
  4. - reg: The base address of the MDIO bus controller register bank.
  5. - #address-cells: Must be <1>.
  6. - #size-cells: Must be <0>. MDIO addresses have no size component.
  7. Typically an MDIO bus might have several children.
  8. Example:
  9. mdio@803c0000 {
  10. #address-cells = <1>;
  11. #size-cells = <0>;
  12. compatible = "hisilicon,hns-mdio","hisilicon,mdio";
  13. reg = <0x0 0x803c0000 0x0 0x10000>;
  14. ethernet-phy@0 {
  15. ...
  16. reg = <0>;
  17. };
  18. };