2 * Conexant Cx231xx audio extension
4 * Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
5 * Based on em28xx driver
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., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/kernel.h>
24 #include <linux/usb.h>
25 #include <linux/init.h>
26 #include <linux/sound.h>
27 #include <linux/spinlock.h>
28 #include <linux/soundcard.h>
29 #include <linux/slab.h>
30 #include <linux/vmalloc.h>
31 #include <linux/proc_fs.h>
32 #include <linux/module.h>
33 #include <sound/core.h>
34 #include <sound/pcm.h>
35 #include <sound/pcm_params.h>
36 #include <sound/info.h>
37 #include <sound/initval.h>
38 #include <sound/control.h>
39 #include <media/v4l2-common.h>
41 #include "cx231xx-pcb-config.h"
44 module_param(debug
, int, 0644);
45 MODULE_PARM_DESC(debug
, "activates debug info");
47 #define dprintk(fmt, arg...) do { \
49 printk(KERN_INFO "cx231xx-audio %s: " fmt, \
53 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
;
55 static int cx231xx_isoc_audio_deinit(struct cx231xx
*dev
)
59 dprintk("Stopping isoc\n");
61 for (i
= 0; i
< CX231XX_AUDIO_BUFS
; i
++) {
62 if (dev
->adev
.urb
[i
]) {
64 usb_kill_urb(dev
->adev
.urb
[i
]);
66 usb_unlink_urb(dev
->adev
.urb
[i
]);
68 usb_free_urb(dev
->adev
.urb
[i
]);
69 dev
->adev
.urb
[i
] = NULL
;
71 kfree(dev
->adev
.transfer_buffer
[i
]);
72 dev
->adev
.transfer_buffer
[i
] = NULL
;
79 static void cx231xx_audio_isocirq(struct urb
*urb
)
81 struct cx231xx
*dev
= urb
->context
;
84 int period_elapsed
= 0;
88 struct snd_pcm_substream
*substream
;
89 struct snd_pcm_runtime
*runtime
;
91 switch (urb
->status
) {
93 case -ETIMEDOUT
: /* NAK */
95 case -ECONNRESET
: /* kill */
100 dprintk("urb completition error %d.\n", urb
->status
);
104 if (dev
->adev
.capture_pcm_substream
) {
105 substream
= dev
->adev
.capture_pcm_substream
;
106 runtime
= substream
->runtime
;
107 stride
= runtime
->frame_bits
>> 3;
109 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
110 int length
= urb
->iso_frame_desc
[i
].actual_length
/
112 cp
= (unsigned char *)urb
->transfer_buffer
+
113 urb
->iso_frame_desc
[i
].offset
;
118 oldptr
= dev
->adev
.hwptr_done_capture
;
119 if (oldptr
+ length
>= runtime
->buffer_size
) {
122 cnt
= runtime
->buffer_size
- oldptr
;
123 memcpy(runtime
->dma_area
+ oldptr
* stride
, cp
,
125 memcpy(runtime
->dma_area
, cp
+ cnt
* stride
,
126 length
* stride
- cnt
* stride
);
128 memcpy(runtime
->dma_area
+ oldptr
* stride
, cp
,
132 snd_pcm_stream_lock(substream
);
134 dev
->adev
.hwptr_done_capture
+= length
;
135 if (dev
->adev
.hwptr_done_capture
>= runtime
->buffer_size
)
136 dev
->adev
.hwptr_done_capture
-= runtime
->buffer_size
;
138 dev
->adev
.capture_transfer_done
+= length
;
139 if (dev
->adev
.capture_transfer_done
>= runtime
->period_size
) {
140 dev
->adev
.capture_transfer_done
-= runtime
->period_size
;
143 snd_pcm_stream_unlock(substream
);
146 snd_pcm_period_elapsed(substream
);
150 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
152 cx231xx_errdev("resubmit of audio urb failed (error=%i)\n",
158 static int cx231xx_init_audio_isoc(struct cx231xx
*dev
)
163 cx231xx_info("%s: Starting AUDIO transfers\n", __func__
);
165 sb_size
= CX231XX_NUM_AUDIO_PACKETS
* dev
->adev
.max_pkt_size
;
167 for (i
= 0; i
< CX231XX_AUDIO_BUFS
; i
++) {
171 dev
->adev
.transfer_buffer
[i
] = kmalloc(sb_size
, GFP_ATOMIC
);
172 if (!dev
->adev
.transfer_buffer
[i
])
175 memset(dev
->adev
.transfer_buffer
[i
], 0x80, sb_size
);
176 urb
= usb_alloc_urb(CX231XX_NUM_AUDIO_PACKETS
, GFP_ATOMIC
);
178 cx231xx_errdev("usb_alloc_urb failed!\n");
179 for (j
= 0; j
< i
; j
++) {
180 usb_free_urb(dev
->adev
.urb
[j
]);
181 kfree(dev
->adev
.transfer_buffer
[j
]);
186 urb
->dev
= dev
->udev
;
188 urb
->pipe
= usb_rcvisocpipe(dev
->udev
, dev
->adev
.end_point_addr
);
189 urb
->transfer_flags
= URB_ISO_ASAP
;
190 urb
->transfer_buffer
= dev
->adev
.transfer_buffer
[i
];
192 urb
->complete
= cx231xx_audio_isocirq
;
193 urb
->number_of_packets
= CX231XX_NUM_AUDIO_PACKETS
;
194 urb
->transfer_buffer_length
= sb_size
;
196 for (j
= k
= 0; j
< CX231XX_NUM_AUDIO_PACKETS
; j
++, k
+= dev
->adev
.max_pkt_size
) {
197 urb
->iso_frame_desc
[j
].offset
= k
;
198 urb
->iso_frame_desc
[j
].length
= dev
->adev
.max_pkt_size
;
200 dev
->adev
.urb
[i
] = urb
;
203 for (i
= 0; i
< CX231XX_AUDIO_BUFS
; i
++) {
204 errCode
= usb_submit_urb(dev
->adev
.urb
[i
], GFP_ATOMIC
);
206 cx231xx_isoc_audio_deinit(dev
);
214 static int cx231xx_cmd(struct cx231xx
*dev
, int cmd
, int arg
)
216 dprintk("%s transfer\n", (dev
->adev
.capture_stream
== STREAM_ON
) ?
220 case CX231XX_CAPTURE_STREAM_EN
:
221 if (dev
->adev
.capture_stream
== STREAM_OFF
&& arg
== 1) {
222 dev
->adev
.capture_stream
= STREAM_ON
;
223 cx231xx_init_audio_isoc(dev
);
224 } else if (dev
->adev
.capture_stream
== STREAM_ON
&& arg
== 0) {
225 dev
->adev
.capture_stream
= STREAM_OFF
;
226 cx231xx_isoc_audio_deinit(dev
);
228 cx231xx_errdev("An underrun very likely occurred. "
237 static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream
*subs
,
240 struct snd_pcm_runtime
*runtime
= subs
->runtime
;
242 dprintk("Allocating vbuffer\n");
243 if (runtime
->dma_area
) {
244 if (runtime
->dma_bytes
> size
)
247 vfree(runtime
->dma_area
);
249 runtime
->dma_area
= vmalloc(size
);
250 if (!runtime
->dma_area
)
253 runtime
->dma_bytes
= size
;
258 static struct snd_pcm_hardware snd_cx231xx_hw_capture
= {
259 .info
= SNDRV_PCM_INFO_BLOCK_TRANSFER
|
260 SNDRV_PCM_INFO_MMAP
|
261 SNDRV_PCM_INFO_INTERLEAVED
| SNDRV_PCM_INFO_MMAP_VALID
,
263 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
265 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_KNOT
,
271 .buffer_bytes_max
= 62720 * 8, /* just about the value in usbaudio.c */
272 .period_bytes_min
= 64, /* 12544/2, */
273 .period_bytes_max
= 12544,
275 .periods_max
= 98, /* 12544, */
278 static int snd_cx231xx_capture_open(struct snd_pcm_substream
*substream
)
280 struct cx231xx
*dev
= snd_pcm_substream_chip(substream
);
281 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
284 dprintk("opening device and trying to acquire exclusive lock\n");
287 cx231xx_errdev("BUG: cx231xx can't find device struct."
288 " Can't proceed with open\n");
292 /* Sets volume, mute, etc */
295 /* set alternate setting for audio interface */
296 ret
= cx231xx_set_alt_setting(dev
, INDEX_AUDIO
, 1); /* 1 - 48000 samples per sec */
298 cx231xx_errdev("failed to set alternate setting !\n");
303 /* inform hardware to start streaming */
304 ret
= cx231xx_capture_start(dev
, 1, Audio
);
306 runtime
->hw
= snd_cx231xx_hw_capture
;
308 mutex_lock(&dev
->lock
);
310 mutex_unlock(&dev
->lock
);
312 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
);
313 dev
->adev
.capture_pcm_substream
= substream
;
314 runtime
->private_data
= dev
;
319 static int snd_cx231xx_pcm_close(struct snd_pcm_substream
*substream
)
322 struct cx231xx
*dev
= snd_pcm_substream_chip(substream
);
324 dprintk("closing device\n");
326 /* set alternate setting for audio interface */
327 ret
= cx231xx_set_alt_setting(dev
, INDEX_AUDIO
, 0); /* 1 - 48000 samples per sec */
329 cx231xx_errdev("failed to set alternate setting !\n");
334 /* inform hardware to start streaming */
335 ret
= cx231xx_capture_start(dev
, 0, Audio
);
338 mutex_lock(&dev
->lock
);
340 mutex_unlock(&dev
->lock
);
342 if (dev
->adev
.users
== 0 && dev
->adev
.shutdown
== 1) {
343 dprintk("audio users: %d\n", dev
->adev
.users
);
344 dprintk("disabling audio stream!\n");
345 dev
->adev
.shutdown
= 0;
346 dprintk("released lock\n");
347 cx231xx_cmd(dev
, CX231XX_CAPTURE_STREAM_EN
, 0);
352 static int snd_cx231xx_hw_capture_params(struct snd_pcm_substream
*substream
,
353 struct snd_pcm_hw_params
*hw_params
)
355 unsigned int channels
, rate
, format
;
358 dprintk("Setting capture parameters\n");
360 ret
= snd_pcm_alloc_vmalloc_buffer(substream
,
361 params_buffer_bytes(hw_params
));
362 format
= params_format(hw_params
);
363 rate
= params_rate(hw_params
);
364 channels
= params_channels(hw_params
);
366 /* TODO: set up cx231xx audio chip to deliver the correct audio format,
367 current default is 48000hz multiplexed => 96000hz mono
368 which shouldn't matter since analogue TV only supports mono */
372 static int snd_cx231xx_hw_capture_free(struct snd_pcm_substream
*substream
)
374 struct cx231xx
*dev
= snd_pcm_substream_chip(substream
);
376 dprintk("Stop capture, if needed\n");
378 if (dev
->adev
.capture_stream
== STREAM_ON
)
379 cx231xx_cmd(dev
, CX231XX_CAPTURE_STREAM_EN
, CX231XX_STOP_AUDIO
);
384 static int snd_cx231xx_prepare(struct snd_pcm_substream
*substream
)
389 static int snd_cx231xx_capture_trigger(struct snd_pcm_substream
*substream
,
392 struct cx231xx
*dev
= snd_pcm_substream_chip(substream
);
395 dprintk("Should %s capture\n", (cmd
== SNDRV_PCM_TRIGGER_START
) ?
398 spin_lock(&dev
->adev
.slock
);
400 case SNDRV_PCM_TRIGGER_START
:
401 cx231xx_cmd(dev
, CX231XX_CAPTURE_STREAM_EN
,
402 CX231XX_START_AUDIO
);
405 case SNDRV_PCM_TRIGGER_STOP
:
406 cx231xx_cmd(dev
, CX231XX_CAPTURE_STREAM_EN
, CX231XX_STOP_AUDIO
);
413 spin_unlock(&dev
->adev
.slock
);
417 static snd_pcm_uframes_t
snd_cx231xx_capture_pointer(struct snd_pcm_substream
422 snd_pcm_uframes_t hwptr_done
;
424 dev
= snd_pcm_substream_chip(substream
);
426 spin_lock_irqsave(&dev
->adev
.slock
, flags
);
427 hwptr_done
= dev
->adev
.hwptr_done_capture
;
428 spin_unlock_irqrestore(&dev
->adev
.slock
, flags
);
433 static struct page
*snd_pcm_get_vmalloc_page(struct snd_pcm_substream
*subs
,
434 unsigned long offset
)
436 void *pageptr
= subs
->runtime
->dma_area
+ offset
;
438 return vmalloc_to_page(pageptr
);
441 static struct snd_pcm_ops snd_cx231xx_pcm_capture
= {
442 .open
= snd_cx231xx_capture_open
,
443 .close
= snd_cx231xx_pcm_close
,
444 .ioctl
= snd_pcm_lib_ioctl
,
445 .hw_params
= snd_cx231xx_hw_capture_params
,
446 .hw_free
= snd_cx231xx_hw_capture_free
,
447 .prepare
= snd_cx231xx_prepare
,
448 .trigger
= snd_cx231xx_capture_trigger
,
449 .pointer
= snd_cx231xx_capture_pointer
,
450 .page
= snd_pcm_get_vmalloc_page
,
453 static int cx231xx_audio_init(struct cx231xx
*dev
)
455 struct cx231xx_audio
*adev
= &dev
->adev
;
457 struct snd_card
*card
;
460 struct usb_interface
*uif
;
461 int i
, isoc_pipe
= 0;
463 if (dev
->has_alsa_audio
!= 1) {
464 /* This device does not support the extension (in this case
465 the device is expecting the snd-usb-audio module or
466 doesn't have analog audio support at all) */
470 cx231xx_info("cx231xx-audio.c: probing for cx231xx "
471 "non standard usbaudio\n");
473 card
= snd_card_new(index
[devnr
], "Cx231xx Audio", THIS_MODULE
, 0);
477 spin_lock_init(&adev
->slock
);
478 err
= snd_pcm_new(card
, "Cx231xx Audio", 0, 0, 1, &pcm
);
484 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
,
485 &snd_cx231xx_pcm_capture
);
487 pcm
->private_data
= dev
;
488 strcpy(pcm
->name
, "Conexant cx231xx Capture");
489 strcpy(card
->driver
, "Conexant cx231xx Audio");
490 strcpy(card
->shortname
, "Cx231xx Audio");
491 strcpy(card
->longname
, "Conexant cx231xx Audio");
493 err
= snd_card_register(card
);
498 adev
->sndcard
= card
;
499 adev
->udev
= dev
->udev
;
501 /* compute alternate max packet sizes for Audio */
503 dev
->udev
->actconfig
->interface
[dev
->current_pcb_config
.
504 hs_config_info
[0].interface_info
.
507 adev
->end_point_addr
=
508 le16_to_cpu(uif
->altsetting
[0].endpoint
[isoc_pipe
].desc
.
511 adev
->num_alt
= uif
->num_altsetting
;
512 cx231xx_info(": EndPoint Addr 0x%x, Alternate settings: %i\n",
513 adev
->end_point_addr
, adev
->num_alt
);
514 adev
->alt_max_pkt_size
= kmalloc(32 * adev
->num_alt
, GFP_KERNEL
);
516 if (adev
->alt_max_pkt_size
== NULL
) {
517 cx231xx_errdev("out of memory!\n");
521 for (i
= 0; i
< adev
->num_alt
; i
++) {
523 le16_to_cpu(uif
->altsetting
[i
].endpoint
[isoc_pipe
].desc
.
525 adev
->alt_max_pkt_size
[i
] =
526 (tmp
& 0x07ff) * (((tmp
& 0x1800) >> 11) + 1);
527 cx231xx_info("Alternate setting %i, max size= %i\n", i
,
528 adev
->alt_max_pkt_size
[i
]);
534 static int cx231xx_audio_fini(struct cx231xx
*dev
)
539 if (dev
->has_alsa_audio
!= 1) {
540 /* This device does not support the extension (in this case
541 the device is expecting the snd-usb-audio module or
542 doesn't have analog audio support at all) */
546 if (dev
->adev
.sndcard
) {
547 snd_card_free(dev
->adev
.sndcard
);
548 kfree(dev
->adev
.alt_max_pkt_size
);
549 dev
->adev
.sndcard
= NULL
;
555 static struct cx231xx_ops audio_ops
= {
557 .name
= "Cx231xx Audio Extension",
558 .init
= cx231xx_audio_init
,
559 .fini
= cx231xx_audio_fini
,
562 static int __init
cx231xx_alsa_register(void)
564 return cx231xx_register_extension(&audio_ops
);
567 static void __exit
cx231xx_alsa_unregister(void)
569 cx231xx_unregister_extension(&audio_ops
);
572 MODULE_LICENSE("GPL");
573 MODULE_AUTHOR("Srinivasa Deevi <srinivasa.deevi@conexant.com>");
574 MODULE_DESCRIPTION("Cx231xx Audio driver");
576 module_init(cx231xx_alsa_register
);
577 module_exit(cx231xx_alsa_unregister
);