rockchip-emmc-phy.txt 879 B

1234567891011121314151617181920212223242526272829303132333435
  1. Rockchip EMMC PHY
  2. -----------------------
  3. Required properties:
  4. - compatible: rockchip,rk3399-emmc-phy
  5. - #phy-cells: must be 0
  6. - reg: PHY register address offset and length in "general
  7. register files"
  8. Optional clocks using the clock bindings (see ../clock/clock-bindings.txt),
  9. specified by name:
  10. - clock-names: Should contain "emmcclk". Although this is listed as optional
  11. (because most boards can get basic functionality without having
  12. access to it), it is strongly suggested.
  13. - clocks: Should have a phandle to the card clock exported by the SDHCI driver.
  14. Example:
  15. grf: syscon@ff770000 {
  16. compatible = "rockchip,rk3399-grf", "syscon", "simple-mfd";
  17. #address-cells = <1>;
  18. #size-cells = <1>;
  19. ...
  20. emmcphy: phy@f780 {
  21. compatible = "rockchip,rk3399-emmc-phy";
  22. reg = <0xf780 0x20>;
  23. clocks = <&sdhci>;
  24. clock-names = "emmcclk";
  25. #phy-cells = <0>;
  26. };
  27. };