linux/Documentation/devicetree/bindings
Greg Kroah-Hartman 552edf8d79 Second set of iio new device support, features and cleanups for the 4.9 cycle.
New device support
 * ad8801 dac
   - new driver supporting ad8801 and ad8803 DACs.
 * adc12138
   - new driver supporting TI adc12130/adc12132 and adc12138 ADCs.
 * ltc2485 adc
   - new driver
 * mxc6255
   - add support for the mxc6225 part name and fixup the ID check so it works.
 * vz89x VOC sensor
   - add support for the vz89te part which drops the voc_short channel and adds
     CRCs compared to other supported parts.
 
 New features
 * core
   - immutable triggers.  These effectively grant exclusive control over a
     trigger. The typical usecase is a device representing an analog part
     (perhaps a MUX) that needs to control the sampling of a downstream
     ADC.
   - resource managed trigger registration and triggered_buffer_init.
   - iio_push_event now protected against case of the event interface
     registration not having yet occured.  Only matters if an interrupt
     can occur during this window - might happen on shared interrupt lines.
   - helper to let a driver query if the trigger it is using is provided by
     itself (using the convention of both device and trigger having the same
     parent).
 * tools
   - iio-utils. Used channel modifier scaling in preference to generic scaling
     when both exist.
 * at91-adc
   - Add support for touchscreen switches closure time needed by some newer
     parts.
 * stx104
   - support the ADC channels on this ADC/DAC board. As these are the primary
     feature of the board also move the driver to the iio/adc directory.
 * sx9500
   - device tree bindings.
 
 Cleanups / Fixes
 * ad5755
   - fix an off-by-one on devnr limit check (introduced earlier this cycle)
 * ad7266
   - drop NULL check on devm_regulator_get_optional as it can't return NULL.
 * ak8974
   - avoid an unused functional warning due to rework in PM core code.
   - remove .owner field setting as done by i2c_core.
 * ina2xx
   - clear out a left over debug field from chip global data.
 * hid-sensors
   - avoid an unused functional warning due to rework in PM core code.
 * maxim-thermocouple
   - fix non static symbol warnings.
 * ms5611
   - fetch and enable regulators unconditionally when they aren't optional.
 * sca3000
   - whitespace cleanup.
 * st_sensors
   - fetch and enable regulators unconditionally rather than having them
     supported as optional regulators (missunderstanding on my part amongst
     others a while back)
   - followup to previous patch fixes error checking on the regulators.
   - mark symbols static where possible.
   - use the 'is it my trigger' help function.  This prevents the odd case
     of another device triggering from the st-sensors trigger whilst the
     st-sensors trigger is itself not using it but rather using say an hrtimer.
 * ti-ads1015
   - add missing of_node_put.
 * vz89x
   - rework to all support of new devices.
   - prevent reading of a corrupted buffer.
   - fixup a return value of 0/1 in a bool returning function.
 
 Address updates
 - Vlad Dogaru email address change.
 -----BEGIN PGP SIGNATURE-----
 
 iQIuBAABCAAYBQJX1wW9ERxqaWMyM0BrZXJuZWwub3JnAAoJEFSFNJnE9BaII9UP
 /jXkXtaL62pvipMuEujmpR7j/A+GhmSWHhnbJ9XXeGZStGMUummTyaM+6WZoCKUH
 bMtZh/ETsn+FI7mD7P/FtwHauoxSmndcaAfB6cDKQMVakbXbz4VHrim256cY3gvq
 dzF5nYX+wDue6D7k55VPrtV1isBfipeCXKBtzBlAXaVE2FK2qKP+PIlAln8Ql5/l
 b5B3pvqu0YVED4t2MzyVWcVidPOEh9GgwHu7Ba+kjVi6zuB4w+r5ZreIObb5IR54
 FDcEwL6vV9AlmX15Pc18NO+50bZ8TvgT4y7ISqaOwszaIEoDAc0hXT7TdUOscmtt
 LIbhzHVMVkPSjxvtpz2ui8GfqzhxLi3ZzfNHRegOqH4b2Cpoh4zdwn7nCyJEHZV5
 simAL00FGjzp6B4Zp+Ly6ygKzpF3iXZce0Qjlr/ge+ioNIrfuK10sdLw8NZA5GUB
 JcFYijcFLUb0Cu/KjZ7njlfdAN9Tt94xzpnllM8+j4M50Nhbw05YNhIxB7RxmeSH
 Y44/oBLG51SgtlIg5Z4rULRAcOC5dty73Inb0n4lbN/pjgIcnh+EYtPeI2fA8vyB
 XYqr4xx+A3ZX1yKpYLYO+JYtVsVq9RGYdb501uBhEE3/GWEpxZvbyqHnPwwfM+Pf
 ZNuBceBxM3yyi4Z/lKkZnQbaF/1fFoG7FO1n6iRpb8Ci
 =V1xL
 -----END PGP SIGNATURE-----

Merge tag 'iio-for-4.9b' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next

Jonathan writes:

Second set of iio new device support, features and cleanups for the 4.9 cycle.

New device support
* ad8801 dac
  - new driver supporting ad8801 and ad8803 DACs.
* adc12138
  - new driver supporting TI adc12130/adc12132 and adc12138 ADCs.
* ltc2485 adc
  - new driver
* mxc6255
  - add support for the mxc6225 part name and fixup the ID check so it works.
* vz89x VOC sensor
  - add support for the vz89te part which drops the voc_short channel and adds
    CRCs compared to other supported parts.

New features
* core
  - immutable triggers.  These effectively grant exclusive control over a
    trigger. The typical usecase is a device representing an analog part
    (perhaps a MUX) that needs to control the sampling of a downstream
    ADC.
  - resource managed trigger registration and triggered_buffer_init.
  - iio_push_event now protected against case of the event interface
    registration not having yet occured.  Only matters if an interrupt
    can occur during this window - might happen on shared interrupt lines.
  - helper to let a driver query if the trigger it is using is provided by
    itself (using the convention of both device and trigger having the same
    parent).
* tools
  - iio-utils. Used channel modifier scaling in preference to generic scaling
    when both exist.
* at91-adc
  - Add support for touchscreen switches closure time needed by some newer
    parts.
* stx104
  - support the ADC channels on this ADC/DAC board. As these are the primary
    feature of the board also move the driver to the iio/adc directory.
* sx9500
  - device tree bindings.

Cleanups / Fixes
* ad5755
  - fix an off-by-one on devnr limit check (introduced earlier this cycle)
* ad7266
  - drop NULL check on devm_regulator_get_optional as it can't return NULL.
* ak8974
  - avoid an unused functional warning due to rework in PM core code.
  - remove .owner field setting as done by i2c_core.
* ina2xx
  - clear out a left over debug field from chip global data.
* hid-sensors
  - avoid an unused functional warning due to rework in PM core code.
* maxim-thermocouple
  - fix non static symbol warnings.
* ms5611
  - fetch and enable regulators unconditionally when they aren't optional.
* sca3000
  - whitespace cleanup.
* st_sensors
  - fetch and enable regulators unconditionally rather than having them
    supported as optional regulators (missunderstanding on my part amongst
    others a while back)
  - followup to previous patch fixes error checking on the regulators.
  - mark symbols static where possible.
  - use the 'is it my trigger' help function.  This prevents the odd case
    of another device triggering from the st-sensors trigger whilst the
    st-sensors trigger is itself not using it but rather using say an hrtimer.
* ti-ads1015
  - add missing of_node_put.
* vz89x
  - rework to all support of new devices.
  - prevent reading of a corrupted buffer.
  - fixup a return value of 0/1 in a bool returning function.

Address updates
- Vlad Dogaru email address change.
2016-09-14 20:42:03 +02:00
..
arc Documentation: Add EZchip vendor to binding list 2016-05-09 09:32:31 +05:30
arm ARM: 64-bit DT updates for v4.8 2016-08-01 18:47:01 -04: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 ARM: SoC driver updates for v4.8 2016-08-01 18:36:01 -04:00
cpufreq
cris
crypto
devfreq PM / devfreq: exynos: Add the detailed correlation for Exynos5422 bus 2016-05-03 11:22:06 +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: arizona: Update binding docs to mention new defines for GPSW 2016-06-21 14:09:54 +09:00
firmware dt/bindings: firmware: Add Qualcomm SCM binding 2016-06-11 22:57:14 -05:00
fpga
fuse
goldfish
gpio This is the bulk of pin control changes for the v4.8 kernel cycle. 2016-07-28 17:06:51 -07:00
gpu dt-bindings: Add documentation for GM20B GPU 2016-04-26 18:40:16 +02:00
h8300
hsi
hwlock
hwmon Documentation: dtb: xgene: Add hwmon dts binding documentation 2016-07-21 14:58:57 -07:00
i2c First round of new features, device support and cleanups for IIO in the 4.9 cycle. 2016-08-23 17:50:16 -04:00
iio Second set of iio new device support, features and cleanups for the 4.9 cycle. 2016-09-14 20:42:03 +02:00
input Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2016-08-05 23:24:15 -04:00
interrupt-controller ARM: 64-bit DT updates for v4.8 2016-08-01 18:47:01 -04: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 - New Functionality 2016-08-01 07:32:32 -04: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 MTD updates for v4.8: 2016-08-02 17:05:11 -04:00
metag
mfd - Core Frameworks 2016-08-01 07:28:14 -04: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 doc: dt: fsl-imx-esdhc: add set tuning start point binding 2016-07-25 10:34:55 +02:00
mtd mtd: spi-nor: Bindings for Cadence Quad SPI Flash Controller driver 2016-07-18 09:58:16 -07:00
net ARM: 64-bit DT updates for v4.8 2016-08-01 18:47:01 -04:00
nios2
nvmem
opp
pci PCI changes for the v4.8 merge window: 2016-08-02 17:12:29 -04:00
phy ARM: DT updates for v4.8 2016-08-01 18:37:45 -04:00
pinctrl Merge tag 'drm-for-v4.8' of git://people.freedesktop.org/~airlied/linux 2016-08-01 21:44:08 -04: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 powerpc updates for 4.8 # 1 2016-07-30 21:01:36 -07: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 pwm: Changes for v4.8-rc1 2016-08-06 00:01:33 -04: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 Revert "tty/serial/8250: use mctrl_gpio helpers" 2016-08-31 15:36:01 +02:00
serio
soc First round of new features, device support and cleanups for IIO in the 4.9 cycle. 2016-08-23 17:50:16 -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/pxa2xx', 'spi/topic/rockchip', 'spi/topic/s3c64xx', 'spi/topic/sh' and 'spi/topic/sh-msiof' into spi-next 2016-07-24 22:08:25 +01:00
spmi
sram
staging
thermal thermal: trivial: fix the typo 2016-08-19 21:33:37 +08:00
timer ARM: SoC driver updates for v4.8 2016-08-01 18:36:01 -04:00
ufs ufs: add TC G210 platform driver 2016-07-12 23:16:31 -04:00
usb ARM: DT updates for v4.8 2016-08-01 18:37:45 -04: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 First round of new features, device support and cleanups for IIO in the 4.9 cycle. 2016-08-23 17:50:16 -04:00
xilinx.txt