2 * Routines for control of the AK4113 via I2C/4-wire serial interface
3 * IEC958 (S/PDIF) receiver by Asahi Kasei
4 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
5 * Copyright (c) by Pavel Hofman <pavel.hofman@ivitera.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/slab.h>
25 #include <linux/delay.h>
26 #include <linux/module.h>
27 #include <sound/core.h>
28 #include <sound/control.h>
29 #include <sound/pcm.h>
30 #include <sound/ak4113.h>
31 #include <sound/asoundef.h>
32 #include <sound/info.h>
34 MODULE_AUTHOR("Pavel Hofman <pavel.hofman@ivitera.com>");
35 MODULE_DESCRIPTION("AK4113 IEC958 (S/PDIF) receiver by Asahi Kasei");
36 MODULE_LICENSE("GPL");
38 #define AK4113_ADDR 0x00 /* fixed address */
40 static void ak4113_stats(struct work_struct
*work
);
41 static void ak4113_init_regs(struct ak4113
*chip
);
44 static void reg_write(struct ak4113
*ak4113
, unsigned char reg
,
47 ak4113
->write(ak4113
->private_data
, reg
, val
);
48 if (reg
< sizeof(ak4113
->regmap
))
49 ak4113
->regmap
[reg
] = val
;
52 static inline unsigned char reg_read(struct ak4113
*ak4113
, unsigned char reg
)
54 return ak4113
->read(ak4113
->private_data
, reg
);
57 static void snd_ak4113_free(struct ak4113
*chip
)
59 atomic_inc(&chip
->wq_processing
); /* don't schedule new work */
60 cancel_delayed_work_sync(&chip
->work
);
64 static int snd_ak4113_dev_free(struct snd_device
*device
)
66 struct ak4113
*chip
= device
->device_data
;
67 snd_ak4113_free(chip
);
71 int snd_ak4113_create(struct snd_card
*card
, ak4113_read_t
*read
,
72 ak4113_write_t
*write
, const unsigned char *pgm
,
73 void *private_data
, struct ak4113
**r_ak4113
)
78 static struct snd_device_ops ops
= {
79 .dev_free
= snd_ak4113_dev_free
,
82 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
85 spin_lock_init(&chip
->lock
);
89 chip
->private_data
= private_data
;
90 INIT_DELAYED_WORK(&chip
->work
, ak4113_stats
);
91 atomic_set(&chip
->wq_processing
, 0);
93 for (reg
= 0; reg
< AK4113_WRITABLE_REGS
; reg
++)
94 chip
->regmap
[reg
] = pgm
[reg
];
95 ak4113_init_regs(chip
);
97 chip
->rcs0
= reg_read(chip
, AK4113_REG_RCS0
) & ~(AK4113_QINT
|
98 AK4113_CINT
| AK4113_STC
);
99 chip
->rcs1
= reg_read(chip
, AK4113_REG_RCS1
);
100 chip
->rcs2
= reg_read(chip
, AK4113_REG_RCS2
);
101 err
= snd_device_new(card
, SNDRV_DEV_CODEC
, chip
, &ops
);
110 snd_ak4113_free(chip
);
111 return err
< 0 ? err
: -EIO
;
113 EXPORT_SYMBOL_GPL(snd_ak4113_create
);
115 void snd_ak4113_reg_write(struct ak4113
*chip
, unsigned char reg
,
116 unsigned char mask
, unsigned char val
)
118 if (reg
>= AK4113_WRITABLE_REGS
)
120 reg_write(chip
, reg
, (chip
->regmap
[reg
] & ~mask
) | val
);
122 EXPORT_SYMBOL_GPL(snd_ak4113_reg_write
);
124 static void ak4113_init_regs(struct ak4113
*chip
)
126 unsigned char old
= chip
->regmap
[AK4113_REG_PWRDN
], reg
;
128 /* bring the chip to reset state and powerdown state */
129 reg_write(chip
, AK4113_REG_PWRDN
, old
& ~(AK4113_RST
|AK4113_PWN
));
131 /* release reset, but leave powerdown */
132 reg_write(chip
, AK4113_REG_PWRDN
, (old
| AK4113_RST
) & ~AK4113_PWN
);
134 for (reg
= 1; reg
< AK4113_WRITABLE_REGS
; reg
++)
135 reg_write(chip
, reg
, chip
->regmap
[reg
]);
136 /* release powerdown, everything is initialized now */
137 reg_write(chip
, AK4113_REG_PWRDN
, old
| AK4113_RST
| AK4113_PWN
);
140 void snd_ak4113_reinit(struct ak4113
*chip
)
142 if (atomic_inc_return(&chip
->wq_processing
) == 1)
143 cancel_delayed_work_sync(&chip
->work
);
144 ak4113_init_regs(chip
);
145 /* bring up statistics / event queing */
146 if (atomic_dec_and_test(&chip
->wq_processing
))
147 schedule_delayed_work(&chip
->work
, HZ
/ 10);
149 EXPORT_SYMBOL_GPL(snd_ak4113_reinit
);
151 static unsigned int external_rate(unsigned char rcs1
)
153 switch (rcs1
& (AK4113_FS0
|AK4113_FS1
|AK4113_FS2
|AK4113_FS3
)) {
154 case AK4113_FS_8000HZ
:
156 case AK4113_FS_11025HZ
:
158 case AK4113_FS_16000HZ
:
160 case AK4113_FS_22050HZ
:
162 case AK4113_FS_24000HZ
:
164 case AK4113_FS_32000HZ
:
166 case AK4113_FS_44100HZ
:
168 case AK4113_FS_48000HZ
:
170 case AK4113_FS_64000HZ
:
172 case AK4113_FS_88200HZ
:
174 case AK4113_FS_96000HZ
:
176 case AK4113_FS_176400HZ
:
178 case AK4113_FS_192000HZ
:
185 static int snd_ak4113_in_error_info(struct snd_kcontrol
*kcontrol
,
186 struct snd_ctl_elem_info
*uinfo
)
188 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
190 uinfo
->value
.integer
.min
= 0;
191 uinfo
->value
.integer
.max
= LONG_MAX
;
195 static int snd_ak4113_in_error_get(struct snd_kcontrol
*kcontrol
,
196 struct snd_ctl_elem_value
*ucontrol
)
198 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
201 spin_lock_irq(&chip
->lock
);
202 ptr
= (long *)(((char *)chip
) + kcontrol
->private_value
);
203 ucontrol
->value
.integer
.value
[0] = *ptr
;
205 spin_unlock_irq(&chip
->lock
);
209 #define snd_ak4113_in_bit_info snd_ctl_boolean_mono_info
211 static int snd_ak4113_in_bit_get(struct snd_kcontrol
*kcontrol
,
212 struct snd_ctl_elem_value
*ucontrol
)
214 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
215 unsigned char reg
= kcontrol
->private_value
& 0xff;
216 unsigned char bit
= (kcontrol
->private_value
>> 8) & 0xff;
217 unsigned char inv
= (kcontrol
->private_value
>> 31) & 1;
219 ucontrol
->value
.integer
.value
[0] =
220 ((reg_read(chip
, reg
) & (1 << bit
)) ? 1 : 0) ^ inv
;
224 static int snd_ak4113_rx_info(struct snd_kcontrol
*kcontrol
,
225 struct snd_ctl_elem_info
*uinfo
)
227 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
229 uinfo
->value
.integer
.min
= 0;
230 uinfo
->value
.integer
.max
= 5;
234 static int snd_ak4113_rx_get(struct snd_kcontrol
*kcontrol
,
235 struct snd_ctl_elem_value
*ucontrol
)
237 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
239 ucontrol
->value
.integer
.value
[0] =
240 (AK4113_IPS(chip
->regmap
[AK4113_REG_IO1
]));
244 static int snd_ak4113_rx_put(struct snd_kcontrol
*kcontrol
,
245 struct snd_ctl_elem_value
*ucontrol
)
247 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
251 spin_lock_irq(&chip
->lock
);
252 old_val
= chip
->regmap
[AK4113_REG_IO1
];
253 change
= ucontrol
->value
.integer
.value
[0] != AK4113_IPS(old_val
);
255 reg_write(chip
, AK4113_REG_IO1
,
256 (old_val
& (~AK4113_IPS(0xff))) |
257 (AK4113_IPS(ucontrol
->value
.integer
.value
[0])));
258 spin_unlock_irq(&chip
->lock
);
262 static int snd_ak4113_rate_info(struct snd_kcontrol
*kcontrol
,
263 struct snd_ctl_elem_info
*uinfo
)
265 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
267 uinfo
->value
.integer
.min
= 0;
268 uinfo
->value
.integer
.max
= 192000;
272 static int snd_ak4113_rate_get(struct snd_kcontrol
*kcontrol
,
273 struct snd_ctl_elem_value
*ucontrol
)
275 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
277 ucontrol
->value
.integer
.value
[0] = external_rate(reg_read(chip
,
282 static int snd_ak4113_spdif_info(struct snd_kcontrol
*kcontrol
,
283 struct snd_ctl_elem_info
*uinfo
)
285 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
290 static int snd_ak4113_spdif_get(struct snd_kcontrol
*kcontrol
,
291 struct snd_ctl_elem_value
*ucontrol
)
293 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
296 for (i
= 0; i
< AK4113_REG_RXCSB_SIZE
; i
++)
297 ucontrol
->value
.iec958
.status
[i
] = reg_read(chip
,
298 AK4113_REG_RXCSB0
+ i
);
302 static int snd_ak4113_spdif_mask_info(struct snd_kcontrol
*kcontrol
,
303 struct snd_ctl_elem_info
*uinfo
)
305 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
310 static int snd_ak4113_spdif_mask_get(struct snd_kcontrol
*kcontrol
,
311 struct snd_ctl_elem_value
*ucontrol
)
313 memset(ucontrol
->value
.iec958
.status
, 0xff, AK4113_REG_RXCSB_SIZE
);
317 static int snd_ak4113_spdif_pinfo(struct snd_kcontrol
*kcontrol
,
318 struct snd_ctl_elem_info
*uinfo
)
320 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
321 uinfo
->value
.integer
.min
= 0;
322 uinfo
->value
.integer
.max
= 0xffff;
327 static int snd_ak4113_spdif_pget(struct snd_kcontrol
*kcontrol
,
328 struct snd_ctl_elem_value
*ucontrol
)
330 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
333 ucontrol
->value
.integer
.value
[0] = 0xf8f2;
334 ucontrol
->value
.integer
.value
[1] = 0x4e1f;
335 tmp
= reg_read(chip
, AK4113_REG_Pc0
) |
336 (reg_read(chip
, AK4113_REG_Pc1
) << 8);
337 ucontrol
->value
.integer
.value
[2] = tmp
;
338 tmp
= reg_read(chip
, AK4113_REG_Pd0
) |
339 (reg_read(chip
, AK4113_REG_Pd1
) << 8);
340 ucontrol
->value
.integer
.value
[3] = tmp
;
344 static int snd_ak4113_spdif_qinfo(struct snd_kcontrol
*kcontrol
,
345 struct snd_ctl_elem_info
*uinfo
)
347 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BYTES
;
348 uinfo
->count
= AK4113_REG_QSUB_SIZE
;
352 static int snd_ak4113_spdif_qget(struct snd_kcontrol
*kcontrol
,
353 struct snd_ctl_elem_value
*ucontrol
)
355 struct ak4113
*chip
= snd_kcontrol_chip(kcontrol
);
358 for (i
= 0; i
< AK4113_REG_QSUB_SIZE
; i
++)
359 ucontrol
->value
.bytes
.data
[i
] = reg_read(chip
,
360 AK4113_REG_QSUB_ADDR
+ i
);
364 /* Don't forget to change AK4113_CONTROLS define!!! */
365 static struct snd_kcontrol_new snd_ak4113_iec958_controls
[] = {
367 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
368 .name
= "IEC958 Parity Errors",
369 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
370 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
371 .info
= snd_ak4113_in_error_info
,
372 .get
= snd_ak4113_in_error_get
,
373 .private_value
= offsetof(struct ak4113
, parity_errors
),
376 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
377 .name
= "IEC958 V-Bit Errors",
378 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
379 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
380 .info
= snd_ak4113_in_error_info
,
381 .get
= snd_ak4113_in_error_get
,
382 .private_value
= offsetof(struct ak4113
, v_bit_errors
),
385 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
386 .name
= "IEC958 C-CRC Errors",
387 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
388 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
389 .info
= snd_ak4113_in_error_info
,
390 .get
= snd_ak4113_in_error_get
,
391 .private_value
= offsetof(struct ak4113
, ccrc_errors
),
394 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
395 .name
= "IEC958 Q-CRC Errors",
396 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
397 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
398 .info
= snd_ak4113_in_error_info
,
399 .get
= snd_ak4113_in_error_get
,
400 .private_value
= offsetof(struct ak4113
, qcrc_errors
),
403 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
404 .name
= "IEC958 External Rate",
405 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
406 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
407 .info
= snd_ak4113_rate_info
,
408 .get
= snd_ak4113_rate_get
,
411 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
412 .name
= SNDRV_CTL_NAME_IEC958("", CAPTURE
, MASK
),
413 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
414 .info
= snd_ak4113_spdif_mask_info
,
415 .get
= snd_ak4113_spdif_mask_get
,
418 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
419 .name
= SNDRV_CTL_NAME_IEC958("", CAPTURE
, DEFAULT
),
420 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
421 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
422 .info
= snd_ak4113_spdif_info
,
423 .get
= snd_ak4113_spdif_get
,
426 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
427 .name
= "IEC958 Preamble Capture Default",
428 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
429 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
430 .info
= snd_ak4113_spdif_pinfo
,
431 .get
= snd_ak4113_spdif_pget
,
434 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
435 .name
= "IEC958 Q-subcode Capture Default",
436 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
437 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
438 .info
= snd_ak4113_spdif_qinfo
,
439 .get
= snd_ak4113_spdif_qget
,
442 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
443 .name
= "IEC958 Audio",
444 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
445 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
446 .info
= snd_ak4113_in_bit_info
,
447 .get
= snd_ak4113_in_bit_get
,
448 .private_value
= (1<<31) | (1<<8) | AK4113_REG_RCS0
,
451 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
452 .name
= "IEC958 Non-PCM Bitstream",
453 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
454 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
455 .info
= snd_ak4113_in_bit_info
,
456 .get
= snd_ak4113_in_bit_get
,
457 .private_value
= (0<<8) | AK4113_REG_RCS1
,
460 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
461 .name
= "IEC958 DTS Bitstream",
462 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
463 SNDRV_CTL_ELEM_ACCESS_VOLATILE
,
464 .info
= snd_ak4113_in_bit_info
,
465 .get
= snd_ak4113_in_bit_get
,
466 .private_value
= (1<<8) | AK4113_REG_RCS1
,
469 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
470 .name
= "AK4113 Input Select",
471 .access
= SNDRV_CTL_ELEM_ACCESS_READ
|
472 SNDRV_CTL_ELEM_ACCESS_WRITE
,
473 .info
= snd_ak4113_rx_info
,
474 .get
= snd_ak4113_rx_get
,
475 .put
= snd_ak4113_rx_put
,
479 static void snd_ak4113_proc_regs_read(struct snd_info_entry
*entry
,
480 struct snd_info_buffer
*buffer
)
482 struct ak4113
*ak4113
= entry
->private_data
;
484 /* all ak4113 registers 0x00 - 0x1c */
485 for (reg
= 0; reg
< 0x1d; reg
++) {
486 val
= reg_read(ak4113
, reg
);
487 snd_iprintf(buffer
, "0x%02x = 0x%02x\n", reg
, val
);
491 static void snd_ak4113_proc_init(struct ak4113
*ak4113
)
493 struct snd_info_entry
*entry
;
494 if (!snd_card_proc_new(ak4113
->card
, "ak4113", &entry
))
495 snd_info_set_text_ops(entry
, ak4113
, snd_ak4113_proc_regs_read
);
498 int snd_ak4113_build(struct ak4113
*ak4113
,
499 struct snd_pcm_substream
*cap_substream
)
501 struct snd_kcontrol
*kctl
;
505 if (snd_BUG_ON(!cap_substream
))
507 ak4113
->substream
= cap_substream
;
508 for (idx
= 0; idx
< AK4113_CONTROLS
; idx
++) {
509 kctl
= snd_ctl_new1(&snd_ak4113_iec958_controls
[idx
], ak4113
);
512 kctl
->id
.device
= cap_substream
->pcm
->device
;
513 kctl
->id
.subdevice
= cap_substream
->number
;
514 err
= snd_ctl_add(ak4113
->card
, kctl
);
517 ak4113
->kctls
[idx
] = kctl
;
519 snd_ak4113_proc_init(ak4113
);
521 schedule_delayed_work(&ak4113
->work
, HZ
/ 10);
524 EXPORT_SYMBOL_GPL(snd_ak4113_build
);
526 int snd_ak4113_external_rate(struct ak4113
*ak4113
)
530 rcs1
= reg_read(ak4113
, AK4113_REG_RCS1
);
531 return external_rate(rcs1
);
533 EXPORT_SYMBOL_GPL(snd_ak4113_external_rate
);
535 int snd_ak4113_check_rate_and_errors(struct ak4113
*ak4113
, unsigned int flags
)
537 struct snd_pcm_runtime
*runtime
=
538 ak4113
->substream
? ak4113
->substream
->runtime
: NULL
;
539 unsigned long _flags
;
541 unsigned char rcs0
, rcs1
, rcs2
;
542 unsigned char c0
, c1
;
544 rcs1
= reg_read(ak4113
, AK4113_REG_RCS1
);
545 if (flags
& AK4113_CHECK_NO_STAT
)
547 rcs0
= reg_read(ak4113
, AK4113_REG_RCS0
);
548 rcs2
= reg_read(ak4113
, AK4113_REG_RCS2
);
549 spin_lock_irqsave(&ak4113
->lock
, _flags
);
550 if (rcs0
& AK4113_PAR
)
551 ak4113
->parity_errors
++;
553 ak4113
->v_bit_errors
++;
554 if (rcs2
& AK4113_CCRC
)
555 ak4113
->ccrc_errors
++;
556 if (rcs2
& AK4113_QCRC
)
557 ak4113
->qcrc_errors
++;
558 c0
= (ak4113
->rcs0
& (AK4113_QINT
| AK4113_CINT
| AK4113_STC
|
559 AK4113_AUDION
| AK4113_AUTO
| AK4113_UNLCK
)) ^
560 (rcs0
& (AK4113_QINT
| AK4113_CINT
| AK4113_STC
|
561 AK4113_AUDION
| AK4113_AUTO
| AK4113_UNLCK
));
562 c1
= (ak4113
->rcs1
& (AK4113_DTSCD
| AK4113_NPCM
| AK4113_PEM
|
563 AK4113_DAT
| 0xf0)) ^
564 (rcs1
& (AK4113_DTSCD
| AK4113_NPCM
| AK4113_PEM
|
566 ak4113
->rcs0
= rcs0
& ~(AK4113_QINT
| AK4113_CINT
| AK4113_STC
);
569 spin_unlock_irqrestore(&ak4113
->lock
, _flags
);
571 if (rcs0
& AK4113_PAR
)
572 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
573 &ak4113
->kctls
[0]->id
);
575 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
576 &ak4113
->kctls
[1]->id
);
577 if (rcs2
& AK4113_CCRC
)
578 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
579 &ak4113
->kctls
[2]->id
);
580 if (rcs2
& AK4113_QCRC
)
581 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
582 &ak4113
->kctls
[3]->id
);
586 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
587 &ak4113
->kctls
[4]->id
);
589 if ((c1
& AK4113_PEM
) | (c0
& AK4113_CINT
))
590 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
591 &ak4113
->kctls
[6]->id
);
592 if (c0
& AK4113_QINT
)
593 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
594 &ak4113
->kctls
[8]->id
);
596 if (c0
& AK4113_AUDION
)
597 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
598 &ak4113
->kctls
[9]->id
);
599 if (c1
& AK4113_NPCM
)
600 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
601 &ak4113
->kctls
[10]->id
);
602 if (c1
& AK4113_DTSCD
)
603 snd_ctl_notify(ak4113
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
604 &ak4113
->kctls
[11]->id
);
606 if (ak4113
->change_callback
&& (c0
| c1
) != 0)
607 ak4113
->change_callback(ak4113
, c0
, c1
);
611 res
= external_rate(rcs1
);
612 if (!(flags
& AK4113_CHECK_NO_RATE
) && runtime
&&
613 (runtime
->rate
!= res
)) {
614 snd_pcm_stream_lock_irqsave(ak4113
->substream
, _flags
);
615 if (snd_pcm_running(ak4113
->substream
)) {
616 /*printk(KERN_DEBUG "rate changed (%i <- %i)\n",
617 * runtime->rate, res); */
618 snd_pcm_stop(ak4113
->substream
,
619 SNDRV_PCM_STATE_DRAINING
);
620 wake_up(&runtime
->sleep
);
623 snd_pcm_stream_unlock_irqrestore(ak4113
->substream
, _flags
);
627 EXPORT_SYMBOL_GPL(snd_ak4113_check_rate_and_errors
);
629 static void ak4113_stats(struct work_struct
*work
)
631 struct ak4113
*chip
= container_of(work
, struct ak4113
, work
.work
);
633 if (atomic_inc_return(&chip
->wq_processing
) == 1)
634 snd_ak4113_check_rate_and_errors(chip
, chip
->check_flags
);
636 if (atomic_dec_and_test(&chip
->wq_processing
))
637 schedule_delayed_work(&chip
->work
, HZ
/ 10);