← Documents Documentation/devicetree/bindings/media/si4713.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Silicon Labs Si4713 FM Transmitter

76~108MHz FM transmitter의 RDS, audio interface, IRQ와 regulator 바인딩입니다.

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

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

1. 요약·해설

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

요약과 해설

si4713.txt:1-30

I2C transmitter의 reset·supply 예제를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Silicon Labs FM Radio transmitter
2
3 The Silicon Labs Si4713 is an FM radio transmitter with receive power scan
4 supporting 76-108 MHz. It includes an RDS encoder and has both, a stereo-analog
5 and a digital interface, which supports I2S, left-justified and a custom
6 DSP-mode format. It is programmable through an I2C interface.
7
8 Required Properties:
9 - compatible: Should contain "silabs,si4713"
10 - reg: the I2C address of the device
11
12 Optional Properties:
13 - interrupts-extended: Interrupt specifier for the chips interrupt
14 - reset-gpios: GPIO specifier for the chips reset line
15 - vdd-supply: phandle for Vdd regulator
16 - vio-supply: phandle for Vio regulator
17
18 Example:
19
20 &i2c2 {
21 fmtx: si4713@63 {
22 compatible = "silabs,si4713";
23 reg = <0x63>;
24
25 interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */
26 reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */
27 vio-supply = <&vio>;
28 vdd-supply = <&vaux1>;
29 };
30 };
31

3. 한국어 전문 번역

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

Si4713 FM transmitter

1-17

Silicon Labs Si4713은 76~108MHz receive power scan을 지원하는 FM radio transmitter입니다. RDS encoder를 내장하고 stereo analog interface와 I2S, left-justified, custom DSP-mode format을 지원하는 digital interface를 가지며 I2C로 program합니다.

필수 `compatible`은 `silabs,si4713`, `reg`는 I2C address입니다. 선택적인 `interrupts-extended`는 chip interrupt specifier, `reset-gpios`는 reset line GPIO, `vdd-supply`와 `vio-supply`는 각각 Vdd와 Vio regulator phandle입니다.

Si4713 FM transmit path
Stereo analog / I2S audioSi4713
RDS encoderFM modulation
76~108MHzFM transmit / power scan
IRQ + reset + regulatorsDevice control

Analog 또는 digital audio와 RDS를 FM carrier로 송신하고 receive power scan도 수행합니다.

I2C 0x63 transmitter 예제

18-30

예제는 I2C2 주소 `0x63`에 Si4713을 두고 GPIO2 line 21 falling-edge interrupt, GPIO6 line 3 active-high reset, `vio`와 `vaux1` regulator를 연결합니다.

&i2c2 {
        fmtx: si4713@63 {
                compatible = "silabs,si4713";
                reg = <0x63>;

                interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */
                reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */
                vio-supply = <&vio>;
                vdd-supply = <&vaux1>;
        };
};