linux_dsm_epyc7002/Documentation/devicetree/bindings
Greg Kroah-Hartman dc5f2c5f6a First set of new drivers, cleanups and functionality for IIO in the 4.1 cycle.
New drivers
 * CM3323 color sensor.
 * MS5611 pressure and temperature sensor.
 
 New functionality
 * mup6050 - create mux clients for devices described via ACPI. The reasoning
      and approach taken in this patch are complex.  Basically there is no
      otherway of finding out what is there than by some esoteric look ups in
      the ACPI data.
 * cm3232 - PM support
 * itg3200 - suspend/resume support
 * mcp320x - add more ADCs to the kconfig to reflect what the driver supports
      (this patch and the bindings got left behind when the support was added
       a while back).
 
 Docs / utils
 * ti-adc128s052 - DT bindings.
 * mcp3422 - DT bindings.
 * mcp320x - DT bindings
 * ABI docs for event threshold scale attributes, in_magn_offset, proximity
   scan_element and thresh falling/rising values for accelerometers.  All
   elements long in use that have slipped by being explicitly documented.
 * Tidy up the tools previously in drivers/staging/iio/Documentation and move
   them out to /tools/iio. Yet another move that should have happened long ago.
   This time Roberta Dobrescu did the leg work.  Thanks!
 
 Core Cleanups
 * Export userspace IIO headers.  We should have done the appropriate header
   splitting a long time ago. Thanks to Daniel for sorting this out.
 
 * Refactor the registring of attributes for buffers to move all non-custom
   ones to a vector allowing easier additions to the current set in the future.
 
 Driver Cleanups
 * gpiod related cleanups.  Make use of the additional parameter to specify
   	initial direciton to avoid extra code.
 * bmc150 - Various refactorings to reduce code repitition and prepare for
            hardware buffer support.  Some of these cleanups are good even
 	   without the new functionality.
 * kmx61 - direct use of index to an array avoiding a structure element which
           was always the index to an element in an array of that structure.
 * vf610 - avoid incorrect type for return from wait_for_completion_timeout.
 * gp2ap020a00f - use put_unaligned_le32 for slight code simplification.
 * ade7754 - improve error handling including suppressing some build warnings.
 * ade7759 - improve error handling including suppressing some build warnings.
 * hmc5843 - Long line and indentation fixes. Also some constifying of various
       constant data.
 * ade7854 - 80+ character line splitting.
 * ad2s1210 - fix wrong printf format string.
 * mxs-lradc - fix wrong printf format string.
 * ade7954-i2c - code alignment fixes and other trivial but worthwhile bits.
 * periodic rtc trigger - make the frequency type an unsigned int as it
   is always treated as such.
 * jsa1212 - constify struct regmap_config as it is constant.
 * ad7793 - typo in the MODULE_DESCRIPTION
 * mma9551 - check gpiod_to_irq errors.  Note that this doesn't actually cause
     any trouble but is worth tidying up as obviously incorrect.
 * mlx90614 - refactor the register symbols to make it clear which reads are to
     RAM not PROM.
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
 iQIcBAABCAAGBQJVBe4zAAoJEFSFNJnE9BaISXAP+wcVdU9PyiLdpjh7D73qbbV0
 KnKJHdO+aKe4hCv6Xl0fWIbJcsxTn8ALPHkkxHnu06hd2Q9zANgdJ5dER5XB34fX
 vw+EjsIdiyCDmoOVGzP5SsmbSoO3gNoR5GdWmjKFKjr0eSxinh3AmAesTVSC2T9Y
 vHkjgDj3KaqN735brd2GneeG/s3jY8ZZaiTZ0jFotCtSmBAiPi8uYwIwMLmVpsVu
 M3tcUPWKithRoyKBmO4tiDg2Qwnj0IhN8zyIYiUBftxCIIY7tSlQkYgRzDmrxGG2
 HCITf33Ss87UH0IF1BOm5PXjQ3ClI3idtCwqCeXscAo6IXmoe/+BsXR/m2JqUTdp
 EOrORyzsHc0WkJK8dnp1h1XfiBR4UQpiwce5xGFbni2ycfNBw1/J0l7QTi45D6Z7
 SdGXTgt1AWd8MoWxcxMhWMPQlHsxK/XMPh10O5wD5icxo5EHvnPP0ObZ15Ax6T/V
 kcO+NEJCEHH2Q/kna2M6h4FdUVBxvzjjwhdZVs8PGGfJNDij2cVwspT81lKMauwf
 07S0KHEjhqbRSM0TvsMyf2li1Xwv5eu+G2FTkopESJ4a2zyaLobt/QgTu9dzg4Gh
 QDJFx4xdmNv4OQ+psZuoDznjM/EV+eQR+swH7P6UDyef0jghLwVkqHxM/HYChiyP
 OvZCCnHDB4EiC8jx+c43
 =BmiY
 -----END PGP SIGNATURE-----

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

Jonathan writes:

First set of new drivers, cleanups and functionality for IIO in the 4.1 cycle.

New drivers
* CM3323 color sensor.
* MS5611 pressure and temperature sensor.

New functionality
* mup6050 - create mux clients for devices described via ACPI. The reasoning
     and approach taken in this patch are complex.  Basically there is no
     otherway of finding out what is there than by some esoteric look ups in
     the ACPI data.
* cm3232 - PM support
* itg3200 - suspend/resume support
* mcp320x - add more ADCs to the kconfig to reflect what the driver supports
     (this patch and the bindings got left behind when the support was added
      a while back).

Docs / utils
* ti-adc128s052 - DT bindings.
* mcp3422 - DT bindings.
* mcp320x - DT bindings
* ABI docs for event threshold scale attributes, in_magn_offset, proximity
  scan_element and thresh falling/rising values for accelerometers.  All
  elements long in use that have slipped by being explicitly documented.
* Tidy up the tools previously in drivers/staging/iio/Documentation and move
  them out to /tools/iio. Yet another move that should have happened long ago.
  This time Roberta Dobrescu did the leg work.  Thanks!

Core Cleanups
* Export userspace IIO headers.  We should have done the appropriate header
  splitting a long time ago. Thanks to Daniel for sorting this out.

* Refactor the registring of attributes for buffers to move all non-custom
  ones to a vector allowing easier additions to the current set in the future.

Driver Cleanups
* gpiod related cleanups.  Make use of the additional parameter to specify
  	initial direciton to avoid extra code.
* bmc150 - Various refactorings to reduce code repitition and prepare for
           hardware buffer support.  Some of these cleanups are good even
	   without the new functionality.
* kmx61 - direct use of index to an array avoiding a structure element which
          was always the index to an element in an array of that structure.
* vf610 - avoid incorrect type for return from wait_for_completion_timeout.
* gp2ap020a00f - use put_unaligned_le32 for slight code simplification.
* ade7754 - improve error handling including suppressing some build warnings.
* ade7759 - improve error handling including suppressing some build warnings.
* hmc5843 - Long line and indentation fixes. Also some constifying of various
      constant data.
* ade7854 - 80+ character line splitting.
* ad2s1210 - fix wrong printf format string.
* mxs-lradc - fix wrong printf format string.
* ade7954-i2c - code alignment fixes and other trivial but worthwhile bits.
* periodic rtc trigger - make the frequency type an unsigned int as it
  is always treated as such.
* jsa1212 - constify struct regmap_config as it is constant.
* ad7793 - typo in the MODULE_DESCRIPTION
* mma9551 - check gpiod_to_irq errors.  Note that this doesn't actually cause
    any trouble but is worth tidying up as obviously incorrect.
* mlx90614 - refactor the register symbols to make it clear which reads are to
    RAM not PROM.
2015-03-24 22:53:52 +01:00
..
arc
arm ARM: STi: Add STiH410 SoC support 2015-03-11 15:34:45 +01:00
ata DeviceTree changes for 3.20: 2015-02-12 08:58:43 -08:00
bus
c6x Documentation: devicetree: Fix double words in Doumentation/devicetree 2015-01-28 15:13:11 -07:00
clock The clock framework changes for 3.20 contain the usual driver additions, 2015-02-21 12:30:30 -08:00
cpufreq
crypto
devfreq/event PM / devfreq: event: Add documentation for exynos-ppmu devfreq-event driver 2015-01-30 17:56:42 +09:00
dma Merge branch 'for-linus' of git://git.infradead.org/users/vkoul/slave-dma 2015-02-18 08:49:20 -08:00
drm drm/msm/hdmi: rework hdmi configurations, using dt_match[] 2015-02-01 15:32:46 -05:00
extcon
fb
fpga doc: add bindings document for altera fpga manager 2015-01-13 13:58:01 -06:00
fuse Documentation: DT bindings: add more Tegra chip compatible strings 2015-02-03 20:37:31 -06:00
gpio Documentation changes for 3.20 2015-02-11 13:03:11 -08:00
gpu Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux 2015-02-16 15:48:00 -08:00
hid
hsi
hwmon
hwrng
i2c i2c: imx: add required clocks property to binding 2015-03-07 01:13:00 +01:00
iio First set of new drivers, cleanups and functionality for IIO in the 4.1 cycle. 2015-03-24 22:53:52 +01:00
input Input: ti_am335x_tsc - read charge delay from DT 2015-02-03 11:50:38 -08:00
interrupt-controller irqchip: Devicetree: document Conexant Digicolor irq binding 2015-01-26 11:38:23 +01:00
iommu ARM: SoC DT updates 2015-02-17 09:36:52 -08:00
leds DT: leds: Add led-sources property 2015-01-29 14:53:07 -08:00
lpddr2
mailbox mailbox: Add Altera mailbox driver 2015-02-06 10:58:27 +05:30
media ARM: SoC DT updates 2015-02-17 09:36:52 -08:00
memory-controllers ARM: shmobile: Add DT bindings for Renesas memory controllers 2015-01-15 08:53:50 +09:00
metag
mfd Changes to existing drivers: 2015-02-18 09:05:48 -08:00
mipi
mips MIPS: OCTEON: irq: add CIB and other fixes 2015-02-20 15:33:40 +01:00
misc ARM: SoC DT updates 2015-02-17 09:36:52 -08:00
mmc The clock framework changes for 3.20 contain the usual driver additions, 2015-02-21 12:30:30 -08:00
mtd MTD updates for 3.20-rc1 2015-02-18 08:01:44 -08:00
net Documentation: dts: Update compatible field description for APM X-Gene 2015-03-04 15:54:14 -05:00
nios2
nvec
panel drm/panel: simple: Add AVIC TM070DDH03 panel support 2015-01-28 08:45:39 +01:00
pci DeviceTree changes for 3.20: 2015-02-12 08:58:43 -08:00
phy phy: miphy365x: Pass sysconfig register offsets via syscfg dt property. 2015-01-30 18:12:05 +05:30
pinctrl DeviceTree changes for 3.20: 2015-02-12 08:58:43 -08:00
power dt-bindings: document a note about power domain subdomains 2015-02-27 05:26:57 +09:00
power_supply
powerpc Char / Misc patches for 3.20-rc1 2015-02-15 10:48:44 -08:00
pps
pwm pwm: Changes for v3.20-rc1 2015-02-18 09:00:53 -08:00
regmap
regulator Merge remote-tracking branches 'regulator/topic/max8649', 'regulator/topic/mode', 'regulator/topic/mt6397', 'regulator/topic/pfuze100' and 'regulator/topic/qcom-rpm' into regulator-next 2015-02-08 11:16:27 +08:00
reserved-memory
reset
rng
rtc rtc: armada38x: add the device tree binding documentation 2015-02-13 21:21:43 -08:00
security/tpm tpm/tpm_i2c_stm_st33/dts/st33zp24-i2c: Rename st33zp24 dts documentation 2015-01-17 15:04:05 +01:00
serial Documentation: DT: Renamed of-serial.txt to 8250.txt 2015-03-10 10:34:32 -05:00
serio Input: serio - add support for Alwinner A10/A20 PS/2 controller 2015-01-26 23:10:13 -08:00
soc dt/bindings: b/qman: Add phandle to the portals 2015-01-29 22:57:44 -06:00
sound ARM: SoC DT updates 2015-02-17 09:36:52 -08:00
spi DeviceTree changes for 3.20: 2015-02-12 08:58:43 -08:00
spmi
staging/iio/adc First round of IIO new drivers, cleanups and functionality for the 3.20 cycle take 2 2015-01-21 10:13:37 +08:00
thermal Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal 2015-02-19 17:51:22 -08:00
timer Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2015-02-16 15:26:10 -08:00
ufs
usb ARM: SoC driver updates 2015-02-17 09:38:59 -08:00
video ARM: SoC DT updates 2015-02-17 09:36:52 -08:00
virtio
w1
watchdog dts: Documentation: AT91 Watchdog, explain what atmel,idle-halt property really do 2015-03-04 11:19:46 +01:00
x86
xillybus
ABI.txt
btmrvl.txt
chosen.txt
eeprom.txt
graph.txt Documentation: of: fix typo in graph bindings 2015-01-13 13:55:22 -06:00
marvell.txt
open-pic.txt
resource-names.txt
submitting-patches.txt dt: submitting-patches: clarify that DT maintainers are to be cced on bindings 2015-03-10 10:34:33 -05:00
unittest.txt of: unitest: Add I2C overlay unit tests. 2015-02-04 10:43:14 -06:00
vendor-prefixes.txt serial: add device tree binding documentation for ETRAX FS UART 2015-03-02 08:08:58 -06:00
xilinx.txt