2 * Line6 Linux USB driver - 0.8.0
4 * Copyright (C) 2004-2009 Markus Grabner (grabner@icg.tugraz.at)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
14 #include <linux/slab.h>
16 #include <sound/core.h>
17 #include <sound/pcm.h>
18 #include <sound/pcm_params.h>
26 Software stereo volume control.
28 static void change_volume(struct urb
*urb_out
, int volume
[],
33 if (volume
[0] == 256 && volume
[1] == 256)
34 return; /* maximum volume - no change */
36 if (bytes_per_frame
== 4) {
38 p
= (short *)urb_out
->transfer_buffer
;
39 buf_end
= p
+ urb_out
->transfer_buffer_length
/ sizeof(*p
);
41 for (; p
< buf_end
; ++p
) {
42 *p
= (*p
* volume
[chn
& 1]) >> 8;
45 } else if (bytes_per_frame
== 6) {
46 unsigned char *p
, *buf_end
;
47 p
= (unsigned char *)urb_out
->transfer_buffer
;
48 buf_end
= p
+ urb_out
->transfer_buffer_length
;
50 for (; p
< buf_end
; p
+= 3) {
52 val
= p
[0] + (p
[1] << 8) + ((signed char)p
[2] << 16);
53 val
= (val
* volume
[chn
& 1]) >> 8;
63 Find a free URB, prepare audio data, and submit URB.
65 static int submit_audio_out_urb(struct snd_pcm_substream
*substream
)
69 int i
, urb_size
, urb_frames
;
70 struct snd_line6_pcm
*line6pcm
= snd_pcm_substream_chip(substream
);
71 const int bytes_per_frame
= line6pcm
->properties
->bytes_per_frame
;
72 const int frame_increment
=
73 line6pcm
->properties
->snd_line6_rates
.rats
[0].num_min
;
74 const int frame_factor
=
75 line6pcm
->properties
->snd_line6_rates
.rats
[0].den
*
76 (USB_INTERVALS_PER_SECOND
/ LINE6_ISO_INTERVAL
);
77 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
80 spin_lock_irqsave(&line6pcm
->lock_audio_out
, flags
);
82 find_first_zero_bit(&line6pcm
->active_urb_out
, LINE6_ISO_BUFFERS
);
84 if (index
< 0 || index
>= LINE6_ISO_BUFFERS
) {
85 spin_unlock_irqrestore(&line6pcm
->lock_audio_out
, flags
);
86 dev_err(s2m(substream
), "no free URB found\n");
90 urb_out
= line6pcm
->urb_audio_out
[index
];
93 for (i
= 0; i
< LINE6_ISO_PACKETS
; ++i
) {
94 /* compute frame size for given sampling rate */
96 struct usb_iso_packet_descriptor
*fout
=
97 &urb_out
->iso_frame_desc
[i
];
98 line6pcm
->count_out
+= frame_increment
;
99 n
= line6pcm
->count_out
/ frame_factor
;
100 line6pcm
->count_out
-= n
* frame_factor
;
101 fs
= n
* bytes_per_frame
;
102 fout
->offset
= urb_size
;
107 urb_frames
= urb_size
/ bytes_per_frame
;
109 if (test_bit(BIT_PAUSE_PLAYBACK
, &line6pcm
->flags
)) {
110 urb_out
->transfer_buffer
= line6pcm
->wrap_out
;
111 memset(line6pcm
->wrap_out
, 0, urb_size
);
113 if (line6pcm
->pos_out
+ urb_frames
> runtime
->buffer_size
) {
115 The transferred area goes over buffer boundary,
116 copy the data to the temp buffer.
119 len
= runtime
->buffer_size
- line6pcm
->pos_out
;
120 urb_out
->transfer_buffer
= line6pcm
->wrap_out
;
123 memcpy(line6pcm
->wrap_out
,
125 line6pcm
->pos_out
* bytes_per_frame
,
126 len
* bytes_per_frame
);
127 memcpy(line6pcm
->wrap_out
+
128 len
* bytes_per_frame
, runtime
->dma_area
,
129 (urb_frames
- len
) * bytes_per_frame
);
131 /* this is somewhat paranoid */
132 dev_err(s2m(substream
),
133 "driver bug: len = %d\n", len
);
136 /* set the buffer pointer */
137 urb_out
->transfer_buffer
=
139 line6pcm
->pos_out
* bytes_per_frame
;
143 line6pcm
->pos_out
+= urb_frames
;
144 if (line6pcm
->pos_out
>= runtime
->buffer_size
)
145 line6pcm
->pos_out
-= runtime
->buffer_size
;
147 urb_out
->transfer_buffer_length
= urb_size
;
148 urb_out
->context
= substream
;
149 change_volume(urb_out
, line6pcm
->volume
, bytes_per_frame
);
152 for (i
= 0; i
< LINE6_ISO_PACKETS
; ++i
) {
153 struct usb_iso_packet_descriptor
*fout
=
154 &urb_out
->iso_frame_desc
[i
];
155 line6_write_hexdump(line6pcm
->line6
, 'P',
156 urb_out
->transfer_buffer
+ fout
->offset
,
161 if (usb_submit_urb(urb_out
, GFP_ATOMIC
) == 0)
162 set_bit(index
, &line6pcm
->active_urb_out
);
164 dev_err(s2m(substream
), "URB out #%d submission failed\n",
167 spin_unlock_irqrestore(&line6pcm
->lock_audio_out
, flags
);
172 Submit all currently available playback URBs.
174 static int submit_audio_out_all_urbs(struct snd_pcm_substream
*substream
)
178 for (i
= 0; i
< LINE6_ISO_BUFFERS
; ++i
) {
179 ret
= submit_audio_out_urb(substream
);
188 Unlink all currently active playback URBs.
190 static void unlink_audio_out_urbs(struct snd_line6_pcm
*line6pcm
)
194 for (i
= LINE6_ISO_BUFFERS
; i
--;) {
195 if (test_bit(i
, &line6pcm
->active_urb_out
)) {
196 if (!test_and_set_bit(i
, &line6pcm
->unlink_urb_out
)) {
197 struct urb
*u
= line6pcm
->urb_audio_out
[i
];
205 Wait until unlinking of all currently active playback URBs has been finished.
207 static void wait_clear_audio_out_urbs(struct snd_line6_pcm
*line6pcm
)
215 for (i
= LINE6_ISO_BUFFERS
; i
--;) {
216 if (test_bit(i
, &line6pcm
->active_urb_out
))
221 set_current_state(TASK_UNINTERRUPTIBLE
);
223 } while (--timeout
> 0);
225 snd_printk(KERN_ERR
"timeout: still %d active urbs..\n", alive
);
227 line6pcm
->active_urb_out
= 0;
228 line6pcm
->unlink_urb_out
= 0;
232 Unlink all currently active playback URBs, and wait for finishing.
234 void unlink_wait_clear_audio_out_urbs(struct snd_line6_pcm
*line6pcm
)
236 unlink_audio_out_urbs(line6pcm
);
237 wait_clear_audio_out_urbs(line6pcm
);
241 Callback for completed playback URB.
243 static void audio_out_callback(struct urb
*urb
)
245 int i
, index
, length
= 0, shutdown
= 0;
248 struct snd_pcm_substream
*substream
=
249 (struct snd_pcm_substream
*)urb
->context
;
250 struct snd_line6_pcm
*line6pcm
= snd_pcm_substream_chip(substream
);
251 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
253 /* find index of URB */
254 for (index
= LINE6_ISO_BUFFERS
; index
--;)
255 if (urb
== line6pcm
->urb_audio_out
[index
])
259 return; /* URB has been unlinked asynchronously */
261 for (i
= LINE6_ISO_PACKETS
; i
--;)
262 length
+= urb
->iso_frame_desc
[i
].length
;
264 spin_lock_irqsave(&line6pcm
->lock_audio_out
, flags
);
265 line6pcm
->pos_out_done
+=
266 length
/ line6pcm
->properties
->bytes_per_frame
;
268 if (line6pcm
->pos_out_done
>= runtime
->buffer_size
)
269 line6pcm
->pos_out_done
-= runtime
->buffer_size
;
271 clear_bit(index
, &line6pcm
->active_urb_out
);
273 for (i
= LINE6_ISO_PACKETS
; i
--;)
274 if (urb
->iso_frame_desc
[i
].status
== -ESHUTDOWN
) {
279 if (test_bit(index
, &line6pcm
->unlink_urb_out
))
282 spin_unlock_irqrestore(&line6pcm
->lock_audio_out
, flags
);
285 submit_audio_out_urb(substream
);
287 line6pcm
->bytes_out
+= length
;
288 if (line6pcm
->bytes_out
>= line6pcm
->period_out
) {
289 line6pcm
->bytes_out
-= line6pcm
->period_out
;
290 snd_pcm_period_elapsed(substream
);
295 /* open playback callback */
296 static int snd_line6_playback_open(struct snd_pcm_substream
*substream
)
299 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
300 struct snd_line6_pcm
*line6pcm
= snd_pcm_substream_chip(substream
);
302 err
= snd_pcm_hw_constraint_ratdens(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
303 (&line6pcm
->properties
->
308 runtime
->hw
= line6pcm
->properties
->snd_line6_playback_hw
;
312 /* close playback callback */
313 static int snd_line6_playback_close(struct snd_pcm_substream
*substream
)
318 /* hw_params playback callback */
319 static int snd_line6_playback_hw_params(struct snd_pcm_substream
*substream
,
320 struct snd_pcm_hw_params
*hw_params
)
323 struct snd_line6_pcm
*line6pcm
= snd_pcm_substream_chip(substream
);
325 /* -- Florian Demski [FD] */
326 /* don't ask me why, but this fixes the bug on my machine */
327 if (line6pcm
== NULL
) {
328 if (substream
->pcm
== NULL
)
330 if (substream
->pcm
->private_data
== NULL
)
332 substream
->private_data
= substream
->pcm
->private_data
;
333 line6pcm
= snd_pcm_substream_chip(substream
);
337 ret
= snd_pcm_lib_malloc_pages(substream
,
338 params_buffer_bytes(hw_params
));
342 line6pcm
->period_out
= params_period_bytes(hw_params
);
343 line6pcm
->wrap_out
= kmalloc(2 * LINE6_ISO_PACKET_SIZE_MAX
, GFP_KERNEL
);
345 if (!line6pcm
->wrap_out
) {
346 dev_err(s2m(substream
), "cannot malloc wrap_out\n");
353 /* hw_free playback callback */
354 static int snd_line6_playback_hw_free(struct snd_pcm_substream
*substream
)
356 struct snd_line6_pcm
*line6pcm
= snd_pcm_substream_chip(substream
);
357 unlink_wait_clear_audio_out_urbs(line6pcm
);
359 kfree(line6pcm
->wrap_out
);
360 line6pcm
->wrap_out
= NULL
;
362 return snd_pcm_lib_free_pages(substream
);
365 /* trigger playback callback */
366 int snd_line6_playback_trigger(struct snd_pcm_substream
*substream
, int cmd
)
368 struct snd_line6_pcm
*line6pcm
= snd_pcm_substream_chip(substream
);
370 line6pcm
->count_out
= 0;
373 case SNDRV_PCM_TRIGGER_START
:
374 if (!test_and_set_bit(BIT_RUNNING_PLAYBACK
, &line6pcm
->flags
)) {
375 err
= submit_audio_out_all_urbs(substream
);
378 clear_bit(BIT_RUNNING_PLAYBACK
,
386 case SNDRV_PCM_TRIGGER_STOP
:
387 if (test_and_clear_bit(BIT_RUNNING_PLAYBACK
, &line6pcm
->flags
))
388 unlink_audio_out_urbs(line6pcm
);
392 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
393 set_bit(BIT_PAUSE_PLAYBACK
, &line6pcm
->flags
);
396 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
397 clear_bit(BIT_PAUSE_PLAYBACK
, &line6pcm
->flags
);
407 /* playback pointer callback */
408 static snd_pcm_uframes_t
409 snd_line6_playback_pointer(struct snd_pcm_substream
*substream
)
411 struct snd_line6_pcm
*line6pcm
= snd_pcm_substream_chip(substream
);
412 return line6pcm
->pos_out_done
;
415 /* playback operators */
416 struct snd_pcm_ops snd_line6_playback_ops
= {
417 .open
= snd_line6_playback_open
,
418 .close
= snd_line6_playback_close
,
419 .ioctl
= snd_pcm_lib_ioctl
,
420 .hw_params
= snd_line6_playback_hw_params
,
421 .hw_free
= snd_line6_playback_hw_free
,
422 .prepare
= snd_line6_prepare
,
423 .trigger
= snd_line6_trigger
,
424 .pointer
= snd_line6_playback_pointer
,
427 int create_audio_out_urbs(struct snd_line6_pcm
*line6pcm
)
431 /* create audio URBs and fill in constant values: */
432 for (i
= 0; i
< LINE6_ISO_BUFFERS
; ++i
) {
435 /* URB for audio out: */
436 urb
= line6pcm
->urb_audio_out
[i
] =
437 usb_alloc_urb(LINE6_ISO_PACKETS
, GFP_KERNEL
);
440 dev_err(line6pcm
->line6
->ifcdev
, "Out of memory\n");
444 urb
->dev
= line6pcm
->line6
->usbdev
;
446 usb_sndisocpipe(line6pcm
->line6
->usbdev
,
448 ep_audio_write
& USB_ENDPOINT_NUMBER_MASK
);
449 urb
->transfer_flags
= URB_ISO_ASAP
;
450 urb
->start_frame
= -1;
451 urb
->number_of_packets
= LINE6_ISO_PACKETS
;
452 urb
->interval
= LINE6_ISO_INTERVAL
;
453 urb
->error_count
= 0;
454 urb
->complete
= audio_out_callback
;