blob: dd9b2956ebc7a297fb17823c35f430812d7528ed [file] [log] [blame]
Mark Brown227b4dc2009-01-03 11:24:41 +01001# Helper to resolve issues with configs that have SPI enabled but I2C
2# modular, meaning we can't build the codec driver in with I2C support.
3# We use an ordered list of conditional defaults to pick the appropriate
4# setting - SPI can't be modular so that case doesn't need to be covered.
5config SND_SOC_I2C_AND_SPI
6 tristate
7 default m if I2C=m
8 default y if I2C=y
9 default y if SPI_MASTER=y
10
Mark Brown0c941612008-07-29 11:42:35 +010011config SND_SOC_ALL_CODECS
12 tristate "Build all ASoC CODEC drivers"
Mark Brown070504a2009-01-23 15:34:54 +000013 select SND_SOC_L3
Takashi Iwai07637222008-10-30 17:53:19 +010014 select SND_SOC_AC97_CODEC if SND_SOC_AC97_BUS
Mark Browne9ade7f2009-08-13 15:19:42 +010015 select SND_SOC_AD1836 if SPI_MASTER
Barry Song12747382009-07-16 16:00:05 +080016 select SND_SOC_AD1938 if SPI_MASTER
Mark Brownca53fb22008-10-22 22:41:11 +010017 select SND_SOC_AD1980 if SND_SOC_AC97_BUS
18 select SND_SOC_AD73311 if I2C
Daniel Macka3819342009-03-09 02:13:17 +010019 select SND_SOC_AK4104 if SPI_MASTER
Mark Brownca53fb22008-10-22 22:41:11 +010020 select SND_SOC_AK4535 if I2C
21 select SND_SOC_CS4270 if I2C
Joonyoung Shim9db9ed92009-07-15 20:34:00 +090022 select SND_SOC_MAX9877 if I2C
Hugo Villeneuve1c0090c2008-11-19 01:37:31 -050023 select SND_SOC_PCM3008
Chaithrika U Sbe461ba2009-05-28 05:10:50 -040024 select SND_SOC_SPDIF
Mark Brownca53fb22008-10-22 22:41:11 +010025 select SND_SOC_SSM2602 if I2C
Jon Smirl3c166c72009-05-23 19:13:07 -040026 select SND_SOC_STAC9766 if SND_SOC_AC97_BUS
Mark Brownca53fb22008-10-22 22:41:11 +010027 select SND_SOC_TLV320AIC23 if I2C
28 select SND_SOC_TLV320AIC26 if SPI_MASTER
29 select SND_SOC_TLV320AIC3X if I2C
Steve Sakomancc175572008-10-30 21:35:26 -070030 select SND_SOC_TWL4030 if TWL4030_CORE
Christian Pellegrin1cad1de2008-11-15 08:58:16 +010031 select SND_SOC_UDA134X
Mark Brownca53fb22008-10-22 22:41:11 +010032 select SND_SOC_UDA1380 if I2C
Mark Brown40aa4a32008-12-16 10:15:12 +000033 select SND_SOC_WM8350 if MFD_WM8350
Mark Brownaaf1e172009-03-10 10:55:15 +000034 select SND_SOC_WM8400 if MFD_WM8400
Mark Brown227b4dc2009-01-03 11:24:41 +010035 select SND_SOC_WM8510 if SND_SOC_I2C_AND_SPI
Mark Brown1dcf98f2009-07-01 18:28:54 +010036 select SND_SOC_WM8523 if I2C
Mark Brownca53fb22008-10-22 22:41:11 +010037 select SND_SOC_WM8580 if I2C
Mark Brown227b4dc2009-01-03 11:24:41 +010038 select SND_SOC_WM8728 if SND_SOC_I2C_AND_SPI
39 select SND_SOC_WM8731 if SND_SOC_I2C_AND_SPI
40 select SND_SOC_WM8750 if SND_SOC_I2C_AND_SPI
41 select SND_SOC_WM8753 if SND_SOC_I2C_AND_SPI
Mark Brown924914e2009-08-04 23:50:16 +010042 select SND_SOC_WM8776 if SND_SOC_I2C_AND_SPI
Mark Brownca53fb22008-10-22 22:41:11 +010043 select SND_SOC_WM8900 if I2C
44 select SND_SOC_WM8903 if I2C
Jonathan Cameron0b5e92c52009-04-27 13:49:44 +000045 select SND_SOC_WM8940 if I2C
Mark Brownf2644a22009-04-07 19:20:14 +010046 select SND_SOC_WM8960 if I2C
Mark Brown74dc55e2009-06-09 09:55:51 +010047 select SND_SOC_WM8961 if I2C
Mark Brownca53fb22008-10-22 22:41:11 +010048 select SND_SOC_WM8971 if I2C
Mark Brown5409fb42009-04-07 18:45:21 +010049 select SND_SOC_WM8988 if SND_SOC_I2C_AND_SPI
Mark Brownca53fb22008-10-22 22:41:11 +010050 select SND_SOC_WM8990 if I2C
Mark Brown942c4352009-06-05 16:32:59 +010051 select SND_SOC_WM8993 if I2C
Mark Brown86ed3662009-05-22 15:01:19 +010052 select SND_SOC_WM9081 if I2C
Ian Molton2aceefe2009-01-16 11:04:18 +000053 select SND_SOC_WM9705 if SND_SOC_AC97_BUS
Mark Brownca53fb22008-10-22 22:41:11 +010054 select SND_SOC_WM9712 if SND_SOC_AC97_BUS
55 select SND_SOC_WM9713 if SND_SOC_AC97_BUS
Mark Brown0c941612008-07-29 11:42:35 +010056 help
57 Normally ASoC codec drivers are only built if a machine driver which
58 uses them is also built since they are only usable with a machine
59 driver. Selecting this option will allow these drivers to be built
60 without an explicit machine driver for test and development purposes.
61
Mark Brownca53fb22008-10-22 22:41:11 +010062 Support for the bus types used to access the codecs to be built must
63 be selected separately.
64
Mark Brown0c941612008-07-29 11:42:35 +010065 If unsure select "N".
66
67
Richard Purdie7f137ab2006-10-06 18:38:37 +020068config SND_SOC_AC97_CODEC
69 tristate
Takashi Iwai89fe5112008-05-23 16:10:37 +020070 select SND_AC97_CODEC
Richard Purdie7f137ab2006-10-06 18:38:37 +020071
Barry Song7eaae412009-08-13 11:59:32 +080072config SND_SOC_AD1836
73 tristate
74
Barry Song12747382009-07-16 16:00:05 +080075config SND_SOC_AD1938
76 tristate
77
Cliff Cai5f57dc82008-07-29 11:42:34 +010078config SND_SOC_AD1980
79 tristate
80
Cliff Cai0e77e782008-09-27 16:57:26 +080081config SND_SOC_AD73311
82 tristate
83
Daniel Macka3819342009-03-09 02:13:17 +010084config SND_SOC_AK4104
85 tristate
86
Richard Purdie796d2ca2008-06-23 14:51:28 +010087config SND_SOC_AK4535
88 tristate
89
Mark Brown3e860842008-09-06 18:11:51 +010090# Cirrus Logic CS4270 Codec
91config SND_SOC_CS4270
92 tristate
93
Mark Brown3e860842008-09-06 18:11:51 +010094# Cirrus Logic CS4270 Codec VD = 3.3V Errata
95# Select if you are affected by the errata where the part will not function
96# if MCLK divide-by-1.5 is selected and VD is set to 3.3V. The driver will
97# not select any sample rates that require MCLK to be divided by 1.5.
98config SND_SOC_CS4270_VD33_ERRATA
99 bool
100 depends on SND_SOC_CS4270
101
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200102config SND_SOC_CX20442
103 tristate
104
Christian Pellegrin1cad1de2008-11-15 08:58:16 +0100105config SND_SOC_L3
106 tristate
107
Hugo Villeneuve1c0090c2008-11-19 01:37:31 -0500108config SND_SOC_PCM3008
109 tristate
110
Chaithrika U Sbe461ba2009-05-28 05:10:50 -0400111config SND_SOC_SPDIF
112 tristate
113
Mark Brown3e860842008-09-06 18:11:51 +0100114config SND_SOC_SSM2602
115 tristate
116
Jon Smirl3c166c72009-05-23 19:13:07 -0400117config SND_SOC_STAC9766
118 tristate
119
Arun KSc1f27192008-10-02 14:45:49 +0530120config SND_SOC_TLV320AIC23
121 tristate
Arun KSc1f27192008-10-02 14:45:49 +0530122
Mark Brown3e860842008-09-06 18:11:51 +0100123config SND_SOC_TLV320AIC26
Mark Brownd5d8d832008-10-13 19:16:14 +0100124 tristate "TI TLV320AIC26 Codec support" if SND_SOC_OF_SIMPLE
Takashi Iwai446e0f62008-10-10 08:26:57 +0200125 depends on SPI
Mark Brown3e860842008-09-06 18:11:51 +0100126
127config SND_SOC_TLV320AIC3X
128 tristate
Mark Brown3e860842008-09-06 18:11:51 +0100129
Steve Sakomancc175572008-10-30 21:35:26 -0700130config SND_SOC_TWL4030
131 tristate
Steve Sakomancc175572008-10-30 21:35:26 -0700132
Christian Pellegrin1cad1de2008-11-15 08:58:16 +0100133config SND_SOC_UDA134X
134 tristate
Christian Pellegrin1cad1de2008-11-15 08:58:16 +0100135
Philipp Zabelb7482f52008-05-28 17:58:06 +0100136config SND_SOC_UDA1380
137 tristate
138
Mark Brown40aa4a32008-12-16 10:15:12 +0000139config SND_SOC_WM8350
140 tristate
141
Mark Brownaaf1e172009-03-10 10:55:15 +0000142config SND_SOC_WM8400
143 tristate
144
Mark Brown5d421512008-06-05 13:49:32 +0100145config SND_SOC_WM8510
146 tristate
147
Mark Brown1dcf98f2009-07-01 18:28:54 +0100148config SND_SOC_WM8523
149 tristate
150
Mark Browne88ba012008-08-06 13:18:26 +0100151config SND_SOC_WM8580
152 tristate
153
Mark Brown71cfc902008-11-13 14:33:14 +0000154config SND_SOC_WM8728
155 tristate
156
Richard Purdie7f137ab2006-10-06 18:38:37 +0200157config SND_SOC_WM8731
158 tristate
Richard Purdie7f137ab2006-10-06 18:38:37 +0200159
160config SND_SOC_WM8750
161 tristate
Richard Purdie7f137ab2006-10-06 18:38:37 +0200162
Liam Girdwood33703b72007-04-16 19:18:15 +0200163config SND_SOC_WM8753
164 tristate
Liam Girdwood33703b72007-04-16 19:18:15 +0200165
Mark Brown924914e2009-08-04 23:50:16 +0100166config SND_SOC_WM8776
167 tristate
168
Mark Brown0e0e16a2008-08-04 12:06:45 +0100169config SND_SOC_WM8900
170 tristate
171
Mark Brownf1c0a022008-08-26 13:05:27 +0100172config SND_SOC_WM8903
173 tristate
174
Jonathan Cameron0b5e92c52009-04-27 13:49:44 +0000175config SND_SOC_WM8940
176 tristate
177
Mark Brownf2644a22009-04-07 19:20:14 +0100178config SND_SOC_WM8960
179 tristate
180
Mark Brown74dc55e2009-06-09 09:55:51 +0100181config SND_SOC_WM8961
182 tristate
183
Kenneth Kiraly8bae3e22008-09-10 19:33:32 +0100184config SND_SOC_WM8971
185 tristate
186
Mark Brown5409fb42009-04-07 18:45:21 +0100187config SND_SOC_WM8988
188 tristate
189
Mark Brownf10485e2008-06-05 13:49:33 +0100190config SND_SOC_WM8990
191 tristate
192
Mark Brown942c4352009-06-05 16:32:59 +0100193config SND_SOC_WM8993
194 tristate
195
Mark Brown86ed3662009-05-22 15:01:19 +0100196config SND_SOC_WM9081
197 tristate
198
Ian Molton2aceefe2009-01-16 11:04:18 +0000199config SND_SOC_WM9705
200 tristate
201
Richard Purdie7f137ab2006-10-06 18:38:37 +0200202config SND_SOC_WM9712
203 tristate
Timur Tabib0c813c2007-07-31 18:18:44 +0200204
Liam Girdwood83ac08c2008-02-15 16:43:11 +0100205config SND_SOC_WM9713
206 tristate
Joonyoung Shim9db9ed92009-07-15 20:34:00 +0900207
208# Amp
209config SND_SOC_MAX9877
210 tristate