← Documents Documentation/devicetree/bindings/hwmon/max31785.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Maxim MAX31785 Fan Controller

PMBus closed-loop multi-channel fan controller 바인딩입니다.

Source pathDocumentation/devicetree/bindings/hwmon/max31785.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

max31785.txt:1-22

Compatible variant와 허용 I2C address를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Bindings for the Maxim MAX31785 Intelligent Fan Controller
2 ==========================================================
3
4 Reference:
5
6 https://datasheets.maximintegrated.com/en/ds/MAX31785.pdf
7
8 The Maxim MAX31785 is a PMBus device providing closed-loop, multi-channel fan
9 management with temperature and remote voltage sensing. Various fan control
10 features are provided, including PWM frequency control, temperature hysteresis,
11 dual tachometer measurements, and fan health monitoring.
12
13 Required properties:
14 - compatible : One of "maxim,max31785" or "maxim,max31785a"
15 - reg : I2C address, one of 0x52, 0x53, 0x54, 0x55.
16
17 Example:
18
19 fans@52 {
20 compatible = "maxim,max31785";
21 reg = <0x52>;
22 };
23

3. 한국어 전문 번역

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

MAX31785 intelligent fan controller

1-16

Maxim MAX31785는 temperature와 remote voltage sensing을 갖춘 closed-loop multi-channel fan management PMBus device입니다. PWM frequency control, temperature hysteresis, dual tachometer measurement, fan health monitoring 등의 기능을 제공합니다. Datasheet는 `https://datasheets.maximintegrated.com/en/ds/MAX31785.pdf`입니다.

필수 `compatible`은 `maxim,max31785` 또는 `maxim,max31785a`입니다. `reg`는 `0x52`, `0x53`, `0x54`, `0x55` 중 하나인 I2C address입니다.

MAX31785 closed-loop fan control
Temperature + remote voltageControl inputs
MAX31785 PMBus controllerPWM frequency + hysteresis
Fan PWMSpeed command
Dual tach + healthClosed-loop feedback

Sensor input과 fan feedback을 이용한 PMBus fan control 기능을 나타냅니다.

MAX31785 예제

17-22

예제는 I2C address `0x52`의 MAX31785를 선언합니다.

fans@52 {
        compatible = "maxim,max31785";
        reg = <0x52>;
};