← Documents Documentation/devicetree/bindings/sound/omap-dmic.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Sound

OMAP4+ digital microphone

OMAP4+ DMIC의 MPU·L3 register, interrupt와 hwmod를 설명합니다.

Source pathDocumentation/devicetree/bindings/sound/omap-dmic.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

omap-dmic.txt:1-20

OMAP4+ DMIC의 MPU·L3 register, interrupt와 hwmod를 설명합니다. 접을 수 있는 영어 원문은 전체 source line과 공백을 보존하며, 한국어 전문 번역은 property·endpoint·phandle·예제 코드를 원형대로 유지합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Texas Instruments OMAP4+ Digital Microphone Module
2
3 Required properties:
4 - compatible: "ti,omap4-dmic"
5 - reg: Register location and size as an array:
6 <MPU access base address, size>,
7 <L3 interconnect address, size>;
8 - interrupts: Interrupt number for DMIC
9 - ti,hwmods: Name of the hwmod associated with OMAP dmic IP
10
11 Example:
12
13 dmic: dmic@4012e000 {
14 compatible = "ti,omap4-dmic";
15 reg = <0x4012e000 0x7f>, /* MPU private access */
16 <0x4902e000 0x7f>; /* L3 Interconnect */
17 interrupts = <0 114 0x4>;
18 interrupt-parent = <&gic>;
19 ti,hwmods = "dmic";
20 };
21

3. 한국어 전문 번역

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

OMAP4+ DMIC 필수 속성

1-10

OMAP4+ Digital Microphone Module의 `compatible`은 `ti,omap4-dmic`입니다. `reg`는 MPU access base·size와 L3 interconnect address·size 두 entry의 배열입니다. `interrupts`는 DMIC interrupt number, `ti,hwmods`는 OMAP DMIC IP에 연결된 hwmod 이름입니다.

OMAP DMIC 예제

11-20

예제는 `0x4012e000` MPU private region, `0x4902e000` L3 region, interrupt 114와 `dmic` hwmod를 지정합니다.

dmic: dmic@4012e000 {
        compatible = "ti,omap4-dmic";
        reg = <0x4012e000 0x7f>, /* MPU private access */
              <0x4902e000 0x7f>; /* L3 Interconnect */
        interrupts = <0 114 0x4>;
        interrupt-parent = <&gic>;
        ti,hwmods = "dmic";
};