Hi Linus, Please pull hwmon updates for Linux v5.5 from signed tag: git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-v5.5 Thanks, Guenter ------ The following changes since commit a99d8080aaf358d5d23581244e5da23b35e340b9: Linux 5.4-rc6 (2019-11-03 14:07:26 -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.5 for you to fetch changes up to 4a1288f1c1cf5829f90c30f9d1af67f526ba4d85: dell-smm-hwmon: Add documentation (2019-11-22 20:47:43 -0800) ---------------------------------------------------------------- hwmon updates for v5.5 - Added support for Texas Instruments TMP512/513 - Added support for LTC2947 - Added support for BEL PFE1100 and PFE3000 - Various minor improvements and fixes ---------------------------------------------------------------- Colin Ian King (2): hwmon: abituguru: make array probe_order static, makes object smaller hwmon: (w83793d) remove redundant assignment to variable res Dmitry Torokhov (1): hwmon: (applesmc) switch to using input device polling mode Eddie James (4): hwmon: (pmbus/ibm-cffps) Switch LEDs to blocking brightness call hwmon: (pmbus/ibm-cffps) Fix LED blink behavior dt-bindings: hwmon: Document ibm,cffps compatible string hwmon: (pmbus/ibm-cffps) Add version detection capability Eric Tremblay (2): dt-bindings: hwmon: Add TMP512/513 hwmon: Add driver for Texas Instruments TMP512/513 sensor chips. Giovanni Mascellani (2): hwmon: (dell-smm) Add support for disabling automatic BIOS fan control dell-smm-hwmon: Add documentation Kyle Roeschley (1): hwmon: (tmp421) Allow reading at 2Hz instead of 0.5Hz Markus Elfring (1): hwmon: (aspeed-pwm-tacho) Use devm_platform_ioremap_resource() in aspeed_pwm_tacho_probe() Nicolin Chen (1): hwmon: (ina3221) Add summation feature support Nuno Sá (2): hwmon: Add support for ltc2947 dt-bindings: hwmon: Add ltc2947 documentation Tao Ren (2): hwmon: (pmbus) add driver for BEL PFE1100 and PFE3000 docs: hwmon: Document bel-pfe pmbus driver .../devicetree/bindings/hwmon/adi,ltc2947.yaml | 104 ++ .../devicetree/bindings/hwmon/ibm,cffps1.txt | 3 + .../devicetree/bindings/hwmon/ti,tmp513.yaml | 93 ++ Documentation/hwmon/bel-pfe.rst | 112 ++ Documentation/hwmon/dell-smm-hwmon.rst | 164 +++ Documentation/hwmon/ina3221.rst | 12 + Documentation/hwmon/index.rst | 4 + Documentation/hwmon/ltc2947.rst | 100 ++ Documentation/hwmon/tmp513.rst | 103 ++ MAINTAINERS | 18 + drivers/hwmon/Kconfig | 38 +- drivers/hwmon/Makefile | 4 + drivers/hwmon/abituguru.c | 2 +- drivers/hwmon/applesmc.c | 38 +- drivers/hwmon/aspeed-pwm-tacho.c | 7 +- drivers/hwmon/dell-smm-hwmon.c | 115 +- drivers/hwmon/ina3221.c | 163 ++- drivers/hwmon/ltc2947-core.c | 1183 ++++++++++++++++++++ drivers/hwmon/ltc2947-i2c.c | 49 + drivers/hwmon/ltc2947-spi.c | 50 + drivers/hwmon/ltc2947.h | 12 + drivers/hwmon/pmbus/Kconfig | 9 + drivers/hwmon/pmbus/Makefile | 1 + drivers/hwmon/pmbus/bel-pfe.c | 131 +++ drivers/hwmon/pmbus/ibm-cffps.c | 74 +- drivers/hwmon/tmp421.c | 3 +- drivers/hwmon/tmp513.c | 772 +++++++++++++ drivers/hwmon/w83793.c | 2 +- 28 files changed, 3288 insertions(+), 78 deletions(-) create mode 100644 Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml create mode 100644 Documentation/devicetree/bindings/hwmon/ti,tmp513.yaml create mode 100644 Documentation/hwmon/bel-pfe.rst create mode 100644 Documentation/hwmon/dell-smm-hwmon.rst create mode 100644 Documentation/hwmon/ltc2947.rst create mode 100644 Documentation/hwmon/tmp513.rst create mode 100644 drivers/hwmon/ltc2947-core.c create mode 100644 drivers/hwmon/ltc2947-i2c.c create mode 100644 drivers/hwmon/ltc2947-spi.c create mode 100644 drivers/hwmon/ltc2947.h create mode 100644 drivers/hwmon/pmbus/bel-pfe.c create mode 100644 drivers/hwmon/tmp513.c