brcm,cygnus-pcie-phy.txt 800 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Broadcom Cygnus PCIe PHY
  2. Required properties:
  3. - compatible: must be "brcm,cygnus-pcie-phy"
  4. - reg: base address and length of the PCIe PHY block
  5. - #address-cells: must be 1
  6. - #size-cells: must be 0
  7. Each PCIe PHY should be represented by a child node
  8. Required properties For the child node:
  9. - reg: the PHY ID
  10. 0 - PCIe RC 0
  11. 1 - PCIe RC 1
  12. - #phy-cells: must be 0
  13. Example:
  14. pcie_phy: phy@301d0a0 {
  15. compatible = "brcm,cygnus-pcie-phy";
  16. reg = <0x0301d0a0 0x14>;
  17. pcie0_phy: phy@0 {
  18. reg = <0>;
  19. #phy-cells = <0>;
  20. };
  21. pcie1_phy: phy@1 {
  22. reg = <1>;
  23. #phy-cells = <0>;
  24. };
  25. };
  26. /* users of the PCIe phy */
  27. pcie0: pcie@18012000 {
  28. ...
  29. ...
  30. phys = <&pcie0_phy>;
  31. phy-names = "pcie-phy";
  32. };
  33. pcie1: pcie@18013000 {
  34. ...
  35. ...
  36. phys = <pcie1_phy>;
  37. phy-names = "pcie-phy";
  38. };