rockchip-usb-phy.txt 850 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ROCKCHIP USB2 PHY
  2. Required properties:
  3. - compatible: rockchip,rk3288-usb-phy
  4. - rockchip,grf : phandle to the syscon managing the "general
  5. register files"
  6. - #address-cells: should be 1
  7. - #size-cells: should be 0
  8. Sub-nodes:
  9. Each PHY should be represented as a sub-node.
  10. Sub-nodes
  11. required properties:
  12. - #phy-cells: should be 0
  13. - reg: PHY configure reg address offset in GRF
  14. "0x320" - for PHY attach to OTG controller
  15. "0x334" - for PHY attach to HOST0 controller
  16. "0x348" - for PHY attach to HOST1 controller
  17. Optional Properties:
  18. - clocks : phandle + clock specifier for the phy clocks
  19. - clock-names: string, clock name, must be "phyclk"
  20. Example:
  21. usbphy: phy {
  22. compatible = "rockchip,rk3288-usb-phy";
  23. rockchip,grf = <&grf>;
  24. #address-cells = <1>;
  25. #size-cells = <0>;
  26. usbphy0: usb-phy0 {
  27. #phy-cells = <0>;
  28. reg = <0x320>;
  29. };
  30. };