요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
.. SPDX-License-Identifier: GPL-2.0
Kernel driver mp5920
====================
Supported chips:
* MPS MP5920
Prefix: 'mp5920'
* Datasheet
Publicly available at the MPS website : https://www.monolithicpower.com/en/mp5920.html
Authors:
Tony Ao <tony_ao@wiwynn.com>
Alex Vdovydchenko <xzeol@yahoo.com>
Description
-----------
This driver implements support for Monolithic Power Systems, Inc. (MPS)
MP5920 Hot-Swap Controller.
Device compliant with:
- PMBus rev 1.3 interface.
Device supports direct and linear format for reading input voltage,
output voltage, output current, input power and temperature.
The driver exports the following attributes via the 'sysfs' files
for input voltage:
**in1_input**
**in1_label**
**in1_rated_max**
**in1_rated_min**
**in1_crit**
**in1_alarm**
The driver provides the following attributes for output voltage:
**in2_input**
**in2_label**
**in2_rated_max**
**in2_rated_min**
**in2_alarm**
The driver provides the following attributes for output current:
**curr1_input**
**curr1_label**
**curr1_crit**
**curr1_alarm**
**curr1_rated_max**
The driver provides the following attributes for input power:
**power1_input**
**power1_label**
**power1_max**
**power1_rated_max**
The driver provides the following attributes for temperature:
**temp1_input**
**temp1_max**
**temp1_crit**
**temp1_alarm**
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
MP5920 핫스왑 컨트롤러
1-33이 GPL-2.0 문서는 Tony Ao와 Alex Vdovydchenko가 작성한 `mp5920` 드라이버 설명입니다. 지원 칩은 MPS MP5920이고 데이터시트는 MPS 웹사이트에 공개되어 있습니다.
드라이버는 MP5920 핫스왑 컨트롤러를 지원하며 PMBus revision 1.3을 준수합니다. 입력·출력 전압, 출력 전류, 입력 전력, 온도를 direct 및 linear 형식으로 읽습니다.
장치와 지원 형식을 요약합니다.
PMBus 값을 정격·임계 속성과 함께 제공합니다.
.. SPDX-License-Identifier: GPL-2.0
Kernel driver mp5920
====================
Supported chips:
* MPS MP5920
Prefix: 'mp5920'
* Datasheet
Publicly available at the MPS website : https://www.monolithicpower.com/en/mp5920.html
Authors:
Tony Ao <tony_ao@wiwynn.com>
Alex Vdovydchenko <xzeol@yahoo.com>
Description
-----------
This driver implements support for Monolithic Power Systems, Inc. (MPS)
MP5920 Hot-Swap Controller.
Device compliant with:
- PMBus rev 1.3 interface.
Device supports direct and linear format for reading input voltage,
output voltage, output current, input power and temperature.
정격 전압과 출력 전류
34-72입력 전압 `in1`은 현재값과 레이블, 정격 최대·최소값, 임계값, 종합 경보를 제공합니다. 출력 전압 `in2`도 현재값과 레이블, 정격 최대·최소값, 종합 경보를 제공합니다.
출력 전류 `curr1`은 현재값과 레이블, 임계값, 종합 경보, 정격 최대값을 제공합니다. 이 문서의 `rated_max`와 `rated_min`은 장치 정격 범위를 나타냅니다.
실시간 측정값과 장치 정격 및 경보를 함께 제공합니다.
현재값을 정격과 임계 한계에 대조합니다.
The driver exports the following attributes via the 'sysfs' files
for input voltage:
**in1_input**
**in1_label**
**in1_rated_max**
**in1_rated_min**
**in1_crit**
**in1_alarm**
The driver provides the following attributes for output voltage:
**in2_input**
**in2_label**
**in2_rated_max**
**in2_rated_min**
**in2_alarm**
The driver provides the following attributes for output current:
**curr1_input**
**curr1_label**
**curr1_crit**
**curr1_alarm**
**curr1_rated_max**
입력 전력과 온도 한계
73-91입력 전력 `power1`은 현재값과 레이블, 최대값, 정격 최대값을 제공합니다. 원문에는 이 전력 구간의 별도 경보 속성이 열거되어 있지 않습니다.
온도 `temp1`은 현재값, 최대값, 임계값, 종합 경보를 제공합니다.
전력 정격과 온도 상한을 정리합니다.
전력 정격과 열 경보를 차례로 확인합니다.
The driver provides the following attributes for input power:
**power1_input**
**power1_label**
**power1_max**
**power1_rated_max**
The driver provides the following attributes for temperature:
**temp1_input**
**temp1_max**
**temp1_crit**
**temp1_alarm**
요약·해설
mp5920.rst:1-91입출력 전압과 출력 전류의 정격 범위, 입력 전력 정격, 온도 임계와 종합 경보를 설명합니다.
원문 분량과 핵심 장치 구성을 정리합니다.
장치 등록부터 측정값과 경보 공개까지의 순서입니다.