ahci-st.txt 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. STMicroelectronics STi SATA controller
  2. This binding describes a SATA device.
  3. Required properties:
  4. - compatible : Must be "st,sti-ahci"
  5. - reg : Physical base addresses and length of register sets
  6. - interrupts : Interrupt associated with the SATA device
  7. - interrupt-names : Associated name must be; "hostc"
  8. - resets : The power-down and soft-reset lines of SATA IP
  9. - reset-names : Associated names must be; "pwr-dwn" and "sw-rst"
  10. - clocks : The phandle for the clock
  11. - clock-names : Associated name must be; "ahci_clk"
  12. - phys : The phandle for the PHY device
  13. - phy-names : Associated name must be; "ahci_phy"
  14. Example:
  15. sata0: sata@fe380000 {
  16. compatible = "st,sti-ahci";
  17. reg = <0xfe380000 0x1000>;
  18. interrupts = <GIC_SPI 157 IRQ_TYPE_NONE>;
  19. interrupt-names = "hostc";
  20. phys = <&miphy365x_phy MIPHY_PORT_0 MIPHY_TYPE_SATA>;
  21. phy-names = "ahci_phy";
  22. resets = <&powerdown STIH416_SATA0_POWERDOWN>,
  23. <&softreset STIH416_SATA0_SOFTRESET>;
  24. reset-names = "pwr-dwn", "sw-rst";
  25. clocks = <&clk_s_a0_ls CLK_ICN_REG>;
  26. clock-names = "ahci_clk";
  27. };