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/reset/ti,sci-reset.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 Texas Instruments System Control Interface (TI-SCI) Reset Controller
    2 =====================================================================
    3 
    4 Some TI SoCs contain a system controller (like the Power Management Micro
    5 Controller (PMMC) on Keystone 66AK2G SoC) that are responsible for controlling
    6 the state of the various hardware modules present on the SoC. Communication
    7 between the host processor running an OS and the system controller happens
    8 through a protocol called TI System Control Interface (TI-SCI protocol).
    9 For TI SCI details, please refer to the document,
   10 Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
   11 
   12 TI-SCI Reset Controller Node
   13 ============================
   14 This reset controller node uses the TI SCI protocol to perform the reset
   15 management of various hardware modules present on the SoC. Must be a child
   16 node of the associated TI-SCI system controller node.
   17 
   18 Required properties:
   19 --------------------
   20  - compatible   : Should be "ti,sci-reset"
   21  - #reset-cells : Should be 2. Please see the reset consumer node below for
   22                   usage details.
   23 
   24 TI-SCI Reset Consumer Nodes
   25 ===========================
   26 Each of the reset consumer nodes should have the following properties,
   27 in addition to their own properties.
   28 
   29 Required properties:
   30 --------------------
   31  - resets       : A phandle and reset specifier pair, one pair for each reset
   32                   signal that affects the device, or that the device manages.
   33                   The phandle should point to the TI-SCI reset controller node,
   34                   and the reset specifier should have 2 cell-values. The first
   35                   cell should contain the device ID. The second cell should
   36                   contain the reset mask value used by system controller.
   37                   Please refer to the protocol documentation for these values
   38                   to be used for different devices,
   39                   http://processors.wiki.ti.com/index.php/TISCI#66AK2G02_Data
   40 
   41 Please also refer to Documentation/devicetree/bindings/reset/reset.txt for
   42 common reset controller usage by consumers.
   43 
   44 Example:
   45 --------
   46 The following example demonstrates both a TI-SCI reset controller node and a
   47 consumer (a DSP device) on the 66AK2G SoC.
   48 
   49 pmmc: pmmc {
   50         compatible = "ti,k2g-sci";
   51 
   52         k2g_reset: reset-controller {
   53                 compatible = "ti,sci-reset";
   54                 #reset-cells = <2>;
   55         };
   56 };
   57 
   58 dsp0: dsp@10800000 {
   59         ...
   60         resets = <&k2g_reset 0x0046 0x1>;
   61         ...
   62 };

Cache object: 4af3d17f4e24d899a3c82147841794dd


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