]> err.no Git - linux-2.6/blob - sound/pci/oxygen/oxygen.c
[ALSA] oxygen: add more symbols
[linux-2.6] / sound / pci / oxygen / oxygen.c
1 /*
2  * C-Media CMI8788 driver for C-Media's reference design and for the X-Meridian
3  *
4  * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5  *
6  *
7  *  This driver is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License, version 2.
9  *
10  *  This driver is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this driver; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18  */
19
20 /*
21  * SPI 0 -> 1st AK4396 (front)
22  * SPI 1 -> 2nd AK4396 (surround)
23  * SPI 2 -> 3rd AK4396 (center/LFE)
24  * SPI 3 -> WM8785
25  * SPI 4 -> 4th AK4396 (back)
26  *
27  * GPIO 0 -> DFS0 of AK5385
28  * GPIO 1 -> DFS1 of AK5385
29  */
30
31 #include <linux/pci.h>
32 #include <sound/control.h>
33 #include <sound/core.h>
34 #include <sound/initval.h>
35 #include <sound/pcm.h>
36 #include <sound/pcm_params.h>
37 #include <sound/tlv.h>
38 #include "oxygen.h"
39
40 MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
41 MODULE_DESCRIPTION("C-Media CMI8788 driver");
42 MODULE_LICENSE("GPL");
43 MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8788}}");
44
45 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
46 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
47 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
48
49 module_param_array(index, int, NULL, 0444);
50 MODULE_PARM_DESC(index, "card index");
51 module_param_array(id, charp, NULL, 0444);
52 MODULE_PARM_DESC(id, "ID string");
53 module_param_array(enable, bool, NULL, 0444);
54 MODULE_PARM_DESC(enable, "enable card");
55
56 static struct pci_device_id oxygen_ids[] __devinitdata = {
57         { OXYGEN_PCI_SUBID(0x10b0, 0x0216) },
58         { OXYGEN_PCI_SUBID(0x10b0, 0x0218) },
59         { OXYGEN_PCI_SUBID(0x10b0, 0x0219) },
60         { OXYGEN_PCI_SUBID(0x13f6, 0x0001) },
61         { OXYGEN_PCI_SUBID(0x13f6, 0x0010) },
62         { OXYGEN_PCI_SUBID(0x13f6, 0x8788) },
63         { OXYGEN_PCI_SUBID(0x147a, 0xa017) },
64         { OXYGEN_PCI_SUBID(0x14c3, 0x1710) },
65         { OXYGEN_PCI_SUBID(0x14c3, 0x1711) },
66         { OXYGEN_PCI_SUBID(0x1a58, 0x0910) },
67         { OXYGEN_PCI_SUBID(0x415a, 0x5431), .driver_data = 1 },
68         { OXYGEN_PCI_SUBID(0x7284, 0x9761) },
69         { }
70 };
71 MODULE_DEVICE_TABLE(pci, oxygen_ids);
72
73
74 #define GPIO_AK5385_DFS_MASK    0x0003
75 #define GPIO_AK5385_DFS_NORMAL  0x0000
76 #define GPIO_AK5385_DFS_DOUBLE  0x0001
77 #define GPIO_AK5385_DFS_QUAD    0x0002
78
79 #define AK4396_WRITE    0x2000
80
81 #define AK4396_CONTROL_1        0
82 #define AK4396_CONTROL_2        1
83 #define AK4396_CONTROL_3        2
84 #define AK4396_LCH_ATT          3
85 #define AK4396_RCH_ATT          4
86
87 /* control 1 */
88 #define AK4396_RSTN             0x01
89 #define AK4396_DIF_MASK         0x0e
90 #define AK4396_DIF_16_LSB       0x00
91 #define AK4396_DIF_20_LSB       0x02
92 #define AK4396_DIF_24_MSB       0x04
93 #define AK4396_DIF_24_I2S       0x06
94 #define AK4396_DIF_24_LSB       0x08
95 #define AK4396_ACKS             0x80
96 /* control 2 */
97 #define AK4396_SMUTE            0x01
98 #define AK4396_DEM_MASK         0x06
99 #define AK4396_DEM_441          0x00
100 #define AK4396_DEM_OFF          0x02
101 #define AK4396_DEM_48           0x04
102 #define AK4396_DEM_32           0x06
103 #define AK4396_DFS_MASK         0x18
104 #define AK4396_DFS_NORMAL       0x00
105 #define AK4396_DFS_DOUBLE       0x08
106 #define AK4396_DFS_QUAD         0x10
107 #define AK4396_SLOW             0x20
108 #define AK4396_DZFM             0x40
109 #define AK4396_DZFE             0x80
110 /* control 3 */
111 #define AK4396_DZFB             0x04
112 #define AK4396_DCKB             0x10
113 #define AK4396_DCKS             0x20
114 #define AK4396_DSDM             0x40
115 #define AK4396_D_P_MASK         0x80
116 #define AK4396_PCM              0x00
117 #define AK4396_DSD              0x80
118
119 #define WM8785_R0       0
120 #define WM8785_R1       1
121 #define WM8785_R2       2
122 #define WM8785_R7       7
123
124 /* R0 */
125 #define WM8785_MCR_MASK         0x007
126 #define WM8785_MCR_SLAVE        0x000
127 #define WM8785_MCR_MASTER_128   0x001
128 #define WM8785_MCR_MASTER_192   0x002
129 #define WM8785_MCR_MASTER_256   0x003
130 #define WM8785_MCR_MASTER_384   0x004
131 #define WM8785_MCR_MASTER_512   0x005
132 #define WM8785_MCR_MASTER_768   0x006
133 #define WM8785_OSR_MASK         0x018
134 #define WM8785_OSR_SINGLE       0x000
135 #define WM8785_OSR_DOUBLE       0x008
136 #define WM8785_OSR_QUAD         0x010
137 #define WM8785_FORMAT_MASK      0x060
138 #define WM8785_FORMAT_RJUST     0x000
139 #define WM8785_FORMAT_LJUST     0x020
140 #define WM8785_FORMAT_I2S       0x040
141 #define WM8785_FORMAT_DSP       0x060
142 /* R1 */
143 #define WM8785_WL_MASK          0x003
144 #define WM8785_WL_16            0x000
145 #define WM8785_WL_20            0x001
146 #define WM8785_WL_24            0x002
147 #define WM8785_WL_32            0x003
148 #define WM8785_LRP              0x004
149 #define WM8785_BCLKINV          0x008
150 #define WM8785_LRSWAP           0x010
151 #define WM8785_DEVNO_MASK       0x0e0
152 /* R2 */
153 #define WM8785_HPFR             0x001
154 #define WM8785_HPFL             0x002
155 #define WM8785_SDODIS           0x004
156 #define WM8785_PWRDNR           0x008
157 #define WM8785_PWRDNL           0x010
158 #define WM8785_TDM_MASK         0x1c0
159
160 static void ak4396_write(struct oxygen *chip, unsigned int codec,
161                          u8 reg, u8 value)
162 {
163         /* maps ALSA channel pair number to SPI output */
164         static const u8 codec_spi_map[4] = {
165                 0, 1, 2, 4
166         };
167         oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER |
168                          OXYGEN_SPI_DATA_LENGTH_2 |
169                          OXYGEN_SPI_CLOCK_160 |
170                          (codec_spi_map[codec] << OXYGEN_SPI_CODEC_SHIFT) |
171                          OXYGEN_SPI_CEN_LATCH_CLOCK_HI,
172                          AK4396_WRITE | (reg << 8) | value);
173 }
174
175 static void wm8785_write(struct oxygen *chip, u8 reg, unsigned int value)
176 {
177         oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER |
178                          OXYGEN_SPI_DATA_LENGTH_2 |
179                          OXYGEN_SPI_CLOCK_160 |
180                          (3 << OXYGEN_SPI_CODEC_SHIFT) |
181                          OXYGEN_SPI_CEN_LATCH_CLOCK_LO,
182                          (reg << 9) | value);
183 }
184
185 static void ak4396_init(struct oxygen *chip)
186 {
187         unsigned int i;
188
189         chip->ak4396_ctl2 = AK4396_DEM_OFF | AK4396_DFS_NORMAL;
190         for (i = 0; i < 4; ++i) {
191                 ak4396_write(chip, i,
192                              AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN);
193                 ak4396_write(chip, i,
194                              AK4396_CONTROL_2, chip->ak4396_ctl2);
195                 ak4396_write(chip, i,
196                              AK4396_CONTROL_3, AK4396_PCM);
197                 ak4396_write(chip, i, AK4396_LCH_ATT, 0xff);
198                 ak4396_write(chip, i, AK4396_RCH_ATT, 0xff);
199         }
200         snd_component_add(chip->card, "AK4396");
201 }
202
203 static void ak5385_init(struct oxygen *chip)
204 {
205         oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_AK5385_DFS_MASK);
206         oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, GPIO_AK5385_DFS_MASK);
207         snd_component_add(chip->card, "AK5385");
208 }
209
210 static void wm8785_init(struct oxygen *chip)
211 {
212         wm8785_write(chip, WM8785_R7, 0);
213         wm8785_write(chip, WM8785_R0, WM8785_MCR_SLAVE |
214                      WM8785_OSR_SINGLE | WM8785_FORMAT_LJUST);
215         wm8785_write(chip, WM8785_R1, WM8785_WL_24);
216         snd_component_add(chip->card, "WM8785");
217 }
218
219 static void generic_init(struct oxygen *chip)
220 {
221         ak4396_init(chip);
222         wm8785_init(chip);
223 }
224
225 static void meridian_init(struct oxygen *chip)
226 {
227         ak4396_init(chip);
228         ak5385_init(chip);
229 }
230
231 static void generic_cleanup(struct oxygen *chip)
232 {
233 }
234
235 static void generic_pcm_hardware_filter(unsigned int channel,
236                                         struct snd_pcm_hardware *hardware)
237 {
238         if (channel == PCM_A) {
239                 hardware->rates = SNDRV_PCM_RATE_44100 |
240                                   SNDRV_PCM_RATE_48000 |
241                                   SNDRV_PCM_RATE_96000 |
242                                   SNDRV_PCM_RATE_192000;
243                 hardware->rate_min = 44100;
244         }
245 }
246
247 static void set_ak4396_params(struct oxygen *chip,
248                               struct snd_pcm_hw_params *params)
249 {
250         unsigned int i;
251         u8 value;
252
253         value = chip->ak4396_ctl2 & ~AK4396_DFS_MASK;
254         if (params_rate(params) <= 54000)
255                 value |= AK4396_DFS_NORMAL;
256         else if (params_rate(params) < 120000)
257                 value |= AK4396_DFS_DOUBLE;
258         else
259                 value |= AK4396_DFS_QUAD;
260         chip->ak4396_ctl2 = value;
261         for (i = 0; i < 4; ++i) {
262                 ak4396_write(chip, i,
263                              AK4396_CONTROL_1, AK4396_DIF_24_MSB);
264                 ak4396_write(chip, i,
265                              AK4396_CONTROL_2, value);
266                 ak4396_write(chip, i,
267                              AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN);
268         }
269 }
270
271 static void update_ak4396_volume(struct oxygen *chip)
272 {
273         unsigned int i;
274
275         for (i = 0; i < 4; ++i) {
276                 ak4396_write(chip, i,
277                              AK4396_LCH_ATT, chip->dac_volume[i * 2]);
278                 ak4396_write(chip, i,
279                              AK4396_RCH_ATT, chip->dac_volume[i * 2 + 1]);
280         }
281 }
282
283 static void update_ak4396_mute(struct oxygen *chip)
284 {
285         unsigned int i;
286         u8 value;
287
288         value = chip->ak4396_ctl2 & ~AK4396_SMUTE;
289         if (chip->dac_mute)
290                 value |= AK4396_SMUTE;
291         for (i = 0; i < 4; ++i)
292                 ak4396_write(chip, i, AK4396_CONTROL_2, value);
293 }
294
295 static void set_wm8785_params(struct oxygen *chip,
296                               struct snd_pcm_hw_params *params)
297 {
298         unsigned int value;
299
300         wm8785_write(chip, WM8785_R7, 0);
301
302         value = WM8785_MCR_SLAVE | WM8785_FORMAT_LJUST;
303         if (params_rate(params) == 96000)
304                 value |= WM8785_OSR_DOUBLE;
305         else if (params_rate(params) == 192000)
306                 value |= WM8785_OSR_QUAD;
307         else
308                 value |= WM8785_OSR_SINGLE;
309         wm8785_write(chip, WM8785_R0, value);
310
311         if (snd_pcm_format_width(params_format(params)) <= 16)
312                 value = WM8785_WL_16;
313         else
314                 value = WM8785_WL_24;
315         wm8785_write(chip, WM8785_R1, value);
316 }
317
318 static void set_ak5385_params(struct oxygen *chip,
319                               struct snd_pcm_hw_params *params)
320 {
321         unsigned int value;
322
323         if (params_rate(params) <= 54000)
324                 value = GPIO_AK5385_DFS_NORMAL;
325         else if (params_rate(params) <= 108000)
326                 value = GPIO_AK5385_DFS_DOUBLE;
327         else
328                 value = GPIO_AK5385_DFS_QUAD;
329         oxygen_write16_masked(chip, OXYGEN_GPIO_DATA,
330                               value, GPIO_AK5385_DFS_MASK);
331 }
332
333 static const DECLARE_TLV_DB_LINEAR(ak4396_db_scale, TLV_DB_GAIN_MUTE, 0);
334
335 static int ak4396_control_filter(struct snd_kcontrol_new *template)
336 {
337         if (!strcmp(template->name, "Master Playback Volume")) {
338                 template->access |= SNDRV_CTL_ELEM_ACCESS_TLV_READ;
339                 template->tlv.p = ak4396_db_scale;
340         }
341         return 0;
342 }
343
344 static const struct oxygen_model model_generic = {
345         .shortname = "C-Media CMI8788",
346         .longname = "C-Media Oxygen HD Audio",
347         .chip = "CMI8788",
348         .owner = THIS_MODULE,
349         .init = generic_init,
350         .control_filter = ak4396_control_filter,
351         .cleanup = generic_cleanup,
352         .pcm_hardware_filter = generic_pcm_hardware_filter,
353         .set_dac_params = set_ak4396_params,
354         .set_adc_params = set_wm8785_params,
355         .update_dac_volume = update_ak4396_volume,
356         .update_dac_mute = update_ak4396_mute,
357         .used_channels = OXYGEN_CHANNEL_A |
358                          OXYGEN_CHANNEL_C |
359                          OXYGEN_CHANNEL_SPDIF |
360                          OXYGEN_CHANNEL_MULTICH |
361                          OXYGEN_CHANNEL_AC97,
362         .function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5,
363         .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
364         .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
365 };
366 static const struct oxygen_model model_meridian = {
367         .shortname = "C-Media CMI8788",
368         .longname = "C-Media Oxygen HD Audio",
369         .chip = "CMI8788",
370         .owner = THIS_MODULE,
371         .init = meridian_init,
372         .control_filter = ak4396_control_filter,
373         .cleanup = generic_cleanup,
374         .set_dac_params = set_ak4396_params,
375         .set_adc_params = set_ak5385_params,
376         .update_dac_volume = update_ak4396_volume,
377         .update_dac_mute = update_ak4396_mute,
378         .used_channels = OXYGEN_CHANNEL_B |
379                          OXYGEN_CHANNEL_C |
380                          OXYGEN_CHANNEL_SPDIF |
381                          OXYGEN_CHANNEL_MULTICH |
382                          OXYGEN_CHANNEL_AC97,
383         .function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5,
384         .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
385         .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
386 };
387
388 static int __devinit generic_oxygen_probe(struct pci_dev *pci,
389                                           const struct pci_device_id *pci_id)
390 {
391         static int dev;
392         const struct oxygen_model *model;
393         int err;
394
395         if (dev >= SNDRV_CARDS)
396                 return -ENODEV;
397         if (!enable[dev]) {
398                 ++dev;
399                 return -ENOENT;
400         }
401         model = pci_id->driver_data ? &model_meridian : &model_generic;
402         err = oxygen_pci_probe(pci, index[dev], id[dev], 1, model);
403         if (err >= 0)
404                 ++dev;
405         return err;
406 }
407
408 static struct pci_driver oxygen_driver = {
409         .name = "CMI8788",
410         .id_table = oxygen_ids,
411         .probe = generic_oxygen_probe,
412         .remove = __devexit_p(oxygen_pci_remove),
413 };
414
415 static int __init alsa_card_oxygen_init(void)
416 {
417         return pci_register_driver(&oxygen_driver);
418 }
419
420 static void __exit alsa_card_oxygen_exit(void)
421 {
422         pci_unregister_driver(&oxygen_driver);
423 }
424
425 module_init(alsa_card_oxygen_init)
426 module_exit(alsa_card_oxygen_exit)