]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Bindings/arm/omap/prm-inst.txt
DTS: Update the device-tree files to Linux 5.5
[FreeBSD/FreeBSD.git] / Bindings / arm / omap / prm-inst.txt
1 OMAP PRM instance bindings
2
3 Power and Reset Manager is an IP block on OMAP family of devices which
4 handle the power domains and their current state, and provide reset
5 handling for the domains and/or separate IP blocks under the power domain
6 hierarchy.
7
8 Required properties:
9 - compatible:   Must contain one of the following:
10                 "ti,am3-prm-inst"
11                 "ti,am4-prm-inst"
12                 "ti,omap4-prm-inst"
13                 "ti,omap5-prm-inst"
14                 "ti,dra7-prm-inst"
15                 and additionally must contain:
16                 "ti,omap-prm-inst"
17 - reg:          Contains PRM instance register address range
18                 (base address and length)
19
20 Optional properties:
21 - #reset-cells: Should be 1 if the PRM instance in question supports resets.
22
23 Example:
24
25 prm_dsp2: prm@1b00 {
26         compatible = "ti,dra7-prm-inst", "ti,omap-prm-inst";
27         reg = <0x1b00 0x40>;
28         #reset-cells = <1>;
29 };