Back to home page

OSCL-LXR

 
 

    


0001 Qualcomm APQ8064 SATA PHY Controller
0002 ------------------------------------
0003 
0004 SATA PHY nodes are defined to describe on-chip SATA Physical layer controllers.
0005 Each SATA PHY controller should have its own node.
0006 
0007 Required properties:
0008 - compatible: compatible list, contains "qcom,apq8064-sata-phy".
0009 - reg: offset and length of the SATA PHY register set;
0010 - #phy-cells: must be zero
0011 - clocks: a list of phandles and clock-specifier pairs, one for each entry in
0012   clock-names.
0013 - clock-names: must be "cfg" for phy config clock.
0014 
0015 Example:
0016         sata_phy: sata-phy@1b400000 {
0017                 compatible = "qcom,apq8064-sata-phy";
0018                 reg = <0x1b400000 0x200>;
0019 
0020                 clocks = <&gcc SATA_PHY_CFG_CLK>;
0021                 clock-names = "cfg";
0022 
0023                 #phy-cells = <0>;
0024         };