요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Kernel driver ltc4151
=====================
Supported chips:
* Linear Technology LTC4151
Prefix: 'ltc4151'
Addresses scanned: -
Datasheet:
http://www.linear.com/docs/Datasheet/4151fc.pdf
Author: Per Dalen <[email protected]>
Description
-----------
The LTC4151 is a High Voltage I2C Current and Voltage Monitor.
Usage Notes
-----------
This driver does not probe for LTC4151 devices, since there is no register
which can be safely used to identify the chip. You will have to instantiate
the devices explicitly.
Example: the following will load the driver for an LTC4151 at address 0x6f
on I2C bus #0::
# modprobe ltc4151
# echo ltc4151 0x6f > /sys/bus/i2c/devices/i2c-0/new_device
Sysfs entries
-------------
Voltage readings provided by this driver are reported as obtained from the ADIN
and VIN registers.
Current reading provided by this driver is reported as obtained from the Current
Sense register. The reported value assumes that a 1 mOhm sense resistor is
installed.
======================= ==================
in1_input VDIN voltage (mV)
in2_input ADIN voltage (mV)
curr1_input SENSE current (mA)
======================= ==================
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
고전압 LTC4151 전류·전압 모니터
1-41LTC4151은 `ltc4151` 접두사를 사용하는 고전압 I2C 전류·전압 모니터이며 저자는 Per Dalen입니다. 칩을 안전하게 식별할 수 있는 레지스터가 없으므로 드라이버가 자동 탐색하지 않습니다.
I2C 버스 0의 주소 `0x6f` 예시는 `modprobe ltc4151` 다음 `echo ltc4151 0x6f > /sys/bus/i2c/devices/i2c-0/new_device`로 장치를 명시적으로 생성합니다.
안전한 식별 레지스터가 없어 보드 정보가 필요합니다.
실제 배선과 주소를 확인한 뒤 장치를 등록합니다.
Kernel driver ltc4151
=====================
Supported chips:
* Linear Technology LTC4151
Prefix: 'ltc4151'
Addresses scanned: -
Datasheet:
http://www.linear.com/docs/Datasheet/4151fc.pdf
Author: Per Dalen <[email protected]>
Description
-----------
The LTC4151 is a High Voltage I2C Current and Voltage Monitor.
Usage Notes
-----------
This driver does not probe for LTC4151 devices, since there is no register
which can be safely used to identify the chip. You will have to instantiate
the devices explicitly.
Example: the following will load the driver for an LTC4151 at address 0x6f
on I2C bus #0::
# modprobe ltc4151
# echo ltc4151 0x6f > /sys/bus/i2c/devices/i2c-0/new_device
Sysfs entries
-------------
ADIN·VIN 레지스터와 1 mOhm 전류
42-55전압값은 ADIN과 VIN 레지스터에서 얻은 그대로 보고됩니다. `in1_input`은 VDIN 전압, `in2_input`은 ADIN 전압이며 모두 mV 단위입니다.
`curr1_input`은 Current Sense 레지스터에서 얻은 SENSE 전류를 mA로 보고합니다. 보고값은 1 mOhm 감지 저항이 설치됐다고 가정하므로 다른 저항을 사용한 보드는 별도로 환산해야 합니다.
두 전압 입력과 감지 전류입니다.
레지스터 보고값과 실제 감지 저항을 함께 확인합니다.
Voltage readings provided by this driver are reported as obtained from the ADIN
and VIN registers.
Current reading provided by this driver is reported as obtained from the Current
Sense register. The reported value assumes that a 1 mOhm sense resistor is
installed.
======================= ==================
in1_input VDIN voltage (mV)
in2_input ADIN voltage (mV)
curr1_input SENSE current (mA)
======================= ==================
요약·해설
ltc4151.rst:1-55안전한 식별 레지스터가 없어 명시적으로 등록하며 VDIN·ADIN 전압과 1 mOhm 기준 SENSE 전류를 제공합니다.
원문 분량과 핵심 장치 특성입니다.
등록부터 측정·경보 처리까지의 핵심 순서입니다.