요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
.. SPDX-License-Identifier: GPL-2.0
Kernel driver mp2869
====================
Supported chips:
* MPS mp2869
Prefix: 'mp2869'
* MPS mp29608
Prefix: 'mp29608'
* MPS mp29612
Prefix: 'mp29612'
* MPS mp29816
Prefix: 'mp29816'
Author:
Wensheng Wang <wenswang@yeah.net>
Description
-----------
This driver implements support for Monolithic Power Systems, Inc. (MPS)
MP2869 Dual Loop Digital Multi-phase Controller.
Device compliant with:
- PMBus rev 1.3 interface.
The driver exports the following attributes via the 'sysfs' files
for input voltage:
**in1_input**
**in1_label**
**in1_crit**
**in1_crit_alarm**
**in1_lcrit**
**in1_lcrit_alarm**
**in1_min**
**in1_min_alarm**
The driver provides the following attributes for output voltage:
**in2_input**
**in2_label**
**in2_crit**
**in2_crit_alarm**
**in2_lcrit**
**in2_lcrit_alarm**
**in3_input**
**in3_label**
**in3_crit**
**in3_crit_alarm**
**in3_lcrit**
**in3_lcrit_alarm**
The driver provides the following attributes for input current:
**curr1_input**
**curr1_label**
**curr2_input**
**curr2_label**
The driver provides the following attributes for output current:
**curr3_input**
**curr3_label**
**curr3_crit**
**curr3_crit_alarm**
**curr3_max**
**curr3_max_alarm**
**curr4_input**
**curr4_label**
**curr4_crit**
**curr4_crit_alarm**
**curr4_max**
**curr4_max_alarm**
The driver provides the following attributes for input power:
**power1_input**
**power1_label**
**power2_input**
**power2_label**
The driver provides the following attributes for output power:
**power3_input**
**power3_label**
**power3_input**
**power3_label**
**power3_max**
**power3_max_alarm**
**power4_input**
**power4_label**
**power4_input**
**power4_label**
**power4_max**
**power4_max_alarm**
The driver provides the following attributes for temperature:
**temp1_input**
**temp1_crit**
**temp1_crit_alarm**
**temp1_max**
**temp1_max_alarm**
**temp2_input**
**temp2_crit**
**temp2_crit_alarm**
**temp2_max**
**temp2_max_alarm**
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
MP2869 계열 PMBus 1.3 이중 루프 컨트롤러
1-36GPL-2.0 문서의 이 드라이버는 MPS `mp2869`, `mp29608`, `mp29612`, `mp29816` 접두사의 네 칩을 지원하며 저자는 Wensheng Wang입니다.
본문은 MP2869 이중 루프 디지털 다상 컨트롤러 지원을 설명하며 장치는 PMBus rev 1.3을 준수합니다.
같은 드라이버가 네 접두사를 처리합니다.
모델별 장치를 PMBus 텔레메트리 구조에 연결합니다.
.. SPDX-License-Identifier: GPL-2.0
Kernel driver mp2869
====================
Supported chips:
* MPS mp2869
Prefix: 'mp2869'
* MPS mp29608
Prefix: 'mp29608'
* MPS mp29612
Prefix: 'mp29612'
* MPS mp29816
Prefix: 'mp29816'
Author:
Wensheng Wang <wenswang@yeah.net>
Description
-----------
This driver implements support for Monolithic Power Systems, Inc. (MPS)
MP2869 Dual Loop Digital Multi-phase Controller.
Device compliant with:
- PMBus rev 1.3 interface.
입력·출력 전압과 입력 전류
37-88입력 전압 `in1`은 현재값·레이블, 임계 고전압·저전압과 경보, 최소값과 low 경보를 제공합니다.
두 출력 전압은 `in2`와 `in3`입니다. 각 채널은 현재값·레이블, 임계 고전압·저전압과 대응 경보를 제공합니다.
입력 전류는 `curr1`과 `curr2`이며 각 채널에 현재값과 레이블이 있습니다.
입력 전압 하나와 출력 전압 두 개, 입력 전류 두 개입니다.
입력 저전압과 두 출력 레일 임계값을 구분합니다.
The driver exports the following attributes via the 'sysfs' files
for input voltage:
**in1_input**
**in1_label**
**in1_crit**
**in1_crit_alarm**
**in1_lcrit**
**in1_lcrit_alarm**
**in1_min**
**in1_min_alarm**
The driver provides the following attributes for output voltage:
**in2_input**
**in2_label**
**in2_crit**
**in2_crit_alarm**
**in2_lcrit**
**in2_lcrit_alarm**
**in3_input**
**in3_label**
**in3_crit**
**in3_crit_alarm**
**in3_lcrit**
**in3_lcrit_alarm**
The driver provides the following attributes for input current:
**curr1_input**
**curr1_label**
출력 전류와 입출력 전력
89-139출력 전류는 `curr3`과 `curr4`입니다. 각 레일에 현재값·레이블, 임계 최대값과 경보, 최대값과 high 경보가 있습니다.
입력 전력은 `power1`과 `power2`이며 현재값과 레이블을 제공합니다. 출력 전력은 `power3`과 `power4`이며 현재값·레이블, 최대값과 high 경보가 있습니다.
원문에는 `power3_input`·`power3_label`과 `power4_input`·`power4_label`이 각각 두 번 반복됩니다. 중복은 원문 블록에 보존하고 번역에서는 같은 속성의 반복임을 명시합니다.
두 루프의 출력 전기량을 병렬로 제공합니다.
각 루프의 입력 전력과 출력 전류·전력을 비교합니다.
**curr2_input**
**curr2_label**
The driver provides the following attributes for output current:
**curr3_input**
**curr3_label**
**curr3_crit**
**curr3_crit_alarm**
**curr3_max**
**curr3_max_alarm**
**curr4_input**
**curr4_label**
**curr4_crit**
**curr4_crit_alarm**
**curr4_max**
**curr4_max_alarm**
The driver provides the following attributes for input power:
**power1_input**
**power1_label**
**power2_input**
**power2_label**
The driver provides the following attributes for output power:
**power3_input**
**power3_label**
**power3_input**
**power3_label**
**power3_max**
두 온도 채널의 최대·임계 경보
140-175온도 채널 `temp1`과 `temp2`는 각각 현재 온도, 임계 고온값과 경보, 최대 온도와 high 경보를 제공합니다.
두 루프에 동일한 온도 속성 집합을 제공합니다.
두 채널의 경고와 임계 고온을 단계적으로 처리합니다.
**power3_max_alarm**
**power4_input**
**power4_label**
**power4_input**
**power4_label**
**power4_max**
**power4_max_alarm**
The driver provides the following attributes for temperature:
**temp1_input**
**temp1_crit**
**temp1_crit_alarm**
**temp1_max**
**temp1_max_alarm**
**temp2_input**
**temp2_crit**
**temp2_crit_alarm**
**temp2_max**
**temp2_max_alarm**
요약·해설
mp2869.rst:1-175입력 두 경로와 출력 두 레일의 전압·전류·전력, 두 온도 채널을 병렬로 감시합니다.
원문 분량과 핵심 인터페이스입니다.
장치 등록부터 측정·경보 처리까지의 순서입니다.