linux_dsm_epyc7002/Documentation/devicetree/bindings
Greg Kroah-Hartman 069f0e0c06 Round one of new device support, features and cleanup for IIO in the 4.15 cycle.
Note there is a misc driver drop in here given we have support
 in IIO and the feeling is no one will care.
 
 A large part of this series is a boiler plate removal series avoiding
 the need to explicitly provide THIS_MODULE in various locations.
 It's very dull but touches all drivers.
 
 New device support
 * ad5446
   - add ids to support compatible parts DAC081S101, DAC101S101,
     DAC121S101.
   - add the dac7512 id and drop the misc driver as feeling is no
     one is using it (was introduced for a board that is long obsolete)
 * mt6577
   - add bindings for mt2712 which is fully compatible with other
     supported parts.
 * st_pressure
   - add support for LPS33HW and LPS35HW with bindings (ids mostly).
 
 New features
 * ccs811
   - Add support for the data ready trigger.
 * mma8452
   - remove artifical restriction on supporting multiple event types
     at the same time.
 * tcs3472
   - support out of threshold events
 
 Core and tree wide cleanup
 * Use macro magic to remove the need to provide THIS_MODULE as part of
   struct iio_info or struct iio_trigger_ops.  This is similar to
   work done in a number of other subsystems (e.g. i2c, spi).
 
   All drivers are fixed and then the fields in these structures are
   removed.
 
   This will cause build failures for out of tree drivers and any
   new drivers that cross with this work going into the kernel.
 
   Note mostly done with a coccinelle patch, included in the series
   on the mailing list but not merged as the fields no longer exist
   in the structures so the any hold outs will cause a build failure.
 
 Cleanups
 * ads1015
   - avoid writing config register when it doesn't change.
   - add 10% to conversion wait time as it seems it is sometimes
     a little small.
 * ade7753
   - replace use of core mlock with a local lock.  This is part of a
     long term effort to make the use of mlock opaque and single
     purpose.
 * ade7759
   - expand the use of buf_lock to cover previous mlock cases.  This
     is a slightly nicer solution to the same issue as in ade7753.
 * cros_ec
   - drop an unused variable
 * inv_mpu6050
   - add a missing break in a switch for consistency - not actual
     bug,
   - make some local arrays static to save on object code size.
 * max5481
   - drop manual setting of the spi module owner as handled by the
     spi core.
 * max5487
   - drop manual setting of the spi module owner as handled by the
     spi core.
 * max9611
   - drop explicit setting of the i2c module owner as handled by
     the i2c core.
 * mcp320x
   - speed up reads on single channel devices,
   - drop unused of_device_id data elements,
   - document the struct mcp320x,
   - improve binding docs to reflect restrictions on spi setup and
     to make it explicit that the reference regulator is needed.
 * mma8452
   - symbolic to octal permissions,
   - unsigned to unsigned int.
 * st_lsm6dsx
   - avoid setting odr values multiple times,
   - drop config of LIR as it is only ever set to the existing
     defaults,
   - drop rounding configuration as it only ever matches the defaults.
 * ti-ads8688
   - drop manual setting of the spi module owner as handled by the
     spi core.
 * tsl2x7x
   - constify the i2c_device_id,
   - cleanup limit checks to avoid static checker warnings (and generally
     have nicer code).
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEEbilms4eEBlKRJoGxVIU0mcT0FogFAlnH4XkRHGppYzIzQGtl
 cm5lbC5vcmcACgkQVIU0mcT0Fogkaw//e3z+4TQT2Hn+550lBYUV8pBR5emDiSe3
 0QTG+ZS7Kh+fPYENLCXtW9ttZicmUSqkTQFvlMTjAxHyj9XzL7+BXS9UlNgVLsqX
 pn9KprPj31lrXpJOXMSgcdiqWMZLtCvprAJgnwfZt1GevS3WbCMmnnoaBuJV61jp
 w0VD+forukTGF7b0OMGB0d5mwtYS0bJYqXRRMPD+2bNeM4hqt5YM3+wHSqP35t3l
 MoaqKlbx7ZtKDF4zIa59nKNP7Ky7IByWogLZRlJ/vD/uKrACckPT22+KT8rX2TwA
 NpZb1Oy/KZBTl5D9iRjZADq4NaRJENFXJiG6GkjoGjrQhUqHaCinHWpLioqLGlRq
 qCPL2nRjqm4Qr7E8sxlwR1Ajlg0utBMY7Oflym/XJMMLF/ZE6HSrzyrxuVMG2EjV
 T7SVIncbfg6kyr/r4kKsAT3BUMV+TdO4sXm+JgphZBUqZLp0nFHnmjP7Rm2j2uWq
 +yLrSuF25RijrRj3sp28zg9dFWlRwRvZvcAx8kEGm1kMjMWr+Q10xTK9o/5LlFEw
 57sUm6qgmigPK8sahDtcdLIwaCPVvAYvJ0e4Mfw5UsPSlZmHmM1mLwjpwiXBZ5ig
 oxnJmTXsn5RcOGiW/mg0VCH26NkBx7H0fsRqQeq9wkxHLrm75vXroIn7YqRIg+Ad
 /Itu6x6fOIg=
 =ik5C
 -----END PGP SIGNATURE-----

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

Jonathan writes:

Round one of new device support, features and cleanup for IIO in the 4.15 cycle.

Note there is a misc driver drop in here given we have support
in IIO and the feeling is no one will care.

A large part of this series is a boiler plate removal series avoiding
the need to explicitly provide THIS_MODULE in various locations.
It's very dull but touches all drivers.

New device support
* ad5446
  - add ids to support compatible parts DAC081S101, DAC101S101,
    DAC121S101.
  - add the dac7512 id and drop the misc driver as feeling is no
    one is using it (was introduced for a board that is long obsolete)
* mt6577
  - add bindings for mt2712 which is fully compatible with other
    supported parts.
* st_pressure
  - add support for LPS33HW and LPS35HW with bindings (ids mostly).

New features
* ccs811
  - Add support for the data ready trigger.
* mma8452
  - remove artifical restriction on supporting multiple event types
    at the same time.
* tcs3472
  - support out of threshold events

Core and tree wide cleanup
* Use macro magic to remove the need to provide THIS_MODULE as part of
  struct iio_info or struct iio_trigger_ops.  This is similar to
  work done in a number of other subsystems (e.g. i2c, spi).

  All drivers are fixed and then the fields in these structures are
  removed.

  This will cause build failures for out of tree drivers and any
  new drivers that cross with this work going into the kernel.

  Note mostly done with a coccinelle patch, included in the series
  on the mailing list but not merged as the fields no longer exist
  in the structures so the any hold outs will cause a build failure.

Cleanups
* ads1015
  - avoid writing config register when it doesn't change.
  - add 10% to conversion wait time as it seems it is sometimes
    a little small.
* ade7753
  - replace use of core mlock with a local lock.  This is part of a
    long term effort to make the use of mlock opaque and single
    purpose.
* ade7759
  - expand the use of buf_lock to cover previous mlock cases.  This
    is a slightly nicer solution to the same issue as in ade7753.
* cros_ec
  - drop an unused variable
* inv_mpu6050
  - add a missing break in a switch for consistency - not actual
    bug,
  - make some local arrays static to save on object code size.
* max5481
  - drop manual setting of the spi module owner as handled by the
    spi core.
* max5487
  - drop manual setting of the spi module owner as handled by the
    spi core.
* max9611
  - drop explicit setting of the i2c module owner as handled by
    the i2c core.
* mcp320x
  - speed up reads on single channel devices,
  - drop unused of_device_id data elements,
  - document the struct mcp320x,
  - improve binding docs to reflect restrictions on spi setup and
    to make it explicit that the reference regulator is needed.
* mma8452
  - symbolic to octal permissions,
  - unsigned to unsigned int.
* st_lsm6dsx
  - avoid setting odr values multiple times,
  - drop config of LIR as it is only ever set to the existing
    defaults,
  - drop rounding configuration as it only ever matches the defaults.
* ti-ads8688
  - drop manual setting of the spi module owner as handled by the
    spi core.
* tsl2x7x
  - constify the i2c_device_id,
  - cleanup limit checks to avoid static checker warnings (and generally
    have nicer code).
2017-09-25 12:56:37 +02:00
..
arc ARC: [plat-hsdk] initial port for HSDK board 2017-09-01 11:26:28 -07:00
arm ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
ata DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
auxdisplay
board
bus dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
c6x
clock The diff is dominated by the Allwinner A10/A20 SoCs getting converted to 2017-09-13 11:04:14 -07:00
cpufreq
cris
crypto DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
devfreq dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
display ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
dma ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
edac
eeprom dt-bindings: i2c: eeprom: Document vendor to be used and deprecated ones 2017-08-28 17:40:36 +02:00
extcon
firmware
fpga DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
fsi
fuse
goldfish
gpio DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
gpu ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
h8300
hsi dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
hwlock
hwmon hwmon: (ltq-cputemp) add devicetree bindings documentation 2017-09-01 07:24:12 -07:00
i2c dt-bindings: i2c-stm32: Document the STM32F7 I2C bindings 2017-09-14 17:34:14 +02:00
iio Round one of new device support, features and cleanup for IIO in the 4.15 cycle. 2017-09-25 12:56:37 +02:00
infiniband
input Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2017-09-16 11:24:26 -07:00
interrupt-controller ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
iommu Merge branches 'arm/exynos', 'arm/renesas', 'arm/rockchip', 'arm/omap', 'arm/mediatek', 'arm/tegra', 'arm/qcom', 'arm/smmu', 'ppc/pamu', 'x86/vt-d', 'x86/amd', 's390' and 'core' into next 2017-09-01 11:31:42 +02:00
ipmi
leds LED updates for 4.14 2017-09-07 14:33:13 -07:00
lpddr2
mailbox
media DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
memory-controllers IOMMU Updates for Linux v4.14 2017-09-09 15:03:24 -07:00
metag
mfd DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
mips MIPS: lantiq: Add a GPHY driver which uses the RCU syscon-mfd 2017-09-04 21:19:02 +02:00
misc dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
mmc ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
mtd MTD changes for 4.14: 2017-09-09 14:48:21 -07:00
mux
net ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
nios2
nvmem DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
opp dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
pci ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
perf
phy Merge branch '4.14-features' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus 2017-09-15 20:43:33 -07:00
pinctrl DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
power RTC for 4.14 2017-09-13 10:56:00 -07:00
powerpc powerpc/powernv/vas: Define vas_init() and vas_exit() 2017-08-31 14:26:26 +10:00
pps drivers/pps: aesthetic tweaks to PPS-related content 2017-09-08 18:26:51 -07:00
ptp DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
pwm pwm: Changes for v4.14-rc1 2017-09-11 13:04:32 -07:00
regmap
regulator DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
remoteproc rpmsg updates for v4.14 2017-09-09 14:34:38 -07:00
reserved-memory
reset Merge branch '4.14-features' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus 2017-09-15 20:43:33 -07:00
rng
rtc RTC for 4.14 2017-09-13 10:56:00 -07:00
scsi dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
security/tpm dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
serial ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
serio DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
soc ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
sound The diff is dominated by the Allwinner A10/A20 SoCs getting converted to 2017-09-13 11:04:14 -07:00
spi DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
spmi
sram ARM: arm64: Devicetree updates for v4.14 2017-09-10 20:54:48 -07:00
staging/iio/adc
thermal Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux 2017-09-11 22:26:20 -07:00
timer devicetree: bindings: Remove deprecated properties 2017-08-29 11:08:05 +02:00
ufs
usb DeviceTree updates for 4.14: 2017-09-07 14:43:33 -07:00
virtio
w1 dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
watchdog Merge branch '4.14-features' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus 2017-09-15 20:43:33 -07:00
x86
xillybus
ABI.txt
chosen.txt
common-properties.txt
graph.txt
marvell.txt
numa.txt
property-units.txt
resource-names.txt
sparc_sun_oracle_rng.txt
submitting-patches.txt
trivial-devices.txt dt-bindings: add amc6821, isl1208 trivial bindings 2017-08-22 19:23:06 -05:00
unittest.txt dt-bindings: Remove "status" from examples 2017-09-05 10:03:06 -05:00
vendor-prefixes.txt Merge branch '4.14-features' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus 2017-09-15 20:43:33 -07:00
xilinx.txt char: xilinx_hwicap: Fix warnings in the driver 2017-08-28 17:04:47 +02:00