1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/mfd/brcm,bcm59056.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Broadcom BCM590xx Power Management Units 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Artur Weber <aweber.kernel@gmail.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotproperties: 13*ae5de77eSEmmanuel Vadot compatible: 14*ae5de77eSEmmanuel Vadot enum: 15*ae5de77eSEmmanuel Vadot - brcm,bcm59054 16*ae5de77eSEmmanuel Vadot - brcm,bcm59056 17*ae5de77eSEmmanuel Vadot 18*ae5de77eSEmmanuel Vadot reg: 19*ae5de77eSEmmanuel Vadot maxItems: 1 20*ae5de77eSEmmanuel Vadot 21*ae5de77eSEmmanuel Vadot interrupts: 22*ae5de77eSEmmanuel Vadot maxItems: 1 23*ae5de77eSEmmanuel Vadot 24*ae5de77eSEmmanuel Vadot regulators: 25*ae5de77eSEmmanuel Vadot type: object 26*ae5de77eSEmmanuel Vadot 27*ae5de77eSEmmanuel Vadotrequired: 28*ae5de77eSEmmanuel Vadot - compatible 29*ae5de77eSEmmanuel Vadot - reg 30*ae5de77eSEmmanuel Vadot - interrupts 31*ae5de77eSEmmanuel Vadot 32*ae5de77eSEmmanuel VadotadditionalProperties: false 33*ae5de77eSEmmanuel Vadot 34*ae5de77eSEmmanuel VadotallOf: 35*ae5de77eSEmmanuel Vadot - if: 36*ae5de77eSEmmanuel Vadot properties: 37*ae5de77eSEmmanuel Vadot compatible: 38*ae5de77eSEmmanuel Vadot contains: 39*ae5de77eSEmmanuel Vadot const: brcm,bcm59054 40*ae5de77eSEmmanuel Vadot then: 41*ae5de77eSEmmanuel Vadot properties: 42*ae5de77eSEmmanuel Vadot regulators: 43*ae5de77eSEmmanuel Vadot $ref: /schemas/regulator/brcm,bcm59054.yaml# 44*ae5de77eSEmmanuel Vadot 45*ae5de77eSEmmanuel Vadot - if: 46*ae5de77eSEmmanuel Vadot properties: 47*ae5de77eSEmmanuel Vadot compatible: 48*ae5de77eSEmmanuel Vadot contains: 49*ae5de77eSEmmanuel Vadot const: brcm,bcm59056 50*ae5de77eSEmmanuel Vadot then: 51*ae5de77eSEmmanuel Vadot properties: 52*ae5de77eSEmmanuel Vadot regulators: 53*ae5de77eSEmmanuel Vadot $ref: /schemas/regulator/brcm,bcm59056.yaml# 54*ae5de77eSEmmanuel Vadot 55*ae5de77eSEmmanuel Vadotexamples: 56*ae5de77eSEmmanuel Vadot - | 57*ae5de77eSEmmanuel Vadot #include <dt-bindings/interrupt-controller/arm-gic.h> 58*ae5de77eSEmmanuel Vadot #include <dt-bindings/interrupt-controller/irq.h> 59*ae5de77eSEmmanuel Vadot 60*ae5de77eSEmmanuel Vadot i2c { 61*ae5de77eSEmmanuel Vadot #address-cells = <1>; 62*ae5de77eSEmmanuel Vadot #size-cells = <0>; 63*ae5de77eSEmmanuel Vadot 64*ae5de77eSEmmanuel Vadot pmic@8 { 65*ae5de77eSEmmanuel Vadot compatible = "brcm,bcm59056"; 66*ae5de77eSEmmanuel Vadot reg = <0x08>; 67*ae5de77eSEmmanuel Vadot interrupts = <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>; 68*ae5de77eSEmmanuel Vadot 69*ae5de77eSEmmanuel Vadot regulators { 70*ae5de77eSEmmanuel Vadot rfldo { 71*ae5de77eSEmmanuel Vadot regulator-min-microvolt = <1200000>; 72*ae5de77eSEmmanuel Vadot regulator-max-microvolt = <3300000>; 73*ae5de77eSEmmanuel Vadot }; 74*ae5de77eSEmmanuel Vadot }; 75*ae5de77eSEmmanuel Vadot }; 76*ae5de77eSEmmanuel Vadot }; 77