← Documents Documentation/hwmon/mc34vr500.rst GitHub 원문 ↗

Linux 6.18.37 · Hardware Monitoring

Kernel driver mc34vr500

MC34VR500 PMIC의 현재 구현된 입력 저전압과 3단계 고온 경보 매핑입니다.

Source pathDocumentation/hwmon/mc34vr500.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

mc34vr500.rst:1-32

칩의 전체 감시 능력과 현재 드라이버가 실제 노출하는 전압·온도 경보를 구분합니다.

문서 개요
항목
SourceDocumentation/hwmon/mc34vr500.rst
분량32 source lines
저전압≤2.8V
온도 경보>110·120·130°C

원문 분량과 핵심 인터페이스입니다.

운영 흐름
PMIC 감시임계 비교인터럽트 수신sysfs 매핑보호 처리

장치 등록부터 측정·경보 처리까지의 순서입니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 .. SPDX-License-Identifier: GPL-2.0-or-later
2
3 Kernel driver mc34vr500
4 =======================
5
6 Supported Chips:
7
8 * NXP MC34VR500
9
10 Prefix: 'mc34vr500'
11
12 Datasheet: https://www.nxp.com/docs/en/data-sheet/MC34VR500.pdf
13
14 Author: Mario Kicherer <dev@kicherer.org>
15
16 Description
17 -----------
18
19 This driver implements initial support for the NXP MC34VR500 PMIC. The MC34VR500
20 monitors the temperature, input voltage and output currents and provides
21 corresponding alarms. For the temperature, the chip can send interrupts if
22 the temperature rises above one of the following values: 110°, 120°, 125° and
23 130° Celsius. For the input voltage, an interrupt is sent when the voltage
24 drops below 2.8V.
25
26 Currently, this driver only implements the input voltage and temperature
27 alarms. The interrupts are mapped as follows:
28
29 <= 2.8V -> in0_min_alarm
30 >110°c -> temp1_max_alarm
31 >120°c -> temp1_crit_alarm
32 >130°c -> temp1_emergency_alarm
33

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

MC34VR500 PMIC 초기 hwmon 지원

1-19

GPL-2.0-or-later 문서의 이 드라이버는 NXP MC34VR500 PMIC를 `mc34vr500` 접두사로 초기 지원하며 저자는 Mario Kicherer입니다.

MC34VR500은 온도, 입력 전압, 출력 전류를 감시하고 대응 경보를 제공합니다. 온도는 110°C, 120°C, 125°C, 130°C 중 하나를 넘을 때 인터럽트를 보낼 수 있고 입력 전압은 2.8V 아래로 떨어질 때 인터럽트를 보냅니다.

MC34VR500 하드웨어 경보
대상기준
온도110°C, 120°C, 125°C, 130°C
입력 전압2.8V 미만
출력 전류칩은 감시 가능

칩이 감시할 수 있는 온도와 전압 기준입니다.

PMIC 경보
온도·전압 감시임계값 비교인터럽트 발생드라이버 경보 매핑시스템 보호 처리

하드웨어 임계 초과·미달을 인터럽트로 보고합니다.

.. SPDX-License-Identifier: GPL-2.0-or-later

Kernel driver mc34vr500
=======================

Supported Chips:

  * NXP MC34VR500

    Prefix: 'mc34vr500'

    Datasheet: https://www.nxp.com/docs/en/data-sheet/MC34VR500.pdf

Author: Mario Kicherer <dev@kicherer.org>

Description
-----------

This driver implements initial support for the NXP MC34VR500 PMIC. The MC34VR500

현재 구현된 전압·온도 경보 매핑

20-32

현재 드라이버는 입력 전압과 온도 경보만 구현합니다. 출력 전류 감시는 칩 기능 설명에는 있지만 이 초기 드라이버의 경보 매핑에는 없습니다.

입력 전압이 2.8V 이하이면 `in0_min_alarm`, 110°C 초과는 `temp1_max_alarm`, 120°C 초과는 `temp1_crit_alarm`, 130°C 초과는 `temp1_emergency_alarm`입니다. 125°C 단계는 칩이 지원하지만 현재 표의 sysfs 매핑에는 별도 항목이 없습니다.

MC34VR500 경보 매핑
조건속성
입력 전압 ≤ 2.8Vin0_min_alarm
온도 > 110°Ctemp1_max_alarm
온도 > 120°Ctemp1_crit_alarm
온도 > 130°Ctemp1_emergency_alarm

현재 드라이버가 노출하는 네 경보입니다.

MC34VR500 경보 처리
in0_min_alarm 확인temp1_max_alarm 확인temp1_crit_alarm 확인temp1_emergency_alarm 확인미구현 기능과 구분

구현된 네 임계 경보만 sysfs에서 확인합니다.

monitors the temperature, input voltage and output currents and provides
corresponding alarms. For the temperature, the chip can send interrupts if
the temperature rises above one of the following values: 110°, 120°, 125° and
130° Celsius. For the input voltage, an interrupt is sent when the voltage
drops below 2.8V.

Currently, this driver only implements the input voltage and temperature
alarms. The interrupts are mapped as follows:

<= 2.8V  -> in0_min_alarm
>110°c   -> temp1_max_alarm
>120°c   -> temp1_crit_alarm
>130°c   -> temp1_emergency_alarm