The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/ufs/ufs-qcom.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 * Qualcomm Technologies Inc Universal Flash Storage (UFS) PHY
    2 
    3 UFSPHY nodes are defined to describe on-chip UFS PHY hardware macro.
    4 Each UFS PHY node should have its own node.
    5 
    6 To bind UFS PHY with UFS host controller, the controller node should
    7 contain a phandle reference to UFS PHY node.
    8 
    9 Required 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 
   27 Optional 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 
   34 Example:
   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         };

Cache object: de3e2c35eb63bde29a0c72f5a47c4773


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.