linux/Documentation/devicetree/bindings/gpio
Linus Torvalds aacc73ceeb gpio updates for v6.16-rc1
GPIO core:
 - use more lock guards where applicable
 - refactor GPIO ACPI code and shrink it in the process by 8%
 - move GPIO ACPI quirks into a separate file
 - remove unneeded #ifdef
 - convert GPIO devres helpers to using devm_add_action() where applicable
   which shrinks and simplifies the code
 - refactor GPIO descriptor validation in GPIO consumer interfaces
 - don't allow setting values on input lines in the GPIO core which will
   take off the burden from GPIO drivers of checking this down the line
 - provide gpiod_is_equal() as a way of safely comparing two GPIO
   descriptors (the only current user is in regulator core)
 
 New drivers:
 - add the GPIO module for the max77759 multifunction device
 - add the GPIO driver for the VeriSilicon BLZP1600 GPIO controller
 - add the GPIO driver for the Spacemit K1 SoC
 
 Driver improvements:
 - convert more drivers to using the new GPIO line value setter callbacks
 - convert more drivers to making the irq_chip immutable as is recommended
   by the interrupt subsystem
 - extend build testing coverage by enabling more modules to be built with
   COMPILE_TEST=y
 - extend the gpio-aggregator module with a configfs interface that makes
   the setup easier for user-space than the existing driver-level sysfs
   attributes and also adds more advanced configuration features (such as
   referring to aggregated lines by their original names or modifying
   their names as exposed by the aggregated chip)
 - add a missing mutex_destroy() in gpio-imx-scu
 - add an OF polarity quirk for s5m8767
 - allow building gpio-vf610 as a loadable module
 - make gpio-mxc not hardcode its GPIO base number with GPIO SYSFS
   interface disabled (another small step towards getting rid of the global
   GPIO numberspace)
 - add support for level-triggered interrupts to gpio-pca953x
 - don't double-check the ngpios property in gpio-ds4520 as GPIO core
   already does it
 - don't double-check the number of GPIOs in gpio-imx-scu as GPIO core
   already does it
 - remove unused callbacks from gpio-max3191x
 
 DT bindings:
 - add device-tree bindings for max77759, spacemit,k1 and blzp1600 (new
   drivers added this cycle)
 - document more properties for gpio-vf610 and gpio-tegra186
 - document a new pca95xx variant
 - fix style of examples in several GPIO DT-binding documents
 
 Misc:
 - TODO list updates
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCgAdFiEEFp3rbAvDxGAT0sefEacuoBRx13IFAmg0NtQACgkQEacuoBRx
 13Iolg/+P8fe1hTek+UgdKm/EAQ1Mn3oijNE1Ix15VD8Iqacu+URyB2SJMFcg27n
 S/tsuwogQeQmdgXPfYDJkQmiZEyln/ytWf5W2lNwYhGfGujVa8h1FueB7Wb8Zs7G
 PNMnobyAIGivodJfvikDEyczMuxhkOH04ZOT7UpTSPI47BSGsujX/1vgmRQLid1Z
 3wFDJ0yDhVcuxit/VC+LzFpHIV0MiRzGpvHzYid5jjEaGSiRMpHixf27VJGc0gG1
 IJLkhNkwZ3InisWVGvqdRg/FUNErRYKYQSARb4AjCU+/y1H0SWdB0R6sZDTZpP+e
 YqAc8FW31Lw1L7PWBLRTaVS3KT868tdXDCsArNzfBbb3u/WikO2GY/AXuzveZatp
 pHwyPA0JS9QvxaTXU9yjCpGqdNfjbrmU5OkZxTTe+Nyz84fUfiURiE8g4Rl6riy4
 fNzaywRBmVZlEECWSWGzyNw9ZEYDRPZ1ZHmOA+8FWE+/XKJIsVf8w3x2QIC5b/HO
 hYKH4mar8oiEYJFZqoko3iQURJq+AD9wILCNpws5bSsi//VyyNT0mZV/q5hj7+Xx
 pqeEGDInvycN5fDWWJlkN1lj5dDyHZi4uus05mYI9Ec+eX3XNWRUHXUskbpzdgCs
 XepjP9kFQmMSL7y4z2d7tLd7gFup/uGny7o/KyMsIPDw7qVL5rY=
 =PQqp
 -----END PGP SIGNATURE-----

Merge tag 'gpio-updates-for-v6.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux

Pull gpio updates from Bartosz Golaszewski:
 "We have three new drivers, some refactoring in the GPIO core, lots of
  various changes across many drivers, new configfs interface for the
  virtual gpio-aggregator module and DT-bindings updates.

  The treewide conversion of GPIO drivers to using the new value setter
  callbacks is ongoing with another round of GPIO drivers updated. You
  will also see these commits coming in from other subsystems as with
  the relevant changes merged into mainline last cycle, I've started
  converting GPIO providers located elsewhere than drivers/gpio/.

  GPIO core:
   - use more lock guards where applicable
   - refactor GPIO ACPI code and shrink it in the process by 8%
   - move GPIO ACPI quirks into a separate file
   - remove unneeded #ifdef
   - convert GPIO devres helpers to using devm_add_action() where
     applicable which shrinks and simplifies the code
   - refactor GPIO descriptor validation in GPIO consumer interfaces
   - don't allow setting values on input lines in the GPIO core which
     will take off the burden from GPIO drivers of checking this down
     the line
   - provide gpiod_is_equal() as a way of safely comparing two GPIO
     descriptors (the only current user is in regulator core)

  New drivers:
   - add the GPIO module for the max77759 multifunction device
   - add the GPIO driver for the VeriSilicon BLZP1600 GPIO controller
   - add the GPIO driver for the Spacemit K1 SoC

  Driver improvements:
   - convert more drivers to using the new GPIO line value setter
     callbacks
   - convert more drivers to making the irq_chip immutable as is
     recommended by the interrupt subsystem
   - extend build testing coverage by enabling more modules to be built
     with COMPILE_TEST=y
   - extend the gpio-aggregator module with a configfs interface that
     makes the setup easier for user-space than the existing
     driver-level sysfs attributes and also adds more advanced
     configuration features (such as referring to aggregated lines by
     their original names or modifying their names as exposed by the
     aggregated chip)
   - add a missing mutex_destroy() in gpio-imx-scu
   - add an OF polarity quirk for s5m8767
   - allow building gpio-vf610 as a loadable module
   - make gpio-mxc not hardcode its GPIO base number with GPIO SYSFS
     interface disabled (another small step towards getting rid of the
     global GPIO numberspace)
   - add support for level-triggered interrupts to gpio-pca953x
   - don't double-check the ngpios property in gpio-ds4520 as GPIO core
     already does it
   - don't double-check the number of GPIOs in gpio-imx-scu as GPIO core
     already does it
   - remove unused callbacks from gpio-max3191x

  DT bindings:
   - add device-tree bindings for max77759, spacemit,k1 and blzp1600
     (new drivers added this cycle)
   - document more properties for gpio-vf610 and gpio-tegra186
   - document a new pca95xx variant
   - fix style of examples in several GPIO DT-binding documents

  Misc:
   - TODO list updates"

* tag 'gpio-updates-for-v6.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (123 commits)
  gpio: timberdale: select GPIOLIB_IRQCHIP
  gpio: lpc18xx: select GPIOLIB_IRQCHIP
  gpio: grgpio: select GPIOLIB_IRQCHIP
  gpio: bcm-kona: select GPIOLIB_IRQCHIP
  dt-bindings: gpio: vf610: add ngpios and gpio-reserved-ranges
  gpio: davinci: select GPIOLIB_IRQCHIP
  gpiolib-acpi: Update file references in the Documentation and MAINTAINERS
  gpiolib: acpi: Move quirks to a separate file
  gpiolib: acpi: Add acpi_gpio_need_run_edge_events_on_boot() getter
  gpiolib: acpi: Handle deferred list via new API
  gpiolib: acpi: Make sure we fill struct acpi_gpio_info
  gpiolib: acpi: Switch to use enum in acpi_gpio_in_ignore_list()
  gpiolib: acpi: Use temporary variable for struct acpi_gpio_info
  gpiolib: remove unneeded #ifdef
  gpio: mpc8xxx: select GPIOLIB_IRQCHIP
  gpio: pxa: select GPIOLIB_IRQCHIP
  gpio: pxa: Make irq_chip immutable
  gpio: timberdale: Make irq_chip immutable
  gpio: xgene-sb: Make irq_chip immutable
  gpio: davinci: Make irq_chip immutable
  ...
2025-05-27 15:22:01 -07:00
..
8xxx_gpio.txt
abilis,tb10x-gpio.txt
adi,ds4520-gpio.yaml dt-bindings: gpio: ds4520: Add ADI DS4520 2023-07-29 15:54:58 +02:00
airoha,en7523-gpio.yaml dt-bindings: arm: airoha: Add binding for Airoha GPIO controller 2022-02-02 10:15:46 +01:00
aspeed,ast2400-gpio.yaml dt-bindings: gpio: ast2400-gpio: Add hogs parsing 2025-02-05 09:39:57 +01:00
aspeed,sgpio.yaml dt-bindings: gpio: aspeed,sgpio: Specify #interrupt-cells 2024-06-03 10:34:53 +02:00
atmel,at91rm9200-gpio.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
blaize,blzp1600-gpio.yaml dt-bindings: Document Blaize BLZP1600 GPIO driver 2025-04-07 14:03:56 +02:00
brcm,bcm63xx-gpio.yaml dt-bindings: Convert gpio-mmio to yaml 2023-05-11 11:18:04 +02:00
brcm,brcmstb-gpio.yaml dt-bindings: gpio: brcmstb: permit gpio-line-names property 2024-12-16 10:08:19 +01:00
brcm,kona-gpio.yaml dt-bindings: gpio: brcm,kona-gpio: convert to YAML 2023-08-01 21:23:50 +02:00
brcm,xgs-iproc-gpio.yaml
cavium-octeon-gpio.txt
cdns,gpio.txt
cirrus,clps711x-mctrl-gpio.txt
delta,tn48m-gpio.yaml dt-bindings: mfd: Add Delta TN48M CPLD drivers bindings 2022-02-25 09:59:35 +01:00
fairchild,74hc595.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
faraday,ftgpio010.yaml dt-bindings: gpio: convert faraday,ftgpio01 to yaml 2022-02-09 09:59:31 +01:00
fcs,fxl6408.yaml dt-bindings: gpio: fcs,fxl6408: add missing type to GPIO hogs 2024-09-02 12:27:24 +02:00
fsl,imx8qxp-sc-gpio.yaml dt-bindings: gpio: Add imx scu gpio driver bindings 2022-08-31 17:20:40 +02:00
fsl,qoriq-gpio.yaml dt-bindings: gpio: fsl,qoriq-gpio: Add compatible string fsl,mpc8314-gpio 2025-01-13 09:20:25 +01:00
fsl-imx-gpio.yaml dt-bindings: gpio: simplify GPIO hog nodes schema 2024-09-02 12:27:29 +02:00
fujitsu,mb86s70-gpio.yaml dt-bindings: gpio: Convert Fujitsu MB86S7x GPIO to DT schema 2023-01-30 15:55:28 +01:00
gateworks,pld-gpio.txt dt-bindings: i2c: Remove obsolete i2c.txt 2024-03-01 16:12:16 -06:00
gpio-74xx-mmio.txt
gpio-adnp.txt
gpio-altera.txt dt-bindings: gpio: altera: correct interrupt-cells 2022-05-12 09:27:07 -05:00
gpio-ath79.txt
gpio-clps711x.txt
gpio-consumer-common.yaml dt-bindings: gpio: add common consumer GPIO lines 2022-04-25 20:48:35 +02:00
gpio-davinci.yaml dt-bindings: gpio: gpio-davinci: Add the gpio-reserved-ranges property 2024-08-10 21:33:30 +02:00
gpio-delay.yaml dt-bindings: gpio: gpio-delay: Spelling s/curcuit/circuit/ 2023-06-06 17:43:26 +02:00
gpio-dsp-keystone.txt
gpio-ep9301.yaml dt-bindings: gpio: ep9301: Add missing "#interrupt-cells" to examples 2024-09-26 14:23:42 +00:00
gpio-exar.txt
gpio-grgpio.txt
gpio-latch.yaml dt-bindings: gpio: Add gpio-latch binding document 2022-10-26 14:52:01 +02:00
gpio-lp3943.txt
gpio-max3191x.txt
gpio-max77620.txt
gpio-mm-lantiq.txt
gpio-mmio.yaml dt-bindings: gpio-mmio: Add ngpios property 2024-10-18 09:45:33 +02:00
gpio-moxtet.txt
gpio-mvebu.yaml dt-bindings: gpio: mvebu: Add missing 'gpio-ranges' property and hog nodes 2025-03-04 11:39:34 +01:00
gpio-mxs.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
gpio-palmas.txt
gpio-pca95xx.yaml dt-bindings: gpio: pca95xx: add Toradex ecgpiol16 2025-04-07 09:55:37 +02:00
gpio-pca9570.yaml dt-bindings: gpio: pca9570: Add label property 2024-02-05 09:29:20 +01:00
gpio-pisosr.txt dt-bindings: Fix typo in comment 2022-07-21 13:14:27 -06:00
gpio-rda.yaml
gpio-stp-xway.yaml
gpio-thunderx.txt
gpio-tpic2810.yaml dt-bindings: drop redundant part of title (end, part three) 2022-12-16 11:41:49 -06:00
gpio-ts4800.txt
gpio-ts4900.txt
gpio-twl4030.txt
gpio-vf610.yaml dt-bindings: gpio: vf610: add ngpios and gpio-reserved-ranges 2025-05-21 17:51:14 +02:00
gpio-virtio.yaml
gpio-xgene-sb.txt dt-bindings: Fix typos 2023-08-18 11:32:25 -05:00
gpio-xgene.txt
gpio-xra1403.txt
gpio-zynq.yaml dt-bindings: xilinx: Switch xilinx.com emails to amd.com 2023-06-05 13:09:19 +02:00
gpio.txt dt-bindings: gpio.txt: expand gpio-line-names recommendations 2023-03-06 10:52:42 +01:00
hisilicon,ascend910-gpio.yaml dt-bindings: gpio: add entry for hisilicon,ascend910-gpio 2022-11-07 21:36:29 +01:00
ibm,ppc4xx-gpio.txt
idt,32434-gpio.yaml
intel,ixp4xx-gpio.yaml gpio: Rewrite IXP4xx GPIO bindings in schema 2023-09-27 08:55:55 +02:00
kontron,sl28cpld-gpio.yaml
loongson,ls-gpio.yaml dt-bindings: gpio: loongson: Add new loongson gpio chip compatible 2025-03-05 09:55:56 +01:00
loongson,ls1x-gpio.yaml dt-bindings: gpio: Add Loongson-1 GPIO 2023-03-23 14:31:18 +01:00
lsi,zevio-gpio.yaml dt-bindings: gpio: lsi,zevio-gpio: convert to dtschema 2024-05-27 16:52:45 +02:00
maxim,max77759-gpio.yaml dt-bindings: gpio: Add max77759 binding 2025-05-09 15:21:35 +01:00
mediatek,mt7621-gpio.yaml
microchip,mpfs-gpio.yaml dt-bindings: gpio: simplify GPIO hog nodes schema 2024-09-02 12:27:29 +02:00
microchip,pic32-gpio.txt
mrvl-gpio.yaml MAINTAINERS: Drop my "+dt" sub-address 2024-01-31 16:05:18 -06:00
mstar,msc313-gpio.yaml dt-bindings: gpio: msc313: Add compatible for ssd20xd 2021-12-20 15:48:24 +01:00
netxbig-gpio-ext.txt
nintendo,hollywood-gpio.txt
nuvoton,sgpio.yaml dt-bindings: gpio: add NPCM sgpio driver bindings 2024-01-03 11:18:47 +01:00
nvidia,tegra20-gpio.yaml dt-bindings: gpio: tegra: Convert to json-schema 2021-12-17 12:26:13 +01:00
nvidia,tegra186-gpio.yaml dt-bindings: gpio: tegra186: Add gpio-ranges 2025-05-14 17:30:55 +02:00
nxp,lpc1850-gpio.txt
nxp,lpc3220-gpio.yaml dt-bindings: gpio: nxp,lpc3220-gpio: Convert to dtschema 2024-07-31 09:51:55 +02:00
nxp,pcf8575.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
pl061-gpio.yaml
qcom,wcd934x-gpio.yaml
realtek,otto-gpio.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
realtek,rtd-gpio.yaml dt-bindings: gpio: realtek: Add realtek,rtd-gpio 2024-01-03 10:46:02 +01:00
renesas,em-gio.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
renesas,rcar-gpio.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
rockchip,gpio-bank.yaml dt-bindings: gpio: rockchip: add a pattern for gpio hogs 2023-12-04 09:16:50 +01:00
rockchip,rk3328-grf-gpio.yaml
sifive,gpio.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
snps,creg-gpio.txt
snps,dw-apb-gpio.yaml dt-bindings: gpio: dwapb: allow gpio-ranges 2023-12-18 11:04:36 +01:00
socionext,uniphier-gpio.yaml dt-bindings: gpio: simplify GPIO hog nodes schema 2024-09-02 12:27:29 +02:00
sodaville.txt
spacemit,k1-gpio.yaml dt-bindings: gpio: spacemit: add support for K1 SoC 2025-04-17 15:22:05 +02:00
spear_spics.txt
sprd,gpio-eic.yaml dt-bindings: gpio: Add compatible string for Unisoc UMS512 2023-01-30 15:55:30 +01:00
sprd,gpio.yaml dt-bindings: gpio: Add compatible string for Unisoc UMS512 2023-01-30 15:55:30 +01:00
st,nomadik-gpio.yaml dt-bindings: gpio: st,nomadik-gpio: Add missing "#interrupt-cells" to example 2024-10-02 16:28:20 +02:00
st,stmpe-gpio.yaml dt-bindings: gpio: Add gpio-line-names to STMPE GPIO 2023-07-29 16:00:33 +02:00
ti,omap-gpio.yaml dt-bindings: Fix typos 2023-08-18 11:32:25 -05:00
toshiba,gpio-visconti.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
x-powers,axp209-gpio.yaml dt-bindings: Drop remaining unneeded quotes 2023-08-24 11:43:57 -05:00
xlnx,gpio-xilinx.yaml dt-bindings: gpio: Correct indentation and style in DTS example 2025-04-07 09:53:53 +02:00
xlnx,zynqmp-gpio-modepin.yaml dt-bindings: xilinx: Remove myself from maintainership 2025-04-07 09:34:35 -05:00
xylon,logicvc-gpio.yaml dt-bindings: Drop remaining unneeded quotes 2023-08-24 11:43:57 -05:00