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/cdns,ufshc.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 * Cadence Universal Flash Storage (UFS) Controller
    2 
    3 UFS nodes are defined to describe on-chip UFS host controllers.
    4 Each UFS controller instance should have its own node.
    5 Please see the ufshcd-pltfrm.txt for a list of all available properties.
    6 
    7 Required properties:
    8 - compatible    : Compatible list, contains one of the following controllers:
    9                         "cdns,ufshc" - Generic CDNS HCI,
   10                         "cdns,ufshc-m31-16nm" - CDNS UFS HC + M31 16nm PHY
   11                   complemented with the JEDEC version:
   12                         "jedec,ufs-2.0"
   13 
   14 - reg           : Address and length of the UFS register set.
   15 - interrupts    : One interrupt mapping.
   16 - freq-table-hz : Clock frequency table.
   17                   See the ufshcd-pltfrm.txt for details.
   18 - clocks        : List of phandle and clock specifier pairs.
   19 - clock-names   : List of clock input name strings sorted in the same
   20                   order as the clocks property. "core_clk" is mandatory.
   21                   Depending on a type of a PHY,
   22                   the "phy_clk" clock can also be added, if needed.
   23 
   24 Example:
   25         ufs@fd030000 {
   26                 compatible = "cdns,ufshc", "jedec,ufs-2.0";
   27                 reg = <0xfd030000 0x10000>;
   28                 interrupts = <0 1 IRQ_TYPE_LEVEL_HIGH>;
   29                 freq-table-hz = <0 0>, <0 0>;
   30                 clocks = <&ufs_core_clk>, <&ufs_phy_clk>;
   31                 clock-names = "core_clk", "phy_clk";
   32         };

Cache object: 3ea151ea4b0c6252110d0a57aedf8609


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