linux_old1/drivers/iio/light
Greg Kroah-Hartman 3ceefa3ffd Second set of IIO new device support, features and cleanups.
There are also a couple of fixes that can wait for the coming merge
 window.
 
 Core new features
 
 * Support for phase channels (used in time of flight sensors amongst
   other things)
 * Support for deep UV light channel modifier.
 
 New Device Support
 
 * AD4758 DAC
   - New driver and dt bindings.
 * adxl345
   - Support the adxl375 +-200g part which is register compatible.
 * isl29501 Time of flight sensor.
   - New driver
 * meson-saradc
   - Support the Meson8m2 Socs - right now this is just an ID, but there will
     be additional difference in future.
 * mpu6050
   - New ID for 6515 variant.
 * si1133 UV sensor.
   - New driver
 * Spreadtrum SC27xx PMIC ADC
   - New driver and dt bindings.
 
 Features
 
 * adxl345
   - Add calibration offset readback and writing.
   - Add sampling frequency control.
 
 Fixes and Cleanups
 
 * ad5933
   - Use a macro for the channel definition to reduce duplication.
 * ad9523
   - Replace use of core mlock with a local lock. Part of ongoing efforts
     to avoid confusing the purpose of mlock which is only about iio core
     state changes.
   - Fix displayed phase which was out by a factor of 10.
 * adxl345
   - Add a link to the datasheet.
   - Rework the use of the address field in the chan_spec structures to
     allow addition of more per channel information.
 * adis imu
   - Mark switch fall throughs.
 * at91-sama5d2
   - Fix some casting on big endian systems.
 * bmp280
   - Drop some DT elements that aren't used and should mostly be done from
     userspace rather than in DT.
 * hx711
   - add clock-frequency dt binding and resulting delay to deal with capacitance
     issue on some boards.
   - fix a spurious unit-address in the example.
 * ina2xx
   - Avoid a possible kthread_stop with a stale task_struct.
 * ltc2632
   - Remove some unused local variables (assigned but value never used).
 * max1363
   - Use device_get_match_data to remove some boilerplate.
 * mma8452
   - Mark switch fall throughs.
 * sca3000
   - Fix a missing return in a switch statement (a bad fallthrough
     previously!)
 * sigma-delta-modulator
   - Drop incorrect unit address from the DT example.
 * st_accel
   - Use device_get_match_data to drop some boiler plate.
   - Move to probe_new for i2c driver as second parameter not used.
 * st_sensors library
   - Use a strlcpy (safe in this case).
 * st_lsm6dsx
   - Add some error logging.
 * ti-ads7950
   - SPDX
   - Allow simultaneous buffered and polled reads. Needed on a Lego Mindstorms
     EV3 where some channels are used for power supply monitoring at a very low
     rate.
 * ti-dac5571
   - Remove an unused variable.
 * xadc
   - Drop some dead code.
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEEbilms4eEBlKRJoGxVIU0mcT0FogFAltXZAkRHGppYzIzQGtl
 cm5lbC5vcmcACgkQVIU0mcT0FohYZQ//VAjpDBYjLzYTvTJy5bDt61fbh8KabhBf
 oxLIpwYrCeleLnpbrY7nU8shdIL7Vm755jtsHbTtQPCKSQ0RGnhLLDoqoWcmn70J
 rF9iVaSv+S2lZO+9+hv2eeqyX+kSM+74fkWRuLmDbaSZWYO4Jt9zFER1zizmPypY
 DnxLcViw1kwOLbiZKwmcaK0MqlWHRPhEEcNVKy7VGZHznbylujh8evkzzQNVWOol
 QrR2NG7V8BcLTflmsYCErQDvgciGjscnVZUAyY3yNLIpceGCSHZfUsE8ld6iPrS+
 aPeuiIxDhHAKyoOTQwsGi9ex7KEOUOkoDHhKdR3Jr74mtfcPF5B+TxgXU0p5UZ9g
 GummuvSX0izYjUZ9P4keVgu3W4bvmR9Kd8oJUHNByWI1iecoXP9bQf33tEyb26R6
 G1zvGSDXPNK1V7OEaGvzGkgxOY0ZAIWLRX/+wasErdJnt3lmOV9+cCSkJAFSNrk3
 jQ922q2ZWLfYAL6nNIAx2dIiJirxTQ2JIq/bys2BHiYvkuvqNcKoBIDAGlQ4xBKm
 /c5z9Dm/DxQpdlKFQugHmc5awLEZxpq2LCTBLlgM8z6+uRWXui+slPfIrfX5RWun
 BHaLmPNm6tKQLadjwWCoxXYjKqgK0wm35Yq5d5He7d45d3QWKvtUgZAj33pcIgTE
 wKmwF5oaLiU=
 =T+hS
 -----END PGP SIGNATURE-----

Merge tag 'iio-for-4.19b' 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.

There are also a couple of fixes that can wait for the coming merge
window.

Core new features

* Support for phase channels (used in time of flight sensors amongst
  other things)
* Support for deep UV light channel modifier.

New Device Support

* AD4758 DAC
  - New driver and dt bindings.
* adxl345
  - Support the adxl375 +-200g part which is register compatible.
* isl29501 Time of flight sensor.
  - New driver
* meson-saradc
  - Support the Meson8m2 Socs - right now this is just an ID, but there will
    be additional difference in future.
* mpu6050
  - New ID for 6515 variant.
* si1133 UV sensor.
  - New driver
* Spreadtrum SC27xx PMIC ADC
  - New driver and dt bindings.

Features

* adxl345
  - Add calibration offset readback and writing.
  - Add sampling frequency control.

Fixes and Cleanups

* ad5933
  - Use a macro for the channel definition to reduce duplication.
* ad9523
  - Replace use of core mlock with a local lock. Part of ongoing efforts
    to avoid confusing the purpose of mlock which is only about iio core
    state changes.
  - Fix displayed phase which was out by a factor of 10.
* adxl345
  - Add a link to the datasheet.
  - Rework the use of the address field in the chan_spec structures to
    allow addition of more per channel information.
* adis imu
  - Mark switch fall throughs.
* at91-sama5d2
  - Fix some casting on big endian systems.
* bmp280
  - Drop some DT elements that aren't used and should mostly be done from
    userspace rather than in DT.
* hx711
  - add clock-frequency dt binding and resulting delay to deal with capacitance
    issue on some boards.
  - fix a spurious unit-address in the example.
* ina2xx
  - Avoid a possible kthread_stop with a stale task_struct.
* ltc2632
  - Remove some unused local variables (assigned but value never used).
* max1363
  - Use device_get_match_data to remove some boilerplate.
* mma8452
  - Mark switch fall throughs.
* sca3000
  - Fix a missing return in a switch statement (a bad fallthrough
    previously!)
* sigma-delta-modulator
  - Drop incorrect unit address from the DT example.
* st_accel
  - Use device_get_match_data to drop some boiler plate.
  - Move to probe_new for i2c driver as second parameter not used.
* st_sensors library
  - Use a strlcpy (safe in this case).
* st_lsm6dsx
  - Add some error logging.
* ti-ads7950
  - SPDX
  - Allow simultaneous buffered and polled reads. Needed on a Lego Mindstorms
    EV3 where some channels are used for power supply monitoring at a very low
    rate.
* ti-dac5571
  - Remove an unused variable.
* xadc
  - Drop some dead code.
2018-07-25 10:12:07 +02:00
..
Kconfig iio: light: introduce si1133 2018-07-23 19:18:11 +01:00
Makefile iio: light: introduce si1133 2018-07-23 19:18:11 +01:00
acpi-als.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
adjd_s311.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
al3320a.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
apds9300.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
apds9960.c iio: add SPDX identifier for various drivers 2018-02-18 11:55:19 +00:00
bh1750.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
bh1780.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
cm3232.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
cm3323.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
cm3605.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
cm32181.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
cm36651.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
cros_ec_light_prox.c iio: cros_ec: Move cros_ec_sensors_core.h in /include 2018-03-17 19:59:20 +00:00
gp2ap020a00f.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
hid-sensor-als.c iio: Replace occurrences of magic number 0 by IIO_CHAN_INFO_RAW 2018-03-07 20:14:36 +00:00
hid-sensor-prox.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
isl29018.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
isl29028.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
isl29125.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
jsa1212.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
lm3533-als.c iio: Replace occurrences of magic number 0 by IIO_CHAN_INFO_RAW 2018-03-07 20:14:36 +00:00
ltr501.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
lv0104cs.c iio: light: lv0104cs: Add support for LV0104CS light sensor 2018-03-03 15:16:57 +00:00
max44000.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
opt3001.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
pa12203001.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
rpr0521.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
si1133.c iio: light: introduce si1133 2018-07-23 19:18:11 +01:00
si1145.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
st_uvis25.h iio: light: add support for UVIS25 sensor 2017-12-02 10:41:25 +00:00
st_uvis25_core.c iio: light: add support for UVIS25 sensor 2017-12-02 10:41:25 +00:00
st_uvis25_i2c.c iio: light: make a couple of config structures static 2018-01-08 16:03:41 +01:00
st_uvis25_spi.c iio: light: make a couple of config structures static 2018-01-08 16:03:41 +01:00
stk3310.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
tcs3414.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
tcs3472.c iio: light: tcs3472: support out-of-threshold events 2017-09-03 18:10:29 +01:00
tsl2563.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
tsl2583.c iio: tsl2583: correct values in integration_time_available 2018-05-20 10:29:28 +01:00
tsl2772.c iio: tsl2x7x/tsl2772: avoid potential division by zero 2018-06-24 14:22:38 +01:00
tsl4531.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
us5182d.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
vcnl4000.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
veml6070.c iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner 2017-08-22 21:31:57 +01:00
vl6180.c iio: light: vl6180: Correct ALS scale for non-default gain/integration time 2017-10-09 20:50:21 +01:00
zopt2201.c iio: light: Add driver for IDT ZOPT2201 ambient light and UVB sensor 2017-12-02 10:39:48 +00:00