linux/drivers/gpio
Linus Torvalds fcb117e075 gpio updates for v6.17-rc1
GPIOLIB core:
 - introduce a parallel, limited sysfs user ABI that doesn't expose the
   global GPIO numbers to user-space while maintaining backward
   compatibility with the end goal of it completely replacing the existing
   interface, allowing us to remove it
 - remove the legacy devm_gpio_request() routine which has no more users
 - start the process of allowing to compile-out the legacy parts of the
   GPIO core for users who don't need it by introducing a new Kconfig
   option: GPIOLIB_LEGACY
 - don't use global GPIO numbers in debugfs output from the core code
   (drivers still do it, the work is ongoing)
 - start the process of moving the fields specific to the gpio-mmio helper
   out of the core struct gpio_chip into their own structure that wraps
   it: create a new header with modern interfaces and convert several
   drivers to using it
 - remove the platform data structure associated with the gpio-mmio helper
   from the kernel after having converted all remaining users to generic
   device properties
 - remove legacy struct gpio definition as it has no more users
 
 New drivers:
 - add the GPIO driver for the Apple System Management Controller
 
 Driver improvements:
 - add support for new models to gpio-adp5585, gpio-tps65219 and
   gpio-pca953x
 - extend the interrupt support in gpio-loongson-64bit
 - allow to mark the simulated GPIO lines as invalid in gpio-sim
 - convert all remaining GPIO drivers to using the new GPIO value setter
   callbacks
 - convert gpio-rcar to using simple device power management ops callbacks
 - don't check if current direction of a line is output before setting
   the value in gpio-pisosr and ti-fpc202: the GPIO core already handles
   that
 - also drop unneeded GPIO range checks in drivers, the core already makes
   sure we're within bounds when calling driver callbacks
 - use dev_fwnode() where applicable across GPIO drivers
 - set line value in gpio-zynqmp-modepin and gpio-twl6040 when the user
   wants to change direction of the pin to output even though these
   drivers don't need to do anything else to actually set the direction,
   otherwise a call like gpiod_direction_output(d, 1) will not result in
   the line driver high
 - remove the reduntant call to pm_runtime_mark_last_busy() from
   gpio-arizona
 - use lock guards in gpio-cadence and gpio-mxc
 - check the return values of regmap functions in gpio-wcd934x and
   gpio-tps65912
 - use better regmap interfaces in gpio-wcove and gpio-pca953x
 - remove dummy GPIO chip callbacks from several drivers in cases where
   the GPIO core can already handle their absence
 - allow building gpio-palmas as a module
 
 Fixes:
 - use correct bit widths (according to the documentation) in gpio-virtio
 
 Device-tree bindings:
 - convert several of the legacy .txt documents for many different devices
   to YAML, improving automatic validation
 - create a "trivial" GPIO DT schema that covers a wide range of simple
   hardware that share a set of basic GPIO properties
 - document new HW: Apple MAC SMC GPIO block and adp5589 I/O expander
 - document a new model for pca95xx
 - add and/or remove properties in YAML documents for gpio-rockchip,
   fsl,qoriq-gpio, arm,pl061 and gpio-xilinx
 
 Misc:
 - some minor refactoring in several places, adding/removing forward
   declarations, moving defines to better places, constify the arguments
   in some functions, remove duplicate includes, etc.
 - documentation updates
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCgAdFiEEFp3rbAvDxGAT0sefEacuoBRx13IFAmiHQsUACgkQEacuoBRx
 13LNDxAAsHxVqBjdCSzmnOCteIRrRWv8yCzeuPzFWekxGPJNEx/tC83cqdLF2yN/
 MFrlQLx4ZksCBWOmcoC9aQE5c8ZXfnugF2rztxeDIRtSwC0ED97K9Z798RrgLJUF
 M6HyaWgsEcMBDk0jXG2w3JESnPbx74VnGtPixv8+QeiM2DA5XRsLPaPbQEkatBVo
 9T7Ls/vfS6AK9fSqMg2ZjKi3bXpXMsmU4PXrhh/mCGSBU/TO3fF1IPig5SsKUpNL
 C2nm3e4XIaXCNIBqgGSpppbzCrwDBlDTb029QtoStXgsiMbppXI532NjuCfDlj80
 1Vlmwot4O91SJoC9XvmSM6KBWrBqX2zL3bYtpkLymEPPS8+25gwQ3HxteIzl1V4S
 Up8KZ+9EmNxxhfKYzhdWG0Puyam4sHiP1MlkeyEKgHJen4/07Pg4WdOthyuH72tg
 /U5wS+zDhhDpibHFYdQ5F04ubMfVxipvf0JHhbjuDAuXKqGohjJNUiE2/M7yBnyd
 n0IS9Bw95lOLepbAHkm/JneFvSJYJfOrLz+d981664tfrY7A99RLtSOluzQKSrzz
 dpqc+yn+x/TKaZeYV22mhIri5o9oupT7JqPHqXYe//iWzJt3m2EavzTRoR2JeJQq
 p7Quytgfj4FcR2v6GyldXWwFhRK0397kOLcNUQ7HVMaOAMMi5Y8=
 =tUPm
 -----END PGP SIGNATURE-----

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

Pull gpio updates from Bartosz Golaszewski:
 "There's one new driver (Apple SMC) and extensions to existing drivers
  for supporting new HW models. A lot of different impovements across
  drivers and in core GPIO code. Details on that are in the signed tag
  as usual.

  We managed to remove some of the legacy APIs. Arnd Bergmann started to
  work on making the legacy bits optional so that we may compile them
  only for older platforms that still really need them.

  Rob Herring has done a lot of work to convert legacy .txt dt-bindings
  for GPIO controllers to YAML. There are only a few left now in the
  GPIO tree.

  A big part of the commits in this PR concern the conversion of GPIO
  drivers to using the new line value setter callbacks. This conversion
  is now complete treewide (unless I've missed something) and once all
  the changes from different trees land in mainline, I'll send you
  another PR containing a commit dropping the legacy callbacks from the
  tree.

  As the quest to pay back technical dept never really ends, we're
  starting another set of interface conversions, this time it's about
  moving fields specific to only a handful of drivers using the
  gpio-mmio helper out of the core gpio_chip structure that every
  controller implements and uses. This cycle we introduce a new set of
  APIs and convert a few drivers under drivers/gpio/, next cycle we'll
  convert remaining modules treewide (in gpio, pinctrl and mfd trees)
  and finally remove the old interfaces and move the gpio-mmio fields
  into their own structure wrapping gpio_chip.

  One last change I should mention here is the rework of the sysfs
  interface. In 2016, we introduced the GPIO character device as the
  preferred alternative to the sysfs class under /sys/class/gpio. While
  it has seen a wide adoption with the help of its user-space
  counterpart - libgpiod - there are still users who prefer the
  simplicity of sysfs.

  As far as the GPIO subsystem is concerned, the problem is not the
  existince of the GPIO class as such but rather the fact that it
  exposes the global GPIO numbers to the user-space, stopping us from
  ever being able to remove the numberspace from the kernel. To that
  end, this release we introduced a parallel, limited sysfs interface
  that doesn't expose these numbers and only implements a subset of
  features that are relevant to the existing users. This is a result of
  several discussions over the course of last year and should allow us
  to remove the legacy part some time in the future.

  Summary:

  GPIOLIB core:
   - introduce a parallel, limited sysfs user ABI that doesn't expose
     the global GPIO numbers to user-space while maintaining backward
     compatibility with the end goal of it completely replacing the
     existing interface, allowing us to remove it
   - remove the legacy devm_gpio_request() routine which has no more
     users
   - start the process of allowing to compile-out the legacy parts of
     the GPIO core for users who don't need it by introducing a new
     Kconfig option: GPIOLIB_LEGACY
   - don't use global GPIO numbers in debugfs output from the core code
     (drivers still do it, the work is ongoing)
   - start the process of moving the fields specific to the gpio-mmio
     helper out of the core struct gpio_chip into their own structure
     that wraps it: create a new header with modern interfaces and
     convert several drivers to using it
   - remove the platform data structure associated with the gpio-mmio
     helper from the kernel after having converted all remaining users
     to generic device properties
   - remove legacy struct gpio definition as it has no more users

  New drivers:
   - add the GPIO driver for the Apple System Management Controller

  Driver improvements:
   - add support for new models to gpio-adp5585, gpio-tps65219 and
     gpio-pca953x
   - extend the interrupt support in gpio-loongson-64bit
   - allow to mark the simulated GPIO lines as invalid in gpio-sim
   - convert all remaining GPIO drivers to using the new GPIO value
     setter callbacks
   - convert gpio-rcar to using simple device power management ops
     callbacks
   - don't check if current direction of a line is output before setting
     the value in gpio-pisosr and ti-fpc202: the GPIO core already
     handles that
   - also drop unneeded GPIO range checks in drivers, the core already
     makes sure we're within bounds when calling driver callbacks
   - use dev_fwnode() where applicable across GPIO drivers
   - set line value in gpio-zynqmp-modepin and gpio-twl6040 when the
     user wants to change direction of the pin to output even though
     these drivers don't need to do anything else to actually set the
     direction, otherwise a call like gpiod_direction_output(d, 1) will
     not result in the line driver high
   - remove the reduntant call to pm_runtime_mark_last_busy() from
     gpio-arizona
   - use lock guards in gpio-cadence and gpio-mxc
   - check the return values of regmap functions in gpio-wcd934x and
     gpio-tps65912
   - use better regmap interfaces in gpio-wcove and gpio-pca953x
   - remove dummy GPIO chip callbacks from several drivers in cases
     where the GPIO core can already handle their absence
   - allow building gpio-palmas as a module

  Fixes:
   - use correct bit widths (according to the documentation) in
     gpio-virtio

  Device-tree bindings:
   - convert several of the legacy .txt documents for many different
     devices to YAML, improving automatic validation
   - create a "trivial" GPIO DT schema that covers a wide range of
     simple hardware that share a set of basic GPIO properties
   - document new HW: Apple MAC SMC GPIO block and adp5589 I/O expander
   - document a new model for pca95xx
   - add and/or remove properties in YAML documents for gpio-rockchip,
     fsl,qoriq-gpio, arm,pl061 and gpio-xilinx

  Misc:
   - some minor refactoring in several places, adding/removing forward
     declarations, moving defines to better places, constify the
     arguments in some functions, remove duplicate includes, etc.
   - documentation updates"

* tag 'gpio-updates-for-v6.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (202 commits)
  MIPS: alchemy: gpio: use new GPIO line value setter callbacks for the remaining chips
  gpiolib: enable CONFIG_GPIOLIB_LEGACY even for !GPIOLIB
  gpio: virtio: Fix config space reading.
  gpiolib: make legacy interfaces optional
  dt-bindings: gpio: rockchip: Allow use of a power-domain
  gpiolib: of: add forward declaration for struct device_node
  power: reset: macsmc-reboot: Add driver for rebooting via Apple SMC
  gpio: Add new gpio-macsmc driver for Apple Macs
  mfd: Add Apple Silicon System Management Controller
  soc: apple: rtkit: Make shmem_destroy optional
  dt-bindings: mfd: Add Apple Mac System Management Controller
  dt-bindings: power: reboot: Add Apple Mac SMC Reboot Controller
  dt-bindings: gpio: Add Apple Mac SMC GPIO block
  gpio: cadence: Remove duplicated include in gpio-cadence.c
  gpio: tps65219: Add support for TI TPS65214 PMIC
  gpio: tps65219: Update _IDX & _OFFSET macro prefix
  gpio: sysfs: Fix an end of loop test in gpiod_unexport()
  dt-bindings: gpio: Convert qca,ar7100-gpio to DT schema
  dt-bindings: gpio: Convert maxim,max3191x to DT schema
  dt-bindings: gpio: fsl,qoriq-gpio: Add missing mpc8xxx compatibles
  ...
2025-07-28 21:58:46 -07:00
..
dev-sync-probe.c gpio: introduce utilities for synchronous fake device creation 2025-02-24 14:57:39 +01:00
dev-sync-probe.h gpio: introduce utilities for synchronous fake device creation 2025-02-24 14:57:39 +01:00
gpio-74x164.c gpio: 74x164: use new line value setter callbacks 2025-03-10 11:52:12 +01:00
gpio-74xx-mmio.c gpio: 74xx-mmio: use new generic GPIO chip API 2025-07-07 09:43:53 +02:00
gpio-104-dio-48e.c
gpio-104-idi-48.c
gpio-104-idio-16.c
gpio-adnp.c gpio: adnp: use new line value setter callbacks 2025-03-10 11:54:34 +01:00
gpio-adp5520.c gpio: adp5520: use new line value setter callbacks 2025-03-10 11:52:12 +01:00
gpio-adp5585.c gpio: adp5585: support gpi events 2025-07-01 21:50:51 +01:00
gpio-aggregator.c gpio: aggregator: Fix leak in gpio_aggregator_parse() 2025-04-14 22:25:20 +02:00
gpio-altera-a10sr.c gpio: altera-a10sr: use new line value setter callbacks 2025-03-10 11:52:12 +01:00
gpio-altera.c gpio: altera: use new line value setter callbacks 2025-03-10 11:52:13 +01:00
gpio-amd-fch.c gpio: amd-fch: use new line value setter callbacks 2025-03-10 11:52:13 +01:00
gpio-amd8111.c gpio: amd8111: use new line value setter callbacks 2025-03-10 11:52:13 +01:00
gpio-amdpt.c
gpio-arizona.c gpio: arizona: Remove redundant pm_runtime_mark_last_busy() calls 2025-07-07 11:04:53 +02:00
gpio-aspeed-sgpio.c gpio: aspeed-sgpio: use new line value setter callbacks 2025-03-10 11:52:13 +01:00
gpio-aspeed.c gpio: aspeed: use new line value setter callbacks 2025-03-10 11:52:13 +01:00
gpio-ath79.c
gpio-bcm-kona.c gpio: bcm-kona: make irq_chip immutable 2025-05-15 17:02:22 +02:00
gpio-bd9571mwv.c gpio: bd9571mwv: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-bd71815.c gpio: bd71815: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-bd71828.c gpio: bd71828: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-blzp1600.c gpio: blzp1600: remove incorrect pf_match_ptr() 2025-05-05 15:02:58 +02:00
gpio-brcmstb.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-bt8xx.c gpio: bt8xx: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-cadence.c gpio: cadence: Remove duplicated include in gpio-cadence.c 2025-07-23 10:41:41 +02:00
gpio-cgbc.c gpio: cgbc: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-clps711x.c gpio: clps711x: use new generic GPIO chip API 2025-07-07 09:43:53 +02:00
gpio-creg-snps.c gpio: creg-snps: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-cros-ec.c gpio: cros-ec: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-crystalcove.c gpio: crystalcove: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-cs5535.c gpio: cs5535: use new line value setter callbacks 2025-03-17 08:27:41 +01:00
gpio-da9052.c gpio: da9052: use new line value setter callbacks 2025-03-17 08:27:42 +01:00
gpio-da9055.c gpio: da9055: use new line value setter callbacks 2025-03-17 08:27:42 +01:00
gpio-davinci.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-dln2.c gpio: dln2: use new line value setter callbacks 2025-04-16 17:52:42 +02:00
gpio-ds4520.c gpio: ds4520: don't check the 'ngpios' property in the driver 2025-04-17 13:58:55 +02:00
gpio-dwapb.c
gpio-eic-sprd.c gpio: eic-sprd: use new line value setter callbacks 2025-04-16 17:52:42 +02:00
gpio-elkhartlake.c
gpio-em.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-en7523.c gpio: en7523: use new generic GPIO chip API 2025-07-07 09:43:53 +02:00
gpio-ep93xx.c
gpio-exar.c gpio: exar: use new line value setter callbacks 2025-04-16 17:52:43 +02:00
gpio-f7188x.c gpio: f7188: use new line value setter callbacks 2025-04-17 13:58:54 +02:00
gpio-ftgpio010.c
gpio-fxl6408.c
gpio-ge.c
gpio-gpio-mm.c
gpio-graniterapids.c gpio: graniterapids: use new line value setter callbacks 2025-04-17 13:58:54 +02:00
gpio-grgpio.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-gw-pld.c gpio: gw-pld: use new line value setter callbacks 2025-04-17 13:58:54 +02:00
gpio-hisi.c
gpio-hlwd.c
gpio-htc-egpio.c gpio: htc-egpio: use new line value setter callbacks 2025-04-17 13:58:54 +02:00
gpio-i8255.c
gpio-i8255.h
gpio-ich.c gpio: ich: use new line value setter callbacks 2025-04-17 13:58:55 +02:00
gpio-idio-16.c
gpio-idio-16.h
gpio-idt3243x.c gpio: idt3243x: Switch to irq_find_mapping() 2025-05-16 21:06:12 +02:00
gpio-imx-scu.c gpio: imx-scu: use new line value setter callbacks 2025-04-30 10:27:58 +02:00
gpio-it87.c gpio: it87: use new line value setter callbacks 2025-04-30 10:27:58 +02:00
gpio-ixp4xx.c
gpio-janz-ttl.c gpio: janz-ttl: use new line value setter callbacks 2025-04-30 10:27:58 +02:00
gpio-kempld.c gpio: kempld: use new line value setter callbacks 2025-04-30 10:27:58 +02:00
gpio-latch.c gpio: latch: use value returning setters 2025-02-26 11:17:40 +01:00
gpio-ljca.c gpio: ljca: use new line value setter callbacks 2025-04-30 10:27:58 +02:00
gpio-logicvc.c gpio: logicvc: use new line value setter callbacks 2025-04-30 10:27:58 +02:00
gpio-loongson-64bit.c gpio updates for v6.17-rc1 2025-07-28 21:58:46 -07:00
gpio-loongson.c gpio: loongson: use new line value setter callbacks 2025-04-30 10:27:59 +02:00
gpio-loongson1.c
gpio-lp873x.c gpio: lp873x: use new GPIO line value setter callbacks 2025-05-13 15:15:34 +02:00
gpio-lp3943.c gpio: lp3943: use new line value setter callbacks 2025-04-30 10:27:59 +02:00
gpio-lp87565.c gpio: lp87565: use new GPIO line value setter callbacks 2025-05-13 15:15:34 +02:00
gpio-lpc18xx.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-lpc32xx.c gpio: lpc32xx: use new GPIO line value setter callbacks 2025-05-13 15:15:34 +02:00
gpio-macsmc.c gpio: Add new gpio-macsmc driver for Apple Macs 2025-07-24 09:47:33 +01:00
gpio-madera.c gpio: madera: use new GPIO line value setter callbacks 2025-05-13 15:15:34 +02:00
gpio-max730x.c gpio: max730x: use new GPIO line value setter callbacks 2025-05-13 15:15:34 +02:00
gpio-max732x.c gpio: max732x: use new GPIO line value setter callbacks 2025-05-13 15:15:35 +02:00
gpio-max3191x.c gpio: max3191x: remove unused callbacks 2025-05-13 15:15:34 +02:00
gpio-max7300.c
gpio-max7301.c
gpio-max77620.c gpio: max77620: use new GPIO line value setter callbacks 2025-05-13 15:15:35 +02:00
gpio-max77650.c gpio: max77650: use value returning setters 2025-02-26 11:17:40 +01:00
gpio-max77759.c gpio: max77759: Add Maxim MAX77759 gpio driver 2025-05-09 15:23:01 +01:00
gpio-mb86s7x.c gpio: mb86s7x: use new GPIO line value setter callbacks 2025-05-13 15:15:35 +02:00
gpio-mc33880.c gpio: mc33880: use new GPIO line value setter callbacks 2025-05-13 15:15:35 +02:00
gpio-menz127.c
gpio-merrifield.c
gpio-ml-ioh.c gpio: ml-ioh: use new GPIO line value setter callbacks 2025-05-13 15:15:35 +02:00
gpio-mlxbf.c
gpio-mlxbf2.c
gpio-mlxbf3.c gpio: mlxbf3: only get IRQ for device instance 0 2025-06-18 12:19:39 +02:00
gpio-mm-lantiq.c gpio: mm-lantiq: use new GPIO line value setter callbacks 2025-06-17 11:09:30 +02:00
gpio-mmio.c Immutable branch between GPIO, MFD and ARM-SoC for v6.17-rc1 2025-07-07 09:42:37 +02:00
gpio-mockup.c gpio: mockup: use value returning setters 2025-02-26 11:17:39 +01:00
gpio-moxtet.c gpio: moxtet: use new GPIO line value setter callbacks 2025-06-17 11:09:30 +02:00
gpio-mpc8xxx.c gpio updates for v6.16-rc1 2025-05-27 15:22:01 -07:00
gpio-mpc5200.c gpio: mpc5200: use new GPIO line value setter callbacks 2025-06-17 11:09:30 +02:00
gpio-mpfs.c gpio: mpfs: use new GPIO line value setter callbacks 2025-06-17 11:09:30 +02:00
gpio-mpsse.c gpio: mpsse: use new GPIO line value setter callbacks 2025-06-17 11:09:30 +02:00
gpio-msc313.c gpio: msc313: use new GPIO line value setter callbacks 2025-06-17 11:09:30 +02:00
gpio-mt7621.c
gpio-mvebu.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-mxc.c gpio: mxc: use new generic GPIO chip API 2025-07-07 09:43:53 +02:00
gpio-mxs.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-nomadik.c gpio: nomadik: use new GPIO line value setter callbacks 2025-06-17 11:09:31 +02:00
gpio-npcm-sgpio.c gpio: npcm-sgpio: don't use legacy GPIO chip setters 2025-06-19 09:13:44 +02:00
gpio-octeon.c gpio: octeon: use new GPIO line value setter callbacks 2025-06-17 11:09:31 +02:00
gpio-omap.c gpio: omap: use new GPIO line value setter callbacks 2025-06-17 11:09:31 +02:00
gpio-palmas.c gpio: palmas: Allow building as a module 2025-07-03 10:37:04 +02:00
gpio-pca953x.c gpio updates for v6.17-rc1 2025-07-28 21:58:46 -07:00
gpio-pca9570.c gpio: pca9570: use new GPIO line value setter callbacks 2025-06-23 09:25:45 +02:00
gpio-pcf857x.c gpio: pcf857x: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-pch.c gpio: pch: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-pci-idio-16.c
gpio-pcie-idio-24.c
gpio-pisosr.c gpio: pisosr: remove unneeded direction_output() callback 2025-07-02 11:05:09 +02:00
gpio-pl061.c gpio: pl061: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-pmic-eic-sprd.c gpio: pmic-eic-sprd: drop unneeded .set() callback 2025-06-23 09:25:46 +02:00
gpio-pxa.c gpio: pxa: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-raspberrypi-exp.c gpio: raspberrypi-exp: use new GPIO line value setter callbacks 2025-06-16 09:52:21 +02:00
gpio-rc5t583.c gpio: rc5t583: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-rcar.c gpio: rcar: Convert to DEFINE_SIMPLE_DEV_PM_OPS() 2025-07-11 12:21:03 +02:00
gpio-rda.c
gpio-rdc321x.c gpio: rdc321x: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-realtek-otto.c
gpio-reg.c gpio: reg: use new GPIO line value setter callbacks 2025-07-07 09:21:52 +02:00
gpio-regmap.c gpio: regmap: use value returning setters 2025-02-26 11:17:39 +01:00
gpio-rockchip.c gpio: rockchip: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-rtd.c gpio: rtd: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-sa1100.c gpio: sa1100: use new GPIO line value setter callbacks 2025-06-23 09:25:46 +02:00
gpio-sama5d2-piobu.c gpio: sama5d2-piobu: use new GPIO line value setter callbacks 2025-07-02 11:05:37 +02:00
gpio-sch.c gpio: sch: use new GPIO line value setter callbacks 2025-07-02 11:05:37 +02:00
gpio-sch311x.c gpio: sch311x: use new GPIO line value setter callbacks 2025-07-02 11:05:37 +02:00
gpio-sifive.c
gpio-sim.c gpio: sim: allow to mark simulated lines as invalid 2025-07-09 16:48:49 +02:00
gpio-siox.c gpio: siox: use new GPIO line value setter callbacks 2025-07-02 11:05:37 +02:00
gpio-sl28cpld.c
gpio-sloppy-logic-analyzer.c gpio: sloppy-logic-analyzer: Fully open-code compatible for grepping 2025-06-16 09:45:14 +02:00
gpio-sodaville.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-spacemit-k1.c gpio: spacemit: Add missing MODULE_DEVICE_TABLE 2025-06-16 09:43:50 +02:00
gpio-spear-spics.c gpio: spear-spics: use new GPIO line value setter callbacks 2025-07-02 11:05:37 +02:00
gpio-sprd.c gpio: sprd: use new GPIO line value setter callbacks 2025-07-02 11:05:38 +02:00
gpio-stmpe.c gpio: stmpe: use new GPIO line value setter callbacks 2025-07-02 11:05:38 +02:00
gpio-stp-xway.c gpio: stp-xway: use new GPIO line value setter callbacks 2025-07-02 11:05:38 +02:00
gpio-syscon.c gpio: syscon: use new GPIO line value setter callbacks 2025-07-02 11:05:38 +02:00
gpio-tangier.c gpio: tangier: use new GPIO line value setter callbacks 2025-07-02 11:05:38 +02:00
gpio-tangier.h
gpio-tb10x.c gpio: Use dev_fwnode() where applicable across drivers 2025-06-16 09:42:24 +02:00
gpio-tc3589x.c gpio: tc3589x: use new GPIO line value setter callbacks 2025-07-02 11:05:38 +02:00
gpio-tegra.c gpio: tegra: use new GPIO line value setter callbacks 2025-07-07 09:45:29 +02:00
gpio-tegra186.c gpio: tegra186: use new GPIO line value setter callbacks 2025-07-07 09:45:29 +02:00
gpio-thunderx.c gpio: thunderx: use new GPIO line value setter callbacks 2025-07-07 09:45:30 +02:00
gpio-timberdale.c gpio: timberdale: use new GPIO line value setter callbacks 2025-07-07 09:45:30 +02:00
gpio-tn48m.c
gpio-tpic2810.c gpio: tpic2810: use new GPIO line value setter callbacks 2025-07-07 09:45:30 +02:00
gpio-tps6586x.c gpio: tps6586x: use new GPIO line value setter callbacks 2025-07-07 09:45:30 +02:00
gpio-tps65086.c gpio: tps65086: use new GPIO line value setter callbacks 2025-07-07 09:45:30 +02:00
gpio-tps65218.c gpio: tps65218: use new GPIO line value setter callbacks 2025-07-07 09:45:30 +02:00
gpio-tps65219.c gpio: tps65219: Add support for TI TPS65214 PMIC 2025-07-23 10:27:30 +02:00
gpio-tps65910.c gpio: tps65910: use new GPIO line value setter callbacks 2025-07-13 10:45:04 +02:00
gpio-tps65912.c gpio: tps65912: use new GPIO line value setter callbacks 2025-07-13 10:45:04 +02:00
gpio-tps68470.c gpio: tps68470: use new GPIO line value setter callbacks 2025-07-13 10:45:04 +02:00
gpio-tqmx86.c gpio: tqmx86: use new GPIO line value setter callbacks 2025-07-13 10:45:04 +02:00
gpio-ts4800.c
gpio-ts4900.c gpio: ts4900: use new GPIO line value setter callbacks 2025-07-13 10:45:04 +02:00
gpio-ts5500.c gpio: ts5500: use new GPIO line value setter callbacks 2025-06-23 09:17:44 +02:00
gpio-twl4030.c gpio: twl4030: use new GPIO line value setter callbacks 2025-07-13 10:45:04 +02:00
gpio-twl6040.c gpio: twl6040: set line value in .direction_out() 2025-07-13 10:45:04 +02:00
gpio-uniphier.c gpio: uniphier: use new GPIO line value setter callbacks 2025-07-13 10:45:04 +02:00
gpio-vf610.c gpio: vf610: Allow building as a module 2025-04-23 13:23:18 +02:00
gpio-viperboard.c gpio: viperboard: Unlock on error in vprbrd_gpiob_direction_output() 2025-07-16 11:02:06 +02:00
gpio-virtio.c gpio: virtio: Fix config space reading. 2025-07-25 10:09:21 +02:00
gpio-virtuser.c gpio: virtuser: use gpiod_multi_set_value_cansleep() 2025-06-16 09:29:42 +02:00
gpio-visconti.c
gpio-vx855.c gpio: vx855: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-wcd934x.c gpio: wcd934x: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-wcove.c gpio: wcove: use new GPIO line value setter callbacks 2025-07-16 10:26:08 +02:00
gpio-winbond.c gpio: winbond: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-wm831x.c gpio: wm831x: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-wm8350.c gpio: wm8350: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-wm8994.c gpio: wm8994: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-ws16c48.c
gpio-xgene-sb.c gpio: xgene-sb: Make irq_chip immutable 2025-05-15 17:02:22 +02:00
gpio-xgene.c gpio: xgene: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-xgs-iproc.c
gpio-xilinx.c gpio: xilinx: convert set_multiple() to the new API as well 2025-07-18 09:35:58 +02:00
gpio-xlp.c gpio: xlp: use new GPIO line value setter callbacks 2025-07-15 09:54:41 +02:00
gpio-xra1403.c gpio: xra1403: use new GPIO line value setter callbacks 2025-07-15 09:54:42 +02:00
gpio-xtensa.c gpio: xtensa: use new GPIO line value setter callbacks 2025-07-15 09:54:42 +02:00
gpio-zevio.c gpio: zevio: use new GPIO line value setter callbacks 2025-07-15 09:54:42 +02:00
gpio-zynq.c gpio: zynq: use new GPIO line value setter callbacks 2025-07-15 09:54:42 +02:00
gpio-zynqmp-modepin.c gpio: zynqmp-modepin: set line value in .direction_output() 2025-07-15 09:54:42 +02:00
gpiolib-acpi-core.c gpiolib: acpi: Move quirks to a separate file 2025-05-21 12:25:24 +03:00
gpiolib-acpi-quirks.c gpiolib: acpi: Add a quirk for Acer Nitro V15 2025-06-09 23:09:24 +03:00
gpiolib-acpi.h gpiolib: acpi: Add acpi_gpio_need_run_edge_events_on_boot() getter 2025-05-21 12:25:24 +03:00
gpiolib-cdev.c gpiolib: don't allow setting values on input lines 2025-04-07 09:00:48 +02:00
gpiolib-cdev.h
gpiolib-devres.c gpiolib: devres: release GPIOs in devm_gpiod_put_array() 2025-07-17 09:22:46 +02:00
gpiolib-legacy.c gpiolib: Remove unused devm_gpio_request() 2025-06-10 10:06:41 +02:00
gpiolib-of.c gpio: of: initialize local variable passed to the .of_xlate() callback 2025-07-09 16:14:11 +02:00
gpiolib-of.h gpiolib: of: add forward declaration for struct device_node 2025-07-24 11:53:29 +02:00
gpiolib-swnode.c
gpiolib-swnode.h
gpiolib-sysfs.c gpio: sysfs: Fix an end of loop test in gpiod_unexport() 2025-07-19 18:06:47 +02:00
gpiolib-sysfs.h
gpiolib.c gpio updates for v6.17-rc1 2025-07-28 21:58:46 -07:00
gpiolib.h gpio: sysfs: remove the mockdev pointer from struct gpio_device 2025-06-20 09:29:15 +02:00
Kconfig gpiolib: enable CONFIG_GPIOLIB_LEGACY even for !GPIOLIB 2025-07-27 10:27:04 +02:00
Makefile gpiolib: make legacy interfaces optional 2025-07-24 16:24:49 +02:00
TODO gpio: TODO: remove the task for the sysfs rework 2025-07-16 10:27:08 +02:00