linux_dsm_epyc7002/Documentation/devicetree/bindings
Greg Kroah-Hartman cef077e6aa Second set of new device support, cleanups and features for IIO in the 5.8 cycle
Usual mixed back but with a few subsystem wide or device type
 wide cleanups.
 
 New device support
 
 * adis16475
   - New driver supporting adis16470, adis16475, adis16477, adis16465,
     adis16467, adis16500, adis16505 and adis16507.
     Includes some rework of the adis library to simplify using it
     for this new driver.
 * ak8974
   - Add support for Alps hscdt008a. ID only. Related patches add support
     for scale.
 * atlas-sensor
   - Add support for RTD-SM OEM temperature sensor.
 * cm32181
   - Add support for CM3218 including support for SMBUS alert via
     ACPI resources.
 * ltc2632
   - Add support for ltc2634-12/10/8 DACS including handling per
     device type numbers of channels.
 
 Major Features
 
 * cm32181
   - ACPI bindings including parsing CPM0 and CPM1 custom ACPI tables.
     Includes minor tidy ups and fixes.
 * vcnl4000
   - Add event support
   - Add buffered data capture support
   - Add control of sampling frequency
 
 Cleanups and minor fixes.
 
 * core
   - Trivial rework of iio_device_alloc to use an early return and
     improve readability.
   - Precursors to addition of multiple buffer support. So far
     minor refactoring.
 * subsystem wide
   - Use get_unaligned_be24 slightly improve readability over open
     coding it.
 * adis drivers
   - Use iio_get_debugfs_dentry access function.
 * bh1780, cm32181, cm3232, gp2ap02a00f, opt3001, st_uvis25, vl6180,
   dmard06, kxsd9
   - Drop use of of_match_ptr to allow ACPI based probing via PRP0001.
     Part of clear out of this to avoid cut and paste into new drivers.
 * ad5592r, ad5593r
   - Fix typos
 * ad5933
   - Use managed interfaces to automate error handling and remove.
 * ak8974
   - Fix wrong number of 'real bits' for buffered data.
   - Refactor to pull measurement code out as separate function.
     bmp280
   - Fix lack of clamp on range during data capture.
 * at91-sama5d2_adc
   - Handle unfinished conversions correctly.
   - Allow use of triggers other than it's own.
   - Reorganize buffer setup and tear down as part of long running
     subsystem wide rework.
 * ccs811
   - Add DT binding docs and match table.
   - Support external reset and wakeup pins.
 * hid-sensors
   - Reorganize buffer setup and tear down as part of long running
     subsystem wide rework.
 * ltr501
   - Constify some structs.
 * vcnl4000
   - Fix an endian issue by using explicit byte swapped i2c accessors.
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEEbilms4eEBlKRJoGxVIU0mcT0FogFAl666PYRHGppYzIzQGtl
 cm5lbC5vcmcACgkQVIU0mcT0FohMRQ//ZvDdYRB883lW11iRZJhnzpFhClNbzEp1
 2wxEqMOaLQmf6MntRX6LWmN15EGmQw1Eu2SBCt3G5XRMWKvtxaLnERKYxds67qtP
 uhTJDnfcDUYa6ACEHYs0FSfdmUL3S/7qmdKsABU+86o4LGzyb/jblWruB+6jOWyJ
 vRtMGUC8QP2RA2hq5UNJ3au1tlIS3IYqkmh1A1IXD8OtNW/EGpwFUMsmtRGd99gI
 lJb9VtlAF2bxqUBJuvludrRs8HMHafKRm9WM7+pJX7w2waSsiMMFojB7jDlJTAW/
 J2Zb5UGSUHMwJNLmhr+t1BjeAtO9AVzQsK80e+GXxjyb7rv1IKSt9eFUfev1jCuR
 lws3+QhwamGrxh7sFG4NFaWkZmmj5SSPTMqI+GCjm1VTL+vb3rh0MBjgn9/RNPux
 lEhscgEmq0w3BJPX08G8tZ4yipZbO4ZMmuQC3Gx2iPqO80xJqD+XpD5jz4MciGBC
 MDfWMamlnGk3n1sb4TIm0vPCtkz471DX5TyVLPLatcPnwWtu1zH380BD9HGVfnBN
 Fommp6YKvlpOCHOgl4vNg9pLKyUAukQbM8V0lPfk3NWQdswABmzDYJqh4HJWADxT
 uLiW8VgDfeq7CVPL+wwfWV3S9edu/REZa2f9y6qV/3eCyK0XId2CVHr8WpqbQIOR
 p6jjJHfzPNU=
 =mYqq
 -----END PGP SIGNATURE-----

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

Jonathan writes:

Second set of new device support, cleanups and features for IIO in the 5.8 cycle

Usual mixed back but with a few subsystem wide or device type
wide cleanups.

New device support

* adis16475
  - New driver supporting adis16470, adis16475, adis16477, adis16465,
    adis16467, adis16500, adis16505 and adis16507.
    Includes some rework of the adis library to simplify using it
    for this new driver.
* ak8974
  - Add support for Alps hscdt008a. ID only. Related patches add support
    for scale.
* atlas-sensor
  - Add support for RTD-SM OEM temperature sensor.
* cm32181
  - Add support for CM3218 including support for SMBUS alert via
    ACPI resources.
* ltc2632
  - Add support for ltc2634-12/10/8 DACS including handling per
    device type numbers of channels.

Major Features

* cm32181
  - ACPI bindings including parsing CPM0 and CPM1 custom ACPI tables.
    Includes minor tidy ups and fixes.
* vcnl4000
  - Add event support
  - Add buffered data capture support
  - Add control of sampling frequency

Cleanups and minor fixes.

* core
  - Trivial rework of iio_device_alloc to use an early return and
    improve readability.
  - Precursors to addition of multiple buffer support. So far
    minor refactoring.
* subsystem wide
  - Use get_unaligned_be24 slightly improve readability over open
    coding it.
* adis drivers
  - Use iio_get_debugfs_dentry access function.
* bh1780, cm32181, cm3232, gp2ap02a00f, opt3001, st_uvis25, vl6180,
  dmard06, kxsd9
  - Drop use of of_match_ptr to allow ACPI based probing via PRP0001.
    Part of clear out of this to avoid cut and paste into new drivers.
* ad5592r, ad5593r
  - Fix typos
* ad5933
  - Use managed interfaces to automate error handling and remove.
* ak8974
  - Fix wrong number of 'real bits' for buffered data.
  - Refactor to pull measurement code out as separate function.
    bmp280
  - Fix lack of clamp on range during data capture.
* at91-sama5d2_adc
  - Handle unfinished conversions correctly.
  - Allow use of triggers other than it's own.
  - Reorganize buffer setup and tear down as part of long running
    subsystem wide rework.
* ccs811
  - Add DT binding docs and match table.
  - Support external reset and wakeup pins.
* hid-sensors
  - Reorganize buffer setup and tear down as part of long running
    subsystem wide rework.
* ltr501
  - Constify some structs.
* vcnl4000
  - Fix an endian issue by using explicit byte swapped i2c accessors.

* tag 'iio-for-5.8b' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio: (74 commits)
  iio: light: ltr501: Constify structs
  staging: iio: ad5933: attach life-cycle of kfifo buffer to parent device and use managed calls throughout
  iio: bmp280: fix compensation of humidity
  iio: light: cm32181: Fix integartion time typo
  iio: light: cm32181: Add support for parsing CPM0 and CPM1 ACPI tables
  iio: light: cm32181: Make lux_per_bit and lux_per_bit_base_it runtime settings
  iio: light: cm32181: Use units of 1/100000th for calibscale and lux_per_bit
  iio: light: cm32181: Change reg_init to use a bitmap of which registers to init
  iio: light: cm32181: Handle CM3218 ACPI devices with 2 I2C resources
  iio: light: cm32181: Clean up the probe function a bit
  iio: light: cm32181: Add support for the CM3218
  iio: light: cm32181: Add some extra register defines
  iio: light: cm32181: Add support for ACPI enumeration
  iio: light: cm32181: Switch to new style i2c-driver probe function
  iio: hid-sensors: move triggered buffer setup into hid_sensor_setup_trigger
  iio: vcnl4000: Add buffer support for VCNL4010/20.
  iio: vcnl4000: Add sampling frequency support for VCNL4010/20.
  iio: vcnl4000: Add event support for VCNL4010/20.
  iio: vcnl4000: Factorize data reading and writing.
  iio: vcnl4000: Fix i2c swapped word reading.
  ...
2020-05-15 16:03:28 +02:00
..
arc
arm dt-bindings: Fix dtc warnings on reg and ranges in examples 2020-04-14 15:41:13 -05:00
ata dt-bindings: ata: rcar-sata: Convert to json-schema 2020-02-26 09:37:06 -06:00
auxdisplay
board
bus ARM: driver updates 2020-04-03 15:05:35 -07:00
c6x
chrome dt-bindings: Add cros-ec Type C port driver 2020-03-31 09:03:34 -06:00
clock dt-bindings: clock: syscon-icst: Remove unneeded unit name 2020-04-14 15:41:13 -05:00
connector dt-bindings: Convert usb-connector to YAML format. 2020-03-12 14:02:35 -05:00
counter
cpu
cpufreq
crypto ARM: devicetree updates for v5.7 2020-04-03 15:22:05 -07:00
csky
ddr
devfreq
display A few resources-related fixes (tidss, dp_mst, scheduler), probe fixes and 2020-04-24 10:14:04 +10:00
dma dmaengine fixes for v5.7-rc4 2020-05-02 11:16:14 -07:00
dsp dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
edac dt-bindings: edac: Dmc-520.yaml 2020-02-19 21:00:20 +01:00
eeprom dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
extcon dt-bindings: extcon: usbc-cros-ec: convert extcon-usbc-cros-ec.txt to yaml format 2020-03-25 08:16:13 +09:00
firmware ARM: driver updates 2020-04-03 15:05:35 -07:00
fpga arch: nios2: remove 'resetvalue' property 2020-04-11 01:46:04 +08:00
fsi dt-bindings: fsi: Add FSI2SPI bindings 2020-03-10 14:11:56 +00:00
fuse
gnss dt-bindings: serial: Convert slave-device bindings to json-schema 2020-03-23 11:08:28 -06:00
goldfish
gpio docs: dt: fix references to ap806-system-controller.txt 2020-03-31 09:03:34 -06:00
gpu dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
h8300
hsi
hwlock
hwmon dt-bindings: hwmon: Fix incorrect $id paths 2020-04-14 15:41:14 -05:00
i2c Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
i3c
iio Second set of new device support, cleanups and features for IIO in the 5.8 cycle 2020-05-15 16:03:28 +02:00
infiniband
input dt-bindings: touchscreen: edt-ft5x06: Remove unneeded I2C unit name 2020-04-14 15:41:13 -05:00
interconnect dt-bindings: interconnect: Add OSM L3 DT binding on SC7180 2020-03-03 19:02:52 +02:00
interrupt-controller dt-bindings: interrupt-controller: Fix loongson,parent_int_map property schema 2020-04-14 15:41:14 -05:00
iommu dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
ipmi dt-bindings: ipmi: aspeed: Introduce a v2 binding for KCS 2020-04-03 08:05:05 -05:00
leds dt-bindings: leds: common: fix example for gpio-leds 2020-03-31 09:03:34 -06:00
mailbox Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
media Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
memory-controllers dt-bindings: Fix dtc warnings on reg and ranges in examples 2020-04-14 15:41:13 -05:00
mfd dt-bindings: Fix erroneous 'additionalProperties' 2020-04-24 16:36:48 -05:00
mips dt-bindings: mips: Add loongson boards 2020-03-25 16:07:11 +01:00
misc dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
mmc Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
mtd Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
mux
nds32
net Devicetree fixes for v5.7: 2020-04-17 11:35:20 -07:00
nios2
nvmem Bindings: nvmem: add bindings for JZ4780 efuse 2020-03-19 07:41:03 +01:00
openrisc/opencores
opp cpufreq: qcom: Add support for krait based socs 2020-03-20 09:59:57 +05:30
pci ARM: devicetree updates for v5.7 2020-04-03 15:22:05 -07:00
perf
phy dt-bindings: phy: qcom-qusb2: Fix defaults 2020-04-24 17:53:57 -05:00
pinctrl Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
pmem
power ARM: driver updates 2020-04-03 15:05:35 -07:00
powerpc
pps
ptp Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
pwm dt-bindings: pwm: Fix cros-ec-pwm example dtc 'reg' warning 2020-04-15 16:24:17 -05:00
regmap
regulator dt-bindings: Fix erroneous 'additionalProperties' 2020-04-24 16:36:48 -05:00
remoteproc dt-bindings: remoteproc: Add OMAP remoteproc bindings 2020-03-25 22:29:46 -07:00
reserved-memory
reset Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
riscv
rng dt-bindings: Fix dtc warnings on reg and ranges in examples 2020-04-14 15:41:13 -05:00
rtc RTC for 5.7 2020-04-04 10:38:01 -07:00
scsi
security/tpm
serial Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
serio
sifive
siox
slimbus
soc ARM: driver updates 2020-04-03 15:05:35 -07:00
sound sound fixes for 5.7-rc3 2020-04-24 10:27:43 -07:00
soundwire
spi dt-bindings: Fix dtc warnings on reg and ranges in examples 2020-04-14 15:41:13 -05:00
spmi
sram dt-bindings: Add missing 'additionalProperties: false' 2020-03-31 09:03:17 -06:00
staging/iio/adc
thermal - Convert tsens configuration DT binding to yaml (Rajeshwari) 2020-04-07 20:00:16 -07:00
timer Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
ufs
usb USB fixes for 5.7-rc3 2020-04-26 11:22:01 -07:00
virtio
w1
watchdog linux-watchdog 5.7-rc1 tag 2020-04-08 21:29:10 -07:00
x86
xillybus
.gitignore SPDX patches for 5.7-rc1. 2020-04-03 13:12:26 -07:00
ABI.txt
chosen.txt
common-properties.txt
example-schema.yaml dt-bindings: example-schema: Drop double quotes around URLs 2020-02-26 09:35:57 -06:00
graph.txt
jailhouse.txt
Makefile dt-bindings: Fix command line length limit calling dt-mk-schema 2020-04-24 09:28:58 -05:00
numa.txt
property-units.txt
resource-names.txt
submitting-patches.txt
trivial-devices.yaml Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
unittest.txt
vendor-prefixes.yaml Devicetree updates for v5.7: 2020-04-02 17:32:52 -07:00
writing-bindings.txt
xilinx.txt