~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/gpio/gpio-mmio.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/gpio/gpio-mmio.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: Generic MMIO GPIO
  8 
  9 maintainers:
 10   - Linus Walleij <linus.walleij@linaro.org>
 11   - Bartosz Golaszewski <brgl@bgdev.pl>
 12 
 13 description:
 14   Some simple GPIO controllers may consist of a single data register or a pair
 15   of set/clear-bit registers. Such controllers are common for glue logic in
 16   FPGAs or ASICs. Commonly, these controllers are accessed over memory-mapped
 17   NAND-style parallel busses.
 18 
 19 properties:
 20   compatible:
 21     enum:
 22       - brcm,bcm6345-gpio
 23       - ni,169445-nand-gpio
 24       - wd,mbl-gpio # Western Digital MyBook Live memory-mapped GPIO controller
 25 
 26   big-endian: true
 27 
 28   '#gpio-cells':
 29     const: 2
 30 
 31   gpio-controller: true
 32 
 33   little-endian: true
 34 
 35   reg:
 36     minItems: 1
 37     description:
 38       A list of registers in the controller. The width of each register is
 39       determined by its size. All registers must have the same width. The number
 40       of GPIOs is set by the width, with bit 0 corresponding to GPIO 0.
 41     items:
 42       - description:
 43           Register to READ the value of the GPIO lines. If GPIO line is high,
 44           the bit will be set. If the GPIO line is low, the bit will be cleared.
 45           This register may also be used to drive GPIOs if the SET register is
 46           omitted.
 47       - description:
 48           Register to SET the value of the GPIO lines. Setting a bit in this
 49           register will drive the GPIO line high.
 50       - description:
 51           Register to CLEAR the value of the GPIO lines. Setting a bit in this
 52           register will drive the GPIO line low. If this register is omitted,
 53           the SET register will be used to clear the GPIO lines as well, by
 54           actively writing the line with 0.
 55       - description:
 56           Register to set the line as OUTPUT. Setting a bit in this register
 57           will turn that line into an output line. Conversely, clearing a bit
 58           will turn that line into an input.
 59       - description:
 60           Register to set this line as INPUT. Setting a bit in this register
 61           will turn that line into an input line. Conversely, clearing a bit
 62           will turn that line into an output.
 63 
 64   reg-names:
 65     minItems: 1
 66     maxItems: 5
 67     items:
 68       enum:
 69         - dat
 70         - set
 71         - clr
 72         - dirout
 73         - dirin
 74 
 75   native-endian: true
 76 
 77   no-output:
 78     $ref: /schemas/types.yaml#/definitions/flag
 79     description:
 80       If this property is present, the controller cannot drive the GPIO lines.
 81 
 82 required:
 83   - compatible
 84   - reg
 85   - reg-names
 86   - '#gpio-cells'
 87   - gpio-controller
 88 
 89 additionalProperties: false
 90 
 91 examples:
 92   - |
 93     gpio@1f300010 {
 94       compatible = "ni,169445-nand-gpio";
 95       reg = <0x1f300010 0x4>;
 96       reg-names = "dat";
 97       gpio-controller;
 98       #gpio-cells = <2>;
 99     };
100 
101     gpio@e0100000 {
102       compatible = "wd,mbl-gpio";
103       reg-names = "dat";
104       reg = <0xe0100000 0x1>;
105       #gpio-cells = <2>;
106       gpio-controller;
107       no-output;
108     };
109 
110     gpio@fffe0406 {
111       compatible = "brcm,bcm6345-gpio";
112       reg-names = "dirout", "dat";
113       reg = <0xfffe0406 2>, <0xfffe040a 2>;
114       native-endian;
115       gpio-controller;
116       #gpio-cells = <2>;
117     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php