1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/gpio/maxim,max77759-gpio.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Maxim Integrated MAX77759 GPIO 8 9maintainers: 10 - André Draszik <andre.draszik@linaro.org> 11 12description: | 13 This module is part of the MAX77759 PMIC. For additional information, see 14 Documentation/devicetree/bindings/mfd/maxim,max77759.yaml. 15 16 The MAX77759 is a PMIC integrating, amongst others, a GPIO controller 17 including interrupt support for 2 GPIO lines. 18 19properties: 20 compatible: 21 const: maxim,max77759-gpio 22 23 "#gpio-cells": 24 const: 2 25 26 gpio-controller: true 27 28 gpio-line-names: 29 minItems: 1 30 maxItems: 2 31 32 "#interrupt-cells": 33 const: 2 34 35 interrupt-controller: true 36 37required: 38 - compatible 39 - "#gpio-cells" 40 - gpio-controller 41 - "#interrupt-cells" 42 - interrupt-controller 43 44additionalProperties: false 45