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/phy/phy-mtk-ufs.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 MediaTek Universal Flash Storage (UFS) M-PHY binding
    2 --------------------------------------------------------
    3 
    4 UFS M-PHY nodes are defined to describe on-chip UFS M-PHY hardware macro.
    5 Each UFS M-PHY node should have its own node.
    6 
    7 To bind UFS M-PHY with UFS host controller, the controller node should
    8 contain a phandle reference to UFS M-PHY node.
    9 
   10 Required properties for UFS M-PHY nodes:
   11 - compatible         : Compatible list, contains the following controller:
   12                        "mediatek,mt8183-ufsphy" for ufs phy
   13                        persent on MT81xx chipsets.
   14 - reg                : Address and length of the UFS M-PHY register set.
   15 - #phy-cells         : This property shall be set to 0.
   16 - clocks             : List of phandle and clock specifier pairs.
   17 - clock-names        : List of clock input name strings sorted in the same
   18                        order as the clocks property. Following clocks are
   19                        mandatory.
   20                        "unipro": Unipro core control clock.
   21                        "mp": M-PHY core control clock.
   22 
   23 Example:
   24 
   25         ufsphy: phy@11fa0000 {
   26                 compatible = "mediatek,mt8183-ufsphy";
   27                 reg = <0 0x11fa0000 0 0xc000>;
   28                 #phy-cells = <0>;
   29 
   30                 clocks = <&infracfg_ao INFRACFG_AO_UNIPRO_SCK_CG>,
   31                          <&infracfg_ao INFRACFG_AO_UFS_MP_SAP_BCLK_CG>;
   32                 clock-names = "unipro", "mp";
   33         };
   34 
   35         ufshci@11270000 {
   36                 ...
   37                 phys = <&ufsphy>;
   38         };

Cache object: 6e32701d7aa06fad7676c7db5bcaea64


[ 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.