요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
.. SPDX-License-Identifier: GPL-2.0-or-later
Kernel driver gigabyte_waterforce
=================================
Supported devices:
* Gigabyte AORUS WATERFORCE X240
* Gigabyte AORUS WATERFORCE X280
* Gigabyte AORUS WATERFORCE X360
Author: Aleksa Savic
Description
-----------
This driver enables hardware monitoring support for the listed Gigabyte Waterforce
all-in-one CPU liquid coolers. Available sensors are pump and fan speed in RPM, as
well as coolant temperature. Also available through debugfs is the firmware version.
Attaching a fan is optional and allows it to be controlled from the device. If
it's not connected, the fan-related sensors will report zeroes.
The addressable RGB LEDs and LCD screen are not supported in this driver and should
be controlled through userspace tools.
Usage notes
-----------
As these are USB HIDs, the driver can be loaded automatically by the kernel and
supports hot swapping.
Sysfs entries
-------------
=========== =============================================
fan1_input Fan speed (in rpm)
fan2_input Pump speed (in rpm)
temp1_input Coolant temperature (in millidegrees Celsius)
=========== =============================================
Debugfs entries
---------------
================ =======================
firmware_version Device firmware version
================ =======================
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
AORUS WATERFORCE 지원 장치
1-15GPL-2.0-or-later 드라이버 `gigabyte_waterforce`는 Gigabyte AORUS WATERFORCE X240, X280, X360 all-in-one CPU liquid cooler를 지원합니다. 저자는 Aleksa Savic입니다.
Radiator 크기가 다른 세 AIO model입니다.
USB HID model을 식별해 cooling sensor를 게시합니다.
.. SPDX-License-Identifier: GPL-2.0-or-later
Kernel driver gigabyte_waterforce
=================================
Supported devices:
* Gigabyte AORUS WATERFORCE X240
* Gigabyte AORUS WATERFORCE X280
* Gigabyte AORUS WATERFORCE X360
Author: Aleksa Savic
Description
-----------
Monitoring 범위와 USB HID 사용
16-32이 드라이버는 나열된 Gigabyte Waterforce AIO cooler의 hardware monitoring을 제공합니다. Pump와 fan speed를 RPM으로, coolant temperature를 측정하며 firmware version은 debugfs에서 제공합니다.
Fan 연결은 선택 사항이며 연결하면 장치에서 제어할 수 있습니다. 연결하지 않으면 fan 관련 sensor는 0을 보고합니다. Addressable RGB LED와 LCD screen은 드라이버에서 지원하지 않으므로 userspace tool로 제어해야 합니다.
장치가 USB HID이므로 kernel이 driver를 자동으로 load할 수 있고 hot swapping을 지원합니다.
Kernel monitoring과 userspace 제어 대상을 구분합니다.
연결 상태에 맞춰 sensor가 생성·제거됩니다.
This driver enables hardware monitoring support for the listed Gigabyte Waterforce
all-in-one CPU liquid coolers. Available sensors are pump and fan speed in RPM, as
well as coolant temperature. Also available through debugfs is the firmware version.
Attaching a fan is optional and allows it to be controlled from the device. If
it's not connected, the fan-related sensors will report zeroes.
The addressable RGB LEDs and LCD screen are not supported in this driver and should
be controlled through userspace tools.
Usage notes
-----------
As these are USB HIDs, the driver can be loaded automatically by the kernel and
supports hot swapping.
Waterforce sysfs·debugfs 표
33-47Sysfs에서 `fan1_input`은 fan speed RPM, `fan2_input`은 pump speed RPM, `temp1_input`은 millidegrees Celsius 단위 coolant temperature입니다.
Debugfs의 `firmware_version`은 device firmware version을 제공합니다.
원문의 ASCII 표를 subsystem과 단위별로 구조화했습니다.
Fan·pump·coolant 값을 함께 확인합니다.
Sysfs entries
-------------
=========== =============================================
fan1_input Fan speed (in rpm)
fan2_input Pump speed (in rpm)
temp1_input Coolant temperature (in millidegrees Celsius)
=========== =============================================
Debugfs entries
---------------
================ =======================
firmware_version Device firmware version
================ =======================
요약·해설
gigabyte_waterforce.rst:1-47USB hot-swap cooler의 핵심 sensor와 debugfs firmware 정보를 제공합니다.
원문 분량과 핵심 범위입니다.
장치 동작의 기본 순서입니다.