linux/Documentation/devicetree/bindings
Greg Kroah-Hartman f3cf3fb7ec First set of new device support, features and cleanups for IIO in the 4.5 cycle
Usual mixed bag, but the big item perhaps in this series is the DMA buffer
 support added by Lars-Peter Clausen. It's been in the works for a long time
 and it will be interesting to see what hardware support shows up now that
 this is available.
 
 New core features + associate cleanup.
 * Add generic DMA buffer infrastructure
 * Add a DMAengine framework based buffer
  Also associated minor changes.
    - Set the device buffer watermark based on the minimum watermark for all
      attached buffers rather than just the 'primary' one.
    - iio_buffer_init - only set the watermark default if one hasn't already
      been provided.  This allows simple support for devices with a fixed
      watermark.
    - read only attribute for watermark on fixed watermark devices.
    - add explicit buffer enable/disable callbacks to allow the buffer to
      do more than trivial actions when it is being turned on and off.
 * IIO_VAL_INT support in write_raw_get_fmt function.
 
 New device support
 * Freescale MMA7455/7456L accelerometers
 * Memsic MXC6255XC accelerometer
 * ST lis2dh12 accelerometer
 * TI ADS8688 ADC
 * TI Palamas (twl6035/7) gpadc
 
 New driver features
 * mma8452
   - support either of the available interrupt pins to cope with the case
     where board layout has lead to a particular one being connected.
 
 Staging graduation
 * Dummy driver
   - this driver acts as both an example and a test device for those with
     out hardware to develop userspace code against.
 
 Cleanups and minor bits and bobs.
 * treewide
   - Sort out the ordering of iio_device_register/unregister vs runtime
     pm function calls so that it's all nice and consistent and not race
     prone.
   - Check sscanf return values.  None of the cases will actually happen as
     the strings are supplied internally, but best to be consistent on this.
 * ad7780
   - switch over to the gpio descriptor interface and remove the now unused
     platform data which gets rid of a header entirely.
 * ad7793
   - drop a pointless else statement.
 * at91_adc
   - Swap kmalloc_array in for a kmalloc doing the same job.
 * dummy
   - get rid of some commented out lines that snuck in during the move of
     the driver.
 * lm3533-als
   - Print an error message on provision of an invalid resistance.
 * mcp320x
   - Add compatible strings with vendor prefix and deprecate those with
     no vendor prefix.
 * mxs-lradc
   - Use BIT macro in various places rather than shifted ones.
 * pa12203001
   - Power off the chip if the registration fails.
 * pulsedlight-lidar-lite
   - add runtime PM support.
 * xilinx XADC
   - constify an iio_buffer_setup_ops structure.
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
 iQIcBAABCAAGBQJWUcmhAAoJEFSFNJnE9BaIyjYP/0A+CZMUqIGbYG9qFxnq7yYZ
 977Wt/gGI8+Jq5RwNw6gTfhp2GrCN+5gzDbE2mBEn94c6SKBrj2Q9trW1FQ+Nhfx
 9bZoyq3ZPRCV+efEDGfeK/JWRwv+V6IWwAF2J/iCPWpRMTEsIW5kM1JSO3ISlnma
 diyil1hefGTJY8aCqGApthfX4fyZK98oCV6zojxpCZfFPdsa+vf5n1RQ143odnOk
 6NSfXHYLI+2e+mJ1lw4GdpZdF+rF+7jWsUYC5EDNmvlIJYiKmm13whSQeWO0NHo8
 oD0pYboSIWnmdXx4s3RbWF2+Y28O1+oJDKZfXabB8DjVwtvlGnmWBRhgKji2e6E6
 Hhct83YbDWtEpbNkXcWpnc5v5ynmAMTYTxADhinTGUtVQh3Q4wWduuoHK6IyeI4s
 dbfpO2Wh6N/5k3a4UoA69IcI2DzPzb2sIFWpdS8wuNv5xDhV2OmmY2PjTfq2w+Qz
 hEoMCNDUG6rQAYf4auXK5JjhI4CaG/mz/qjIibTUqGODYECzQQyvq+c2Gdq0S8O/
 CUHOgui6aHbyuhWmXlEzhhkjuvBQZYaTxCA+LGMzy8w7UY9m4n5L/fX9M9IfFsMH
 NFCPrUfmxKPQj/mHlhu7KHaTMUlQ0pTqV5flSwqsjstZ2QddvI5EAKiLwIEhg7/2
 RpnOZoiFIxykduEYLxeh
 =CfCl
 -----END PGP SIGNATURE-----

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

Jonathan writes:

First set of new device support, features and cleanups for IIO in the 4.5 cycle

Usual mixed bag, but the big item perhaps in this series is the DMA buffer
support added by Lars-Peter Clausen. It's been in the works for a long time
and it will be interesting to see what hardware support shows up now that
this is available.

New core features + associate cleanup.
* Add generic DMA buffer infrastructure
* Add a DMAengine framework based buffer
 Also associated minor changes.
   - Set the device buffer watermark based on the minimum watermark for all
     attached buffers rather than just the 'primary' one.
   - iio_buffer_init - only set the watermark default if one hasn't already
     been provided.  This allows simple support for devices with a fixed
     watermark.
   - read only attribute for watermark on fixed watermark devices.
   - add explicit buffer enable/disable callbacks to allow the buffer to
     do more than trivial actions when it is being turned on and off.
* IIO_VAL_INT support in write_raw_get_fmt function.

New device support
* Freescale MMA7455/7456L accelerometers
* Memsic MXC6255XC accelerometer
* ST lis2dh12 accelerometer
* TI ADS8688 ADC
* TI Palamas (twl6035/7) gpadc

New driver features
* mma8452
  - support either of the available interrupt pins to cope with the case
    where board layout has lead to a particular one being connected.

Staging graduation
* Dummy driver
  - this driver acts as both an example and a test device for those with
    out hardware to develop userspace code against.

Cleanups and minor bits and bobs.
* treewide
  - Sort out the ordering of iio_device_register/unregister vs runtime
    pm function calls so that it's all nice and consistent and not race
    prone.
  - Check sscanf return values.  None of the cases will actually happen as
    the strings are supplied internally, but best to be consistent on this.
* ad7780
  - switch over to the gpio descriptor interface and remove the now unused
    platform data which gets rid of a header entirely.
* ad7793
  - drop a pointless else statement.
* at91_adc
  - Swap kmalloc_array in for a kmalloc doing the same job.
* dummy
  - get rid of some commented out lines that snuck in during the move of
    the driver.
* lm3533-als
  - Print an error message on provision of an invalid resistance.
* mcp320x
  - Add compatible strings with vendor prefix and deprecate those with
    no vendor prefix.
* mxs-lradc
  - Use BIT macro in various places rather than shifted ones.
* pa12203001
  - Power off the chip if the registration fails.
* pulsedlight-lidar-lite
  - add runtime PM support.
* xilinx XADC
  - constify an iio_buffer_setup_ops structure.
2015-12-01 09:13:29 -08:00
..
arc dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
arm ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
ata devicetree: bindings: Fixed a few typos 2015-10-31 09:52:15 +09:00
board Documentation/dts: Move FSL board-specific bindings out of /powerpc 2015-10-23 22:24:45 +02:00
bus bus: sunxi-rsb: Add Allwinner Reduced Serial Bus (RSB) controller bindings 2015-10-26 10:11:55 +09:00
c6x dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
clock ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
cpufreq
cris dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
crypto Documentation: devicetree: fix reference to legacy wakeup properties 2015-10-30 13:04:19 -05:00
devfreq/event
display fbdev changes for 4.4 2015-11-10 10:00:09 -08:00
dma dmaengine: edma: New device tree binding 2015-10-27 10:22:45 +09:00
edac EDAC, Documentation: Update X-Gene EDAC binding for L3/SoC subnodes 2015-09-25 14:13:41 +02:00
eeprom dt-bindings: consolidate eeprom bindings 2015-10-22 09:21:22 -05:00
extcon extcon: arizona: Add extcon specific device tree binding document 2015-10-30 18:57:37 +00:00
fpga DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
fuse
gpio ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
gpu dt-bindings: consolidate display related bindings 2015-10-22 09:21:21 -05:00
h8300
hsi
hwlock
hwmon ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
i2c Merge branch 'i2c/for-4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux 2015-11-10 11:58:25 -08:00
iio First set of new device support, features and cleanups for IIO in the 4.5 cycle 2015-12-01 09:13:29 -08:00
input Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2015-11-13 21:41:14 -08:00
interrupt-controller DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
iommu ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
leds DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
lpddr2
mailbox mailbox/omap: Add ti,mbox-send-noirq quirk to fix AM33xx CPU Idle 2015-10-23 11:19:27 +05:30
media [media] s5p-jpeg: add support for 5433 2015-10-01 08:40:04 -03:00
memory-controllers ARM: SoC driver updates for v4.4 2015-11-10 15:00:03 -08:00
metag dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
mfd ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
mips dt-bindings: MIPS: Document xilfpga bindings and boot style 2015-11-11 08:38:38 +01:00
misc DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
mmc DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
mtd doc: dt: mtd: support partitions in a special 'partitions' subnode 2015-10-30 14:00:42 -07:00
net Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2015-11-10 18:11:41 -08:00
nios2
nvmem nvmem: rockchip-efuse: describe the usage of eFuse 2015-10-04 12:06:13 +01:00
opp
pci ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
phy DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
pinctrl pinctrl: cygnus: Add new compatible string for gpio controller driver 2015-10-27 10:48:15 +01:00
power ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
power_supply dt-binding: power: Add Qualcomm SMBB binding 2015-10-13 16:40:02 -05:00
powerpc ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
pps
pwm pwm: pwm-rcar: Revise the device tree binding document about compatible 2015-11-10 13:06:43 +01:00
regmap
regulator Merge remote-tracking branches 'regulator/topic/supply', 'regulator/topic/tps6105x' and 'regulator/topic/tps65023' into regulator-next 2015-11-04 11:19:43 +00:00
remoteproc
reserved-memory
reset
rng DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
rtc RTC for 4.4 2015-11-10 10:01:21 -08:00
security/tpm
serial DeviceTree updates for 4.4: 2015-11-06 12:17:09 -08:00
serio
soc ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
sound DeviceTree fixes for 4.4-rc1: 2015-11-11 19:54:05 -08:00
spi Merge remote-tracking branches 'spi/topic/fsl-dspi', 'spi/topic/mpc512x', 'spi/topic/mtk', 'spi/topic/oc-tiny' and 'spi/topic/octeon' into spi-next 2015-11-04 11:02:10 +00:00
spmi
staging/iio/adc
thermal dt-bindings: rockchip-thermal: Add the pinctrl states in this document 2015-11-03 09:57:08 -08:00
timer dt-bindings: add more MediaTek SoC to mtk-timer binding 2015-10-12 18:43:47 +02:00
ufs scsi: ufs: make the UFS variant a platform device 2015-11-09 18:00:02 -05:00
usb ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
virtio
w1 w1: masters: omap_hdq: add support for 1-wire mode 2015-10-05 04:47:09 +01:00
watchdog watchdog: bcm7038: add device tree binding documentation 2015-10-27 16:07:35 +01:00
x86 dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
xillybus
ABI.txt
btmrvl.txt
chosen.txt powerpc/book3e-64/kexec: Enable SMP release 2015-10-27 18:13:29 -05:00
common-properties.txt
graph.txt
ipmi.txt
marvell.txt
resource-names.txt
submitting-patches.txt
unittest.txt
vendor-prefixes.txt ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
xilinx.txt