Path: blob/main/sys/contrib/device-tree/Bindings/ata/ahci-st.txt
48375 views
STMicroelectronics STi SATA controller12This binding describes a SATA device.34Required properties:5- compatible : Must be "st,ahci"6- reg : Physical base addresses and length of register sets7- interrupts : Interrupt associated with the SATA device8- interrupt-names : Associated name must be; "hostc"9- clocks : The phandle for the clock10- clock-names : Associated name must be; "ahci_clk"11- phys : The phandle for the PHY port12- phy-names : Associated name must be; "ahci_phy"1314Optional properties:15- resets : The power-down, soft-reset and power-reset lines of SATA IP16- reset-names : Associated names must be; "pwr-dwn", "sw-rst" and "pwr-rst"1718Example:1920/* Example for stih407 family silicon */21sata0: sata@9b20000 {22compatible = "st,ahci";23reg = <0x9b20000 0x1000>;24interrupts = <GIC_SPI 159 IRQ_TYPE_NONE>;25interrupt-names = "hostc";26phys = <&phy_port0 PHY_TYPE_SATA>;27phy-names = "ahci_phy";28resets = <&powerdown STIH407_SATA0_POWERDOWN>,29<&softreset STIH407_SATA0_SOFTRESET>,30<&softreset STIH407_SATA0_PWR_SOFTRESET>;31reset-names = "pwr-dwn", "sw-rst", "pwr-rst";32clocks = <&clk_s_c0_flexgen CLK_ICN_REG>;33clock-names = "ahci_clk";34};353637