blob: 31512a0f1d0756552915f1727e291d43f0bf871c [file] [log] [blame]
Ian Minett95c6e9c2011-06-15 15:35:17 -07001/*
2 * HD audio interface patch for Creative CA0132 chip
3 *
4 * Copyright (c) 2011, Creative Technology Ltd.
5 *
6 * Based on patch_ca0110.c
7 * Copyright (c) 2008 Takashi Iwai <tiwai@suse.de>
8 *
9 * This driver is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This driver is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#include <linux/init.h>
25#include <linux/delay.h>
26#include <linux/slab.h>
27#include <linux/pci.h>
28#include <linux/mutex.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040029#include <linux/module.h>
Ian Minett95c6e9c2011-06-15 15:35:17 -070030#include <sound/core.h>
31#include "hda_codec.h"
32#include "hda_local.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020033#include "hda_auto_parser.h"
Ian Minett95c6e9c2011-06-15 15:35:17 -070034
35#define WIDGET_CHIP_CTRL 0x15
36#define WIDGET_DSP_CTRL 0x16
37
38#define WUH_MEM_CONNID 10
39#define DSP_MEM_CONNID 16
40
41enum hda_cmd_vendor_io {
42 /* for DspIO node */
43 VENDOR_DSPIO_SCP_WRITE_DATA_LOW = 0x000,
44 VENDOR_DSPIO_SCP_WRITE_DATA_HIGH = 0x100,
45
46 VENDOR_DSPIO_STATUS = 0xF01,
47 VENDOR_DSPIO_SCP_POST_READ_DATA = 0x702,
48 VENDOR_DSPIO_SCP_READ_DATA = 0xF02,
49 VENDOR_DSPIO_DSP_INIT = 0x703,
50 VENDOR_DSPIO_SCP_POST_COUNT_QUERY = 0x704,
51 VENDOR_DSPIO_SCP_READ_COUNT = 0xF04,
52
53 /* for ChipIO node */
54 VENDOR_CHIPIO_ADDRESS_LOW = 0x000,
55 VENDOR_CHIPIO_ADDRESS_HIGH = 0x100,
56 VENDOR_CHIPIO_STREAM_FORMAT = 0x200,
57 VENDOR_CHIPIO_DATA_LOW = 0x300,
58 VENDOR_CHIPIO_DATA_HIGH = 0x400,
59
60 VENDOR_CHIPIO_GET_PARAMETER = 0xF00,
61 VENDOR_CHIPIO_STATUS = 0xF01,
62 VENDOR_CHIPIO_HIC_POST_READ = 0x702,
63 VENDOR_CHIPIO_HIC_READ_DATA = 0xF03,
64
65 VENDOR_CHIPIO_CT_EXTENSIONS_ENABLE = 0x70A,
66
67 VENDOR_CHIPIO_PLL_PMU_WRITE = 0x70C,
68 VENDOR_CHIPIO_PLL_PMU_READ = 0xF0C,
69 VENDOR_CHIPIO_8051_ADDRESS_LOW = 0x70D,
70 VENDOR_CHIPIO_8051_ADDRESS_HIGH = 0x70E,
71 VENDOR_CHIPIO_FLAG_SET = 0x70F,
72 VENDOR_CHIPIO_FLAGS_GET = 0xF0F,
73 VENDOR_CHIPIO_PARAMETER_SET = 0x710,
74 VENDOR_CHIPIO_PARAMETER_GET = 0xF10,
75
76 VENDOR_CHIPIO_PORT_ALLOC_CONFIG_SET = 0x711,
77 VENDOR_CHIPIO_PORT_ALLOC_SET = 0x712,
78 VENDOR_CHIPIO_PORT_ALLOC_GET = 0xF12,
79 VENDOR_CHIPIO_PORT_FREE_SET = 0x713,
80
81 VENDOR_CHIPIO_PARAMETER_EX_ID_GET = 0xF17,
82 VENDOR_CHIPIO_PARAMETER_EX_ID_SET = 0x717,
83 VENDOR_CHIPIO_PARAMETER_EX_VALUE_GET = 0xF18,
84 VENDOR_CHIPIO_PARAMETER_EX_VALUE_SET = 0x718
85};
86
87/*
88 * Control flag IDs
89 */
90enum control_flag_id {
91 /* Connection manager stream setup is bypassed/enabled */
92 CONTROL_FLAG_C_MGR = 0,
93 /* DSP DMA is bypassed/enabled */
94 CONTROL_FLAG_DMA = 1,
95 /* 8051 'idle' mode is disabled/enabled */
96 CONTROL_FLAG_IDLE_ENABLE = 2,
97 /* Tracker for the SPDIF-in path is bypassed/enabled */
98 CONTROL_FLAG_TRACKER = 3,
99 /* DigitalOut to Spdif2Out connection is disabled/enabled */
100 CONTROL_FLAG_SPDIF2OUT = 4,
101 /* Digital Microphone is disabled/enabled */
102 CONTROL_FLAG_DMIC = 5,
103 /* ADC_B rate is 48 kHz/96 kHz */
104 CONTROL_FLAG_ADC_B_96KHZ = 6,
105 /* ADC_C rate is 48 kHz/96 kHz */
106 CONTROL_FLAG_ADC_C_96KHZ = 7,
107 /* DAC rate is 48 kHz/96 kHz (affects all DACs) */
108 CONTROL_FLAG_DAC_96KHZ = 8,
109 /* DSP rate is 48 kHz/96 kHz */
110 CONTROL_FLAG_DSP_96KHZ = 9,
111 /* SRC clock is 98 MHz/196 MHz (196 MHz forces rate to 96 KHz) */
112 CONTROL_FLAG_SRC_CLOCK_196MHZ = 10,
113 /* SRC rate is 48 kHz/96 kHz (48 kHz disabled when clock is 196 MHz) */
114 CONTROL_FLAG_SRC_RATE_96KHZ = 11,
115 /* Decode Loop (DSP->SRC->DSP) is disabled/enabled */
116 CONTROL_FLAG_DECODE_LOOP = 12,
117 /* De-emphasis filter on DAC-1 disabled/enabled */
118 CONTROL_FLAG_DAC1_DEEMPHASIS = 13,
119 /* De-emphasis filter on DAC-2 disabled/enabled */
120 CONTROL_FLAG_DAC2_DEEMPHASIS = 14,
121 /* De-emphasis filter on DAC-3 disabled/enabled */
122 CONTROL_FLAG_DAC3_DEEMPHASIS = 15,
123 /* High-pass filter on ADC_B disabled/enabled */
124 CONTROL_FLAG_ADC_B_HIGH_PASS = 16,
125 /* High-pass filter on ADC_C disabled/enabled */
126 CONTROL_FLAG_ADC_C_HIGH_PASS = 17,
127 /* Common mode on Port_A disabled/enabled */
128 CONTROL_FLAG_PORT_A_COMMON_MODE = 18,
129 /* Common mode on Port_D disabled/enabled */
130 CONTROL_FLAG_PORT_D_COMMON_MODE = 19,
131 /* Impedance for ramp generator on Port_A 16 Ohm/10K Ohm */
132 CONTROL_FLAG_PORT_A_10KOHM_LOAD = 20,
133 /* Impedance for ramp generator on Port_D, 16 Ohm/10K Ohm */
134 CONTROL_FLAG_PORT_D_10K0HM_LOAD = 21,
135 /* ASI rate is 48kHz/96kHz */
136 CONTROL_FLAG_ASI_96KHZ = 22,
137 /* DAC power settings able to control attached ports no/yes */
138 CONTROL_FLAG_DACS_CONTROL_PORTS = 23,
139 /* Clock Stop OK reporting is disabled/enabled */
140 CONTROL_FLAG_CONTROL_STOP_OK_ENABLE = 24,
141 /* Number of control flags */
142 CONTROL_FLAGS_MAX = (CONTROL_FLAG_CONTROL_STOP_OK_ENABLE+1)
143};
144
145/*
146 * Control parameter IDs
147 */
148enum control_parameter_id {
149 /* 0: force HDA, 1: allow DSP if HDA Spdif1Out stream is idle */
150 CONTROL_PARAM_SPDIF1_SOURCE = 2,
151
152 /* Stream Control */
153
154 /* Select stream with the given ID */
155 CONTROL_PARAM_STREAM_ID = 24,
156 /* Source connection point for the selected stream */
157 CONTROL_PARAM_STREAM_SOURCE_CONN_POINT = 25,
158 /* Destination connection point for the selected stream */
159 CONTROL_PARAM_STREAM_DEST_CONN_POINT = 26,
160 /* Number of audio channels in the selected stream */
161 CONTROL_PARAM_STREAMS_CHANNELS = 27,
162 /*Enable control for the selected stream */
163 CONTROL_PARAM_STREAM_CONTROL = 28,
164
165 /* Connection Point Control */
166
167 /* Select connection point with the given ID */
168 CONTROL_PARAM_CONN_POINT_ID = 29,
169 /* Connection point sample rate */
170 CONTROL_PARAM_CONN_POINT_SAMPLE_RATE = 30,
171
172 /* Node Control */
173
174 /* Select HDA node with the given ID */
175 CONTROL_PARAM_NODE_ID = 31
176};
177
178/*
179 * Dsp Io Status codes
180 */
181enum hda_vendor_status_dspio {
182 /* Success */
183 VENDOR_STATUS_DSPIO_OK = 0x00,
184 /* Busy, unable to accept new command, the host must retry */
185 VENDOR_STATUS_DSPIO_BUSY = 0x01,
186 /* SCP command queue is full */
187 VENDOR_STATUS_DSPIO_SCP_COMMAND_QUEUE_FULL = 0x02,
188 /* SCP response queue is empty */
189 VENDOR_STATUS_DSPIO_SCP_RESPONSE_QUEUE_EMPTY = 0x03
190};
191
192/*
193 * Chip Io Status codes
194 */
195enum hda_vendor_status_chipio {
196 /* Success */
197 VENDOR_STATUS_CHIPIO_OK = 0x00,
198 /* Busy, unable to accept new command, the host must retry */
199 VENDOR_STATUS_CHIPIO_BUSY = 0x01
200};
201
202/*
203 * CA0132 sample rate
204 */
205enum ca0132_sample_rate {
206 SR_6_000 = 0x00,
207 SR_8_000 = 0x01,
208 SR_9_600 = 0x02,
209 SR_11_025 = 0x03,
210 SR_16_000 = 0x04,
211 SR_22_050 = 0x05,
212 SR_24_000 = 0x06,
213 SR_32_000 = 0x07,
214 SR_44_100 = 0x08,
215 SR_48_000 = 0x09,
216 SR_88_200 = 0x0A,
217 SR_96_000 = 0x0B,
218 SR_144_000 = 0x0C,
219 SR_176_400 = 0x0D,
220 SR_192_000 = 0x0E,
221 SR_384_000 = 0x0F,
222
223 SR_COUNT = 0x10,
224
225 SR_RATE_UNKNOWN = 0x1F
226};
227
228/*
229 * Scp Helper function
230 */
231enum get_set {
232 IS_SET = 0,
233 IS_GET = 1,
234};
235
236/*
237 * Duplicated from ca0110 codec
238 */
239
240static void init_output(struct hda_codec *codec, hda_nid_t pin, hda_nid_t dac)
241{
242 if (pin) {
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200243 snd_hda_set_pin_ctl(codec, pin, PIN_HP);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700244 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
245 snd_hda_codec_write(codec, pin, 0,
246 AC_VERB_SET_AMP_GAIN_MUTE,
247 AMP_OUT_UNMUTE);
248 }
249 if (dac)
250 snd_hda_codec_write(codec, dac, 0,
251 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO);
252}
253
254static void init_input(struct hda_codec *codec, hda_nid_t pin, hda_nid_t adc)
255{
256 if (pin) {
Takashi Iwai47408602012-04-20 13:06:53 +0200257 snd_hda_set_pin_ctl(codec, pin, PIN_IN |
258 snd_hda_get_default_vref(codec, pin));
Ian Minett95c6e9c2011-06-15 15:35:17 -0700259 if (get_wcaps(codec, pin) & AC_WCAP_IN_AMP)
260 snd_hda_codec_write(codec, pin, 0,
261 AC_VERB_SET_AMP_GAIN_MUTE,
262 AMP_IN_UNMUTE(0));
263 }
264 if (adc)
265 snd_hda_codec_write(codec, adc, 0, AC_VERB_SET_AMP_GAIN_MUTE,
266 AMP_IN_UNMUTE(0));
267}
268
269static char *dirstr[2] = { "Playback", "Capture" };
270
271static int _add_switch(struct hda_codec *codec, hda_nid_t nid, const char *pfx,
272 int chan, int dir)
273{
274 char namestr[44];
275 int type = dir ? HDA_INPUT : HDA_OUTPUT;
276 struct snd_kcontrol_new knew =
277 HDA_CODEC_MUTE_MONO(namestr, nid, chan, 0, type);
278 sprintf(namestr, "%s %s Switch", pfx, dirstr[dir]);
279 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
280}
281
282static int _add_volume(struct hda_codec *codec, hda_nid_t nid, const char *pfx,
283 int chan, int dir)
284{
285 char namestr[44];
286 int type = dir ? HDA_INPUT : HDA_OUTPUT;
287 struct snd_kcontrol_new knew =
288 HDA_CODEC_VOLUME_MONO(namestr, nid, chan, 0, type);
289 sprintf(namestr, "%s %s Volume", pfx, dirstr[dir]);
290 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
291}
292
293#define add_out_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 0)
294#define add_out_volume(codec, nid, pfx) _add_volume(codec, nid, pfx, 3, 0)
295#define add_in_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 1)
296#define add_in_volume(codec, nid, pfx) _add_volume(codec, nid, pfx, 3, 1)
297#define add_mono_switch(codec, nid, pfx, chan) \
298 _add_switch(codec, nid, pfx, chan, 0)
299#define add_mono_volume(codec, nid, pfx, chan) \
300 _add_volume(codec, nid, pfx, chan, 0)
301#define add_in_mono_switch(codec, nid, pfx, chan) \
302 _add_switch(codec, nid, pfx, chan, 1)
303#define add_in_mono_volume(codec, nid, pfx, chan) \
304 _add_volume(codec, nid, pfx, chan, 1)
305
306
307/*
308 * CA0132 specific
309 */
310
311struct ca0132_spec {
312 struct auto_pin_cfg autocfg;
313 struct hda_multi_out multiout;
314 hda_nid_t out_pins[AUTO_CFG_MAX_OUTS];
315 hda_nid_t dacs[AUTO_CFG_MAX_OUTS];
316 hda_nid_t hp_dac;
317 hda_nid_t input_pins[AUTO_PIN_LAST];
318 hda_nid_t adcs[AUTO_PIN_LAST];
319 hda_nid_t dig_out;
320 hda_nid_t dig_in;
321 unsigned int num_inputs;
322 long curr_hp_switch;
323 long curr_hp_volume[2];
324 long curr_speaker_switch;
325 struct mutex chipio_mutex;
326 const char *input_labels[AUTO_PIN_LAST];
327 struct hda_pcm pcm_rec[2]; /* PCM information */
328};
329
330/* Chip access helper function */
331static int chipio_send(struct hda_codec *codec,
332 unsigned int reg,
333 unsigned int data)
334{
335 unsigned int res;
336 int retry = 50;
337
338 /* send bits of data specified by reg */
339 do {
340 res = snd_hda_codec_read(codec, WIDGET_CHIP_CTRL, 0,
341 reg, data);
342 if (res == VENDOR_STATUS_CHIPIO_OK)
343 return 0;
344 } while (--retry);
345 return -EIO;
346}
347
348/*
349 * Write chip address through the vendor widget -- NOT protected by the Mutex!
350 */
351static int chipio_write_address(struct hda_codec *codec,
352 unsigned int chip_addx)
353{
354 int res;
355
356 /* send low 16 bits of the address */
357 res = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_LOW,
358 chip_addx & 0xffff);
359
360 if (res != -EIO) {
361 /* send high 16 bits of the address */
362 res = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_HIGH,
363 chip_addx >> 16);
364 }
365
366 return res;
367}
368
369/*
370 * Write data through the vendor widget -- NOT protected by the Mutex!
371 */
372
373static int chipio_write_data(struct hda_codec *codec, unsigned int data)
374{
375 int res;
376
377 /* send low 16 bits of the data */
378 res = chipio_send(codec, VENDOR_CHIPIO_DATA_LOW, data & 0xffff);
379
380 if (res != -EIO) {
381 /* send high 16 bits of the data */
382 res = chipio_send(codec, VENDOR_CHIPIO_DATA_HIGH,
383 data >> 16);
384 }
385
386 return res;
387}
388
389/*
390 * Read data through the vendor widget -- NOT protected by the Mutex!
391 */
392static int chipio_read_data(struct hda_codec *codec, unsigned int *data)
393{
394 int res;
395
396 /* post read */
397 res = chipio_send(codec, VENDOR_CHIPIO_HIC_POST_READ, 0);
398
399 if (res != -EIO) {
400 /* read status */
401 res = chipio_send(codec, VENDOR_CHIPIO_STATUS, 0);
402 }
403
404 if (res != -EIO) {
405 /* read data */
406 *data = snd_hda_codec_read(codec, WIDGET_CHIP_CTRL, 0,
407 VENDOR_CHIPIO_HIC_READ_DATA,
408 0);
409 }
410
411 return res;
412}
413
414/*
415 * Write given value to the given address through the chip I/O widget.
416 * protected by the Mutex
417 */
418static int chipio_write(struct hda_codec *codec,
419 unsigned int chip_addx, const unsigned int data)
420{
421 struct ca0132_spec *spec = codec->spec;
422 int err;
423
424 mutex_lock(&spec->chipio_mutex);
425
426 /* write the address, and if successful proceed to write data */
427 err = chipio_write_address(codec, chip_addx);
428 if (err < 0)
429 goto exit;
430
431 err = chipio_write_data(codec, data);
432 if (err < 0)
433 goto exit;
434
435exit:
436 mutex_unlock(&spec->chipio_mutex);
437 return err;
438}
439
440/*
441 * Read the given address through the chip I/O widget
442 * protected by the Mutex
443 */
444static int chipio_read(struct hda_codec *codec,
445 unsigned int chip_addx, unsigned int *data)
446{
447 struct ca0132_spec *spec = codec->spec;
448 int err;
449
450 mutex_lock(&spec->chipio_mutex);
451
452 /* write the address, and if successful proceed to write data */
453 err = chipio_write_address(codec, chip_addx);
454 if (err < 0)
455 goto exit;
456
457 err = chipio_read_data(codec, data);
458 if (err < 0)
459 goto exit;
460
461exit:
462 mutex_unlock(&spec->chipio_mutex);
463 return err;
464}
465
466/*
Ian Minett95c6e9c2011-06-15 15:35:17 -0700467 * PCM callbacks
468 */
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200469static int ca0132_playback_pcm_open(struct hda_pcm_stream *hinfo,
470 struct hda_codec *codec,
471 struct snd_pcm_substream *substream)
472{
473 struct ca0132_spec *spec = codec->spec;
474 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
475 hinfo);
476}
477
Ian Minett95c6e9c2011-06-15 15:35:17 -0700478static int ca0132_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
479 struct hda_codec *codec,
480 unsigned int stream_tag,
481 unsigned int format,
482 struct snd_pcm_substream *substream)
483{
484 struct ca0132_spec *spec = codec->spec;
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200485 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
486 stream_tag, format, substream);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700487}
488
489static int ca0132_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
490 struct hda_codec *codec,
491 struct snd_pcm_substream *substream)
492{
493 struct ca0132_spec *spec = codec->spec;
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200494 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700495}
496
497/*
498 * Digital out
499 */
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200500static int ca0132_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
501 struct hda_codec *codec,
502 struct snd_pcm_substream *substream)
503{
504 struct ca0132_spec *spec = codec->spec;
505 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
506}
507
Ian Minett95c6e9c2011-06-15 15:35:17 -0700508static int ca0132_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
509 struct hda_codec *codec,
510 unsigned int stream_tag,
511 unsigned int format,
512 struct snd_pcm_substream *substream)
513{
514 struct ca0132_spec *spec = codec->spec;
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200515 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
516 stream_tag, format, substream);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700517}
518
519static int ca0132_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
520 struct hda_codec *codec,
521 struct snd_pcm_substream *substream)
522{
523 struct ca0132_spec *spec = codec->spec;
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200524 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700525}
526
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200527static int ca0132_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
528 struct hda_codec *codec,
529 struct snd_pcm_substream *substream)
Ian Minett95c6e9c2011-06-15 15:35:17 -0700530{
531 struct ca0132_spec *spec = codec->spec;
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200532 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700533}
534
535/*
536 */
537static struct hda_pcm_stream ca0132_pcm_analog_playback = {
538 .substreams = 1,
539 .channels_min = 2,
540 .channels_max = 2,
541 .ops = {
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200542 .open = ca0132_playback_pcm_open,
Ian Minett95c6e9c2011-06-15 15:35:17 -0700543 .prepare = ca0132_playback_pcm_prepare,
544 .cleanup = ca0132_playback_pcm_cleanup
545 },
546};
547
548static struct hda_pcm_stream ca0132_pcm_analog_capture = {
549 .substreams = 1,
550 .channels_min = 2,
551 .channels_max = 2,
Ian Minett95c6e9c2011-06-15 15:35:17 -0700552};
553
554static struct hda_pcm_stream ca0132_pcm_digital_playback = {
555 .substreams = 1,
556 .channels_min = 2,
557 .channels_max = 2,
558 .ops = {
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200559 .open = ca0132_dig_playback_pcm_open,
560 .close = ca0132_dig_playback_pcm_close,
Ian Minett95c6e9c2011-06-15 15:35:17 -0700561 .prepare = ca0132_dig_playback_pcm_prepare,
562 .cleanup = ca0132_dig_playback_pcm_cleanup
563 },
564};
565
566static struct hda_pcm_stream ca0132_pcm_digital_capture = {
567 .substreams = 1,
568 .channels_min = 2,
569 .channels_max = 2,
Ian Minett95c6e9c2011-06-15 15:35:17 -0700570};
571
572static int ca0132_build_pcms(struct hda_codec *codec)
573{
574 struct ca0132_spec *spec = codec->spec;
575 struct hda_pcm *info = spec->pcm_rec;
576
577 codec->pcm_info = info;
578 codec->num_pcms = 0;
579
580 info->name = "CA0132 Analog";
581 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ca0132_pcm_analog_playback;
582 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->dacs[0];
583 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
584 spec->multiout.max_channels;
585 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ca0132_pcm_analog_capture;
586 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_inputs;
587 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adcs[0];
588 codec->num_pcms++;
589
590 if (!spec->dig_out && !spec->dig_in)
591 return 0;
592
593 info++;
594 info->name = "CA0132 Digital";
595 info->pcm_type = HDA_PCM_TYPE_SPDIF;
596 if (spec->dig_out) {
597 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
598 ca0132_pcm_digital_playback;
599 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->dig_out;
600 }
601 if (spec->dig_in) {
602 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
603 ca0132_pcm_digital_capture;
604 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in;
605 }
606 codec->num_pcms++;
607
608 return 0;
609}
610
611#define REG_CODEC_MUTE 0x18b014
612#define REG_CODEC_HP_VOL_L 0x18b070
613#define REG_CODEC_HP_VOL_R 0x18b074
614
615static int ca0132_hp_switch_get(struct snd_kcontrol *kcontrol,
616 struct snd_ctl_elem_value *ucontrol)
617{
618 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
619 struct ca0132_spec *spec = codec->spec;
620 long *valp = ucontrol->value.integer.value;
621
622 *valp = spec->curr_hp_switch;
623 return 0;
624}
625
626static int ca0132_hp_switch_put(struct snd_kcontrol *kcontrol,
627 struct snd_ctl_elem_value *ucontrol)
628{
629 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
630 struct ca0132_spec *spec = codec->spec;
631 long *valp = ucontrol->value.integer.value;
632 unsigned int data;
633 int err;
634
635 /* any change? */
636 if (spec->curr_hp_switch == *valp)
637 return 0;
638
639 snd_hda_power_up(codec);
640
641 err = chipio_read(codec, REG_CODEC_MUTE, &data);
642 if (err < 0)
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100643 goto exit;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700644
645 /* *valp 0 is mute, 1 is unmute */
646 data = (data & 0x7f) | (*valp ? 0 : 0x80);
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100647 err = chipio_write(codec, REG_CODEC_MUTE, data);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700648 if (err < 0)
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100649 goto exit;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700650
651 spec->curr_hp_switch = *valp;
652
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100653 exit:
Ian Minett95c6e9c2011-06-15 15:35:17 -0700654 snd_hda_power_down(codec);
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100655 return err < 0 ? err : 1;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700656}
657
658static int ca0132_speaker_switch_get(struct snd_kcontrol *kcontrol,
659 struct snd_ctl_elem_value *ucontrol)
660{
661 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
662 struct ca0132_spec *spec = codec->spec;
663 long *valp = ucontrol->value.integer.value;
664
665 *valp = spec->curr_speaker_switch;
666 return 0;
667}
668
669static int ca0132_speaker_switch_put(struct snd_kcontrol *kcontrol,
670 struct snd_ctl_elem_value *ucontrol)
671{
672 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
673 struct ca0132_spec *spec = codec->spec;
674 long *valp = ucontrol->value.integer.value;
675 unsigned int data;
676 int err;
677
678 /* any change? */
679 if (spec->curr_speaker_switch == *valp)
680 return 0;
681
682 snd_hda_power_up(codec);
683
684 err = chipio_read(codec, REG_CODEC_MUTE, &data);
685 if (err < 0)
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100686 goto exit;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700687
688 /* *valp 0 is mute, 1 is unmute */
689 data = (data & 0xef) | (*valp ? 0 : 0x10);
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100690 err = chipio_write(codec, REG_CODEC_MUTE, data);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700691 if (err < 0)
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100692 goto exit;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700693
694 spec->curr_speaker_switch = *valp;
695
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100696 exit:
Ian Minett95c6e9c2011-06-15 15:35:17 -0700697 snd_hda_power_down(codec);
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100698 return err < 0 ? err : 1;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700699}
700
701static int ca0132_hp_volume_get(struct snd_kcontrol *kcontrol,
702 struct snd_ctl_elem_value *ucontrol)
703{
704 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
705 struct ca0132_spec *spec = codec->spec;
706 long *valp = ucontrol->value.integer.value;
707
708 *valp++ = spec->curr_hp_volume[0];
709 *valp = spec->curr_hp_volume[1];
710 return 0;
711}
712
713static int ca0132_hp_volume_put(struct snd_kcontrol *kcontrol,
714 struct snd_ctl_elem_value *ucontrol)
715{
716 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
717 struct ca0132_spec *spec = codec->spec;
718 long *valp = ucontrol->value.integer.value;
719 long left_vol, right_vol;
720 unsigned int data;
721 int val;
722 int err;
723
724 left_vol = *valp++;
725 right_vol = *valp;
726
727 /* any change? */
728 if ((spec->curr_hp_volume[0] == left_vol) &&
729 (spec->curr_hp_volume[1] == right_vol))
730 return 0;
731
732 snd_hda_power_up(codec);
733
734 err = chipio_read(codec, REG_CODEC_HP_VOL_L, &data);
735 if (err < 0)
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100736 goto exit;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700737
738 val = 31 - left_vol;
739 data = (data & 0xe0) | val;
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100740 err = chipio_write(codec, REG_CODEC_HP_VOL_L, data);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700741 if (err < 0)
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100742 goto exit;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700743
744 val = 31 - right_vol;
745 data = (data & 0xe0) | val;
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100746 err = chipio_write(codec, REG_CODEC_HP_VOL_R, data);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700747 if (err < 0)
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100748 goto exit;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700749
750 spec->curr_hp_volume[0] = left_vol;
751 spec->curr_hp_volume[1] = right_vol;
752
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100753 exit:
Ian Minett95c6e9c2011-06-15 15:35:17 -0700754 snd_hda_power_down(codec);
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100755 return err < 0 ? err : 1;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700756}
757
758static int add_hp_switch(struct hda_codec *codec, hda_nid_t nid)
759{
760 struct snd_kcontrol_new knew =
761 HDA_CODEC_MUTE_MONO("Headphone Playback Switch",
762 nid, 1, 0, HDA_OUTPUT);
763 knew.get = ca0132_hp_switch_get;
764 knew.put = ca0132_hp_switch_put;
765 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
766}
767
768static int add_hp_volume(struct hda_codec *codec, hda_nid_t nid)
769{
770 struct snd_kcontrol_new knew =
771 HDA_CODEC_VOLUME_MONO("Headphone Playback Volume",
772 nid, 3, 0, HDA_OUTPUT);
773 knew.get = ca0132_hp_volume_get;
774 knew.put = ca0132_hp_volume_put;
775 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
776}
777
778static int add_speaker_switch(struct hda_codec *codec, hda_nid_t nid)
779{
780 struct snd_kcontrol_new knew =
781 HDA_CODEC_MUTE_MONO("Speaker Playback Switch",
782 nid, 1, 0, HDA_OUTPUT);
783 knew.get = ca0132_speaker_switch_get;
784 knew.put = ca0132_speaker_switch_put;
785 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
786}
787
788static void ca0132_fix_hp_caps(struct hda_codec *codec)
789{
790 struct ca0132_spec *spec = codec->spec;
791 struct auto_pin_cfg *cfg = &spec->autocfg;
792 unsigned int caps;
793
794 /* set mute-capable, 1db step, 32 steps, ofs 6 */
795 caps = 0x80031f06;
796 snd_hda_override_amp_caps(codec, cfg->hp_pins[0], HDA_OUTPUT, caps);
797}
798
799static int ca0132_build_controls(struct hda_codec *codec)
800{
801 struct ca0132_spec *spec = codec->spec;
802 struct auto_pin_cfg *cfg = &spec->autocfg;
803 int i, err;
804
805 if (spec->multiout.num_dacs) {
806 err = add_speaker_switch(codec, spec->out_pins[0]);
807 if (err < 0)
808 return err;
809 }
810
811 if (cfg->hp_outs) {
812 ca0132_fix_hp_caps(codec);
813 err = add_hp_switch(codec, cfg->hp_pins[0]);
814 if (err < 0)
815 return err;
816 err = add_hp_volume(codec, cfg->hp_pins[0]);
817 if (err < 0)
818 return err;
819 }
820
821 for (i = 0; i < spec->num_inputs; i++) {
822 const char *label = spec->input_labels[i];
823
824 err = add_in_switch(codec, spec->adcs[i], label);
825 if (err < 0)
826 return err;
827 err = add_in_volume(codec, spec->adcs[i], label);
828 if (err < 0)
829 return err;
830 if (cfg->inputs[i].type == AUTO_PIN_MIC) {
831 /* add Mic-Boost */
832 err = add_in_mono_volume(codec, spec->input_pins[i],
833 "Mic Boost", 1);
834 if (err < 0)
835 return err;
836 }
837 }
838
839 if (spec->dig_out) {
Takashi Iwaiefb9f462011-06-21 07:44:51 +0200840 err = snd_hda_create_spdif_out_ctls(codec, spec->dig_out,
841 spec->dig_out);
Ian Minett95c6e9c2011-06-15 15:35:17 -0700842 if (err < 0)
843 return err;
844 err = add_out_volume(codec, spec->dig_out, "IEC958");
845 if (err < 0)
846 return err;
847 }
848
849 if (spec->dig_in) {
850 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in);
851 if (err < 0)
852 return err;
853 err = add_in_volume(codec, spec->dig_in, "IEC958");
Takashi Iwaib97f6bf2012-02-07 11:00:53 +0100854 if (err < 0)
855 return err;
Ian Minett95c6e9c2011-06-15 15:35:17 -0700856 }
857 return 0;
858}
859
860
861static void ca0132_set_ct_ext(struct hda_codec *codec, int enable)
862{
863 /* Set Creative extension */
864 snd_printdd("SET CREATIVE EXTENSION\n");
865 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
866 VENDOR_CHIPIO_CT_EXTENSIONS_ENABLE,
867 enable);
868 msleep(20);
869}
870
871
872static void ca0132_config(struct hda_codec *codec)
873{
874 struct ca0132_spec *spec = codec->spec;
875 struct auto_pin_cfg *cfg = &spec->autocfg;
876
Takashi Iwai27ebeb02012-08-08 17:20:18 +0200877 codec->pcm_format_first = 1;
878 codec->no_sticky_stream = 1;
879
Ian Minett95c6e9c2011-06-15 15:35:17 -0700880 /* line-outs */
881 cfg->line_outs = 1;
882 cfg->line_out_pins[0] = 0x0b; /* front */
883 cfg->line_out_type = AUTO_PIN_LINE_OUT;
884
885 spec->dacs[0] = 0x02;
886 spec->out_pins[0] = 0x0b;
887 spec->multiout.dac_nids = spec->dacs;
888 spec->multiout.num_dacs = 1;
889 spec->multiout.max_channels = 2;
890
891 /* headphone */
892 cfg->hp_outs = 1;
893 cfg->hp_pins[0] = 0x0f;
894
895 spec->hp_dac = 0;
896 spec->multiout.hp_nid = 0;
897
898 /* inputs */
899 cfg->num_inputs = 2; /* Mic-in and line-in */
900 cfg->inputs[0].pin = 0x12;
901 cfg->inputs[0].type = AUTO_PIN_MIC;
902 cfg->inputs[1].pin = 0x11;
903 cfg->inputs[1].type = AUTO_PIN_LINE_IN;
904
905 /* Mic-in */
906 spec->input_pins[0] = 0x12;
Takashi Iwai55cf87f2012-08-08 17:15:55 +0200907 spec->input_labels[0] = "Mic";
Ian Minett95c6e9c2011-06-15 15:35:17 -0700908 spec->adcs[0] = 0x07;
909
910 /* Line-In */
911 spec->input_pins[1] = 0x11;
Takashi Iwai55cf87f2012-08-08 17:15:55 +0200912 spec->input_labels[1] = "Line";
Ian Minett95c6e9c2011-06-15 15:35:17 -0700913 spec->adcs[1] = 0x08;
914 spec->num_inputs = 2;
915}
916
917static void ca0132_init_chip(struct hda_codec *codec)
918{
919 struct ca0132_spec *spec = codec->spec;
920
921 mutex_init(&spec->chipio_mutex);
922}
923
924static void ca0132_exit_chip(struct hda_codec *codec)
925{
926 /* put any chip cleanup stuffs here. */
927}
928
929static int ca0132_init(struct hda_codec *codec)
930{
931 struct ca0132_spec *spec = codec->spec;
932 struct auto_pin_cfg *cfg = &spec->autocfg;
933 int i;
934
935 for (i = 0; i < spec->multiout.num_dacs; i++) {
936 init_output(codec, spec->out_pins[i],
937 spec->multiout.dac_nids[i]);
938 }
939 init_output(codec, cfg->hp_pins[0], spec->hp_dac);
940 init_output(codec, cfg->dig_out_pins[0], spec->dig_out);
941
942 for (i = 0; i < spec->num_inputs; i++)
943 init_input(codec, spec->input_pins[i], spec->adcs[i]);
944
945 init_input(codec, cfg->dig_in_pin, spec->dig_in);
946
947 ca0132_set_ct_ext(codec, 1);
948
949 return 0;
950}
951
952
953static void ca0132_free(struct hda_codec *codec)
954{
955 ca0132_set_ct_ext(codec, 0);
956 ca0132_exit_chip(codec);
957 kfree(codec->spec);
958}
959
960static struct hda_codec_ops ca0132_patch_ops = {
961 .build_controls = ca0132_build_controls,
962 .build_pcms = ca0132_build_pcms,
963 .init = ca0132_init,
964 .free = ca0132_free,
965};
966
967
968
969static int patch_ca0132(struct hda_codec *codec)
970{
971 struct ca0132_spec *spec;
972
973 snd_printdd("patch_ca0132\n");
974
975 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
976 if (!spec)
977 return -ENOMEM;
978 codec->spec = spec;
979
980 ca0132_init_chip(codec);
981
982 ca0132_config(codec);
983
984 codec->patch_ops = ca0132_patch_ops;
985
986 return 0;
987}
988
989/*
990 * patch entries
991 */
992static struct hda_codec_preset snd_hda_preset_ca0132[] = {
993 { .id = 0x11020011, .name = "CA0132", .patch = patch_ca0132 },
994 {} /* terminator */
995};
996
997MODULE_ALIAS("snd-hda-codec-id:11020011");
998
999MODULE_LICENSE("GPL");
1000MODULE_DESCRIPTION("Creative CA0132, CA0132 HD-audio codec");
1001
1002static struct hda_codec_preset_list ca0132_list = {
1003 .preset = snd_hda_preset_ca0132,
1004 .owner = THIS_MODULE,
1005};
1006
1007static int __init patch_ca0132_init(void)
1008{
1009 return snd_hda_add_codec_preset(&ca0132_list);
1010}
1011
1012static void __exit patch_ca0132_exit(void)
1013{
1014 snd_hda_delete_codec_preset(&ca0132_list);
1015}
1016
1017module_init(patch_ca0132_init)
1018module_exit(patch_ca0132_exit)