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

Linux 6.18.37 · Hardware Monitoring

Kernel driver ltc4151

LTC4151 고전압 모니터의 VDIN·ADIN 전압과 1 mOhm 감지 저항 기준 SENSE 전류입니다.

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

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

1. 요약·해설

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

요약·해설

ltc4151.rst:1-55

안전한 식별 레지스터가 없어 명시적으로 등록하며 VDIN·ADIN 전압과 1 mOhm 기준 SENSE 전류를 제공합니다.

문서 개요
항목
SourceDocumentation/hwmon/ltc4151.rst
분량55 source lines
예시 주소0x6f
전류 기준1 mOhm

원문 분량과 핵심 장치 특성입니다.

운영 흐름
주소 확인장치 생성전압 읽기SENSE 전류 환산

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

2. 영어 원문 전체

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

원문 전체 펼치기
1 Kernel driver ltc4151
2 =====================
3
4 Supported chips:
5
6 * Linear Technology LTC4151
7
8 Prefix: 'ltc4151'
9
10 Addresses scanned: -
11
12 Datasheet:
13
14 http://www.linear.com/docs/Datasheet/4151fc.pdf
15
16 Author: Per Dalen <[email protected]>
17
18
19 Description
20 -----------
21
22 The LTC4151 is a High Voltage I2C Current and Voltage Monitor.
23
24
25 Usage Notes
26 -----------
27
28 This driver does not probe for LTC4151 devices, since there is no register
29 which can be safely used to identify the chip. You will have to instantiate
30 the devices explicitly.
31
32 Example: the following will load the driver for an LTC4151 at address 0x6f
33 on I2C bus #0::
34
35 # modprobe ltc4151
36 # echo ltc4151 0x6f > /sys/bus/i2c/devices/i2c-0/new_device
37
38
39 Sysfs entries
40 -------------
41
42 Voltage readings provided by this driver are reported as obtained from the ADIN
43 and VIN registers.
44
45 Current reading provided by this driver is reported as obtained from the Current
46 Sense register. The reported value assumes that a 1 mOhm sense resistor is
47 installed.
48
49 ======================= ==================
50 in1_input VDIN voltage (mV)
51
52 in2_input ADIN voltage (mV)
53
54 curr1_input SENSE current (mA)
55 ======================= ==================
56

3. 한국어 전문 번역

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

고전압 LTC4151 전류·전압 모니터

1-41

LTC4151은 `ltc4151` 접두사를 사용하는 고전압 I2C 전류·전압 모니터이며 저자는 Per Dalen입니다. 칩을 안전하게 식별할 수 있는 레지스터가 없으므로 드라이버가 자동 탐색하지 않습니다.

I2C 버스 0의 주소 `0x6f` 예시는 `modprobe ltc4151` 다음 `echo ltc4151 0x6f > /sys/bus/i2c/devices/i2c-0/new_device`로 장치를 명시적으로 생성합니다.

LTC4151 등록
항목
기능고전압 전류·전압 감시
접두사ltc4151
자동 탐색없음
예시I2C 0, 0x6f

안전한 식별 레지스터가 없어 보드 정보가 필요합니다.

LTC4151 연결
보드 회로와 I2C 주소 확인ltc4151 모듈 적재new_device로 명시적 생성VDIN·ADIN·SENSE 읽기

실제 배선과 주소를 확인한 뒤 장치를 등록합니다.

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 감지 저항이 설치됐다고 가정하므로 다른 저항을 사용한 보드는 별도로 환산해야 합니다.

LTC4151 sysfs
속성원천단위
in1_inputVDINmV
in2_inputADINmV
curr1_inputSENSE, 1 mOhm 기준mA

두 전압 입력과 감지 전류입니다.

LTC4151 값 해석
VDIN과 ADIN 전압 읽기SENSE 전류 읽기실제 Rsense 확인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)
======================= ==================