요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
* Aspeed BT (Block Transfer) IPMI interface
The Aspeed SOCs (AST2400 and AST2500) are commonly used as BMCs
(BaseBoard Management Controllers) and the BT interface can be used to
perform in-band IPMI communication with their host.
Required properties:
- compatible : should be one of
"aspeed,ast2400-ibt-bmc"
"aspeed,ast2500-ibt-bmc"
"aspeed,ast2600-ibt-bmc"
- reg: physical address and size of the registers
- clocks: clock for the device
Optional properties:
- interrupts: interrupt generated by the BT interface. without an
interrupt, the driver will operate in poll mode.
Example:
ibt@1e789140 {
compatible = "aspeed,ast2400-ibt-bmc";
reg = <0x1e789140 0x18>;
interrupts = <8>;
clocks = <&syscon ASPEED_CLK_GATE_LCLK>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Aspeed BT IPMI 속성
1-20AST2400과 AST2500 같은 Aspeed SoC는 BMC(BaseBoard Management Controller)로 널리 쓰이며 BT(Block Transfer) interface를 통해 host와 in-band IPMI 통신을 수행할 수 있습니다.
`compatible`은 `aspeed,ast2400-ibt-bmc`, `aspeed,ast2500-ibt-bmc`, `aspeed,ast2600-ibt-bmc` 중 하나입니다. 필수 `reg`는 register의 물리 주소와 크기이고 `clocks`는 장치 clock입니다. 선택 `interrupts`는 BT interface가 생성하는 interrupt이며, 지정하지 않으면 driver가 poll mode로 동작합니다.
BMC의 BT interface가 host와 in-band 관리 메시지를 교환합니다.
AST2400 BT 예제
21-28예제는 `0x1e789140`의 0x18-byte register 영역에 AST2400 BT interface를 두고 interrupt 8과 `ASPEED_CLK_GATE_LCLK` clock을 연결합니다.
ibt@1e789140 {
compatible = "aspeed,ast2400-ibt-bmc";
reg = <0x1e789140 0x18>;
interrupts = <8>;
clocks = <&syscon ASPEED_CLK_GATE_LCLK>;
};
요약과 해설
aspeed,ast2400-ibt-bmc.txt:1-28Interrupt와 poll mode 및 AST2400 register 예제를 설명합니다.