요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Android Goldfish QEMU Pipe
3
Android pipe virtual device generated by android emulator.
5
Required properties:
7
- compatible : should contain "google,android-pipe" to match emulator
8
- reg : <registers mapping>
9
- interrupts : <interrupt mapping>
11
Example:
13
android_pipe@a010000 {
14
compatible = "google,android-pipe";
15
reg = <ff018000 0x2000>;
16
interrupts = <0x12>;
17
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Goldfish QEMU Pipe 속성
1-10Android Goldfish QEMU Pipe는 Android emulator가 생성하는 virtual pipe device입니다. 필수 `compatible`은 `google,android-pipe`, `reg`는 register mapping, `interrupts`는 interrupt mapping입니다.
Property값/역할
compatiblegoogle,android-pipe
regPipe register mapping
interruptsPipe event interrupt
Guest와 emulator 사이 virtual pipe transport 자원입니다.
Goldfish Pipe 예제
11-17예제 `android_pipe@a010000` node는 원문 그대로 register entry `<ff018000 0x2000>`와 interrupt `0x12`를 사용합니다.
android_pipe@a010000 {
compatible = "google,android-pipe";
reg = <ff018000 0x2000>;
interrupts = <0x12>;
};
요약과 해설
pipe.txt:1-17Pipe register와 event interrupt를 설명합니다.