brintos

brintos / linux-shallow public Read only

0
0
Text · 920 B · b35e00e Raw
44 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/mmc/mmc-pwrseq-sd8787.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Marvell SD8787 power sequence provider8 9maintainers:10  - Ulf Hansson <ulf.hansson@linaro.org>11 12properties:13  compatible:14    enum:15      - mmc-pwrseq-sd878716      - mmc-pwrseq-wilc100017 18  powerdown-gpios:19    minItems: 120    description:21      contains a power down GPIO specifier with the default active state22 23  reset-gpios:24    minItems: 125    description:26      contains a reset GPIO specifier with the default active state27 28required:29  - compatible30  - powerdown-gpios31  - reset-gpios32 33additionalProperties: false34 35examples:36  - |37    #include <dt-bindings/gpio/gpio.h>38    pwrseq {39      compatible = "mmc-pwrseq-sd8787";40      powerdown-gpios = <&twl_gpio 0 GPIO_ACTIVE_LOW>;41      reset-gpios = <&twl_gpio 1 GPIO_ACTIVE_LOW>;42    };43...44