dt-bindings: ti_sci_pm_domains: Add support for exclusive and shared access
authorLokesh Vutla <lokeshvutla@ti.com>
Fri, 7 Jun 2019 13:54:45 +0000 (19:24 +0530)
committerTom Rini <trini@konsulko.com>
Sat, 27 Jul 2019 01:49:23 +0000 (21:49 -0400)
TISCI protocol supports for enabling the device either with exclusive
permissions for the requesting host or with sharing across the hosts.
There are certain devices which are exclusive to Linux context and
there are certain devices that are shared across different host contexts.
So add support for getting this information from DT by increasing
the power-domain cells to 2.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
doc/device-tree-bindings/power/ti,sci-pm-domain.txt
include/dt-bindings/soc/ti,sci_pm_domain.h [new file with mode: 0644]

index 0e190e2..72d9fbc 100644 (file)
@@ -17,8 +17,15 @@ child of the sysfw node.
 Required Properties:
 --------------------
 - compatible: Must be "ti,sci-pm-domain"
-- #power-domain-cells: Must be 1 so that an id can be provided in each
-                      device node.
+- #power-domain-cells: Can be one of the following:
+                       1: Containing the device id of each node
+                       2: First entry should be device id
+                          Second entry should be one of the floowing:
+                          TI_SCI_PD_EXCLUSIVE: To allow device to be
+                                               exclusively controlled by
+                                               the requesting hosts.
+                          TI_SCI_PD_SHARED: To allow device to be shared
+                                            by multiple hosts.
 
 Example (AM65x):
 ----------------
diff --git a/include/dt-bindings/soc/ti,sci_pm_domain.h b/include/dt-bindings/soc/ti,sci_pm_domain.h
new file mode 100644 (file)
index 0000000..8f2a736
--- /dev/null
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+
+#ifndef __DT_BINDINGS_TI_SCI_PM_DOMAIN_H
+#define __DT_BINDINGS_TI_SCI_PM_DOMAIN_H
+
+#define TI_SCI_PD_EXCLUSIVE    1
+#define TI_SCI_PD_SHARED       0
+
+#endif /* __DT_BINDINGS_TI_SCI_PM_DOMAIN_H */