summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2026-07-26 21:51:00 +0100
committerMark Brown <broonie@kernel.org>2026-07-26 21:51:00 +0100
commitc3657402222c859628cf30506d1cb3a9dc6870f4 (patch)
tree5cf6ac9df5d5110b12f443586076025bd6b44943 /Documentation/devicetree/bindings
parent392e3cac6cb8c28da06dbb9dbee29ff7c6453bdc (diff)
parent144dacd77e911750b9cd1004e58b1f37837d3162 (diff)
downloadlinux-next-c3657402222c859628cf30506d1cb3a9dc6870f4.tar.gz
linux-next-c3657402222c859628cf30506d1cb3a9dc6870f4.zip
Merge branch 'asahi-soc/for-next' of https://github.com/AsahiLinux/linux.git
Diffstat (limited to 'Documentation/devicetree/bindings')
-rw-r--r--Documentation/devicetree/bindings/soc/apple/apple,t6000-pmgr-misc.yaml45
1 files changed, 45 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/soc/apple/apple,t6000-pmgr-misc.yaml b/Documentation/devicetree/bindings/soc/apple/apple,t6000-pmgr-misc.yaml
new file mode 100644
index 000000000000..588100222f89
--- /dev/null
+++ b/Documentation/devicetree/bindings/soc/apple/apple,t6000-pmgr-misc.yaml
@@ -0,0 +1,45 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/soc/apple/apple,t6000-pmgr-misc.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Apple SoC PMGR Misc Power States
+
+maintainers:
+ - Sasha Finkelstein <k@chaosmail.tech>
+
+description: |
+ Certain Apple SoCs include additional PMGR power states that are controlled
+ via a different "misc" control block. This includes the fabric and memory
+ controller states.
+
+properties:
+ compatible:
+ enum:
+ - apple,t6000-pmgr-misc
+ - apple,t6020-pmgr-misc
+
+ reg:
+ maxItems: 2
+
+ reg-names:
+ items:
+ - const: fabric-ps
+ - const: dcs-ps
+
+required:
+ - compatible
+ - reg
+ - reg-names
+
+additionalProperties: false
+
+examples:
+ - |
+ power-management@8e20c000 {
+ compatible = "apple,t6000-pmgr-misc";
+ reg = <0x8e20c000 0x400>,
+ <0x8e20c800 0x400>;
+ reg-names = "fabric-ps", "dcs-ps";
+ };