요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
digraph board {
rankdir=TB
n00000001 [label="{{<port0> 0} | csi2\n/dev/v4l-subdev0 | {<port1> 1 | <port2> 2 | <port3> 3 | <port4> 4}}", shape=Mrecord, style=filled, fillcolor=green]
n00000001:port1 -> n00000011 [style=dashed]
n00000001:port1 -> n00000007:port0
n00000001:port2 -> n00000015
n00000001:port2 -> n00000007:port0 [style=dashed]
n00000001:port3 -> n00000019 [style=dashed]
n00000001:port3 -> n00000007:port0 [style=dashed]
n00000001:port4 -> n0000001d [style=dashed]
n00000001:port4 -> n00000007:port0 [style=dashed]
n00000007 [label="{{<port0> 0 | <port1> 1} | pisp-fe\n/dev/v4l-subdev1 | {<port2> 2 | <port3> 3 | <port4> 4}}", shape=Mrecord, style=filled, fillcolor=green]
n00000007:port2 -> n00000021
n00000007:port3 -> n00000025 [style=dashed]
n00000007:port4 -> n00000029
n0000000d [label="{imx219 6-0010\n/dev/v4l-subdev2 | {<port0> 0}}", shape=Mrecord, style=filled, fillcolor=green]
n0000000d:port0 -> n00000001:port0 [style=bold]
n00000011 [label="rp1-cfe-csi2-ch0\n/dev/video0", shape=box, style=filled, fillcolor=yellow]
n00000015 [label="rp1-cfe-csi2-ch1\n/dev/video1", shape=box, style=filled, fillcolor=yellow]
n00000019 [label="rp1-cfe-csi2-ch2\n/dev/video2", shape=box, style=filled, fillcolor=yellow]
n0000001d [label="rp1-cfe-csi2-ch3\n/dev/video3", shape=box, style=filled, fillcolor=yellow]
n00000021 [label="rp1-cfe-fe-image0\n/dev/video4", shape=box, style=filled, fillcolor=yellow]
n00000025 [label="rp1-cfe-fe-image1\n/dev/video5", shape=box, style=filled, fillcolor=yellow]
n00000029 [label="rp1-cfe-fe-stats\n/dev/video6", shape=box, style=filled, fillcolor=yellow]
n0000002d [label="rp1-cfe-fe-config\n/dev/video7", shape=box, style=filled, fillcolor=yellow]
n0000002d -> n00000007:port1
}
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
IMX219, CSI-2 채널과 PiSP 프런트엔드 경로
1-27이 Graphviz DOT 원문은 Raspberry Pi RP1 Camera Front End(CFE)의 V4L2 미디어 토폴로지를 나타냅니다. `imx219 6-0010` 센서가 `csi2` 수신기 입력 port0에 연결되고, 수신기의 출력 port1-4는 네 CSI 채널 비디오 노드 또는 `pisp-fe` 프런트엔드 입력 port0으로 이어집니다.
`pisp-fe`는 영상 입력 port0과 설정 입력 port1을 가지며, 출력 port2와 port3은 이미지 큐 두 개, port4는 통계 큐로 연결됩니다. `/dev/video7`의 `rp1-cfe-fe-config`는 출력 결과가 아니라 `pisp-fe`로 들어가는 설정 입력입니다. `/dev/video6`의 `rp1-cfe-fe-stats`는 영상 프레임과 구분되는 통계 출력입니다.
원문은 링크 스타일을 세 종류로 구분합니다. 센서와 CSI-2 사이 1개 링크는 `style=bold`, 선택 후보 7개는 `style=dashed`, 스타일 속성이 없는 5개는 일반 실선입니다. 이 페이지는 해당 표현을 그대로 설명하며 DOT에 기록되지 않은 런타임 포맷이나 라우팅 상태를 임의로 추가하지 않습니다.
CSI-2 출력은 채널별 직접 캡처 노드와 PiSP 프런트엔드 입력 사이에서 토폴로지 링크를 제공합니다.
각 CSI-2 source 패드의 직접 캡처 노드와 `pisp-fe` 입력 링크를 함께 정리합니다.
`pisp-fe`의 출력 세 개와 설정 입력 하나의 방향·장치·스타일입니다.
세 초록색 서브디바이스의 입력과 출력 패드를 구분합니다.
27줄 DOT 원문에서 전용 감사가 검증하는 구조입니다.
각 엔티티와 링크 묶음이 등장하는 원문 범위입니다.
아래 코드는 Linux v6.18.37 원문 1-27줄 전체입니다. 표시 안정성을 위해 탭만 여덟 칸으로 정규화했으며 노드 ID, 엔티티명, 장치 경로, 패드 번호, 링크 방향과 스타일은 그대로 보존했습니다.
digraph board {
rankdir=TB
n00000001 [label="{{<port0> 0} | csi2\n/dev/v4l-subdev0 | {<port1> 1 | <port2> 2 | <port3> 3 | <port4> 4}}", shape=Mrecord, style=filled, fillcolor=green]
n00000001:port1 -> n00000011 [style=dashed]
n00000001:port1 -> n00000007:port0
n00000001:port2 -> n00000015
n00000001:port2 -> n00000007:port0 [style=dashed]
n00000001:port3 -> n00000019 [style=dashed]
n00000001:port3 -> n00000007:port0 [style=dashed]
n00000001:port4 -> n0000001d [style=dashed]
n00000001:port4 -> n00000007:port0 [style=dashed]
n00000007 [label="{{<port0> 0 | <port1> 1} | pisp-fe\n/dev/v4l-subdev1 | {<port2> 2 | <port3> 3 | <port4> 4}}", shape=Mrecord, style=filled, fillcolor=green]
n00000007:port2 -> n00000021
n00000007:port3 -> n00000025 [style=dashed]
n00000007:port4 -> n00000029
n0000000d [label="{imx219 6-0010\n/dev/v4l-subdev2 | {<port0> 0}}", shape=Mrecord, style=filled, fillcolor=green]
n0000000d:port0 -> n00000001:port0 [style=bold]
n00000011 [label="rp1-cfe-csi2-ch0\n/dev/video0", shape=box, style=filled, fillcolor=yellow]
n00000015 [label="rp1-cfe-csi2-ch1\n/dev/video1", shape=box, style=filled, fillcolor=yellow]
n00000019 [label="rp1-cfe-csi2-ch2\n/dev/video2", shape=box, style=filled, fillcolor=yellow]
n0000001d [label="rp1-cfe-csi2-ch3\n/dev/video3", shape=box, style=filled, fillcolor=yellow]
n00000021 [label="rp1-cfe-fe-image0\n/dev/video4", shape=box, style=filled, fillcolor=yellow]
n00000025 [label="rp1-cfe-fe-image1\n/dev/video5", shape=box, style=filled, fillcolor=yellow]
n00000029 [label="rp1-cfe-fe-stats\n/dev/video6", shape=box, style=filled, fillcolor=yellow]
n0000002d [label="rp1-cfe-fe-config\n/dev/video7", shape=box, style=filled, fillcolor=yellow]
n0000002d -> n00000007:port1
}
요약·해설
raspberrypi-rp1-cfe.dot:1-27Raspberry Pi RP1 CFE에서 IMX219 센서, CSI-2 네 채널, PiSP 프런트엔드의 이미지·통계·설정 큐가 연결되는 미디어 토폴로지를 해설합니다.
센서 입력은 직접 CSI 캡처 또는 PiSP 프런트엔드 처리 경로로 이어집니다.