64 lines
1.1 KiB
YAML
Raw Normal View History

2026-01-21 18:59:54 +08:00
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/sound/ingenic,codec.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
2026-01-29 22:25:33 +08:00
title: Ingenic JZ47xx internal codec
2026-01-21 18:59:54 +08:00
maintainers:
- Paul Cercueil <paul@crapouillou.net>
2026-01-29 22:25:33 +08:00
allOf:
- $ref: dai-common.yaml#
2026-01-21 18:59:54 +08:00
properties:
$nodename:
pattern: '^audio-codec@.*'
compatible:
oneOf:
2026-01-29 22:25:33 +08:00
- enum:
- ingenic,jz4770-codec
- ingenic,jz4760-codec
- ingenic,jz4725b-codec
- ingenic,jz4740-codec
- items:
- const: ingenic,jz4760b-codec
- const: ingenic,jz4760-codec
2026-01-21 18:59:54 +08:00
reg:
maxItems: 1
clocks:
maxItems: 1
clock-names:
items:
- const: aic
'#sound-dai-cells':
const: 0
2026-01-29 22:25:33 +08:00
unevaluatedProperties: false
2026-01-21 18:59:54 +08:00
required:
- compatible
- reg
- clocks
- clock-names
- '#sound-dai-cells'
examples:
- |
2026-01-29 22:25:33 +08:00
#include <dt-bindings/clock/ingenic,jz4740-cgu.h>
2026-01-21 18:59:54 +08:00
codec: audio-codec@10020080 {
compatible = "ingenic,jz4740-codec";
reg = <0x10020080 0x8>;
#sound-dai-cells = <0>;
clocks = <&cgu JZ4740_CLK_AIC>;
clock-names = "aic";
};
...