aquacomputer_d5next.rst 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .. SPDX-License-Identifier: GPL-2.0-or-later
  2. Kernel driver aquacomputer-d5next
  3. =================================
  4. Supported devices:
  5. * Aquacomputer Aquaero 5/6 fan controllers
  6. * Aquacomputer D5 Next watercooling pump
  7. * Aquacomputer Farbwerk RGB controller
  8. * Aquacomputer Farbwerk 360 RGB controller
  9. * Aquacomputer Octo fan controller
  10. * Aquacomputer Quadro fan controller
  11. * Aquacomputer High Flow Next sensor
  12. * Aquacomputer Leakshield leak prevention system
  13. * Aquacomputer Aquastream XT watercooling pump
  14. * Aquacomputer Aquastream Ultimate watercooling pump
  15. * Aquacomputer Poweradjust 3 fan controller
  16. * Aquacomputer High Flow USB flow meter
  17. * Aquacomputer MPS Flow devices
  18. Author: Aleksa Savic
  19. Description
  20. -----------
  21. This driver exposes hardware sensors of listed Aquacomputer devices, which
  22. communicate through proprietary USB HID protocols.
  23. The Aquaero devices expose eight physical, eight virtual and four calculated
  24. virtual temperature sensors, as well as two flow sensors. The fans expose their
  25. speed (in RPM), power, voltage and current. Temperature offsets and fan speeds
  26. can be controlled.
  27. For the D5 Next pump, available sensors are pump and fan speed, power, voltage
  28. and current, as well as coolant temperature and eight virtual temp sensors. Also
  29. available through debugfs are the serial number, firmware version and power-on
  30. count. Attaching a fan to it is optional and allows it to be controlled using
  31. temperature curves directly from the pump. If it's not connected, the fan-related
  32. sensors will report zeroes.
  33. The pump can be configured either through software or via its physical
  34. interface. Configuring the pump through this driver is not implemented, as it
  35. seems to require sending it a complete configuration. That includes addressable
  36. RGB LEDs, for which there is no standard sysfs interface. Thus, that task is
  37. better suited for userspace tools.
  38. The Octo exposes four physical and sixteen virtual temperature sensors, a flow sensor
  39. as well as eight PWM controllable fans, along with their speed (in RPM), power, voltage
  40. and current. Flow sensor pulses are also available.
  41. The Quadro exposes four physical and sixteen virtual temperature sensors, a flow
  42. sensor and four PWM controllable fans, along with their speed (in RPM), power,
  43. voltage and current. Flow sensor pulses are also available.
  44. The Farbwerk and Farbwerk 360 expose four temperature sensors. Additionally,
  45. sixteen virtual temperature sensors of the Farbwerk 360 are exposed.
  46. The High Flow Next exposes +5V voltages, water quality, conductivity and flow readings.
  47. A temperature sensor can be connected to it, in which case it provides its reading
  48. and an estimation of the dissipated/absorbed power in the liquid cooling loop.
  49. The Leakshield exposes two temperature sensors and coolant pressure (current, min, max and
  50. target readings). It also exposes the estimated reservoir volume and how much of it is
  51. filled with coolant. Pump RPM and flow can be set to enhance on-device calculations,
  52. but this is not yet implemented here.
  53. The Aquastream XT pump exposes temperature readings for the coolant, external sensor
  54. and fan IC. It also exposes pump and fan speeds (in RPM), voltages, as well as pump
  55. current.
  56. The Aquastream Ultimate pump exposes coolant temp and an external temp sensor, along
  57. with speed, power, voltage and current of both the pump and optionally connected fan.
  58. It also exposes pressure and flow speed readings.
  59. The Poweradjust 3 controller exposes a single external temperature sensor.
  60. The High Flow USB exposes an internal and external temperature sensor, and a flow meter.
  61. The MPS Flow devices expose the same entries as the High Flow USB because they have
  62. the same USB product ID and report sensors equivalently.
  63. Depending on the device, not all sysfs and debugfs entries will be available.
  64. Writing to virtual temperature sensors is not currently supported.
  65. Usage notes
  66. -----------
  67. The devices communicate via HID reports. The driver is loaded automatically by
  68. the kernel and supports hotswapping.
  69. Sysfs entries
  70. -------------
  71. ================ ==============================================================
  72. temp[1-20]_input Physical/virtual temperature sensors (in millidegrees Celsius)
  73. temp[1-8]_offset Temperature sensor correction offset (in millidegrees Celsius)
  74. fan[1-9]_input Pump/fan speed (in RPM) / Flow speed (in dL/h)
  75. fan1_min Minimal fan speed (in RPM)
  76. fan1_max Maximal fan speed (in RPM)
  77. fan1_target Target fan speed (in RPM)
  78. fan5_pulses Quadro flow sensor pulses
  79. fan9_pulses Octo flow sensor pulses
  80. power[1-8]_input Pump/fan power (in micro Watts)
  81. in[0-7]_input Pump/fan voltage (in milli Volts)
  82. curr[1-8]_input Pump/fan current (in milli Amperes)
  83. pwm[1-8] Fan PWM (0 - 255)
  84. ================ ==============================================================
  85. Debugfs entries
  86. ---------------
  87. ================ =================================================
  88. serial_number Serial number of the device
  89. firmware_version Version of installed firmware
  90. power_cycles Count of how many times the device was powered on
  91. ================ =================================================