요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
Client and server critical limits
sysfs-driver-intel-i915-hwmon:40-65Client 제품은 power1_crit microwatts, server 제품은 curr1_crit milliamperes로 I1 critical limit을 설정합니다.
Energy, fan and temperature telemetry
sysfs-driver-intel-i915-hwmon:66-93energy1_input은 i915 device 전체 또는 i915_gtN GT 범위를 구분하고 fan RPM과 GPU package millidegree Celsius를 읽습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/in0_input
Date: February 2023
KernelVersion: 6.2
Contact: intel-gfx@lists.freedesktop.org
Description: RO. Current Voltage in millivolt.
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_max
Date: February 2023
KernelVersion: 6.2
Contact: intel-gfx@lists.freedesktop.org
Description: RW. Card reactive sustained (PL1/Tau) power limit in microwatts.
The power controller will throttle the operating frequency
if the power averaged over a window (typically seconds)
exceeds this limit. A read value of 0 means that the PL1
power limit is disabled, writing 0 disables the
limit. Writing values > 0 will enable the power limit.
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_rated_max
Date: February 2023
KernelVersion: 6.2
Contact: intel-gfx@lists.freedesktop.org
Description: RO. Card default power limit (default TDP setting).
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_max_interval
Date: February 2023
KernelVersion: 6.2
Contact: intel-gfx@lists.freedesktop.org
Description: RW. Sustained power limit interval (Tau in PL1/Tau) in
milliseconds over which sustained power is averaged.
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_crit
Date: February 2023
KernelVersion: 6.2
Contact: intel-gfx@lists.freedesktop.org
Description: RW. Card reactive critical (I1) power limit in microwatts.
Card reactive critical (I1) power limit in microwatts is exposed
for client products. The power controller will throttle the
operating frequency if the power averaged over a window exceeds
this limit.
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/curr1_crit
Date: February 2023
KernelVersion: 6.2
Contact: intel-gfx@lists.freedesktop.org
Description: RW. Card reactive critical (I1) power limit in milliamperes.
Card reactive critical (I1) power limit in milliamperes is
exposed for server products. The power controller will throttle
the operating frequency if the power averaged over a window
exceeds this limit.
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/energy1_input
Date: February 2023
KernelVersion: 6.2
Contact: intel-gfx@lists.freedesktop.org
Description: RO. Energy input of device or gt in microjoules.
For i915 device level hwmon devices (name "i915") this
reflects energy input for the entire device. For gt level
hwmon devices (name "i915_gtN") this reflects energy input
for the gt.
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/fan1_input
Date: November 2024
KernelVersion: 6.12
Contact: intel-gfx@lists.freedesktop.org
Description: RO. Fan speed of device in RPM.
Only supported for particular Intel i915 graphics platforms.
What: /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/temp1_input
Date: November 2024
KernelVersion: 6.12
Contact: intel-gfx@lists.freedesktop.org
Description: RO. GPU package temperature in millidegree Celsius.
Only supported for particular Intel i915 graphics platforms.
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Current GPU voltage
1-8| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/in0_input |
| Date | 2023년 2월 |
| KernelVersion | 6.2 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Current voltage를 millivolt 단위로 읽습니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read-only |
| Unit | Millivolt |
Voltage, power/current limits, energy, fan과 temperature 단위를 정리했습니다.
PL1 sustained power limit
9-22| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_max |
| Date | 2023년 2월 |
| KernelVersion | 6.2 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Card reactive sustained PL1/Tau power limit을 microwatts 단위로 제어합니다. Typically seconds인 window에서 averaged power가 limit을 넘으면 controller가 operating frequency를 throttle합니다. Read value 0은 PL1 disabled를 뜻하고 0 write는 disable, 0보다 큰 write는 enable합니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read/write |
| Unit | Microwatts |
Averaging window와 binary enable semantics를 함께 나타냅니다.
Default card power limit
23-30| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_rated_max |
| Date | 2023년 2월 |
| KernelVersion | 6.2 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Card default power limit, 즉 default TDP setting을 읽습니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read-only |
| Unit | Default TDP setting |
PL1 Tau averaging interval
31-39| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_max_interval |
| Date | 2023년 2월 |
| KernelVersion | 6.2 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Sustained power를 average하는 PL1/Tau interval을 milliseconds 단위로 제어합니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read/write |
| Unit | Milliseconds |
Client critical power limit
40-52| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/power1_crit |
| Date | 2023년 2월 |
| KernelVersion | 6.2 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Client products에 expose되는 card reactive critical I1 power limit을 microwatts 단위로 제어합니다. Window에서 averaged power가 limit을 넘으면 controller가 operating frequency를 throttle합니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read/write |
| Unit | Microwatts |
Client와 server products가 expose하는 critical limit의 물리량입니다.
Server critical current limit
53-65| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/curr1_crit |
| Date | 2023년 2월 |
| KernelVersion | 6.2 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Server products에 expose되는 card reactive critical I1 limit을 milliamperes 단위로 제어합니다. Window에서 averaged power가 limit을 넘으면 controller가 operating frequency를 throttle합니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read/write |
| Unit | Milliamperes |
Device or GT energy input
66-78| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/energy1_input |
| Date | 2023년 2월 |
| KernelVersion | 6.2 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Device 또는 GT의 energy input을 microjoules 단위로 읽습니다. Device-level hwmon(name "i915")에서는 entire device energy, GT-level hwmon(name "i915_gtN")에서는 해당 GT energy를 나타냅니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read-only |
| Unit | Microjoules |
hwmon device name에 따른 energy1_input 집계 범위입니다.
GPU fan speed
79-86| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/fan1_input |
| Date | 2024년 11월 |
| KernelVersion | 6.12 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | Device fan speed를 RPM 단위로 읽습니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read-only |
| Unit | RPM |
GPU package temperature
87-93| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/bus/pci/drivers/i915/.../hwmon/hwmon<i>/temp1_input |
| Date | 2024년 11월 |
| KernelVersion | 6.12 |
| Contact | intel-gfx@lists.freedesktop.org |
| Description | GPU package temperature를 millidegree Celsius 단위로 읽습니다. 특정 Intel i915 graphics platforms에서만 지원합니다. |
| Access | Read-only |
| Unit | Millidegree Celsius |
Voltage and sustained power control
sysfs-driver-intel-i915-hwmon:1-39Voltage readback과 PL1 sustained power limit·default TDP·Tau averaging interval을 각 hwmon 단위로 제공합니다.