forked from thesofproject/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request thesofproject#5105 from plbossart/merge/sound-upst…
…ream-20240715 Merge/sound upstream 20240715
- Loading branch information
Showing
361 changed files
with
5,862 additions
and
3,173 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,8 +59,8 @@ properties: | |
- 3 | ||
|
||
dma-channels: | ||
minItems: 1 | ||
maxItems: 64 | ||
minimum: 1 | ||
maximum: 64 | ||
|
||
clocks: | ||
minItems: 1 | ||
|
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
59 changes: 59 additions & 0 deletions
59
Documentation/devicetree/bindings/sound/cirrus,cs4270.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,59 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/cirrus,cs4270.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Cirrus Logic CS4270 audio CODEC | ||
|
||
maintainers: | ||
- patches@opensource.cirrus.com | ||
|
||
description: | ||
The CS4270 is a stereo audio codec. The driver for this device currently only | ||
supports I2C. | ||
|
||
allOf: | ||
- $ref: dai-common.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: cirrus,cs4270 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
'#sound-dai-cells': | ||
const: 0 | ||
|
||
reset-gpios: | ||
description: | ||
This pin will be deasserted before communication to the codec starts. | ||
maxItems: 1 | ||
|
||
va-supply: | ||
description: Analog power supply. | ||
|
||
vd-supply: | ||
description: Digital power supply. | ||
|
||
vlc-supply: | ||
description: Serial Control Port power supply. | ||
|
||
required: | ||
- compatible | ||
- reg | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
codec@48 { | ||
compatible = "cirrus,cs4270"; | ||
reg = <0x48>; | ||
}; | ||
}; |
81 changes: 81 additions & 0 deletions
81
Documentation/devicetree/bindings/sound/cirrus,cs42xx8.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,81 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/cirrus,cs42xx8.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Cirrus Logic CS42448/CS42888 audio CODEC | ||
|
||
maintainers: | ||
- patches@opensource.cirrus.com | ||
|
||
properties: | ||
compatible: | ||
enum: | ||
- cirrus,cs42448 | ||
- cirrus,cs42888 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
minItems: 1 | ||
maxItems: 2 | ||
|
||
clock-names: | ||
const: mclk | ||
|
||
VA-supply: | ||
description: Analog power supply. | ||
|
||
VD-supply: | ||
description: Digital power supply. | ||
|
||
VLC-supply: | ||
description: Control port power supply | ||
|
||
VLS-supply: | ||
description: Serial port interface power supply. | ||
|
||
reset-gpios: | ||
description: This pin is connected to the chip's RESET pin. | ||
maxItems: 1 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- clocks | ||
- clock-names | ||
|
||
if: | ||
properties: | ||
compatible: | ||
contains: | ||
const: cirrus,cs42888 | ||
then: | ||
required: | ||
- VA-supply | ||
- VD-supply | ||
- VLC-supply | ||
- VLS-supply | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
codec@48 { | ||
compatible = "cirrus,cs42888"; | ||
reg = <0x48>; | ||
clocks = <&codec_mclk 0>; | ||
clock-names = "mclk"; | ||
VA-supply = <®_audio>; | ||
VD-supply = <®_audio>; | ||
VLS-supply = <®_audio>; | ||
VLC-supply = <®_audio>; | ||
reset-gpios = <&gpio 1>; | ||
}; | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
66 changes: 0 additions & 66 deletions
66
Documentation/devicetree/bindings/sound/fsl,imx-audio-spdif.yaml
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
Oops, something went wrong.