-
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.
Add support for LTC2991 Octal I2C Voltage, Current, and Temperature Monitor. The LTC2991 is used to monitor system temperatures, voltages and currents. Through the I2C serial interface, the eight monitors can individually measure supply voltages and can be paired for differential measurements of current sense resistors or temperature sensing transistors. Additional measurements include internal temperature and internal VCC. Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com> Link: https://lore.kernel.org/r/20231026103413.27800-2-antoniu.miclaus@analog.com [groeck: Fixed up documentation warning] Signed-off-by: Guenter Roeck <linux@roeck-us.net>
- Loading branch information
Antoniu Miclaus
authored and
Guenter Roeck
committed
Oct 30, 2023
1 parent
4bac088
commit 2b9ea42
Showing
6 changed files
with
501 additions
and
0 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 |
---|---|---|
|
@@ -121,6 +121,7 @@ Hardware Monitoring Kernel Drivers | |
ltc2947 | ||
ltc2978 | ||
ltc2990 | ||
ltc2991 | ||
ltc3815 | ||
ltc4151 | ||
ltc4215 | ||
|
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,43 @@ | ||
.. SPDX-License-Identifier: GPL-2.0 | ||
Kernel driver ltc2991 | ||
===================== | ||
|
||
Supported chips: | ||
|
||
* Analog Devices LTC2991 | ||
|
||
Prefix: 'ltc2991' | ||
|
||
Addresses scanned: I2C 0x48 - 0x4f | ||
|
||
Datasheet: https://www.analog.com/media/en/technical-documentation/data-sheets/2991ff.pdf | ||
|
||
Authors: | ||
|
||
- Antoniu Miclaus <antoniu.miclaus@analog.com> | ||
|
||
|
||
Description | ||
----------- | ||
|
||
This driver supports hardware monitoring for Analog Devices LTC2991 Octal I2C | ||
Voltage, Current and Temperature Monitor. | ||
|
||
The LTC2991 is used to monitor system temperatures, voltages and currents. | ||
Through the I2C serial interface, the eight monitors can individually measure | ||
supply voltages and can be paired for differential measurements of current sense | ||
resistors or temperature sensing transistors. Additional measurements include | ||
internal temperatureand internal VCC. | ||
|
||
|
||
sysfs-Interface | ||
--------------- | ||
|
||
The following attributes are supported. Limits are read-only. | ||
|
||
=============== ================= | ||
inX_input: voltage input | ||
currX_input: current input | ||
tempX_input: temperature input | ||
=============== ================= |
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.