diff options
author | Aleksa Savic <savicaleksa83@gmail.com> | 2022-04-04 15:42:11 +0200 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2022-05-17 14:52:59 +0200 |
commit | 752b927951eaa6297bffc12efe603df10496566e (patch) | |
tree | 763e01a96624b7d0b9d5f2a7ba21fc729afe54b9 /drivers/hwmon/Kconfig | |
parent | hwmon: (peci) Use devm_delayed_work_autocancel() to simplify code (diff) | |
download | linux-752b927951eaa6297bffc12efe603df10496566e.tar.xz linux-752b927951eaa6297bffc12efe603df10496566e.zip |
hwmon: (aquacomputer_d5next) Add support for Aquacomputer Octo
Extend aquacomputer_d5next driver to expose hardware temperature sensors
and fans of the Aquacomputer Octo fan controller, which communicates
through a proprietary USB HID protocol.
Four temperature sensors and eight PWM controllable fans are available.
Additionally, serial number, firmware version and power-on count are
exposed through debugfs.
This driver has been tested on x86_64.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Link: https://lore.kernel.org/r/20220404134212.9690-1-savicaleksa83@gmail.com
[groeck: Add missing "select CRC16"]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/Kconfig')
-rw-r--r-- | drivers/hwmon/Kconfig | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig index f2b038fa3b84..d35d74ef6497 100644 --- a/drivers/hwmon/Kconfig +++ b/drivers/hwmon/Kconfig @@ -256,11 +256,13 @@ config SENSORS_AHT10 will be called aht10. config SENSORS_AQUACOMPUTER_D5NEXT - tristate "Aquacomputer D5 Next watercooling pump" + tristate "Aquacomputer D5 Next, Octo and Farbwerk 360" depends on USB_HID + select CRC16 help - If you say yes here you get support for the Aquacomputer D5 Next - watercooling pump sensors. + If you say yes here you get support for sensors and fans of + the Aquacomputer D5 Next watercooling pump, Octo fan + controller and Farbwerk 360 RGB controller, where available. This driver can also be built as a module. If so, the module will be called aquacomputer_d5next. |