Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1* Qualcomm Technologies Inc Universal Flash Storage (UFS) PHY
2
3UFSPHY nodes are defined to describe on-chip UFS PHY hardware macro.
4Each UFS PHY node should have its own node.
5
6To bind UFS PHY with UFS host controller, the controller node should
7contain a phandle reference to UFS PHY node.
8
9Required properties:
10- compatible : compatible list, contains one of the following -
11 "qcom,ufs-phy-qmp-20nm" for 20nm ufs phy,
12 "qcom,ufs-phy-qmp-14nm" for legacy 14nm ufs phy,
13 "qcom,msm8996-ufs-phy-qmp-14nm" for 14nm ufs phy
14 present on MSM8996 chipset.
15- reg : should contain PHY register address space (mandatory),
16- reg-names : indicates various resources passed to driver (via reg proptery) by name.
17 Required "reg-names" is "phy_mem".
18- #phy-cells : This property shall be set to 0
19- vdda-phy-supply : phandle to main PHY supply for analog domain
20- vdda-pll-supply : phandle to PHY PLL and Power-Gen block power supply
21- clocks : List of phandle and clock specifier pairs
22- clock-names : List of clock input name strings sorted in the same
23 order as the clocks property. "ref_clk_src", "ref_clk",
24 "tx_iface_clk" & "rx_iface_clk" are mandatory but
25 "ref_clk_parent" is optional
26
27Optional properties:
28- vdda-phy-max-microamp : specifies max. load that can be drawn from phy supply
29- vdda-pll-max-microamp : specifies max. load that can be drawn from pll supply
30- vddp-ref-clk-supply : phandle to UFS device ref_clk pad power supply
31- vddp-ref-clk-max-microamp : specifies max. load that can be drawn from this supply
32- resets : specifies the PHY reset in the UFS controller
33
34Example:
35
36 ufsphy1: ufsphy@fc597000 {
37 compatible = "qcom,ufs-phy-qmp-20nm";
38 reg = <0xfc597000 0x800>;
39 reg-names = "phy_mem";
40 #phy-cells = <0>;
41 vdda-phy-supply = <&pma8084_l4>;
42 vdda-pll-supply = <&pma8084_l12>;
43 vdda-phy-max-microamp = <50000>;
44 vdda-pll-max-microamp = <1000>;
45 clock-names = "ref_clk_src",
46 "ref_clk_parent",
47 "ref_clk",
48 "tx_iface_clk",
49 "rx_iface_clk";
50 clocks = <&clock_rpm clk_ln_bb_clk>,
51 <&clock_gcc clk_pcie_1_phy_ldo >,
52 <&clock_gcc clk_ufs_phy_ldo>,
53 <&clock_gcc clk_gcc_ufs_tx_cfg_clk>,
54 <&clock_gcc clk_gcc_ufs_rx_cfg_clk>;
55 resets = <&ufshc 0>;
56 };
57
58 ufshc: ufshc@fc598000 {
59 #reset-cells = <1>;
60 ...
61 phys = <&ufsphy1>;
62 phy-names = "ufsphy";
63 };