mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 10:01:56 +00:00
b67f448729
Adds driver support for the two instances of McASP on TI's DM646x. The multichannel audio serial port (McASP) functions as a general-purpose audio serial port optimized for the needs of multichannel audio application. (http://www.ti.com/litv/pdf/spruer1b). There are two instances of McASP on DM646x. The McASP0 module includes up to 4 serializers that can be individually enabled to either transmit or receive in different modes. The McASP1 module is limited with only 1 pinned-out serializer that can be enabled to only transmit in DIT mode (neither receiving in any mode nor transmitting in either Burst or TDM mode is supported). McASP0 consists of transmit and receive sections that may operate synchronized, or completely independently with separate master clocks, bit clocks, and frame syncs, and using different transmit modes with different bit-stream formats. Signed-off-by: Steve Chen <schen@mvista.com> Signed-off-by: Pavel Kiryukhin <pkiryukhin@ru.mvista.com> Signed-off-by: Naresh Medisetty <naresh@ti.com> Signed-off-by: Chaithrika U S <chaithrika@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
config SND_DAVINCI_SOC
|
|
tristate "SoC Audio for the TI DAVINCI chip"
|
|
depends on ARCH_DAVINCI
|
|
help
|
|
Say Y or M if you want to add support for codecs attached to
|
|
the DAVINCI AC97 or I2S interface. You will also need
|
|
to select the audio interfaces to support below.
|
|
|
|
config SND_DAVINCI_SOC_I2S
|
|
tristate
|
|
|
|
config SND_DAVINCI_SOC_MCASP
|
|
tristate
|
|
|
|
config SND_DAVINCI_SOC_EVM
|
|
tristate "SoC Audio support for DaVinci DM6446 or DM355 EVM"
|
|
depends on SND_DAVINCI_SOC
|
|
depends on MACH_DAVINCI_EVM || MACH_DAVINCI_DM355_EVM
|
|
select SND_DAVINCI_SOC_I2S
|
|
select SND_SOC_TLV320AIC3X
|
|
help
|
|
Say Y if you want to add support for SoC audio on TI
|
|
DaVinci DM6446 or DM355 EVM platforms.
|
|
|
|
config SND_DM6467_SOC_EVM
|
|
tristate "SoC Audio support for DaVinci DM6467 EVM"
|
|
depends on SND_DAVINCI_SOC && MACH_DAVINCI_DM6467_EVM
|
|
select SND_DAVINCI_SOC_MCASP
|
|
select SND_SOC_TLV320AIC3X
|
|
select SND_SOC_SPDIF
|
|
|
|
help
|
|
Say Y if you want to add support for SoC audio on TI
|
|
|
|
config SND_DAVINCI_SOC_SFFSDR
|
|
tristate "SoC Audio support for SFFSDR"
|
|
depends on SND_DAVINCI_SOC && MACH_SFFSDR
|
|
select SND_DAVINCI_SOC_I2S
|
|
select SND_SOC_PCM3008
|
|
select SFFSDR_FPGA
|
|
help
|
|
Say Y if you want to add support for SoC audio on
|
|
Lyrtech SFFSDR board.
|