blob: a6a9508418f8eebef0a4ae41c1e312610afb598c [file] [log] [blame]
Sri Deevie0d3baf2009-03-03 14:37:50 -03001/*
2 * Conexant Cx231xx audio extension
3 *
4 * Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
5 * Based on em28xx driver
6 *
7 *
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.
12 *
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.
17 *
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.
21 */
22
Mauro Carvalho Chehab589dadf2014-11-01 08:09:44 -030023#include "cx231xx.h"
Sri Deevie0d3baf2009-03-03 14:37:50 -030024#include <linux/kernel.h>
Sri Deevie0d3baf2009-03-03 14:37:50 -030025#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>
Sri Deevie0d3baf2009-03-03 14:37:50 -030040
41static int debug;
42module_param(debug, int, 0644);
43MODULE_PARM_DESC(debug, "activates debug info");
44
Sri Deevie0d3baf2009-03-03 14:37:50 -030045static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
46
47static int cx231xx_isoc_audio_deinit(struct cx231xx *dev)
48{
49 int i;
50
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -030051 dev_dbg(dev->dev, "Stopping isoc\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -030052
Sri Deevie0d3baf2009-03-03 14:37:50 -030053 for (i = 0; i < CX231XX_AUDIO_BUFS; i++) {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030054 if (dev->adev.urb[i]) {
55 if (!irqs_disabled())
56 usb_kill_urb(dev->adev.urb[i]);
57 else
58 usb_unlink_urb(dev->adev.urb[i]);
Sri Deevie0d3baf2009-03-03 14:37:50 -030059
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030060 usb_free_urb(dev->adev.urb[i]);
61 dev->adev.urb[i] = NULL;
Sri Deevie0d3baf2009-03-03 14:37:50 -030062
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030063 kfree(dev->adev.transfer_buffer[i]);
64 dev->adev.transfer_buffer[i] = NULL;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030065 }
Sri Deevie0d3baf2009-03-03 14:37:50 -030066 }
67
68 return 0;
69}
70
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -030071static int cx231xx_bulk_audio_deinit(struct cx231xx *dev)
72{
73 int i;
74
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -030075 dev_dbg(dev->dev, "Stopping bulk\n");
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -030076
77 for (i = 0; i < CX231XX_AUDIO_BUFS; i++) {
78 if (dev->adev.urb[i]) {
79 if (!irqs_disabled())
80 usb_kill_urb(dev->adev.urb[i]);
81 else
82 usb_unlink_urb(dev->adev.urb[i]);
83
84 usb_free_urb(dev->adev.urb[i]);
85 dev->adev.urb[i] = NULL;
86
87 kfree(dev->adev.transfer_buffer[i]);
88 dev->adev.transfer_buffer[i] = NULL;
89 }
90 }
91
92 return 0;
93}
94
Sri Deevie0d3baf2009-03-03 14:37:50 -030095static void cx231xx_audio_isocirq(struct urb *urb)
96{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -030097 struct cx231xx *dev = urb->context;
98 int i;
99 unsigned int oldptr;
100 int period_elapsed = 0;
101 int status;
102 unsigned char *cp;
103 unsigned int stride;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300104 struct snd_pcm_substream *substream;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300105 struct snd_pcm_runtime *runtime;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300106
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200107 if (dev->state & DEV_DISCONNECTED)
108 return;
109
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300110 switch (urb->status) {
111 case 0: /* success */
112 case -ETIMEDOUT: /* NAK */
113 break;
114 case -ECONNRESET: /* kill */
115 case -ENOENT:
116 case -ESHUTDOWN:
117 return;
118 default: /* error */
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300119 dev_dbg(dev->dev, "urb completition error %d.\n",
Mauro Carvalho Chehab56d8a3b2014-11-02 07:44:47 -0300120 urb->status);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300121 break;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300122 }
123
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300124 if (atomic_read(&dev->stream_started) == 0)
125 return;
126
Sri Deevie0d3baf2009-03-03 14:37:50 -0300127 if (dev->adev.capture_pcm_substream) {
128 substream = dev->adev.capture_pcm_substream;
129 runtime = substream->runtime;
130 stride = runtime->frame_bits >> 3;
131
132 for (i = 0; i < urb->number_of_packets; i++) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300133 int length = urb->iso_frame_desc[i].actual_length /
134 stride;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300135 cp = (unsigned char *)urb->transfer_buffer +
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300136 urb->iso_frame_desc[i].offset;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300137
138 if (!length)
139 continue;
140
141 oldptr = dev->adev.hwptr_done_capture;
142 if (oldptr + length >= runtime->buffer_size) {
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300143 unsigned int cnt;
144
145 cnt = runtime->buffer_size - oldptr;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300146 memcpy(runtime->dma_area + oldptr * stride, cp,
147 cnt * stride);
148 memcpy(runtime->dma_area, cp + cnt * stride,
149 length * stride - cnt * stride);
150 } else {
151 memcpy(runtime->dma_area + oldptr * stride, cp,
152 length * stride);
153 }
154
155 snd_pcm_stream_lock(substream);
156
157 dev->adev.hwptr_done_capture += length;
Sri Deevib9255172009-03-04 17:49:01 -0300158 if (dev->adev.hwptr_done_capture >=
159 runtime->buffer_size)
160 dev->adev.hwptr_done_capture -=
161 runtime->buffer_size;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300162
163 dev->adev.capture_transfer_done += length;
Sri Deevib9255172009-03-04 17:49:01 -0300164 if (dev->adev.capture_transfer_done >=
165 runtime->period_size) {
166 dev->adev.capture_transfer_done -=
167 runtime->period_size;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300168 period_elapsed = 1;
169 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300170 snd_pcm_stream_unlock(substream);
171 }
172 if (period_elapsed)
173 snd_pcm_period_elapsed(substream);
174 }
175 urb->status = 0;
176
177 status = usb_submit_urb(urb, GFP_ATOMIC);
178 if (status < 0) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300179 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300180 "resubmit of audio urb failed (error=%i)\n",
181 status);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300182 }
183 return;
184}
185
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300186static void cx231xx_audio_bulkirq(struct urb *urb)
187{
188 struct cx231xx *dev = urb->context;
189 unsigned int oldptr;
190 int period_elapsed = 0;
191 int status;
192 unsigned char *cp;
193 unsigned int stride;
194 struct snd_pcm_substream *substream;
195 struct snd_pcm_runtime *runtime;
196
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200197 if (dev->state & DEV_DISCONNECTED)
198 return;
199
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300200 switch (urb->status) {
201 case 0: /* success */
202 case -ETIMEDOUT: /* NAK */
203 break;
204 case -ECONNRESET: /* kill */
205 case -ENOENT:
206 case -ESHUTDOWN:
207 return;
208 default: /* error */
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300209 dev_dbg(dev->dev, "urb completition error %d.\n",
Mauro Carvalho Chehab56d8a3b2014-11-02 07:44:47 -0300210 urb->status);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300211 break;
212 }
213
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300214 if (atomic_read(&dev->stream_started) == 0)
215 return;
216
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300217 if (dev->adev.capture_pcm_substream) {
218 substream = dev->adev.capture_pcm_substream;
219 runtime = substream->runtime;
220 stride = runtime->frame_bits >> 3;
221
222 if (1) {
223 int length = urb->actual_length /
224 stride;
225 cp = (unsigned char *)urb->transfer_buffer;
226
227 oldptr = dev->adev.hwptr_done_capture;
228 if (oldptr + length >= runtime->buffer_size) {
229 unsigned int cnt;
230
231 cnt = runtime->buffer_size - oldptr;
232 memcpy(runtime->dma_area + oldptr * stride, cp,
233 cnt * stride);
234 memcpy(runtime->dma_area, cp + cnt * stride,
235 length * stride - cnt * stride);
236 } else {
237 memcpy(runtime->dma_area + oldptr * stride, cp,
238 length * stride);
239 }
240
241 snd_pcm_stream_lock(substream);
242
243 dev->adev.hwptr_done_capture += length;
244 if (dev->adev.hwptr_done_capture >=
245 runtime->buffer_size)
246 dev->adev.hwptr_done_capture -=
247 runtime->buffer_size;
248
249 dev->adev.capture_transfer_done += length;
250 if (dev->adev.capture_transfer_done >=
251 runtime->period_size) {
252 dev->adev.capture_transfer_done -=
253 runtime->period_size;
254 period_elapsed = 1;
255 }
256 snd_pcm_stream_unlock(substream);
257 }
258 if (period_elapsed)
259 snd_pcm_period_elapsed(substream);
260 }
261 urb->status = 0;
262
263 status = usb_submit_urb(urb, GFP_ATOMIC);
264 if (status < 0) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300265 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300266 "resubmit of audio urb failed (error=%i)\n",
267 status);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300268 }
269 return;
270}
271
Sri Deevie0d3baf2009-03-03 14:37:50 -0300272static int cx231xx_init_audio_isoc(struct cx231xx *dev)
273{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300274 int i, errCode;
275 int sb_size;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300276
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300277 dev_dbg(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300278 "%s: Starting ISO AUDIO transfers\n", __func__);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300279
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200280 if (dev->state & DEV_DISCONNECTED)
281 return -ENODEV;
282
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300283 sb_size = CX231XX_ISO_NUM_AUDIO_PACKETS * dev->adev.max_pkt_size;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300284
285 for (i = 0; i < CX231XX_AUDIO_BUFS; i++) {
286 struct urb *urb;
287 int j, k;
288
289 dev->adev.transfer_buffer[i] = kmalloc(sb_size, GFP_ATOMIC);
290 if (!dev->adev.transfer_buffer[i])
291 return -ENOMEM;
292
293 memset(dev->adev.transfer_buffer[i], 0x80, sb_size);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300294 urb = usb_alloc_urb(CX231XX_ISO_NUM_AUDIO_PACKETS, GFP_ATOMIC);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300295 if (!urb) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300296 dev_err(dev->dev, "usb_alloc_urb failed!\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300297 for (j = 0; j < i; j++) {
298 usb_free_urb(dev->adev.urb[j]);
299 kfree(dev->adev.transfer_buffer[j]);
300 }
301 return -ENOMEM;
302 }
303
304 urb->dev = dev->udev;
305 urb->context = dev;
Sri Deevib9255172009-03-04 17:49:01 -0300306 urb->pipe = usb_rcvisocpipe(dev->udev,
307 dev->adev.end_point_addr);
David Dillowcd5534b2012-06-18 00:15:21 -0300308 urb->transfer_flags = URB_ISO_ASAP;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300309 urb->transfer_buffer = dev->adev.transfer_buffer[i];
310 urb->interval = 1;
311 urb->complete = cx231xx_audio_isocirq;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300312 urb->number_of_packets = CX231XX_ISO_NUM_AUDIO_PACKETS;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300313 urb->transfer_buffer_length = sb_size;
314
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300315 for (j = k = 0; j < CX231XX_ISO_NUM_AUDIO_PACKETS;
Sri Deevib9255172009-03-04 17:49:01 -0300316 j++, k += dev->adev.max_pkt_size) {
Sri Deevie0d3baf2009-03-03 14:37:50 -0300317 urb->iso_frame_desc[j].offset = k;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300318 urb->iso_frame_desc[j].length = dev->adev.max_pkt_size;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300319 }
320 dev->adev.urb[i] = urb;
321 }
322
323 for (i = 0; i < CX231XX_AUDIO_BUFS; i++) {
324 errCode = usb_submit_urb(dev->adev.urb[i], GFP_ATOMIC);
325 if (errCode < 0) {
326 cx231xx_isoc_audio_deinit(dev);
327 return errCode;
328 }
329 }
330
331 return errCode;
332}
333
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300334static int cx231xx_init_audio_bulk(struct cx231xx *dev)
335{
336 int i, errCode;
337 int sb_size;
338
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300339 dev_dbg(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300340 "%s: Starting BULK AUDIO transfers\n", __func__);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300341
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200342 if (dev->state & DEV_DISCONNECTED)
343 return -ENODEV;
344
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300345 sb_size = CX231XX_NUM_AUDIO_PACKETS * dev->adev.max_pkt_size;
346
347 for (i = 0; i < CX231XX_AUDIO_BUFS; i++) {
348 struct urb *urb;
349 int j;
350
351 dev->adev.transfer_buffer[i] = kmalloc(sb_size, GFP_ATOMIC);
352 if (!dev->adev.transfer_buffer[i])
353 return -ENOMEM;
354
355 memset(dev->adev.transfer_buffer[i], 0x80, sb_size);
356 urb = usb_alloc_urb(CX231XX_NUM_AUDIO_PACKETS, GFP_ATOMIC);
357 if (!urb) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300358 dev_err(dev->dev, "usb_alloc_urb failed!\n");
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300359 for (j = 0; j < i; j++) {
360 usb_free_urb(dev->adev.urb[j]);
361 kfree(dev->adev.transfer_buffer[j]);
362 }
363 return -ENOMEM;
364 }
365
366 urb->dev = dev->udev;
367 urb->context = dev;
368 urb->pipe = usb_rcvbulkpipe(dev->udev,
369 dev->adev.end_point_addr);
David Dillowcd5534b2012-06-18 00:15:21 -0300370 urb->transfer_flags = 0;
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300371 urb->transfer_buffer = dev->adev.transfer_buffer[i];
372 urb->complete = cx231xx_audio_bulkirq;
373 urb->transfer_buffer_length = sb_size;
374
375 dev->adev.urb[i] = urb;
376
377 }
378
379 for (i = 0; i < CX231XX_AUDIO_BUFS; i++) {
380 errCode = usb_submit_urb(dev->adev.urb[i], GFP_ATOMIC);
381 if (errCode < 0) {
382 cx231xx_bulk_audio_deinit(dev);
383 return errCode;
384 }
385 }
386
387 return errCode;
388}
389
Sri Deevie0d3baf2009-03-03 14:37:50 -0300390static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs,
391 size_t size)
392{
393 struct snd_pcm_runtime *runtime = subs->runtime;
Mauro Carvalho Chehab56d8a3b2014-11-02 07:44:47 -0300394 struct cx231xx *dev = snd_pcm_substream_chip(subs);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300395
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300396 dev_dbg(dev->dev, "Allocating vbuffer\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300397 if (runtime->dma_area) {
398 if (runtime->dma_bytes > size)
399 return 0;
400
401 vfree(runtime->dma_area);
402 }
403 runtime->dma_area = vmalloc(size);
404 if (!runtime->dma_area)
405 return -ENOMEM;
406
407 runtime->dma_bytes = size;
408
409 return 0;
410}
411
412static struct snd_pcm_hardware snd_cx231xx_hw_capture = {
Sri Deevi6e4f5742009-03-10 21:16:26 -0300413 .info = SNDRV_PCM_INFO_BLOCK_TRANSFER |
414 SNDRV_PCM_INFO_MMAP |
415 SNDRV_PCM_INFO_INTERLEAVED |
416 SNDRV_PCM_INFO_MMAP_VALID,
Sri Deevie0d3baf2009-03-03 14:37:50 -0300417
418 .formats = SNDRV_PCM_FMTBIT_S16_LE,
419
420 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_KNOT,
421
422 .rate_min = 48000,
423 .rate_max = 48000,
424 .channels_min = 2,
425 .channels_max = 2,
426 .buffer_bytes_max = 62720 * 8, /* just about the value in usbaudio.c */
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300427 .period_bytes_min = 64, /* 12544/2, */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300428 .period_bytes_max = 12544,
429 .periods_min = 2,
Mauro Carvalho Chehabcde43622009-03-03 13:31:36 -0300430 .periods_max = 98, /* 12544, */
Sri Deevie0d3baf2009-03-03 14:37:50 -0300431};
432
433static int snd_cx231xx_capture_open(struct snd_pcm_substream *substream)
434{
435 struct cx231xx *dev = snd_pcm_substream_chip(substream);
436 struct snd_pcm_runtime *runtime = substream->runtime;
437 int ret = 0;
438
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300439 dev_dbg(dev->dev,
Mauro Carvalho Chehab56d8a3b2014-11-02 07:44:47 -0300440 "opening device and trying to acquire exclusive lock\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300441
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200442 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300443 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300444 "Can't open. the device was removed.\n");
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200445 return -ENODEV;
446 }
447
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300448 /* set alternate setting for audio interface */
Sri Deevib9255172009-03-04 17:49:01 -0300449 /* 1 - 48000 samples per sec */
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300450 mutex_lock(&dev->lock);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300451 if (dev->USE_ISO)
452 ret = cx231xx_set_alt_setting(dev, INDEX_AUDIO, 1);
453 else
454 ret = cx231xx_set_alt_setting(dev, INDEX_AUDIO, 0);
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300455 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300456 if (ret < 0) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300457 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300458 "failed to set alternate setting !\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300459
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300460 return ret;
461 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300462
Sri Deevie0d3baf2009-03-03 14:37:50 -0300463 runtime->hw = snd_cx231xx_hw_capture;
464
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300465 mutex_lock(&dev->lock);
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300466 /* inform hardware to start streaming */
467 ret = cx231xx_capture_start(dev, 1, Audio);
468
Sri Deevie0d3baf2009-03-03 14:37:50 -0300469 dev->adev.users++;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300470 mutex_unlock(&dev->lock);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300471
472 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
473 dev->adev.capture_pcm_substream = substream;
474 runtime->private_data = dev;
475
476 return 0;
477}
478
479static int snd_cx231xx_pcm_close(struct snd_pcm_substream *substream)
480{
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300481 int ret;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300482 struct cx231xx *dev = snd_pcm_substream_chip(substream);
483
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300484 dev_dbg(dev->dev, "closing device\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300485
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300486 /* inform hardware to stop streaming */
487 mutex_lock(&dev->lock);
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300488 ret = cx231xx_capture_start(dev, 0, Audio);
489
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300490 /* set alternate setting for audio interface */
Sri Deevib9255172009-03-04 17:49:01 -0300491 /* 1 - 48000 samples per sec */
492 ret = cx231xx_set_alt_setting(dev, INDEX_AUDIO, 0);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300493 if (ret < 0) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300494 dev_err(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300495 "failed to set alternate setting !\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300496
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300497 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300498 return ret;
499 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300500
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300501 dev->adev.users--;
Jean-Baptiste Theou9dd73442016-01-08 20:02:03 -0200502 if (substream->runtime->dma_area) {
503 dev_dbg(dev->dev, "freeing\n");
504 vfree(substream->runtime->dma_area);
505 substream->runtime->dma_area = NULL;
506 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300507 mutex_unlock(&dev->lock);
508
509 if (dev->adev.users == 0 && dev->adev.shutdown == 1) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300510 dev_dbg(dev->dev, "audio users: %d\n", dev->adev.users);
511 dev_dbg(dev->dev, "disabling audio stream!\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300512 dev->adev.shutdown = 0;
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300513 dev_dbg(dev->dev, "released lock\n");
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300514 if (atomic_read(&dev->stream_started) > 0) {
515 atomic_set(&dev->stream_started, 0);
516 schedule_work(&dev->wq_trigger);
517 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300518 }
519 return 0;
520}
521
522static int snd_cx231xx_hw_capture_params(struct snd_pcm_substream *substream,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300523 struct snd_pcm_hw_params *hw_params)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300524{
Mauro Carvalho Chehab56d8a3b2014-11-02 07:44:47 -0300525 struct cx231xx *dev = snd_pcm_substream_chip(substream);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300526 int ret;
527
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300528 dev_dbg(dev->dev, "Setting capture parameters\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300529
530 ret = snd_pcm_alloc_vmalloc_buffer(substream,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300531 params_buffer_bytes(hw_params));
Hans Verkuilda983502012-05-14 10:14:53 -0300532#if 0
Sri Deevie0d3baf2009-03-03 14:37:50 -0300533 /* TODO: set up cx231xx audio chip to deliver the correct audio format,
534 current default is 48000hz multiplexed => 96000hz mono
535 which shouldn't matter since analogue TV only supports mono */
Hans Verkuilda983502012-05-14 10:14:53 -0300536 unsigned int channels, rate, format;
537
538 format = params_format(hw_params);
539 rate = params_rate(hw_params);
540 channels = params_channels(hw_params);
541#endif
542
543 return ret;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300544}
545
546static int snd_cx231xx_hw_capture_free(struct snd_pcm_substream *substream)
547{
548 struct cx231xx *dev = snd_pcm_substream_chip(substream);
549
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300550 dev_dbg(dev->dev, "Stop capture, if needed\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300551
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300552 if (atomic_read(&dev->stream_started) > 0) {
553 atomic_set(&dev->stream_started, 0);
554 schedule_work(&dev->wq_trigger);
555 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300556
557 return 0;
558}
559
560static int snd_cx231xx_prepare(struct snd_pcm_substream *substream)
561{
Palash Bandyopadhyay64fbf442010-07-06 18:12:25 -0300562 struct cx231xx *dev = snd_pcm_substream_chip(substream);
563
564 dev->adev.hwptr_done_capture = 0;
565 dev->adev.capture_transfer_done = 0;
566
Sri Deevie0d3baf2009-03-03 14:37:50 -0300567 return 0;
568}
569
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300570static void audio_trigger(struct work_struct *work)
571{
572 struct cx231xx *dev = container_of(work, struct cx231xx, wq_trigger);
573
574 if (atomic_read(&dev->stream_started)) {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300575 dev_dbg(dev->dev, "starting capture");
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300576 if (is_fw_load(dev) == 0)
577 cx25840_call(dev, core, load_fw);
578 if (dev->USE_ISO)
579 cx231xx_init_audio_isoc(dev);
580 else
581 cx231xx_init_audio_bulk(dev);
582 } else {
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300583 dev_dbg(dev->dev, "stopping capture");
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300584 cx231xx_isoc_audio_deinit(dev);
585 }
586}
587
Sri Deevie0d3baf2009-03-03 14:37:50 -0300588static int snd_cx231xx_capture_trigger(struct snd_pcm_substream *substream,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300589 int cmd)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300590{
591 struct cx231xx *dev = snd_pcm_substream_chip(substream);
Hans Verkuilda983502012-05-14 10:14:53 -0300592 int retval = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300593
Mauro Carvalho Chehab990862a2012-01-10 09:48:50 -0200594 if (dev->state & DEV_DISCONNECTED)
595 return -ENODEV;
596
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300597 spin_lock(&dev->adev.slock);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300598 switch (cmd) {
599 case SNDRV_PCM_TRIGGER_START:
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300600 atomic_set(&dev->stream_started, 1);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300601 break;
602 case SNDRV_PCM_TRIGGER_STOP:
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300603 atomic_set(&dev->stream_started, 0);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300604 break;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300605 default:
606 retval = -EINVAL;
Hans Verkuilda983502012-05-14 10:14:53 -0300607 break;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300608 }
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300609 spin_unlock(&dev->adev.slock);
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300610
611 schedule_work(&dev->wq_trigger);
612
Hans Verkuilda983502012-05-14 10:14:53 -0300613 return retval;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300614}
615
616static snd_pcm_uframes_t snd_cx231xx_capture_pointer(struct snd_pcm_substream
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300617 *substream)
Sri Deevie0d3baf2009-03-03 14:37:50 -0300618{
619 struct cx231xx *dev;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300620 unsigned long flags;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300621 snd_pcm_uframes_t hwptr_done;
622
623 dev = snd_pcm_substream_chip(substream);
624
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300625 spin_lock_irqsave(&dev->adev.slock, flags);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300626 hwptr_done = dev->adev.hwptr_done_capture;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300627 spin_unlock_irqrestore(&dev->adev.slock, flags);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300628
629 return hwptr_done;
630}
631
632static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
633 unsigned long offset)
634{
635 void *pageptr = subs->runtime->dma_area + offset;
636
637 return vmalloc_to_page(pageptr);
638}
639
640static struct snd_pcm_ops snd_cx231xx_pcm_capture = {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300641 .open = snd_cx231xx_capture_open,
642 .close = snd_cx231xx_pcm_close,
643 .ioctl = snd_pcm_lib_ioctl,
Sri Deevie0d3baf2009-03-03 14:37:50 -0300644 .hw_params = snd_cx231xx_hw_capture_params,
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300645 .hw_free = snd_cx231xx_hw_capture_free,
646 .prepare = snd_cx231xx_prepare,
647 .trigger = snd_cx231xx_capture_trigger,
648 .pointer = snd_cx231xx_capture_pointer,
649 .page = snd_pcm_get_vmalloc_page,
Sri Deevie0d3baf2009-03-03 14:37:50 -0300650};
651
652static int cx231xx_audio_init(struct cx231xx *dev)
653{
654 struct cx231xx_audio *adev = &dev->adev;
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300655 struct snd_pcm *pcm;
656 struct snd_card *card;
657 static int devnr;
658 int err;
659 struct usb_interface *uif;
660 int i, isoc_pipe = 0;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300661
662 if (dev->has_alsa_audio != 1) {
663 /* This device does not support the extension (in this case
664 the device is expecting the snd-usb-audio module or
665 doesn't have analog audio support at all) */
666 return 0;
667 }
668
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300669 dev_dbg(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300670 "probing for cx231xx non standard usbaudio\n");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300671
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300672 err = snd_card_new(dev->dev, index[devnr], "Cx231xx Audio",
Takashi Iwaie7356882014-01-29 14:48:43 +0100673 THIS_MODULE, 0, &card);
Mauro Carvalho Chehaba938b8c2009-04-06 21:25:29 -0300674 if (err < 0)
675 return err;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300676
677 spin_lock_init(&adev->slock);
678 err = snd_pcm_new(card, "Cx231xx Audio", 0, 0, 1, &pcm);
679 if (err < 0) {
680 snd_card_free(card);
681 return err;
682 }
683
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300684 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
685 &snd_cx231xx_pcm_capture);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300686 pcm->info_flags = 0;
687 pcm->private_data = dev;
688 strcpy(pcm->name, "Conexant cx231xx Capture");
Dan Carpenter935539c2010-03-22 12:39:09 -0300689 strcpy(card->driver, "Cx231xx-Audio");
Sri Deevie0d3baf2009-03-03 14:37:50 -0300690 strcpy(card->shortname, "Cx231xx Audio");
691 strcpy(card->longname, "Conexant cx231xx Audio");
692
Mauro Carvalho Chehab61b04cb2010-09-27 03:07:22 -0300693 INIT_WORK(&dev->wq_trigger, audio_trigger);
694
Sri Deevie0d3baf2009-03-03 14:37:50 -0300695 err = snd_card_register(card);
696 if (err < 0) {
697 snd_card_free(card);
698 return err;
699 }
700 adev->sndcard = card;
701 adev->udev = dev->udev;
702
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300703 /* compute alternate max packet sizes for Audio */
704 uif =
705 dev->udev->actconfig->interface[dev->current_pcb_config.
706 hs_config_info[0].interface_info.
707 audio_index + 1];
Sri Deevie0d3baf2009-03-03 14:37:50 -0300708
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300709 adev->end_point_addr =
Hans Verkuil69a11a32013-02-07 15:28:53 -0300710 uif->altsetting[0].endpoint[isoc_pipe].desc.
711 bEndpointAddress;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300712
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300713 adev->num_alt = uif->num_altsetting;
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300714 dev_info(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300715 "audio EndPoint Addr 0x%x, Alternate settings: %i\n",
Mauro Carvalho Chehabed0e3722014-11-01 08:59:03 -0300716 adev->end_point_addr, adev->num_alt);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300717 adev->alt_max_pkt_size = kmalloc(32 * adev->num_alt, GFP_KERNEL);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300718
Mauro Carvalho Chehabed0e3722014-11-01 08:59:03 -0300719 if (adev->alt_max_pkt_size == NULL)
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300720 return -ENOMEM;
Sri Deevie0d3baf2009-03-03 14:37:50 -0300721
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300722 for (i = 0; i < adev->num_alt; i++) {
723 u16 tmp =
724 le16_to_cpu(uif->altsetting[i].endpoint[isoc_pipe].desc.
725 wMaxPacketSize);
726 adev->alt_max_pkt_size[i] =
727 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Mauro Carvalho Chehab336fea92014-11-03 06:07:38 -0300728 dev_dbg(dev->dev,
Mauro Carvalho Chehabb7085c02014-11-02 07:21:44 -0300729 "audio alternate setting %i, max size= %i\n", i,
730 adev->alt_max_pkt_size[i]);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300731 }
Sri Deevie0d3baf2009-03-03 14:37:50 -0300732
733 return 0;
734}
735
736static int cx231xx_audio_fini(struct cx231xx *dev)
737{
738 if (dev == NULL)
739 return 0;
740
741 if (dev->has_alsa_audio != 1) {
742 /* This device does not support the extension (in this case
743 the device is expecting the snd-usb-audio module or
744 doesn't have analog audio support at all) */
745 return 0;
746 }
747
748 if (dev->adev.sndcard) {
749 snd_card_free(dev->adev.sndcard);
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300750 kfree(dev->adev.alt_max_pkt_size);
Sri Deevie0d3baf2009-03-03 14:37:50 -0300751 dev->adev.sndcard = NULL;
752 }
753
754 return 0;
755}
756
757static struct cx231xx_ops audio_ops = {
Mauro Carvalho Chehab84b5dbf2009-03-03 06:14:34 -0300758 .id = CX231XX_AUDIO,
Sri Deevie0d3baf2009-03-03 14:37:50 -0300759 .name = "Cx231xx Audio Extension",
760 .init = cx231xx_audio_init,
761 .fini = cx231xx_audio_fini,
762};
763
764static int __init cx231xx_alsa_register(void)
765{
766 return cx231xx_register_extension(&audio_ops);
767}
768
769static void __exit cx231xx_alsa_unregister(void)
770{
771 cx231xx_unregister_extension(&audio_ops);
772}
773
774MODULE_LICENSE("GPL");
775MODULE_AUTHOR("Srinivasa Deevi <srinivasa.deevi@conexant.com>");
776MODULE_DESCRIPTION("Cx231xx Audio driver");
777
778module_init(cx231xx_alsa_register);
779module_exit(cx231xx_alsa_unregister);