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 tag 'asoc-v5.18' of https://git.kernel.org/pub/scm/linux/kernel…
…/git/broonie/sound into for-linus ASoC: Updates for v5.18 Quite a quiet release for ASoC, lots of work on drivers and platforms but nothing too groundbreaking but not much on the core itself: - Start of moving SoF to support multiple IPC mechanisms. - Use of NHLT ACPI table to reduce the amount of quirking required for Intel systems. - Some building blocks for use in forthcoming Intel AVS driver for legacy Intel DSP firmwares. - Support for AMD PDM, Atmel PDMC, Awinic AW8738, i.MX cards with TLV320AIC31xx, Intel machines with CS35L41 and ESSX8336, Mediatek MT8181 wideband bluetooth, nVidia Tegra234, Qualcomm SC7280, Renesas RZ/V2L, Texas Instruments TAS585M
- Loading branch information
Showing
344 changed files
with
21,876 additions
and
7,212 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
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
54 changes: 54 additions & 0 deletions
54
Documentation/devicetree/bindings/sound/awinic,aw8738.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,54 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/sound/awinic,aw8738.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Awinic AW8738 Audio Amplifier | ||
|
||
maintainers: | ||
- Stephan Gerhold <[email protected]> | ||
|
||
description: | ||
The Awinic AW8738 is a simple audio amplifier with different operation modes | ||
(set using one-wire pulse control). The mode configures the speaker-guard | ||
function (primarily the power limit for the amplifier). | ||
|
||
allOf: | ||
- $ref: name-prefix.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: awinic,aw8738 | ||
|
||
mode-gpios: | ||
description: | ||
GPIO used for one-wire pulse control. The pin is typically called SHDN | ||
(active-low), but this is misleading since it is actually more than | ||
just a simple shutdown/enable control. | ||
maxItems: 1 | ||
|
||
awinic,mode: | ||
description: Operation mode (number of pulses for one-wire pulse control) | ||
$ref: /schemas/types.yaml#/definitions/uint32 | ||
minimum: 1 | ||
maximum: 7 | ||
|
||
sound-name-prefix: true | ||
|
||
required: | ||
- compatible | ||
- mode-gpios | ||
- awinic,mode | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/gpio/gpio.h> | ||
audio-amplifier { | ||
compatible = "awinic,aw8738"; | ||
mode-gpios = <&msmgpio 114 GPIO_ACTIVE_HIGH>; | ||
awinic,mode = <5>; | ||
sound-name-prefix = "Speaker Amp"; | ||
}; |
86 changes: 0 additions & 86 deletions
86
Documentation/devicetree/bindings/sound/davinci-mcasp-audio.txt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.