1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
4 $id: http://devicetree.org/schemas/gpio/gpio-mmio.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Generic MMIO GPIO
10 - Linus Walleij <linus.walleij@linaro.org>
11 - Bartosz Golaszewski <brgl@bgdev.pl>
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.
24 - wd,mbl-gpio # Western Digital MyBook Live memory-mapped GPIO controller
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, unless
41 the ngpios property further restricts the number of used lines.
44 Register to READ the value of the GPIO lines. If GPIO line is high,
45 the bit will be set. If the GPIO line is low, the bit will be cleared.
46 This register may also be used to drive GPIOs if the SET register is
49 Register to SET the value of the GPIO lines. Setting a bit in this
50 register will drive the GPIO line high.
52 Register to CLEAR the value of the GPIO lines. Setting a bit in this
53 register will drive the GPIO line low. If this register is omitted,
54 the SET register will be used to clear the GPIO lines as well, by
55 actively writing the line with 0.
57 Register to set the line as OUTPUT. Setting a bit in this register
58 will turn that line into an output line. Conversely, clearing a bit
59 will turn that line into an input.
61 Register to set this line as INPUT. Setting a bit in this register
62 will turn that line into an input line. Conversely, clearing a bit
63 will turn that line into an output.
82 If this property is present the number of usable GPIO lines are restricted
83 to the first 0 .. ngpios lines. This is useful when the GPIO MMIO register
84 has 32 bits for GPIO but only the first 12 are actually connected to
85 real electronics, and then we set ngpios to 12.
88 $ref: /schemas/types.yaml#/definitions/flag
90 If this property is present, the controller cannot drive the GPIO lines.
99 additionalProperties: false
104 compatible = "ni,169445-nand-gpio";
105 reg = <0x1f300010 0x4>;
112 compatible = "wd,mbl-gpio";
114 reg = <0xe0100000 0x1>;
121 compatible = "brcm,bcm6345-gpio";
122 reg-names = "dirout", "dat";
123 reg = <0xfffe0406 2>, <0xfffe040a 2>;