-
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.14' of git://git.kernel.org/pub/scm/lin…
…ux/kernel/git/groeck/linux-staging Pull hwmon updates from Guenter Roeck: - new drivers: - Lantiq CPU temperature sensor - IBM CFF power supply - TPS53679 PMBus driver - new support: - LM5066I (lm25066 PMBus driver) - Intel VID protocol VR13 (PMBus drivers) - CAT34TS02C, GT30TS00, GT34TS02, and CAT34TS04 (jc42 driver) - cleanup and minor improvements in several drivers * tag 'hwmon-for-linus-v4.14' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging: (36 commits) hwmon: (ltq-cputemp) add cpu temp sensor driver hwmon: (ltq-cputemp) add devicetree bindings documentation hwmon: (pmbus) Add support for Texas Instruments tps53679 device hwmon: (asc7621) make several arrays static const hwmon: (pmbus/lm25066) Add support for TI LM5066I hwmon: (pmbus/lm25066) Offset coefficient depends on CL hwmon: (pmbus) Add support for Intel VID protocol VR13 Documentation: hwmon: Document the IBM CFF power supply hwmon: (pmbus) Add IBM Common Form Factor (CFF) power supply driver dt-bindings: hwmon: Document the IBM CCF power supply version 1 hwmon: (ftsteutates) constify i2c_device_id hwmon: da9052: Add support for TSI channel mfd: da9052: Make touchscreen registration optional hwmon: da9052: Replace S_IRUGO with 0444 mfd: da9052: Add register details for TSI hwmon: (aspeed-pwm) add THERMAL dependency hwmon: (pmbus) Add debugfs for status registers hwmon: (aspeed-pwm-tacho) cooling device support. Documentation: dt-bindings: aspeed-pwm-tacho cooling device. hwmon: (pmbus): Add generic alarm bit for iin and pin ...
- Loading branch information
Showing
33 changed files
with
1,505 additions
and
138 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
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,21 @@ | ||
Device-tree bindings for IBM Common Form Factor Power Supply Version 1 | ||
---------------------------------------------------------------------- | ||
|
||
Required properties: | ||
- compatible = "ibm,cffps1"; | ||
- reg = < I2C bus address >; : Address of the power supply on the | ||
I2C bus. | ||
|
||
Example: | ||
|
||
i2c-bus@100 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
#interrupt-cells = <1>; | ||
< more properties > | ||
|
||
power-supply@68 { | ||
compatible = "ibm,cffps1"; | ||
reg = <0x68>; | ||
}; | ||
}; |
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,10 @@ | ||
Lantiq cpu temperatur sensor | ||
|
||
Requires node properties: | ||
- compatible value : | ||
"lantiq,cputemp" | ||
|
||
Example: | ||
cputemp@0 { | ||
compatible = "lantiq,cputemp"; | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
Kernel driver ibm-cffps | ||
======================= | ||
|
||
Supported chips: | ||
* IBM Common Form Factor power supply | ||
|
||
Author: Eddie James <eajames@us.ibm.com> | ||
|
||
Description | ||
----------- | ||
|
||
This driver supports IBM Common Form Factor (CFF) power supplies. This driver | ||
is a client to the core PMBus driver. | ||
|
||
Usage Notes | ||
----------- | ||
|
||
This driver does not auto-detect devices. You will have to instantiate the | ||
devices explicitly. Please see Documentation/i2c/instantiating-devices for | ||
details. | ||
|
||
Sysfs entries | ||
------------- | ||
|
||
The following attributes are supported: | ||
|
||
curr1_alarm Output current over-current alarm. | ||
curr1_input Measured output current in mA. | ||
curr1_label "iout1" | ||
|
||
fan1_alarm Fan 1 warning. | ||
fan1_fault Fan 1 fault. | ||
fan1_input Fan 1 speed in RPM. | ||
fan2_alarm Fan 2 warning. | ||
fan2_fault Fan 2 fault. | ||
fan2_input Fan 2 speed in RPM. | ||
|
||
in1_alarm Input voltage under-voltage alarm. | ||
in1_input Measured input voltage in mV. | ||
in1_label "vin" | ||
in2_alarm Output voltage over-voltage alarm. | ||
in2_input Measured output voltage in mV. | ||
in2_label "vout1" | ||
|
||
power1_alarm Input fault or alarm. | ||
power1_input Measured input power in uW. | ||
power1_label "pin" | ||
|
||
temp1_alarm PSU inlet ambient temperature over-temperature alarm. | ||
temp1_input Measured PSU inlet ambient temp in millidegrees C. | ||
temp2_alarm Secondary rectifier temp over-temperature alarm. | ||
temp2_input Measured secondary rectifier temp in millidegrees C. | ||
temp3_alarm ORing FET temperature over-temperature alarm. | ||
temp3_input Measured ORing FET temperature in millidegrees 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 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 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
Oops, something went wrong.