1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/soc/google/google,gs101-pmu-intr-gen.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Google Power Management Unit (PMU) Interrupt Generation 8 9description: | 10 PMU interrupt generator for handshaking between PMU through interrupts. 11 12maintainers: 13 - Peter Griffin <peter.griffin@linaro.org> 14 15properties: 16 compatible: 17 items: 18 - const: google,gs101-pmu-intr-gen 19 - const: syscon 20 21 reg: 22 maxItems: 1 23 24required: 25 - compatible 26 - reg 27 28additionalProperties: false 29 30examples: 31 - | 32 pmu_intr_gen: syscon@17470000 { 33 compatible = "google,gs101-pmu-intr-gen", "syscon"; 34 reg = <0x17470000 0x10000>; 35 }; 36