blob: 1614973e48996e6e88e16536c3bf6ffc00ce070e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines for control of the AK4117 via 4-wire serial interface
3 * IEC958 (S/PDIF) receiver by Asahi Kasei
4 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include <sound/driver.h>
24#include <linux/slab.h>
25#include <linux/delay.h>
26#include <sound/core.h>
27#include <sound/control.h>
28#include <sound/pcm.h>
29#include <sound/ak4117.h>
30#include <sound/asoundef.h>
31
32MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
33MODULE_DESCRIPTION("AK4117 IEC958 (S/PDIF) receiver by Asahi Kasei");
34MODULE_LICENSE("GPL");
35
36#define AK4117_ADDR 0x00 /* fixed address */
37
38static void snd_ak4117_timer(unsigned long data);
39
Takashi Iwai97f02e02005-11-17 14:17:19 +010040static void reg_write(struct ak4117 *ak4117, unsigned char reg, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 ak4117->write(ak4117->private_data, reg, val);
43 if (reg < sizeof(ak4117->regmap))
44 ak4117->regmap[reg] = val;
45}
46
Takashi Iwai97f02e02005-11-17 14:17:19 +010047static inline unsigned char reg_read(struct ak4117 *ak4117, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 return ak4117->read(ak4117->private_data, reg);
50}
51
52#if 0
Takashi Iwai97f02e02005-11-17 14:17:19 +010053static void reg_dump(struct ak4117 *ak4117)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 int i;
56
Takashi Iwai99b359b2005-10-20 18:26:44 +020057 printk(KERN_DEBUG "AK4117 REG DUMP:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 for (i = 0; i < 0x1b; i++)
Takashi Iwai99b359b2005-10-20 18:26:44 +020059 printk(KERN_DEBUG "reg[%02x] = %02x (%02x)\n", i, reg_read(ak4117, i), i < sizeof(ak4117->regmap) ? ak4117->regmap[i] : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61#endif
62
Takashi Iwai97f02e02005-11-17 14:17:19 +010063static void snd_ak4117_free(struct ak4117 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 del_timer(&chip->timer);
66 kfree(chip);
67}
68
Takashi Iwai97f02e02005-11-17 14:17:19 +010069static int snd_ak4117_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Takashi Iwai97f02e02005-11-17 14:17:19 +010071 struct ak4117 *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 snd_ak4117_free(chip);
73 return 0;
74}
75
Takashi Iwai97f02e02005-11-17 14:17:19 +010076int snd_ak4117_create(struct snd_card *card, ak4117_read_t *read, ak4117_write_t *write,
Takashi Iwai517400c2007-01-29 15:27:56 +010077 const unsigned char pgm[5], void *private_data, struct ak4117 **r_ak4117)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Takashi Iwai97f02e02005-11-17 14:17:19 +010079 struct ak4117 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 int err = 0;
81 unsigned char reg;
Takashi Iwai97f02e02005-11-17 14:17:19 +010082 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 .dev_free = snd_ak4117_dev_free,
84 };
85
Takashi Iwai561b2202005-09-09 14:22:34 +020086 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (chip == NULL)
88 return -ENOMEM;
89 spin_lock_init(&chip->lock);
90 chip->card = card;
91 chip->read = read;
92 chip->write = write;
93 chip->private_data = private_data;
94 init_timer(&chip->timer);
95 chip->timer.data = (unsigned long)chip;
96 chip->timer.function = snd_ak4117_timer;
97
98 for (reg = 0; reg < 5; reg++)
99 chip->regmap[reg] = pgm[reg];
100 snd_ak4117_reinit(chip);
101
102 chip->rcs0 = reg_read(chip, AK4117_REG_RCS0) & ~(AK4117_QINT | AK4117_CINT | AK4117_STC);
103 chip->rcs1 = reg_read(chip, AK4117_REG_RCS1);
104 chip->rcs2 = reg_read(chip, AK4117_REG_RCS2);
105
106 if ((err = snd_device_new(card, SNDRV_DEV_CODEC, chip, &ops)) < 0)
107 goto __fail;
108
109 if (r_ak4117)
110 *r_ak4117 = chip;
111 return 0;
112
113 __fail:
114 snd_ak4117_free(chip);
115 return err < 0 ? err : -EIO;
116}
117
Takashi Iwai97f02e02005-11-17 14:17:19 +0100118void snd_ak4117_reg_write(struct ak4117 *chip, unsigned char reg, unsigned char mask, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 if (reg >= 5)
121 return;
122 reg_write(chip, reg, (chip->regmap[reg] & ~mask) | val);
123}
124
Takashi Iwai97f02e02005-11-17 14:17:19 +0100125void snd_ak4117_reinit(struct ak4117 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 unsigned char old = chip->regmap[AK4117_REG_PWRDN], reg;
128
129 del_timer(&chip->timer);
130 chip->init = 1;
131 /* bring the chip to reset state and powerdown state */
132 reg_write(chip, AK4117_REG_PWRDN, 0);
133 udelay(200);
134 /* release reset, but leave powerdown */
135 reg_write(chip, AK4117_REG_PWRDN, (old | AK4117_RST) & ~AK4117_PWN);
136 udelay(200);
137 for (reg = 1; reg < 5; reg++)
138 reg_write(chip, reg, chip->regmap[reg]);
139 /* release powerdown, everything is initialized now */
140 reg_write(chip, AK4117_REG_PWRDN, old | AK4117_RST | AK4117_PWN);
141 chip->init = 0;
142 chip->timer.expires = 1 + jiffies;
143 add_timer(&chip->timer);
144}
145
146static unsigned int external_rate(unsigned char rcs1)
147{
148 switch (rcs1 & (AK4117_FS0|AK4117_FS1|AK4117_FS2|AK4117_FS3)) {
149 case AK4117_FS_32000HZ: return 32000;
150 case AK4117_FS_44100HZ: return 44100;
151 case AK4117_FS_48000HZ: return 48000;
152 case AK4117_FS_88200HZ: return 88200;
153 case AK4117_FS_96000HZ: return 96000;
154 case AK4117_FS_176400HZ: return 176400;
155 case AK4117_FS_192000HZ: return 192000;
156 default: return 0;
157 }
158}
159
Takashi Iwai97f02e02005-11-17 14:17:19 +0100160static int snd_ak4117_in_error_info(struct snd_kcontrol *kcontrol,
161 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
164 uinfo->count = 1;
165 uinfo->value.integer.min = 0;
166 uinfo->value.integer.max = LONG_MAX;
167 return 0;
168}
169
Takashi Iwai97f02e02005-11-17 14:17:19 +0100170static int snd_ak4117_in_error_get(struct snd_kcontrol *kcontrol,
171 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100173 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 long *ptr;
175
176 spin_lock_irq(&chip->lock);
177 ptr = (long *)(((char *)chip) + kcontrol->private_value);
178 ucontrol->value.integer.value[0] = *ptr;
179 *ptr = 0;
180 spin_unlock_irq(&chip->lock);
181 return 0;
182}
183
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200184#define snd_ak4117_in_bit_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Takashi Iwai97f02e02005-11-17 14:17:19 +0100186static int snd_ak4117_in_bit_get(struct snd_kcontrol *kcontrol,
187 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100189 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 unsigned char reg = kcontrol->private_value & 0xff;
191 unsigned char bit = (kcontrol->private_value >> 8) & 0xff;
192 unsigned char inv = (kcontrol->private_value >> 31) & 1;
193
194 ucontrol->value.integer.value[0] = ((reg_read(chip, reg) & (1 << bit)) ? 1 : 0) ^ inv;
195 return 0;
196}
197
Takashi Iwai97f02e02005-11-17 14:17:19 +0100198static int snd_ak4117_rx_info(struct snd_kcontrol *kcontrol,
199 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
202 uinfo->count = 1;
203 uinfo->value.integer.min = 0;
204 uinfo->value.integer.max = 1;
205 return 0;
206}
207
Takashi Iwai97f02e02005-11-17 14:17:19 +0100208static int snd_ak4117_rx_get(struct snd_kcontrol *kcontrol,
209 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100211 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 ucontrol->value.integer.value[0] = (chip->regmap[AK4117_REG_IO] & AK4117_IPS) ? 1 : 0;
214 return 0;
215}
216
Takashi Iwai97f02e02005-11-17 14:17:19 +0100217static int snd_ak4117_rx_put(struct snd_kcontrol *kcontrol,
218 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100220 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 int change;
222 u8 old_val;
223
224 spin_lock_irq(&chip->lock);
225 old_val = chip->regmap[AK4117_REG_IO];
226 change = !!ucontrol->value.integer.value[0] != ((old_val & AK4117_IPS) ? 1 : 0);
227 if (change)
228 reg_write(chip, AK4117_REG_IO, (old_val & ~AK4117_IPS) | (ucontrol->value.integer.value[0] ? AK4117_IPS : 0));
229 spin_unlock_irq(&chip->lock);
230 return change;
231}
232
Takashi Iwai97f02e02005-11-17 14:17:19 +0100233static int snd_ak4117_rate_info(struct snd_kcontrol *kcontrol,
234 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
237 uinfo->count = 1;
238 uinfo->value.integer.min = 0;
239 uinfo->value.integer.max = 192000;
240 return 0;
241}
242
Takashi Iwai97f02e02005-11-17 14:17:19 +0100243static int snd_ak4117_rate_get(struct snd_kcontrol *kcontrol,
244 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100246 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 ucontrol->value.integer.value[0] = external_rate(reg_read(chip, AK4117_REG_RCS1));
249 return 0;
250}
251
Takashi Iwai97f02e02005-11-17 14:17:19 +0100252static int snd_ak4117_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
255 uinfo->count = 1;
256 return 0;
257}
258
Takashi Iwai97f02e02005-11-17 14:17:19 +0100259static int snd_ak4117_spdif_get(struct snd_kcontrol *kcontrol,
260 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100262 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned i;
264
265 for (i = 0; i < AK4117_REG_RXCSB_SIZE; i++)
266 ucontrol->value.iec958.status[i] = reg_read(chip, AK4117_REG_RXCSB0 + i);
267 return 0;
268}
269
Takashi Iwai97f02e02005-11-17 14:17:19 +0100270static int snd_ak4117_spdif_mask_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
273 uinfo->count = 1;
274 return 0;
275}
276
Takashi Iwai97f02e02005-11-17 14:17:19 +0100277static int snd_ak4117_spdif_mask_get(struct snd_kcontrol *kcontrol,
278 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 memset(ucontrol->value.iec958.status, 0xff, AK4117_REG_RXCSB_SIZE);
281 return 0;
282}
283
Takashi Iwai97f02e02005-11-17 14:17:19 +0100284static int snd_ak4117_spdif_pinfo(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
287 uinfo->value.integer.min = 0;
288 uinfo->value.integer.max = 0xffff;
289 uinfo->count = 4;
290 return 0;
291}
292
Takashi Iwai97f02e02005-11-17 14:17:19 +0100293static int snd_ak4117_spdif_pget(struct snd_kcontrol *kcontrol,
294 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100296 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 unsigned short tmp;
298
299 ucontrol->value.integer.value[0] = 0xf8f2;
300 ucontrol->value.integer.value[1] = 0x4e1f;
301 tmp = reg_read(chip, AK4117_REG_Pc0) | (reg_read(chip, AK4117_REG_Pc1) << 8);
302 ucontrol->value.integer.value[2] = tmp;
303 tmp = reg_read(chip, AK4117_REG_Pd0) | (reg_read(chip, AK4117_REG_Pd1) << 8);
304 ucontrol->value.integer.value[3] = tmp;
305 return 0;
306}
307
Takashi Iwai97f02e02005-11-17 14:17:19 +0100308static int snd_ak4117_spdif_qinfo(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
311 uinfo->count = AK4117_REG_QSUB_SIZE;
312 return 0;
313}
314
Takashi Iwai97f02e02005-11-17 14:17:19 +0100315static int snd_ak4117_spdif_qget(struct snd_kcontrol *kcontrol,
316 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100318 struct ak4117 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 unsigned i;
320
321 for (i = 0; i < AK4117_REG_QSUB_SIZE; i++)
322 ucontrol->value.bytes.data[i] = reg_read(chip, AK4117_REG_QSUB_ADDR + i);
323 return 0;
324}
325
326/* Don't forget to change AK4117_CONTROLS define!!! */
Takashi Iwai97f02e02005-11-17 14:17:19 +0100327static struct snd_kcontrol_new snd_ak4117_iec958_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
330 .name = "IEC958 Parity Errors",
331 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
332 .info = snd_ak4117_in_error_info,
333 .get = snd_ak4117_in_error_get,
Takashi Iwai97f02e02005-11-17 14:17:19 +0100334 .private_value = offsetof(struct ak4117, parity_errors),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335},
336{
337 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
338 .name = "IEC958 V-Bit Errors",
339 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
340 .info = snd_ak4117_in_error_info,
341 .get = snd_ak4117_in_error_get,
Takashi Iwai97f02e02005-11-17 14:17:19 +0100342 .private_value = offsetof(struct ak4117, v_bit_errors),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343},
344{
345 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
346 .name = "IEC958 C-CRC Errors",
347 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
348 .info = snd_ak4117_in_error_info,
349 .get = snd_ak4117_in_error_get,
Takashi Iwai97f02e02005-11-17 14:17:19 +0100350 .private_value = offsetof(struct ak4117, ccrc_errors),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351},
352{
353 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
354 .name = "IEC958 Q-CRC Errors",
355 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
356 .info = snd_ak4117_in_error_info,
357 .get = snd_ak4117_in_error_get,
Takashi Iwai97f02e02005-11-17 14:17:19 +0100358 .private_value = offsetof(struct ak4117, qcrc_errors),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359},
360{
361 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
362 .name = "IEC958 External Rate",
363 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
364 .info = snd_ak4117_rate_info,
365 .get = snd_ak4117_rate_get,
366},
367{
368 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
369 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,MASK),
370 .access = SNDRV_CTL_ELEM_ACCESS_READ,
371 .info = snd_ak4117_spdif_mask_info,
372 .get = snd_ak4117_spdif_mask_get,
373},
374{
375 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
376 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
377 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
378 .info = snd_ak4117_spdif_info,
379 .get = snd_ak4117_spdif_get,
380},
381{
382 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
383 .name = "IEC958 Preample Capture Default",
384 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
385 .info = snd_ak4117_spdif_pinfo,
386 .get = snd_ak4117_spdif_pget,
387},
388{
389 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
390 .name = "IEC958 Q-subcode Capture Default",
391 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
392 .info = snd_ak4117_spdif_qinfo,
393 .get = snd_ak4117_spdif_qget,
394},
395{
396 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
397 .name = "IEC958 Audio",
398 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
399 .info = snd_ak4117_in_bit_info,
400 .get = snd_ak4117_in_bit_get,
401 .private_value = (1<<31) | (3<<8) | AK4117_REG_RCS0,
402},
403{
404 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
405 .name = "IEC958 Non-PCM Bitstream",
406 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
407 .info = snd_ak4117_in_bit_info,
408 .get = snd_ak4117_in_bit_get,
409 .private_value = (5<<8) | AK4117_REG_RCS1,
410},
411{
412 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
413 .name = "IEC958 DTS Bitstream",
414 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
415 .info = snd_ak4117_in_bit_info,
416 .get = snd_ak4117_in_bit_get,
417 .private_value = (6<<8) | AK4117_REG_RCS1,
418},
419{
420 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
421 .name = "AK4117 Input Select",
422 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE,
423 .info = snd_ak4117_rx_info,
424 .get = snd_ak4117_rx_get,
425 .put = snd_ak4117_rx_put,
426}
427};
428
Takashi Iwai97f02e02005-11-17 14:17:19 +0100429int snd_ak4117_build(struct ak4117 *ak4117, struct snd_pcm_substream *cap_substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100431 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 unsigned int idx;
433 int err;
434
435 snd_assert(cap_substream, return -EINVAL);
436 ak4117->substream = cap_substream;
437 for (idx = 0; idx < AK4117_CONTROLS; idx++) {
438 kctl = snd_ctl_new1(&snd_ak4117_iec958_controls[idx], ak4117);
439 if (kctl == NULL)
440 return -ENOMEM;
441 kctl->id.device = cap_substream->pcm->device;
442 kctl->id.subdevice = cap_substream->number;
443 err = snd_ctl_add(ak4117->card, kctl);
444 if (err < 0)
445 return err;
446 ak4117->kctls[idx] = kctl;
447 }
448 return 0;
449}
450
Takashi Iwai97f02e02005-11-17 14:17:19 +0100451int snd_ak4117_external_rate(struct ak4117 *ak4117)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 unsigned char rcs1;
454
455 rcs1 = reg_read(ak4117, AK4117_REG_RCS1);
456 return external_rate(rcs1);
457}
458
Takashi Iwai97f02e02005-11-17 14:17:19 +0100459int snd_ak4117_check_rate_and_errors(struct ak4117 *ak4117, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100461 struct snd_pcm_runtime *runtime = ak4117->substream ? ak4117->substream->runtime : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 unsigned long _flags;
463 int res = 0;
464 unsigned char rcs0, rcs1, rcs2;
465 unsigned char c0, c1;
466
467 rcs1 = reg_read(ak4117, AK4117_REG_RCS1);
468 if (flags & AK4117_CHECK_NO_STAT)
469 goto __rate;
470 rcs0 = reg_read(ak4117, AK4117_REG_RCS0);
471 rcs2 = reg_read(ak4117, AK4117_REG_RCS2);
Takashi Iwai99b359b2005-10-20 18:26:44 +0200472 // printk(KERN_DEBUG "AK IRQ: rcs0 = 0x%x, rcs1 = 0x%x, rcs2 = 0x%x\n", rcs0, rcs1, rcs2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 spin_lock_irqsave(&ak4117->lock, _flags);
474 if (rcs0 & AK4117_PAR)
475 ak4117->parity_errors++;
476 if (rcs0 & AK4117_V)
477 ak4117->v_bit_errors++;
478 if (rcs2 & AK4117_CCRC)
479 ak4117->ccrc_errors++;
480 if (rcs2 & AK4117_QCRC)
481 ak4117->qcrc_errors++;
482 c0 = (ak4117->rcs0 & (AK4117_QINT | AK4117_CINT | AK4117_STC | AK4117_AUDION | AK4117_AUTO | AK4117_UNLCK)) ^
483 (rcs0 & (AK4117_QINT | AK4117_CINT | AK4117_STC | AK4117_AUDION | AK4117_AUTO | AK4117_UNLCK));
484 c1 = (ak4117->rcs1 & (AK4117_DTSCD | AK4117_NPCM | AK4117_PEM | 0x0f)) ^
485 (rcs1 & (AK4117_DTSCD | AK4117_NPCM | AK4117_PEM | 0x0f));
486 ak4117->rcs0 = rcs0 & ~(AK4117_QINT | AK4117_CINT | AK4117_STC);
487 ak4117->rcs1 = rcs1;
488 ak4117->rcs2 = rcs2;
489 spin_unlock_irqrestore(&ak4117->lock, _flags);
490
491 if (rcs0 & AK4117_PAR)
492 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[0]->id);
493 if (rcs0 & AK4117_V)
494 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[1]->id);
495 if (rcs2 & AK4117_CCRC)
496 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[2]->id);
497 if (rcs2 & AK4117_QCRC)
498 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[3]->id);
499
500 /* rate change */
501 if (c1 & 0x0f)
502 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[4]->id);
503
504 if ((c1 & AK4117_PEM) | (c0 & AK4117_CINT))
505 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[6]->id);
506 if (c0 & AK4117_QINT)
507 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[8]->id);
508
509 if (c0 & AK4117_AUDION)
510 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[9]->id);
511 if (c1 & AK4117_NPCM)
512 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[10]->id);
513 if (c1 & AK4117_DTSCD)
514 snd_ctl_notify(ak4117->card, SNDRV_CTL_EVENT_MASK_VALUE, &ak4117->kctls[11]->id);
515
516 if (ak4117->change_callback && (c0 | c1) != 0)
517 ak4117->change_callback(ak4117, c0, c1);
518
519 __rate:
520 /* compare rate */
521 res = external_rate(rcs1);
522 if (!(flags & AK4117_CHECK_NO_RATE) && runtime && runtime->rate != res) {
523 snd_pcm_stream_lock_irqsave(ak4117->substream, _flags);
524 if (snd_pcm_running(ak4117->substream)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +0200525 // printk(KERN_DEBUG "rate changed (%i <- %i)\n", runtime->rate, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 snd_pcm_stop(ak4117->substream, SNDRV_PCM_STATE_DRAINING);
527 wake_up(&runtime->sleep);
528 res = 1;
529 }
530 snd_pcm_stream_unlock_irqrestore(ak4117->substream, _flags);
531 }
532 return res;
533}
534
535static void snd_ak4117_timer(unsigned long data)
536{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100537 struct ak4117 *chip = (struct ak4117 *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 if (chip->init)
540 return;
541 snd_ak4117_check_rate_and_errors(chip, 0);
542 chip->timer.expires = 1 + jiffies;
543 add_timer(&chip->timer);
544}
545
546EXPORT_SYMBOL(snd_ak4117_create);
547EXPORT_SYMBOL(snd_ak4117_reg_write);
548EXPORT_SYMBOL(snd_ak4117_reinit);
549EXPORT_SYMBOL(snd_ak4117_build);
550EXPORT_SYMBOL(snd_ak4117_external_rate);
551EXPORT_SYMBOL(snd_ak4117_check_rate_and_errors);