← Documents Documentation/devicetree/bindings/display/ssd1289fb.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Solomon SSD1289 Framebuffer

PowerPC LBC bus에 연결되는 SSD1289 framebuffer 바인딩입니다.

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

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

1. 요약·해설

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

요약과 해설

ssd1289fb.txt:1-13

지원 bus, controller address와 LBC reg tuple 예제를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Solomon SSD1289 Framebuffer Driver
2
3 Required properties:
4 - compatible: Should be "solomon,ssd1289fb". The only supported bus for
5 now is lbc.
6 - reg: Should contain address of the controller on the LBC bus. The detail
7 was described in Documentation/devicetree/bindings/powerpc/fsl/lbc.txt
8
9 Examples:
10 display@2,0 {
11 compatible = "solomon,ssd1289fb";
12 reg = <0x2 0x0000 0x0004>;
13 };
14

3. 한국어 전문 번역

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

SSD1289 LBC framebuffer 속성

1-8

Solomon SSD1289 framebuffer driver 바인딩입니다. 필수 `compatible`은 `solomon,ssd1289fb`이며 현재 지원하는 bus는 LBC뿐입니다.

`reg`에는 LBC bus에서 controller의 address를 넣습니다. 자세한 LBC 주소 표현은 `Documentation/devicetree/bindings/powerpc/fsl/lbc.txt`에 설명되어 있습니다.

SSD1289 framebuffer bus
PowerPC LBCLocal bus mapping
reg = <chip-select offset size>Controller address
SSD1289 framebufferDisplay controller

Local Bus Controller의 address tuple로 SSD1289 display controller를 선택합니다.

LBC chip-select 2 예제

9-13

예제 display node는 LBC chip-select 2, offset 0, 4-byte 영역으로 SSD1289 controller를 지정합니다.

display@2,0 {
        compatible = "solomon,ssd1289fb";
        reg = <0x2 0x0000 0x0004>;
};