Hi Linus, Please pull hwmon updates for Linux v5.12 from signed tag: git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-v5.12 Thanks, Guenter ------ The following changes since commit 19c329f6808995b142b3966301f217c831e7cf31: Linux 5.11-rc4 (2021-01-17 16:37:05 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-v5.12 for you to fetch changes up to 6ab3332cc692ad04dfa30c92d3391aea8b971ef2: MAINTAINERS: Add entry for Texas Instruments TPS23861 PoE PSE (2021-02-12 07:02:55 -0800) ---------------------------------------------------------------- hwmon updates for v5.12 - New drivers Texas Instruments TPS23861 driver AHT10 Temperature and Humidity Sensor Driver - Support for new chips/variants to existing drivers Add AMD family 19h model 30h x86 match to amd_energy driver Add Zen3 Ryzen Desktop CPUs support to k10temp driver Add support for MAX16508 to max16601 driver Support revision "B" of max31785 Add support for ASRock boards to nct6683 driver - Driver removals (abx500) Decomission abx500 driver Various other minor fixes and improvements. ---------------------------------------------------------------- Blaž Hrastnik (1): hwmon: (nct6683) Support ASRock boards Dan Carpenter (1): hwmon: (aht10) Unlock on error in aht10_read_values() Eddie James (2): hwmon: (pmbus) Add a PMBUS_NO_CAPABILITY platform data flag hwmon: (pmbus/ibm-cffps) Set the PMBUS_NO_CAPABILITY flag Erik Rosen (2): hwmon: (pmbus) Clear sensor data after chip write hwmon: (pmbus/lm25066) Remove unnecessary pmbus_clear_cache function call Gabriel Craciunescu (1): hwmon: (k10temp) Zen3 Ryzen Desktop CPUs support Guenter Roeck (3): hwmon: (abx500) Decomission abx500 driver hwmon: (pmbus/max16601) Determine and use number of populated phases hwmon: (pmbus/max16601) Add support for MAX16508 Jiapeng Zhong (2): hwmon: (applesmc) Assign boolean values to a bool variable hwmon: (pmbus) Simplify the calculation of variables Johannes Cornelis Draaijer (datdenkikniet) (1): hwmon: Add AHT10 Temperature and Humidity Sensor Driver Matthew Barth (1): hwmon: (pmbus/max31785) Support revision "B" Mauro Carvalho Chehab (1): hwmon: (ina2) update ti,ina2xx.yaml reference in documentation Naveen Krishna Chatradhi (1): hwmon: (amd_energy) Add AMD family 19h model 30h x86 match Paul Barker (2): hwmon: (pwm-fan) Store tach data separately hwmon: (pwm-fan) Support multiple fan tachometers Robert Marko (3): dt-bindings: hwmon: Add TI TPS23861 bindings hwmon: add Texas Instruments TPS23861 driver MAINTAINERS: Add entry for Texas Instruments TPS23861 PoE PSE Thomas Hebb (1): hwmon: (dell-smm) Add XPS 15 L502X to fan control blacklist Tian Tao (5): hwmon: (w83627ehf) Switch to using the new API kobj_to_dev() hwmon: (gpio-fan) Switch to using the new API kobj_to_dev() hwmon: (max6650) Switch to using the new API kobj_to_dev() hwmon: (aspeed-pwm-tacho) Switch to using the new API kobj_to_dev() hwmon: (da9052) Switch to using the new API kobj_to_dev() Tom Rix (1): hwmon: (smsc47m1) Remove 'h' from printk format specifier Uwe Kleine-König (1): hwmon: (pwm-fan) stop using legacy PWM functions and some cleanups Zheng Yongjun (1): hwmon: (pc87360) convert comma to semicolon .../devicetree/bindings/hwmon/ti,tps23861.yaml | 51 ++ Documentation/hwmon/ab8500.rst | 26 - Documentation/hwmon/abx500.rst | 32 -- Documentation/hwmon/aht10.rst | 46 ++ Documentation/hwmon/ina2xx.rst | 2 +- Documentation/hwmon/index.rst | 4 +- Documentation/hwmon/max16601.rst | 197 +++---- Documentation/hwmon/nct6683.rst | 1 + Documentation/hwmon/tps23861.rst | 41 ++ MAINTAINERS | 9 + drivers/hwmon/Kconfig | 34 +- drivers/hwmon/Makefile | 3 +- drivers/hwmon/ab8500.c | 224 -------- drivers/hwmon/abx500.c | 487 ----------------- drivers/hwmon/abx500.h | 69 --- drivers/hwmon/aht10.c | 348 ++++++++++++ drivers/hwmon/amd_energy.c | 1 + drivers/hwmon/applesmc.c | 2 +- drivers/hwmon/aspeed-pwm-tacho.c | 4 +- drivers/hwmon/da9052-hwmon.c | 2 +- drivers/hwmon/dell-smm-hwmon.c | 7 + drivers/hwmon/gpio-fan.c | 2 +- drivers/hwmon/k10temp.c | 3 +- drivers/hwmon/max6650.c | 2 +- drivers/hwmon/nct6683.c | 3 + drivers/hwmon/pc87360.c | 4 +- drivers/hwmon/pmbus/Kconfig | 4 +- drivers/hwmon/pmbus/ibm-cffps.c | 2 +- drivers/hwmon/pmbus/lm25066.c | 5 - drivers/hwmon/pmbus/max16601.c | 91 +++- drivers/hwmon/pmbus/max31785.c | 13 +- drivers/hwmon/pmbus/pmbus_core.c | 12 +- drivers/hwmon/pwm-fan.c | 159 +++--- drivers/hwmon/smsc47m1.c | 2 +- drivers/hwmon/tps23861.c | 601 +++++++++++++++++++++ drivers/hwmon/w83627ehf.c | 2 +- include/linux/pmbus.h | 9 + 37 files changed, 1416 insertions(+), 1088 deletions(-) create mode 100644 Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml delete mode 100644 Documentation/hwmon/ab8500.rst delete mode 100644 Documentation/hwmon/abx500.rst create mode 100644 Documentation/hwmon/aht10.rst create mode 100644 Documentation/hwmon/tps23861.rst delete mode 100644 drivers/hwmon/ab8500.c delete mode 100644 drivers/hwmon/abx500.c delete mode 100644 drivers/hwmon/abx500.h create mode 100644 drivers/hwmon/aht10.c create mode 100644 drivers/hwmon/tps23861.c