# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/mfd/nvidia-vrs-pseq.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: NVIDIA VRS sequencer driver maintainers: - Shubhi Garg - Laxman Dewangan description: | NVIDIA VRS sequencer device for controlling the voltage rails. properties: compatible: const: "nvidia,vrs-pseq" reg: description: I2C device address. maxItems: 1 interrupts: maxItems: 1 interrupt-controller: true "#interrupt-cells": const: 3 description: The first cell is the IRQ number, the second cell is the trigger type. required: - compatible - reg - interrupts - interrupt-controller - "#interrupt-cells" additionalProperties: false examples: - | #include #include #define TEGRA234_IRQ_PMIC_EXT_INTR 209 bpmp { i2c { #address-cells = <1>; #size-cells = <0>; vrs@3c { compatible = "nvidia,vrs-pseq"; reg = <0x3c>; interrupt-parent = <&intc>; /* IRQ is active-low but pmc inverts the signal */ interrupts = ; interrupt-controller; #interrupt-cells = <3>; }; }; };