-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ASoC: dt-bindings: Add Loongson I2S controller
Add Loongson I2S controller binding with DT schema format using json-schema. Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Link: https://patch.msgid.link/91e49509f1aaa70e635b6662ed9fffaf31165799.1728459624.git.zhoubinbin@loongson.cn Signed-off-by: Mark Brown <broonie@kernel.org>
- Loading branch information
Binbin Zhou
authored and
Mark Brown
committed
Oct 9, 2024
1 parent
de0fb25
commit d4c2e9e
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
Documentation/devicetree/bindings/sound/loongson,ls2k1000-i2s.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/loongson,ls2k1000-i2s.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Loongson-2K1000 I2S controller | ||
|
||
maintainers: | ||
- Binbin Zhou <zhoubinbin@loongson.cn> | ||
|
||
allOf: | ||
- $ref: dai-common.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: loongson,ls2k1000-i2s | ||
|
||
reg: | ||
items: | ||
- description: Loongson I2S controller Registers. | ||
- description: APB DMA config register for Loongson I2S controller. | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
dmas: | ||
maxItems: 2 | ||
|
||
dma-names: | ||
items: | ||
- const: tx | ||
- const: rx | ||
|
||
'#sound-dai-cells': | ||
const: 0 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- clocks | ||
- dmas | ||
- dma-names | ||
- '#sound-dai-cells' | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/clock/loongson,ls2k-clk.h> | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
i2s@1fe2d000 { | ||
compatible = "loongson,ls2k1000-i2s"; | ||
reg = <0x1fe2d000 0x14>, | ||
<0x1fe00438 0x8>; | ||
interrupt-parent = <&liointc0>; | ||
interrupts = <5 IRQ_TYPE_LEVEL_HIGH>; | ||
clocks = <&clk LOONGSON2_APB_CLK>; | ||
dmas = <&apbdma2 0>, <&apbdma3 0>; | ||
dma-names = "tx", "rx"; | ||
#sound-dai-cells = <0>; | ||
}; | ||
... |