linux/Documentation/devicetree/bindings
Linus Torvalds 6a497e9d58 This is the bulk of GPIO changes for the v4.9 series:
Subsystem improvements:
 
 - Do away with the last users of the obsolete Kconfig options
   ARCH_REQUIRE_GPIOLIB and ARCH_WANT_OPTIONAL_GPIOLIB (the latter
   always sounded like an item on a wishlist to Santa Claus to
   me). We can now select GPIOLIB and be done with it, for all
   archs. After some struggle it even work on UM. Not that it has
   GPIO, but if it wants to, it can select the library.
 
 - Continued efforts to make drivers properly either tristate or
   bool.
 
 - Introduce a warning for drivers assigning default triggers to
   their irqchip lines when probed from device tree, so we find and
   fix these ambigous drivers. It is agreed that in the OF config
   path, the device tree defines trigger characteristics.
 
 - The same warning, mutatis mutandis, for ACPI-probed GPIO
   irqchips.
 
 - We introduce the ability to mark certain IRQ lines as "unusable"
   as they can be taken by BIOS/firmware, unrouted in silicon and
   generally nasty if you use them, and such things. This is
   put to good use in the STMPE driver and also in the Cherryview
   pin control driver.
 
 - A new "mockup" virtual GPIO device that can be used for testing.
   The plan is to add unit tests under tools/* for exercising this
   device and verify that the kernel code paths are working as they
   should.
 
 - Make memory-mapped I/O-drivers depend on HAS_IOMEM. This was
   implicit all the time, but when people started building UM
   with allyesconfig or allmodconfig it exploded in their face.
 
 - Move some stray bits of device tree and ACPI HW description
   callbacks down into their respective implementation silo. These
   were causing issues when compiling on !HAS_IOMEM as well, so
   now eventually UM compiles the GPIOLIB library if it wants to.
 
 New drivers:
 
 - New driver for the Aspeed GPIO front-end companion to the
   pin controller merged through the pin control tree.
 
 - New driver for the LP873x PMIC GPIO portions.
 
 - New driver for Technologic Systems' I2C FPGA GPIO such as
   TS4900, TS-7970, TS-7990 and TS-4100.
 
 - New driver for the Broadcom BCM63xx series including BCM6338
   and BCM6345.
 
 - New driver for the Intel WhiskeyCove PMIC GPIO.
 
 - New driver for the Allwinner AXP209 PMIC GPIO portions.
 
 - New driver for Diamond Systems 48 line GPIO-MM, another of
   these port-mapped I/O expansion cards.
 
 - Support the STMicroelectronics STMPE1600 variant in the STMPE
   driver.
 
 Driver improvements:
 
 - The STMPE driver now supports rising/falling edge detection
   properly for IRQs.
 
 - The PCA954x will now fetch and enable its VCC regulator properly.
 
 - Major rework of the PCA953x driver with the goal of eventually
   switching it over to use regmap and thus modernize it even more.
 
 - Switch the IOP driver to use the generic MMIO GPIO library.
 
 - Move the ages old HTC EGPIO (extended GPIO) GPIO expander driver
   over to this subsystem from MFD, achieveing some separation of
   concerns.
 -----BEGIN PGP SIGNATURE-----
 
 iQIcBAABAgAGBQJX9OvDAAoJEEEQszewGV1zsPQP/3VLy1fNIpMF0DDyq5tA/GNv
 sinnaPgMtt+qBrM2sbJcTVwV9xtHrs12CC3+2lAhBCIEm4YfHbXvaUMNE+aKJzk4
 ZM7/rb8WMUxjQqzDKStdETsQGo6fxh0qU81OEQNbX9alir20jik9DvTufcs6xCgx
 sqh8KsNGO4Y6tiuKZ6mTZvIjVhMwiTm0NBSDKhdim0DdsOcuxyh6xVOj/0LB2Ei6
 g75X1w++wjh0ryY3bzaeWkQSlXDC6eEKeez7VaEkSUyrxH86buomy0+aP0fqs7vY
 LRZzn/TC97YLT6hslS/OhB7uXrDIY2POSwO/SvusJcveGP7WPGyGr5mDtA4ATRWI
 ios0DBWl629kHfhAMzg3kPJS8LfjCerapvtbdAgqvhH+Vb5IPFx45vypDkR2WtJ7
 bNAySIRMQSHZvJSCvYzjqh8AbWdE4i4k70tFXRMOpWeKIvRVI1cDvLD6cLn3hATM
 IPTytM6i2xqnzcq7mK7EJ18afcR0mv1jHgGAv4M0RMkyJ2IrURvFyZIvUB2MTyuL
 PEBh1ZvTs+MO50eeFwzltY91eagkzgWB0f6sm3l7I7bL2oxE2f/WVcVL9jWbgwpF
 otjFO27u0/6rIulfLUQzDo3gbOq7UaN0VTW4E9CYbOtFtNzCxjFIKTv0IJhTu4TT
 OSur7oFpzAMOGYlpYP8j
 =ABbi
 -----END PGP SIGNATURE-----

Merge tag 'gpio-v4.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio

Pull GPIO updates from Linus Walleij:
 "This is the bulk of GPIO changes for the v4.9 series:

  Subsystem improvements:

   - do away with the last users of the obsolete Kconfig options
     ARCH_REQUIRE_GPIOLIB and ARCH_WANT_OPTIONAL_GPIOLIB (the latter
     always sounded like an item on a wishlist to Santa Claus to me). We
     can now select GPIOLIB and be done with it, for all archs. After
     some struggle it even work on UM. Not that it has GPIO, but if it
     wants to, it can select the library.

   - continued efforts to make drivers properly either tristate or bool.

   - introduce a warning for drivers assigning default triggers to their
     irqchip lines when probed from device tree, so we find and fix
     these ambigous drivers. It is agreed that in the OF config path,
     the device tree defines trigger characteristics.

   - the same warning, mutatis mutandis, for ACPI-probed GPIO irqchips.

   - we introduce the ability to mark certain IRQ lines as "unusable" as
     they can be taken by BIOS/firmware, unrouted in silicon and
     generally nasty if you use them, and such things. This is put to
     good use in the STMPE driver and also in the Cherryview pin control
     driver.

   - a new "mockup" virtual GPIO device that can be used for testing.
     The plan is to add unit tests under tools/* for exercising this
     device and verify that the kernel code paths are working as they
     should.

   - make memory-mapped I/O-drivers depend on HAS_IOMEM. This was
     implicit all the time, but when people started building UM with
     allyesconfig or allmodconfig it exploded in their face.

   - move some stray bits of device tree and ACPI HW description
     callbacks down into their respective implementation silo. These
     were causing issues when compiling on !HAS_IOMEM as well, so now
     eventually UM compiles the GPIOLIB library if it wants to.

  New drivers:

   - new driver for the Aspeed GPIO front-end companion to the pin
     controller merged through the pin control tree.

   - new driver for the LP873x PMIC GPIO portions.

   - new driver for Technologic Systems' I2C FPGA GPIO such as TS4900,
     TS-7970, TS-7990 and TS-4100.

   - new driver for the Broadcom BCM63xx series including BCM6338 and
     BCM6345.

   - new driver for the Intel WhiskeyCove PMIC GPIO.

   - new driver for the Allwinner AXP209 PMIC GPIO portions.

   - new driver for Diamond Systems 48 line GPIO-MM, another of these
     port-mapped I/O expansion cards.

   - support the STMicroelectronics STMPE1600 variant in the STMPE
     driver.

  Driver improvements:

   - the STMPE driver now supports rising/falling edge detection
     properly for IRQs.

   - the PCA954x will now fetch and enable its VCC regulator properly.

   - major rework of the PCA953x driver with the goal of eventually
     switching it over to use regmap and thus modernize it even more.

   - switch the IOP driver to use the generic MMIO GPIO library.

   - move the ages old HTC EGPIO (extended GPIO) GPIO expander driver
     over to this subsystem from MFD, achieveing some separation of
     concerns"

* tag 'gpio-v4.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio: (81 commits)
  gpio: add missing static inline
  gpio: OF: localize some gpiochip init functions
  gpio: acpi: separation of concerns
  gpio: OF: separation of concerns
  gpio: make memory-mapped drivers depend on HAS_IOMEM
  gpio: stmpe: use BIT() macro
  gpio: stmpe: forbid unused lines to be mapped as IRQs
  mfd/gpio: Move HTC GPIO driver to GPIO subsystem
  gpio: MAINTAINERS: Add an entry for GPIO mockup driver
  gpio/mockup: add virtual gpio device
  gpio: Added zynq specific check for special pins on bank zero
  gpio: axp209: Implement get_direction
  gpio: aspeed: remove redundant return value check
  gpio: loongson1: remove redundant return value check
  ARM: omap2: fix missing include
  gpio: tc3589x: fix up complaints on unsigned
  gpio: tc3589x: add .get_direction() and small cleanup
  gpio: f7188x: use gpiochip_get_data instead of container_of
  gpio: tps65218: use devm_gpiochip_add_data() for gpio registration
  gpio: aspeed: fix return value check in aspeed_gpio_probe()
  ...
2016-10-05 11:49:09 -07:00
..
arc
arm * Altera Arria10 enablement of NAND, DMA, USB, QSPI and SD-MMC FIFO 2016-10-04 12:06:26 -07:00
ata ARM: 64-bit DT updates for v4.8 2016-08-01 18:47:01 -04:00
board
bus dt-bindings: bus: Add documentation for Tegra210 ACONNECT 2016-07-01 16:35:43 +02:00
c6x
clock clk: at91: Add sama5d4 sckc support 2016-09-20 17:02:58 -07:00
cpufreq
cris
crypto
devfreq Documentation: bindings: add dt documentation for rk3399 dmc 2016-09-06 13:25:36 +09:00
display Merge tag 'drm-for-v4.8' of git://people.freedesktop.org/~airlied/linux 2016-08-01 21:44:08 -04:00
dma ARM: DT updates for v4.8 2016-08-01 18:37:45 -04:00
edac
eeprom
extcon extcon: Add support for qcom SPMI PMIC USB id detection hardware 2016-09-13 11:26:26 +09:00
firmware dt/bindings: firmware: Add Qualcomm SCM binding 2016-06-11 22:57:14 -05:00
fpga
fuse
goldfish
gpio gpio: rcar: Add r8a7796 (R-Car M3-W) support 2016-09-08 01:15:46 +02:00
gpu
h8300
hsi
hwlock
hwmon hwmon: (max6650) Add initial rpm target devicetree documentation 2016-09-08 21:34:17 -07:00
i2c DeviceTree update for 4.8: 2016-07-30 11:32:01 -07:00
iio iio: adc: rockchip_saradc: reset saradc controller before programming it 2016-08-23 19:05:03 +01:00
input Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2016-09-23 16:34:24 -07:00
interrupt-controller irqchip core changes for v4.9 2016-09-22 22:49:52 +02:00
iommu Merge branches 'x86/amd', 'x86/vt-d', 'arm/exynos', 'arm/mediatek', 'arm/msm', 'arm/rockchip', 'arm/smmu' and 'core' into next 2016-07-26 16:02:37 +02:00
leds leds: centralize definition of "default-state" property 2016-08-19 21:05:39 +02:00
lpddr2
mailbox dt-bindings: add bindings documentation for PDC driver. 2016-07-28 09:34:46 +05:30
media ARM: SoC driver updates for v4.8 2016-08-01 18:36:01 -04:00
memory-controllers EDAC, fsl_ddr: Add support for little endian 2016-09-01 10:28:02 +02:00
metag
mfd Documentation: dt: Add stmpe1600 compatible string to STMPE MFD 2016-08-10 09:24:57 +01:00
mips MIPS: devicetree: fix cpu interrupt controller node-names 2016-05-28 12:35:12 +02:00
misc ramoops: use DT reserved-memory bindings 2016-08-05 11:21:36 -07:00
mmc dt: sdhci-of-arasan: Add device tree option xlnx, fails-without-test-cd 2016-09-26 21:31:33 +02:00
mtd mtd: spi-nor: Bindings for Cadence Quad SPI Flash Controller driver 2016-07-18 09:58:16 -07:00
net net: phy: Add Edge-rate driver for Microsemi PHYs. 2016-10-04 00:47:30 -04:00
nios2
nvmem nvmem: rockchip-efuse: update compatible strings for Rockchip efuse 2016-09-02 17:22:51 +02:00
opp
pci PCI changes for the v4.8 merge window: 2016-08-02 17:12:29 -04:00
phy Merge branch 'next' into resolution 2016-09-15 16:45:20 +05:30
pinctrl pinctrl: st: Remove obsolete platforms from pinctrl-st dt doc 2016-09-15 15:55:26 +02:00
power ARM: DT updates for v4.8 2016-08-01 18:37:45 -04:00
power_supply power: axp20x_usb: Add support for usb power-supply on axp22x pmics 2016-06-10 03:31:27 +02:00
powerpc EDAC, fsl_ddr: Add support for little endian 2016-09-01 10:28:02 +02:00
pps
pwm pwm: Changes for v4.8-rc1 2016-08-06 00:01:33 -04:00
regmap Fix spelling errors in Documentation/devicetree 2016-07-22 14:54:05 -05:00
regulator Merge remote-tracking branches 'regulator/topic/of', 'regulator/topic/pv88080', 'regulator/topic/rk808', 'regulator/topic/set-voltage' and 'regulator/topic/tps65218' into regulator-next 2016-09-30 09:13:58 -07:00
remoteproc dt-binding: remoteproc: Introduce Hexagon loader binding 2016-06-27 08:56:45 -07:00
reserved-memory ramoops: use DT reserved-memory bindings 2016-08-05 11:21:36 -07:00
reset ARM: SoC driver updates for v4.8 2016-08-01 18:36:01 -04:00
rng ARM: 64-bit DT updates for v4.8 2016-08-01 18:47:01 -04:00
rtc powerpc: Various typo fixes 2016-06-14 13:58:26 +10:00
scsi
security/tpm tpm/tpm_tis_spi: Add support for spi phy 2016-06-25 17:28:57 +03:00
serial Documentation: dt: serial: Add TX FIFO threshold parameter 2016-09-27 12:55:49 +02:00
serio
soc ARM: DT updates for v4.8 2016-08-01 18:37:45 -04:00
sound ASoC: omap-mcpdm: Drop pdmclk clock handling 2016-08-18 16:00:25 +01:00
spi Merge remote-tracking branches 'spi/topic/fsl-espi', 'spi/topic/imx', 'spi/topic/jcore', 'spi/topic/loopback' and 'spi/topic/meson' into spi-next 2016-09-30 09:14:10 -07:00
spmi
sram
staging
thermal thermal: trivial: fix the typo 2016-08-19 21:33:37 +08:00
timer clocksource/drivers/oxnas: Add OX820 compatible 2016-09-12 07:28:46 +02:00
ufs ufs: add TC G210 platform driver 2016-07-12 23:16:31 -04:00
usb Most of them are refine patches, only new feature is 2016-09-15 10:38:30 +02:00
video/bridge devicetree: Add ANX7814 SlimPort transmitter binding 2016-05-12 11:32:14 +02:00
virtio
w1
watchdog watchdog: renesas-wdt: Add support for the r8a7796 wdt 2016-07-25 11:23:29 +02:00
x86
xillybus
ABI.txt
chosen.txt
common-properties.txt
graph.txt
ipmi.txt
marvell.txt
numa.txt
property-units.txt
resource-names.txt
sparc_sun_oracle_rng.txt
submitting-patches.txt
unittest.txt
vendor-prefixes.txt Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2016-08-05 23:24:15 -04:00
xilinx.txt