[PATCH 1/2] dt-bindings: regulator: mediatek: Add MT8196 vmm controller
Nancy.Lin
nancy.lin at mediatek.com
Thu May 22 08:03:33 PDT 2025
From: Nancy Lin <nancy.lin at mediatek.com>
Add a device tree binding document for the MediaTek MT8196 VMM (Vcore
for MultiMedia) regulator controller. The VMM controller acts as the
main power supplier for multimedia power domains, such as those used
by display, video encode and decode subsystems. It provides virtual
regulators that serve as the power sources for various multimedia IPs,
and coordinates with the hardware common clock framework (hwccf) and
the Video Companion Processor (VCP) to manage the power domains of
these components. The regulator is controlled by the VCP firmware,
and the operating system signals its requirement through a voting
hardware block (hwccf).
Signed-off-by: Nancy Lin <nancy.lin at mediatek.com>
---
.../mediatek,mt8196-vmm-regulator.yaml | 70 +++++++++++++++++++
1 file changed, 70 insertions(+)
create mode 100644 Documentation/devicetree/bindings/regulator/mediatek,mt8196-vmm-regulator.yaml
diff --git a/Documentation/devicetree/bindings/regulator/mediatek,mt8196-vmm-regulator.yaml b/Documentation/devicetree/bindings/regulator/mediatek,mt8196-vmm-regulator.yaml
new file mode 100644
index 000000000000..a50e35c2e238
--- /dev/null
+++ b/Documentation/devicetree/bindings/regulator/mediatek,mt8196-vmm-regulator.yaml
@@ -0,0 +1,70 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: "http://devicetree.org/schemas/regulator/mediatek,mt8196-vmm-regulator.yaml#"
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: MediaTek MT8196 VMM (Vcore for MultiMedia) Regulator Controller
+
+maintainers:
+ - Nancy Lin <nancy.lin at mediatek.com>
+
+description: |
+ The MediaTek MT8196 VMM (Vcore for Multi Media) controller acts as the
+ main power supplier for multimedia power domains, such as those used by
+ display, video encode and decode subsystems. The VMM hardware block
+ provides virtual regulators that serve as the power sources (suppliers)
+ for various multimedia IPs. It coordinates with the MediaTek hardware
+ common clock framework (HWCCF) and the Video Companion Processor (VCP)
+ to manage the power domains of these multimedia components.
+
+ Each child node under the VMM node represents a virtual regulator
+ (e.g., vdisp, vdec-vcore) and must specify a 'regulator-name'.
+
+properties:
+ compatible:
+ const: "mediatek,mt8196-vmm"
+
+ mediatek,hw-ccf:
+ $ref: /schemas/types.yaml#/definitions/phandle
+ description: Phandle to the hardware common clock framework syscon controller.
+
+ mediatek,vcp:
+ $ref: /schemas/types.yaml#/definitions/phandle
+ description: Phandle to the Video Co-Processor (VCP) node.
+
+patternProperties:
+ "^(vdisp|vdec-vcore)$":
+ type: object
+ description: |
+ Virtual regulator for a specific multimedia domain.
+ The node name should match the supported regulator (e.g., vdisp, vdec-vcore).
+ properties:
+ regulator-name:
+ type: string
+ description: The name of the virtual regulator.
+ required:
+ - regulator-name
+ additionalProperties: false
+
+required:
+ - compatible
+ - mediatek,hw-ccf
+ - mediatek,vcp
+
+additionalProperties: false
+
+examples:
+ - |
+ vmm: vmm {
+ compatible = "mediatek,mt8196-vmm";
+ mediatek,hw-ccf = <&mm_hwv>;
+ mediatek,vcp = <&vcp>;
+
+ vdisp: vdisp {
+ regulator-name = "vdisp";
+ };
+ vdec_vcore: vdec-vcore {
+ regulator-name = "vdec-vcore";
+ };
+ };
--
2.45.2
More information about the Linux-mediatek
mailing list