-
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 'sound-4.17-rc1' of git://git.kernel.org/pub/scm/linux/kern…
…el/git/tiwai/sound Pull sound updates from Takashi Iwai: "This became a large update. The changes are scattered widely, and the majority of them are attributed to ASoC componentization. The gitk output made me dizzy, but it's slightly better than London tube. OK, below are some highlights: - Continued hardening works in ALSA PCM core; most of the existing syzkaller reports should have been covered. - USB-audio got the initial USB Audio Class 3 support, as well as UAC2 jack detection support and more DSD-device support. - ASoC componentization: finally each individual driver was converted to components framework, which is more future-proof for further works. Most of conversations were systematic. - Lots of fixes for Intel Baytrail / Cherrytrail devices with Realtek codecs, typically tablets and small PCs. - Fixes / cleanups for Samsung Odroid systems - Cleanups in Freescale SSI driver - New ASoC drivers: * AKM AK4458 and AK5558 codecs * A few AMD based machine drivers * Intel Kabylake machine drivers * Maxim MAX9759 codec * Motorola CPCAP codec * Socionext Uniphier SoCs * TI PCM1789 and TDA7419 codecs - Retirement of Blackfin drivers along with architecture removal" * tag 'sound-4.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: (497 commits) ALSA: pcm: Fix UAF at PCM release via PCM timer access ALSA: usb-audio: silence a static checker warning ASoC: tscs42xx: Remove owner assignment from i2c_driver ASoC: mediatek: remove "simple-mfd" in the example ASoC: cpcap: replace codec to component ASoC: Intel: bytcr_rt5651: don't use codec anymore ASoC: amd: don't use codec anymore ALSA: usb-audio: fix memory leak on cval ALSA: pcm: Fix mutex unbalance in OSS emulation ioctls ASoC: topology: Fix kcontrol name string handling ALSA: aloop: Mark paused device as inactive ALSA: usb-audio: update clock valid control ALSA: usb-audio: UAC2 jack detection ALSA: pcm: Return -EBUSY for OSS ioctls changing busy streams ALSA: pcm: Avoid potential races between OSS ioctls and read/write ALSA: usb-audio: Integrate native DSD support for ITF-USB based DACs. ALSA: usb-audio: FIX native DSD support for TEAC UD-501 DAC ALSA: usb-audio: Add native DSD support for Luxman DA-06 ALSA: usb-audio: fix uac control query argument ASoC: nau8824: recover system clock when device changes ...
- Loading branch information
Showing
520 changed files
with
29,431 additions
and
23,352 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
AK4458 audio DAC | ||
|
||
This device supports I2C mode. | ||
|
||
Required properties: | ||
|
||
- compatible : "asahi-kasei,ak4458" | ||
- reg : The I2C address of the device for I2C | ||
|
||
Optional properties: | ||
- reset-gpios: A GPIO specifier for the power down & reset pin | ||
- mute-gpios: A GPIO specifier for the soft mute pin | ||
|
||
Example: | ||
|
||
&i2c { | ||
ak4458: dac@10 { | ||
compatible = "asahi-kasei,ak4458"; | ||
reg = <0x10>; | ||
reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW> | ||
mute-gpios = <&gpio1 11 GPIO_ACTIVE_HIGH> | ||
}; | ||
}; |
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,22 @@ | ||
AK5558 8 channel differential 32-bit delta-sigma ADC | ||
|
||
This device supports I2C mode only. | ||
|
||
Required properties: | ||
|
||
- compatible : "asahi-kasei,ak5558" | ||
- reg : The I2C address of the device. | ||
|
||
Optional properties: | ||
|
||
- reset-gpios: A GPIO specifier for the power down & reset pin. | ||
|
||
Example: | ||
|
||
&i2c { | ||
ak5558: adc@10 { | ||
compatible = "asahi-kasei,ak5558"; | ||
reg = <0x10>; | ||
reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; |
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
53 changes: 0 additions & 53 deletions
53
Documentation/devicetree/bindings/sound/imx-audio-wm8962.txt
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
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,18 @@ | ||
Maxim MAX9759 Speaker Amplifier | ||
=============================== | ||
|
||
Required properties: | ||
- compatible : "maxim,max9759" | ||
- shutdown-gpios : the gpio connected to the shutdown pin | ||
- mute-gpios : the gpio connected to the mute pin | ||
- gain-gpios : the 2 gpios connected to the g1 and g2 pins | ||
|
||
Example: | ||
|
||
max9759: analog-amplifier { | ||
compatible = "maxim,max9759"; | ||
shutdown-gpios = <&gpio3 20 GPIO_ACTIVE_LOW>; | ||
mute-gpios = <&gpio3 19 GPIO_ACTIVE_LOW>; | ||
gain-gpios = <&gpio3 23 GPIO_ACTIVE_LOW>, | ||
<&gpio3 25 GPIO_ACTIVE_LOW>; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Texas Instruments pcm1789 DT bindings | ||
|
||
PCM1789 is a simple audio codec that can be connected via | ||
I2C or SPI. Currently, only I2C bus is supported. | ||
|
||
Required properties: | ||
|
||
- compatible: "ti,pcm1789" | ||
|
||
Required properties on I2C: | ||
|
||
- reg: the I2C address | ||
- reset-gpios: GPIO to control the RESET pin | ||
|
||
Examples: | ||
|
||
audio-codec@4c { | ||
compatible = "ti,pcm1789"; | ||
reg = <0x4c>; | ||
reset-gpios = <&gpio2 14 GPIO_ACTIVE_LOW>; | ||
#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
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,29 @@ | ||
ROHM BD28623MUV Class D speaker amplifier for digital input | ||
|
||
This codec does not have any control buses such as I2C, it detect format and | ||
rate of I2S signal automatically. It has two signals that can be connected | ||
to GPIOs: reset and mute. | ||
|
||
Required properties: | ||
- compatible : should be "rohm,bd28623" | ||
- #sound-dai-cells: should be 0. | ||
- VCCA-supply : regulator phandle for the VCCA supply | ||
- VCCP1-supply : regulator phandle for the VCCP1 supply | ||
- VCCP2-supply : regulator phandle for the VCCP2 supply | ||
|
||
Optional properties: | ||
- reset-gpios : GPIO specifier for the active low reset line | ||
- mute-gpios : GPIO specifier for the active low mute line | ||
|
||
Example: | ||
|
||
codec { | ||
compatible = "rohm,bd28623"; | ||
#sound-dai-cells = <0>; | ||
|
||
VCCA-supply = <&vcc_reg>; | ||
VCCP1-supply = <&vcc_reg>; | ||
VCCP2-supply = <&vcc_reg>; | ||
reset-gpios = <&gpio 0 GPIO_ACTIVE_LOW>; | ||
mute-gpios = <&gpio 1 GPIO_ACTIVE_LOW>; | ||
}; |
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
Oops, something went wrong.