forked from torvalds/linux
-
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.
Merge remote-tracking branch 'asoc/for-5.9' into asoc-next
- Loading branch information
Showing
550 changed files
with
16,283 additions
and
4,808 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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,49 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/ak4613.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: AK4613 I2C transmitter Device Tree Bindings | ||
|
||
maintainers: | ||
- Kuninori Morimoto <[email protected]> | ||
|
||
properties: | ||
compatible: | ||
const: asahi-kasei,ak4613 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
"#sound-dai-cells": | ||
const: 0 | ||
|
||
patternProperties: | ||
"^asahi-kasei,in[1-2]-single-end$": | ||
description: Input Pin 1 - 2. | ||
$ref: /schemas/types.yaml#/definitions/flag | ||
|
||
"^asahi-kasei,out[1-6]-single-end$": | ||
description: Output Pin 1 - 6. | ||
$ref: /schemas/types.yaml#/definitions/flag | ||
|
||
required: | ||
- compatible | ||
- reg | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
ak4613: codec@10 { | ||
compatible = "asahi-kasei,ak4613"; | ||
reg = <0x10>; | ||
}; | ||
}; |
This file was deleted.
Oops, something went wrong.
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,58 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/ak4642.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: AK4642 I2C transmitter Device Tree Bindings | ||
|
||
maintainers: | ||
- Kuninori Morimoto <[email protected]> | ||
|
||
properties: | ||
compatible: | ||
enum: | ||
- asahi-kasei,ak4642 | ||
- asahi-kasei,ak4643 | ||
- asahi-kasei,ak4648 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
"#clock-cells": | ||
const: 0 | ||
"#sound-dai-cells": | ||
const: 0 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
clock-frequency: | ||
description: common clock binding; frequency of MCKO | ||
$ref: /schemas/types.yaml#/definitions/uint32 | ||
|
||
clock-output-names: | ||
description: common clock name | ||
$ref: /schemas/types.yaml#/definitions/string | ||
|
||
required: | ||
- compatible | ||
- reg | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
ak4643: codec@12 { | ||
compatible = "asahi-kasei,ak4643"; | ||
#sound-dai-cells = <0>; | ||
reg = <0x12>; | ||
#clock-cells = <0>; | ||
clocks = <&audio_clock>; | ||
clock-frequency = <12288000>; | ||
clock-output-names = "ak4643_mcko"; | ||
}; | ||
}; |
23 changes: 0 additions & 23 deletions
23
Documentation/devicetree/bindings/sound/everest,es8316.txt
This file was deleted.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
Documentation/devicetree/bindings/sound/everest,es8316.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,50 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/everest,es8316.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Everest ES8316 audio CODEC | ||
|
||
maintainers: | ||
- Daniel Drake <[email protected]> | ||
- Katsuhiro Suzuki <[email protected]> | ||
|
||
properties: | ||
compatible: | ||
const: everest,es8316 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
items: | ||
- description: clock for master clock (MCLK) | ||
|
||
clock-names: | ||
items: | ||
- const: mclk | ||
|
||
"#sound-dai-cells": | ||
const: 0 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- "#sound-dai-cells" | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
i2c0 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
es8316: codec@11 { | ||
compatible = "everest,es8316"; | ||
reg = <0x11>; | ||
clocks = <&clks 10>; | ||
clock-names = "mclk"; | ||
#sound-dai-cells = <0>; | ||
}; | ||
}; |
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
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
70 changes: 70 additions & 0 deletions
70
Documentation/devicetree/bindings/sound/intel,keembay-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,70 @@ | ||
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) | ||
# Copyright 2020 Intel Corporation | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/intel,keembay-i2s.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Intel KeemBay I2S Device Tree Bindings | ||
|
||
maintainers: | ||
- Sia, Jee Heng <[email protected]> | ||
|
||
description: | | ||
Intel KeemBay I2S | ||
properties: | ||
compatible: | ||
enum: | ||
- intel,keembay-i2s | ||
|
||
"#sound-dai-cells": | ||
const: 0 | ||
|
||
reg: | ||
items: | ||
- description: I2S registers | ||
- description: I2S gen configuration | ||
|
||
reg-names: | ||
items: | ||
- const: i2s-regs | ||
- const: i2s_gen_cfg | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
clocks: | ||
items: | ||
- description: Bus Clock | ||
- description: Module Clock | ||
|
||
clock-names: | ||
items: | ||
- const: osc | ||
- const: apb_clk | ||
|
||
required: | ||
- compatible | ||
- "#sound-dai-cells" | ||
- reg | ||
- clocks | ||
- clock-names | ||
- interrupts | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/arm-gic.h> | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
#define KEEM_BAY_PSS_AUX_I2S3 | ||
#define KEEM_BAY_PSS_I2S3 | ||
i2s3: i2s@20140000 { | ||
compatible = "intel,keembay-i2s"; | ||
#sound-dai-cells = <0>; | ||
reg = <0x20140000 0x200>, /* I2S registers */ | ||
<0x202a00a4 0x4>; /* I2S gen configuration */ | ||
reg-names = "i2s-regs", "i2s_gen_cfg"; | ||
interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>; | ||
clock-names = "osc", "apb_clk"; | ||
clocks = <&scmi_clk KEEM_BAY_PSS_AUX_I2S3>, <&scmi_clk KEEM_BAY_PSS_I2S3>; | ||
}; |
Oops, something went wrong.