diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-05 18:55:36 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-05 18:55:36 -0400 |
| commit | 161d2e0a195292a8a67b0f5c48e12a9984f75dac (patch) | |
| tree | 4f3c516ab41737b1e51a58ca3d5f8cca421ae949 | |
| parent | c489d98c8c81a898cfed6bec193cca2006f956aa (diff) | |
| parent | fce9626cd93abaf1ef21b361f8a0fa493cc855b2 (diff) | |
Merge tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
Pull hwmon updates from Guenter Roeck:
"Notable changes:
- Heiko Schocher provided a driver for TI TMP103.
- Kamil Debski provided a driver for pwm-controlled fans.
- Neelesh Gupta provided a driver for power, fan rpm, voltage and
temperature reporting on powerpc/powernv systems.
- Scott Kanowitz provided a driver supporting Lattice's POWR1220
power manager IC.
- Richard Zhu provided a pmbus front-end driver for TPS40422.
- Frans Klaver added support for TMP112 to the lm75 driver.
- Johannes Pointner added support for EPCOS B57330V2103 to the
ntc_thermistor driver.
- Guenter Roeck added support for TMP441 and TMP442 to the tmp421
driver.
- Axel Lin converted several drivers to the new hwmon API (36 of
them, if I counted correctly), and cleaned up many of the drivers
along the way.
There are also a number of patches fixing bugs discovered while
testing Axel's changes"
* tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging: (88 commits)
hwmon: (g762) Use of_property_read_u32 at appropriate place
hwmon: (sis5595) Prevent overflow problem when writing large limits
hwmon: (gpio-fan) Prevent overflow problem when writing large limits
hwmon: (ibmpowernv) Use of_property_read_u32 at appropriate place
hwmon: (lm85) Convert to devm_hwmon_device_register_with_groups
hwmon: (lm85) Avoid forward declaration
hwmon: (lm78) Convert to devm_hwmon_device_register_with_groups
hwmon: (max6697) Use of_property_read_bool at appropriate places
hwmon: (pwm-fan) Make SENSORS_PWM_FAN depend on OF
hwmon: (pwm-fan) Remove duplicate dev_set_drvdata call
hwmon: (nct6775) Remove num_attr_groups from struct nct6775_data
hwmon: (nct6775) Update module description and Kconfig for NCT6106D and NCT6791D
hwmon: (adt7411) Convert to devm_hwmon_device_register_with_groups
hwmon: (g762) Convert to hwmon_device_register_with_groups
hwmon: (emc2103) Convert to devm_hwmon_device_register_with_groups
hwmon: (smsc47m1) Avoid forward declaration
hwmon: (smsc47m192) Convert to devm_hwmon_device_register_with_groups
hwmon: (smsc47m192) Avoid forward declaration
hwmon: (max1668) Make max1668_addr_list array const
hwmon: (max6639) Make normal_i2c array const
...
81 files changed, 4258 insertions, 3885 deletions
diff --git a/Documentation/devicetree/bindings/hwmon/ibmpowernv.txt b/Documentation/devicetree/bindings/hwmon/ibmpowernv.txt new file mode 100644 index 000000000000..f93242be60a1 --- /dev/null +++ b/Documentation/devicetree/bindings/hwmon/ibmpowernv.txt | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | IBM POWERNV platform sensors | ||
| 2 | ---------------------------- | ||
| 3 | |||
| 4 | Required node properties: | ||
| 5 | - compatible: must be one of | ||
| 6 | "ibm,opal-sensor-cooling-fan" | ||
| 7 | "ibm,opal-sensor-amb-temp" | ||
| 8 | "ibm,opal-sensor-power-supply" | ||
| 9 | "ibm,opal-sensor-power" | ||
| 10 | - sensor-id: an opaque id provided by the firmware to the kernel, identifies a | ||
| 11 | given sensor and its attribute data | ||
| 12 | |||
| 13 | Example sensors node: | ||
| 14 | |||
| 15 | cooling-fan#8-data { | ||
| 16 | sensor-id = <0x7052107>; | ||
| 17 | compatible = "ibm,opal-sensor-cooling-fan"; | ||
| 18 | }; | ||
| 19 | |||
| 20 | amb-temp#1-thrs { | ||
| 21 | sensor-id = <0x5096000>; | ||
| 22 | compatible = "ibm,opal-sensor-amb-temp"; | ||
| 23 | }; | ||
diff --git a/Documentation/devicetree/bindings/hwmon/ntc_thermistor.txt b/Documentation/devicetree/bindings/hwmon/ntc_thermistor.txt index b117b2e9e1a7..2391e5c41999 100644 --- a/Documentation/devicetree/bindings/hwmon/ntc_thermistor.txt +++ b/Documentation/devicetree/bindings/hwmon/ntc_thermistor.txt | |||
| @@ -3,6 +3,7 @@ NTC Thermistor hwmon sensors | |||
| 3 | 3 | ||
| 4 | Requires node properties: | 4 | Requires node properties: |
| 5 | - "compatible" value : one of | 5 | - "compatible" value : one of |
| 6 | "epcos,b57330v2103" | ||
| 6 | "murata,ncp15wb473" | 7 | "murata,ncp15wb473" |
| 7 | "murata,ncp18wb473" | 8 | "murata,ncp18wb473" |
| 8 | "murata,ncp21wb473" | 9 | "murata,ncp21wb473" |
diff --git a/Documentation/devicetree/bindings/hwmon/pwm-fan.txt b/Documentation/devicetree/bindings/hwmon/pwm-fan.txt new file mode 100644 index 000000000000..610757ce4492 --- /dev/null +++ b/Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | Bindings for a fan connected to the PWM lines | ||
| 2 | |||
| 3 | Required properties: | ||
| 4 | - compatible : "pwm-fan" | ||
| 5 | - pwms : the PWM that is used to control the PWM fan | ||
| 6 | |||
| 7 | Example: | ||
| 8 | pwm-fan { | ||
| 9 | compatible = "pwm-fan"; | ||
| 10 | status = "okay"; | ||
| 11 | pwms = <&pwm 0 10000 0>; | ||
| 12 | }; | ||
diff --git a/Documentation/devicetree/bindings/i2c/trivial-devices.txt b/Documentation/devicetree/bindings/i2c/trivial-devices.txt index 1a794213f7d1..37803eb5521e 100644 --- a/Documentation/devicetree/bindings/i2c/trivial-devices.txt +++ b/Documentation/devicetree/bindings/i2c/trivial-devices.txt | |||
| @@ -84,5 +84,6 @@ stm,m41t80 M41T80 - SERIAL ACCESS RTC WITH ALARMS | |||
