xref: /freebsd/sys/contrib/device-tree/Bindings/gpio/fsl,imx8qxp-sc-gpio.yaml (revision 7ef62cebc2f965b0f640263e179276928885e33d)
1*7ef62cebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*7ef62cebSEmmanuel Vadot%YAML 1.2
3*7ef62cebSEmmanuel Vadot---
4*7ef62cebSEmmanuel Vadot$id: http://devicetree.org/schemas/gpio/fsl,imx8qxp-sc-gpio.yaml#
5*7ef62cebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*7ef62cebSEmmanuel Vadot
7*7ef62cebSEmmanuel Vadottitle: GPIO driver over IMX SCU firmware API
8*7ef62cebSEmmanuel Vadot
9*7ef62cebSEmmanuel Vadotmaintainers:
10*7ef62cebSEmmanuel Vadot  - Shenwei Wang <shenwei.wang@nxp.com>
11*7ef62cebSEmmanuel Vadot
12*7ef62cebSEmmanuel Vadotdescription: |
13*7ef62cebSEmmanuel Vadot  This module provides the standard interface to control the
14*7ef62cebSEmmanuel Vadot  resource pins in SCU domain on i.MX8 platforms.
15*7ef62cebSEmmanuel Vadot
16*7ef62cebSEmmanuel Vadotproperties:
17*7ef62cebSEmmanuel Vadot  compatible:
18*7ef62cebSEmmanuel Vadot    enum:
19*7ef62cebSEmmanuel Vadot      - fsl,imx8qxp-sc-gpio
20*7ef62cebSEmmanuel Vadot
21*7ef62cebSEmmanuel Vadot  "#gpio-cells":
22*7ef62cebSEmmanuel Vadot    const: 2
23*7ef62cebSEmmanuel Vadot
24*7ef62cebSEmmanuel Vadot  gpio-controller: true
25*7ef62cebSEmmanuel Vadot
26*7ef62cebSEmmanuel Vadotrequired:
27*7ef62cebSEmmanuel Vadot  - compatible
28*7ef62cebSEmmanuel Vadot  - "#gpio-cells"
29*7ef62cebSEmmanuel Vadot  - gpio-controller
30*7ef62cebSEmmanuel Vadot
31*7ef62cebSEmmanuel VadotadditionalProperties: false
32*7ef62cebSEmmanuel Vadot
33*7ef62cebSEmmanuel Vadotexamples:
34*7ef62cebSEmmanuel Vadot  - |
35*7ef62cebSEmmanuel Vadot    gpio0: gpio {
36*7ef62cebSEmmanuel Vadot        compatible = "fsl,imx8qxp-sc-gpio";
37*7ef62cebSEmmanuel Vadot        gpio-controller;
38*7ef62cebSEmmanuel Vadot        #gpio-cells = <2>;
39*7ef62cebSEmmanuel Vadot    };
40