forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'hwmon-for-linus-v4.5' of git://git.kernel.org/pub/scm/linu…
…x/kernel/git/groeck/linux-staging Pull hwmon updates from Guenter Roeck: "Notable hwmon changes: - Add basic support for NCT6683 on Mitac boards - Add support for AMD new 15h processors to fam15h_power driver - Add pmbus client driver for LTC3815 - Remove htu21 driver (now supported by iio subsystem)" * tag 'hwmon-for-linus-v4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging: hwmon: (nct6683) Add basic support for NCT6683 on Mitac boards hwmon: (ibmaem) constify aem_rw_sensor_template and aem_ro_sensor_template structures hwmon: (nct6683,nct6775) constify sensor_template_group structures MAINTAINERS: change the maintainer of fam15h_power driver hwmon: (fam15h_power) Add support for AMD new 15h processors hwmon: (pmbus) Add client driver for LTC3815 hwmon: (htu21) Remove driver
- Loading branch information
Showing
14 changed files
with
381 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1507,6 +1507,14 @@ S: 312/107 Canberra Avenue | |
S: Griffith, ACT 2603 | ||
S: Australia | ||
|
||
N: Andreas Herrmann | ||
E: [email protected] | ||
E: [email protected] | ||
D: Key developer of x86/AMD64 | ||
D: Author of AMD family 15h processor power monitoring driver | ||
D: Maintainer of AMD Athlon 64 and Opteron processor frequency driver | ||
S: Germany | ||
|
||
N: Sebastian Hetze | ||
E: [email protected] | ||
D: German Linux Documentation, | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
Kernel driver ltc3815 | ||
===================== | ||
|
||
Supported chips: | ||
* Linear Technology LTC3815 | ||
Prefix: 'ltc3815' | ||
Addresses scanned: - | ||
Datasheet: http://www.linear.com/product/ltc3815 | ||
|
||
Author: Guenter Roeck <[email protected]> | ||
|
||
|
||
Description | ||
----------- | ||
|
||
LTC3815 is a Monolithic Synchronous DC/DC Step-Down Converter. | ||
|
||
|
||
Usage Notes | ||
----------- | ||
|
||
This driver does not probe for PMBus devices. You will have to instantiate | ||
devices explicitly. | ||
|
||
Example: the following commands will load the driver for an LTC3815 | ||
at address 0x20 on I2C bus #1: | ||
|
||
# modprobe ltc3815 | ||
# echo ltc3815 0x20 > /sys/bus/i2c/devices/i2c-1/new_device | ||
|
||
|
||
Sysfs attributes | ||
---------------- | ||
|
||
in1_label "vin" | ||
in1_input Measured input voltage. | ||
in1_alarm Input voltage alarm. | ||
in1_highest Highest input voltage. | ||
in1_reset_history Reset input voltage history. | ||
|
||
in2_label "vout1". | ||
in2_input Measured output voltage. | ||
in2_alarm Output voltage alarm. | ||
in2_highest Highest output voltage. | ||
in2_reset_history Reset output voltage history. | ||
|
||
temp1_input Measured chip temperature. | ||
temp1_alarm Temperature alarm. | ||
temp1_highest Highest measured temperature. | ||
temp1_reset_history Reset temperature history. | ||
|
||
curr1_label "iin". | ||
curr1_input Measured input current. | ||
curr1_highest Highest input current. | ||
curr1_reset_history Reset input current history. | ||
|
||
curr2_label "iout1". | ||
curr2_input Measured output current. | ||
curr2_alarm Output current alarm. | ||
curr2_highest Highest output current. | ||
curr2_reset_history Reset output current history. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -614,9 +614,9 @@ F: drivers/crypto/ccp/ | |
F: include/linux/ccp.h | ||
|
||
AMD FAM15H PROCESSOR POWER MONITORING DRIVER | ||
M: Andreas Herrmann <herrmann.der.user@googlemail.com> | ||
M: Huang Rui <ray.huang@amd.com> | ||
L: [email protected] | ||
S: Maintained | ||
S: Supported | ||
F: Documentation/hwmon/fam15h_power | ||
F: drivers/hwmon/fam15h_power.c | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.