요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Bindings for the Maxim MAX31785 Intelligent Fan Controller
==========================================================
Reference:
https://datasheets.maximintegrated.com/en/ds/MAX31785.pdf
The Maxim MAX31785 is a PMBus device providing closed-loop, multi-channel fan
management with temperature and remote voltage sensing. Various fan control
features are provided, including PWM frequency control, temperature hysteresis,
dual tachometer measurements, and fan health monitoring.
Required properties:
- compatible : One of "maxim,max31785" or "maxim,max31785a"
- reg : I2C address, one of 0x52, 0x53, 0x54, 0x55.
Example:
fans@52 {
compatible = "maxim,max31785";
reg = <0x52>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
MAX31785 intelligent fan controller
1-16Maxim 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입니다.
Sensor input과 fan feedback을 이용한 PMBus fan control 기능을 나타냅니다.
MAX31785 예제
17-22예제는 I2C address `0x52`의 MAX31785를 선언합니다.
fans@52 {
compatible = "maxim,max31785";
reg = <0x52>;
};
요약과 해설
max31785.txt:1-22Compatible variant와 허용 I2C address를 설명합니다.