hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
.. SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
Kernel driver aquacomputer-d5next
|
|
|
|
=================================
|
|
|
|
|
|
|
|
Supported devices:
|
|
|
|
|
2022-12-18 19:31:31 +08:00
|
|
|
* Aquacomputer Aquaero 5/6 fan controllers
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
* Aquacomputer D5 Next watercooling pump
|
2022-04-24 13:14:22 +08:00
|
|
|
* Aquacomputer Farbwerk RGB controller
|
2022-02-28 04:56:25 +08:00
|
|
|
* Aquacomputer Farbwerk 360 RGB controller
|
2022-04-04 21:42:11 +08:00
|
|
|
* Aquacomputer Octo fan controller
|
2022-07-27 18:06:05 +08:00
|
|
|
* Aquacomputer Quadro fan controller
|
2022-09-07 18:07:39 +08:00
|
|
|
* Aquacomputer High Flow Next sensor
|
2023-05-20 17:54:47 +08:00
|
|
|
* Aquacomputer Leakshield leak prevention system
|
2023-04-17 02:17:01 +08:00
|
|
|
* Aquacomputer Aquastream XT watercooling pump
|
2023-02-03 20:03:24 +08:00
|
|
|
* Aquacomputer Aquastream Ultimate watercooling pump
|
2023-01-31 18:12:09 +08:00
|
|
|
* Aquacomputer Poweradjust 3 fan controller
|
2023-10-16 16:35:58 +08:00
|
|
|
* Aquacomputer High Flow USB flow meter
|
|
|
|
* Aquacomputer MPS Flow devices
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
|
|
|
|
Author: Aleksa Savic
|
|
|
|
|
|
|
|
Description
|
|
|
|
-----------
|
|
|
|
|
2022-02-28 04:56:25 +08:00
|
|
|
This driver exposes hardware sensors of listed Aquacomputer devices, which
|
|
|
|
communicate through proprietary USB HID protocols.
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
|
2023-01-02 03:00:56 +08:00
|
|
|
The Aquaero devices expose eight physical, eight virtual and four calculated
|
|
|
|
virtual temperature sensors, as well as two flow sensors. The fans expose their
|
2023-02-15 06:02:21 +08:00
|
|
|
speed (in RPM), power, voltage and current. Temperature offsets and fan speeds
|
|
|
|
can be controlled.
|
2022-12-18 19:31:31 +08:00
|
|
|
|
2022-02-28 04:56:25 +08:00
|
|
|
For the D5 Next pump, available sensors are pump and fan speed, power, voltage
|
2022-08-17 20:14:41 +08:00
|
|
|
and current, as well as coolant temperature and eight virtual temp sensors. Also
|
|
|
|
available through debugfs are the serial number, firmware version and power-on
|
|
|
|
count. Attaching a fan to it is optional and allows it to be controlled using
|
|
|
|
temperature curves directly from the pump. If it's not connected, the fan-related
|
|
|
|
sensors will report zeroes.
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
|
|
|
|
The pump can be configured either through software or via its physical
|
|
|
|
interface. Configuring the pump through this driver is not implemented, as it
|
|
|
|
seems to require sending it a complete configuration. That includes addressable
|
|
|
|
RGB LEDs, for which there is no standard sysfs interface. Thus, that task is
|
|
|
|
better suited for userspace tools.
|
|
|
|
|
2024-04-18 01:50:35 +08:00
|
|
|
The Octo exposes four physical and sixteen virtual temperature sensors, a flow sensor
|
|
|
|
as well as eight PWM controllable fans, along with their speed (in RPM), power, voltage
|
2024-04-18 01:50:36 +08:00
|
|
|
and current. Flow sensor pulses are also available.
|
2022-04-04 21:42:11 +08:00
|
|
|
|
2022-08-17 20:14:41 +08:00
|
|
|
The Quadro exposes four physical and sixteen virtual temperature sensors, a flow
|
|
|
|
sensor and four PWM controllable fans, along with their speed (in RPM), power,
|
2022-11-26 15:13:13 +08:00
|
|
|
voltage and current. Flow sensor pulses are also available.
|
2022-07-27 18:06:05 +08:00
|
|
|
|
2022-08-17 20:14:41 +08:00
|
|
|
The Farbwerk and Farbwerk 360 expose four temperature sensors. Additionally,
|
|
|
|
sixteen virtual temperature sensors of the Farbwerk 360 are exposed.
|
|
|
|
|
2022-09-07 18:07:39 +08:00
|
|
|
The High Flow Next exposes +5V voltages, water quality, conductivity and flow readings.
|
|
|
|
A temperature sensor can be connected to it, in which case it provides its reading
|
|
|
|
and an estimation of the dissipated/absorbed power in the liquid cooling loop.
|
|
|
|
|
2023-05-20 17:54:47 +08:00
|
|
|
The Leakshield exposes two temperature sensors and coolant pressure (current, min, max and
|
|
|
|
target readings). It also exposes the estimated reservoir volume and how much of it is
|
|
|
|
filled with coolant. Pump RPM and flow can be set to enhance on-device calculations,
|
|
|
|
but this is not yet implemented here.
|
|
|
|
|
2023-04-17 02:17:01 +08:00
|
|
|
The Aquastream XT pump exposes temperature readings for the coolant, external sensor
|
|
|
|
and fan IC. It also exposes pump and fan speeds (in RPM), voltages, as well as pump
|
|
|
|
current.
|
|
|
|
|
2023-02-03 20:03:24 +08:00
|
|
|
The Aquastream Ultimate pump exposes coolant temp and an external temp sensor, along
|
|
|
|
with speed, power, voltage and current of both the pump and optionally connected fan.
|
|
|
|
It also exposes pressure and flow speed readings.
|
|
|
|
|
2023-01-31 18:12:09 +08:00
|
|
|
The Poweradjust 3 controller exposes a single external temperature sensor.
|
|
|
|
|
2023-10-16 16:35:58 +08:00
|
|
|
The High Flow USB exposes an internal and external temperature sensor, and a flow meter.
|
|
|
|
|
|
|
|
The MPS Flow devices expose the same entries as the High Flow USB because they have
|
|
|
|
the same USB product ID and report sensors equivalently.
|
|
|
|
|
2022-08-17 20:14:41 +08:00
|
|
|
Depending on the device, not all sysfs and debugfs entries will be available.
|
|
|
|
Writing to virtual temperature sensors is not currently supported.
|
2022-02-28 04:56:25 +08:00
|
|
|
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
Usage notes
|
|
|
|
-----------
|
|
|
|
|
2022-02-28 04:56:25 +08:00
|
|
|
The devices communicate via HID reports. The driver is loaded automatically by
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
the kernel and supports hotswapping.
|
|
|
|
|
|
|
|
Sysfs entries
|
|
|
|
-------------
|
|
|
|
|
2022-08-17 20:14:41 +08:00
|
|
|
================ ==============================================================
|
|
|
|
temp[1-20]_input Physical/virtual temperature sensors (in millidegrees Celsius)
|
2023-02-15 06:02:20 +08:00
|
|
|
temp[1-8]_offset Temperature sensor correction offset (in millidegrees Celsius)
|
2024-04-18 01:50:35 +08:00
|
|
|
fan[1-9]_input Pump/fan speed (in RPM) / Flow speed (in dL/h)
|
2023-05-20 17:54:47 +08:00
|
|
|
fan1_min Minimal fan speed (in RPM)
|
|
|
|
fan1_max Maximal fan speed (in RPM)
|
|
|
|
fan1_target Target fan speed (in RPM)
|
2022-11-26 15:13:13 +08:00
|
|
|
fan5_pulses Quadro flow sensor pulses
|
2024-04-18 01:50:36 +08:00
|
|
|
fan9_pulses Octo flow sensor pulses
|
2022-07-27 18:06:05 +08:00
|
|
|
power[1-8]_input Pump/fan power (in micro Watts)
|
|
|
|
in[0-7]_input Pump/fan voltage (in milli Volts)
|
|
|
|
curr[1-8]_input Pump/fan current (in milli Amperes)
|
|
|
|
pwm[1-8] Fan PWM (0 - 255)
|
2022-08-17 20:14:41 +08:00
|
|
|
================ ==============================================================
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
|
|
|
|
Debugfs entries
|
|
|
|
---------------
|
|
|
|
|
2022-02-28 04:56:25 +08:00
|
|
|
================ =================================================
|
|
|
|
serial_number Serial number of the device
|
hwmon: add driver for Aquacomputer D5 Next
This driver exposes hardware sensors of the Aquacomputer D5 Next
watercooling pump, which communicates through a proprietary USB HID
protocol.
Available sensors are pump and fan speed, power, voltage and current, as
well as coolant temperature. Also available through debugfs are the serial
number, firmware version and power-on count.
Attaching a fan is optional and allows it to be controlled using
temperature curves directly from the pump. If it's not connected,
the fan-related sensors will report zeroes.
The pump can be configured either through software or via its physical
interface. Configuring the pump through this driver is not implemented,
as it seems to require sending it a complete configuration. That
includes addressable RGB LEDs, for which there is no standard sysfs
interface. Thus, that task is better suited for userspace tools.
This driver has been tested on x86_64, both in-kernel and as a module.
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-08-28 13:26:28 +08:00
|
|
|
firmware_version Version of installed firmware
|
2022-02-28 04:56:25 +08:00
|
|
|
power_cycles Count of how many times the device was powered on
|
|
|
|
================ =================================================
|