요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
Fine-grain control
fan_performance_states.rst:64-81_FIF/_FSL과 thermal cooling-device를 통한 세밀한 속도 제어를 설명합니다.
Performance feedback
fan_performance_states.rst:82-90_FST current fan speed를 fan_speed_rpm으로 제공합니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
.. SPDX-License-Identifier: GPL-2.0
===========================
ACPI Fan Performance States
===========================
When the optional _FPS object is present under an ACPI device representing a
fan (for example, PNP0C0B or INT3404), the ACPI fan driver creates additional
"state*" attributes in the sysfs directory of the ACPI device in question.
These attributes list properties of fan performance states.
For more information on _FPS refer to the ACPI specification at:
http://uefi.org/specifications
For instance, the contents of the INT3404 ACPI device sysfs directory
may look as follows::
$ ls -l /sys/bus/acpi/devices/INT3404:00/
total 0
...
-r--r--r-- 1 root root 4096 Dec 13 20:38 state0
-r--r--r-- 1 root root 4096 Dec 13 20:38 state1
-r--r--r-- 1 root root 4096 Dec 13 20:38 state10
-r--r--r-- 1 root root 4096 Dec 13 20:38 state11
-r--r--r-- 1 root root 4096 Dec 13 20:38 state2
-r--r--r-- 1 root root 4096 Dec 13 20:38 state3
-r--r--r-- 1 root root 4096 Dec 13 20:38 state4
-r--r--r-- 1 root root 4096 Dec 13 20:38 state5
-r--r--r-- 1 root root 4096 Dec 13 20:38 state6
-r--r--r-- 1 root root 4096 Dec 13 20:38 state7
-r--r--r-- 1 root root 4096 Dec 13 20:38 state8
-r--r--r-- 1 root root 4096 Dec 13 20:38 state9
-r--r--r-- 1 root root 4096 Dec 13 01:00 status
...
where each of the "state*" files represents one performance state of the fan
and contains a colon-separated list of 5 integer numbers (fields) with the
following interpretation::
control_percent:trip_point_index:speed_rpm:noise_level_mdb:power_mw
* ``control_percent``: The percent value to be used to set the fan speed to a
specific level using the _FSL object (0-100).
* ``trip_point_index``: The active cooling trip point number that corresponds
to this performance state (0-9).
* ``speed_rpm``: Speed of the fan in rotations per minute.
* ``noise_level_mdb``: Audible noise emitted by the fan in this state in
millidecibels.
* ``power_mw``: Power draw of the fan in this state in milliwatts.
For example::
$cat /sys/bus/acpi/devices/INT3404:00/state1
25:0:3200:12500:1250
When a given field is not populated or its value provided by the platform
firmware is invalid, the "not-defined" string is shown instead of the value.
ACPI Fan Fine Grain Control
=============================
When _FIF object specifies support for fine grain control, then fan speed
can be set from 0 to 100% with the recommended minimum "step size" via
_FSL object. User can adjust fan speed using thermal sysfs cooling device.
Here use can look at fan performance states for a reference speed (speed_rpm)
and set it by changing cooling device cur_state. If the fine grain control
is supported then user can also adjust to some other speeds which are
not defined in the performance states.
The support of fine grain control is presented via sysfs attribute
"fine_grain_control". If fine grain control is present, this attribute
will show "1" otherwise "0".
This sysfs attribute is presented in the same directory as performance states.
ACPI Fan Performance Feedback
=============================
The optional _FST object provides status information for the fan device.
This includes field to provide current fan speed in revolutions per minute
at which the fan is rotating.
This speed is presented in the sysfs using the attribute "fan_speed_rpm",
in the same directory as performance states.
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
ACPI fan 성능 상태
1-63이 GPL-2.0 문서는 fan을 나타내는 ACPI device, 예를 들어 `PNP0C0B` 또는 `INT3404` 아래 선택적 `_FPS` object가 있을 때의 sysfs interface를 설명합니다. ACPI fan driver는 해당 device directory에 fan 성능 상태 속성을 나열하는 `state*` attribute를 추가합니다. `_FPS`의 자세한 내용은 `http://uefi.org/specifications`의 ACPI specification을 참조합니다.
`INT3404:00` ACPI device의 sysfs directory에는 `state0`부터 `state11` 같은 read-only file과 `status`가 나타날 수 있습니다.
$ ls -l /sys/bus/acpi/devices/INT3404:00/
total 0
...
-r--r--r-- 1 root root 4096 Dec 13 20:38 state0
-r--r--r-- 1 root root 4096 Dec 13 20:38 state1
-r--r--r-- 1 root root 4096 Dec 13 20:38 state10
-r--r--r-- 1 root root 4096 Dec 13 20:38 state11
-r--r--r-- 1 root root 4096 Dec 13 20:38 state2
-r--r--r-- 1 root root 4096 Dec 13 20:38 state3
-r--r--r-- 1 root root 4096 Dec 13 20:38 state4
-r--r--r-- 1 root root 4096 Dec 13 20:38 state5
-r--r--r-- 1 root root 4096 Dec 13 20:38 state6
-r--r--r-- 1 root root 4096 Dec 13 20:38 state7
-r--r--r-- 1 root root 4096 Dec 13 20:38 state8
-r--r--r-- 1 root root 4096 Dec 13 20:38 state9
-r--r--r-- 1 root root 4096 Dec 13 01:00 status
...
각 `state*` file은 fan 성능 상태 하나를 나타내며, colon으로 구분한 정수 field 5개를 다음 순서로 담습니다.
control_percent:trip_point_index:speed_rpm:noise_level_mdb:power_mw
`state*` file의 colon-separated field를 순서대로 해석합니다.
예를 들어 `state1`의 `25:0:3200:12500:1250`은 control 25%, trip point 0, 3200 RPM, 12500 millidecibels, 1250 mW를 뜻합니다. Field가 채워지지 않았거나 platform firmware 값이 유효하지 않으면 숫자 대신 `not-defined`를 표시합니다.
$cat /sys/bus/acpi/devices/INT3404:00/state1
25:0:3200:12500:1250
Fan fine-grain control
64-81`_FIF` object가 fine-grain control 지원을 명시하면 `_FSL` object를 통해 권장 최소 `step size` 단위로 fan speed를 0~100% 사이에서 설정할 수 있습니다. 사용자는 thermal sysfs cooling device로 속도를 조절합니다.
Fan performance state의 `speed_rpm`을 기준 속도로 보고 cooling device의 `cur_state`를 바꿔 설정할 수 있습니다. Fine-grain control을 지원하면 미리 정의된 performance state에 없는 다른 속도도 선택할 수 있습니다.
같은 performance-state directory의 `fine_grain_control` attribute는 지원할 때 `1`, 지원하지 않을 때 `0`을 표시합니다.
Firmware capability와 thermal cooling-device control의 연결입니다.
Fan 성능 feedback
82-90선택적 `_FST` object는 fan device의 status information을 제공합니다. 여기에는 fan이 현재 회전하는 속도를 revolutions per minute 단위로 나타내는 field가 포함됩니다.
현재 속도는 performance state와 같은 sysfs directory의 `fan_speed_rpm` attribute로 노출됩니다.
ACPI object가 만드는 핵심 fan sysfs interface를 대응시킵니다.
Performance states
fan_performance_states.rst:1-63state* file의 5개 field와 단위, not-defined 처리를 설명합니다.