Merge tag 'tee-optee-for-5.2' of http://git.linaro.org:/people/jens.wiklander/linux...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / reset / xlnx,zynqmp-reset.txt
1 --------------------------------------------------------------------------
2  =  Zynq UltraScale+ MPSoC reset driver binding =
3 --------------------------------------------------------------------------
4 The Zynq UltraScale+ MPSoC has several different resets.
5
6 See Chapter 36 of the Zynq UltraScale+ MPSoC TRM (UG) for more information
7 about zynqmp resets.
8
9 Please also refer to reset.txt in this directory for common reset
10 controller binding usage.
11
12 Required Properties:
13 - compatible:   "xlnx,zynqmp-reset"
14 - #reset-cells: Specifies the number of cells needed to encode reset
15                 line, should be 1
16
17 -------
18 Example
19 -------
20
21 firmware {
22         zynqmp_firmware: zynqmp-firmware {
23                 compatible = "xlnx,zynqmp-firmware";
24                 method = "smc";
25
26                 zynqmp_reset: reset-controller {
27                         compatible = "xlnx,zynqmp-reset";
28                         #reset-cells = <1>;
29                 };
30         };
31 };
32
33 Specifying reset lines connected to IP modules
34 ==============================================
35
36 Device nodes that need access to reset lines should
37 specify them as a reset phandle in their corresponding node as
38 specified in reset.txt.
39
40 For list of all valid reset indicies see
41 <dt-bindings/reset/xlnx-zynqmp-resets.h>
42
43 Example:
44
45 serdes: zynqmp_phy@fd400000 {
46         ...
47
48         resets = <&zynqmp_reset ZYNQMP_RESET_SATA>;
49         reset-names = "sata_rst";
50
51         ...
52 };