요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
.. SPDX-License-Identifier: GPL-2.0
Kernel driver mc33xs2410_hwmon
==============================
Supported devices:
* NXPs MC33XS2410
Datasheet: https://www.nxp.com/docs/en/data-sheet/MC33XS2410.pdf
Authors:
Dimitri Fedrau <dimitri.fedrau@liebherr.com>
Description
-----------
The MC33XS2410 is a four channel self-protected high-side switch featuring
hardware monitoring functions such as temperature, current and voltages for each
of the four channels.
Sysfs entries
-------------
======================= ======================================================
temp1_label "Central die temperature"
temp1_input Measured temperature of central die
temp[2-5]_label "Channel [1-4] temperature"
temp[2-5]_input Measured temperature of a single channel
temp[2-5]_alarm Temperature alarm
temp[2-5]_max Maximal temperature
======================= ======================================================
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
MC33XS2410 4채널 자체 보호 하이사이드 스위치
1-19GPL-2.0 문서의 이 드라이버는 NXP MC33XS2410을 지원하며 저자는 Dimitri Fedrau입니다. 데이터시트 링크는 원문에 보존되어 있습니다.
MC33XS2410은 4채널 자체 보호 하이사이드 스위치입니다. 네 채널 각각에 온도·전류·전압 같은 하드웨어 감시 기능을 갖습니다.
중앙 다이와 각 출력 채널의 열 상태를 구분합니다.
중앙과 채널별 열 상태를 함께 관찰합니다.
.. SPDX-License-Identifier: GPL-2.0
Kernel driver mc33xs2410_hwmon
==============================
Supported devices:
* NXPs MC33XS2410
Datasheet: https://www.nxp.com/docs/en/data-sheet/MC33XS2410.pdf
Authors:
Dimitri Fedrau <dimitri.fedrau@liebherr.com>
Description
-----------
The MC33XS2410 is a four channel self-protected high-side switch featuring
중앙 다이와 채널별 온도 속성
20-34`temp1_label`은 `Central die temperature`, `temp1_input`은 중앙 다이 측정 온도입니다.
`temp[2-5]_label`은 각각 `Channel [1-4] temperature`이고 `temp[2-5]_input`은 개별 채널 온도입니다. `alarm`은 온도 경보, `max`는 최대 온도입니다.
temp 번호와 물리 채널의 대응입니다.
각 출력 채널의 온도와 경보를 확인합니다.
hardware monitoring functions such as temperature, current and voltages for each
of the four channels.
Sysfs entries
-------------
======================= ======================================================
temp1_label "Central die temperature"
temp1_input Measured temperature of central die
temp[2-5]_label "Channel [1-4] temperature"
temp[2-5]_input Measured temperature of a single channel
temp[2-5]_alarm Temperature alarm
temp[2-5]_max Maximal temperature
======================= ======================================================
요약·해설
mc33xs2410_hwmon.rst:1-34중앙 다이 온도와 네 출력 채널의 측정값·최대값·경보를 분리해 제공합니다.
원문 분량과 핵심 인터페이스입니다.
장치 등록부터 측정·경보 처리까지의 순서입니다.