1
2
3
4
5
6
7
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/export.h>
11#include <linux/slab.h>
12#include <linux/usb.h>
13
14#include <sound/core.h>
15#include <sound/initval.h>
16#include <sound/hwdep.h>
17
18#include "capture.h"
19#include "driver.h"
20#include "midi.h"
21#include "playback.h"
22
23#define DRIVER_AUTHOR "Markus Grabner <grabner@icg.tugraz.at>"
24#define DRIVER_DESC "Line 6 USB Driver"
25
26
27
28
29const unsigned char line6_midi_id[3] = {
30 0x00, 0x01, 0x0c
31};
32EXPORT_SYMBOL_GPL(line6_midi_id);
33
34
35
36
37
38static const char line6_request_version[] = {
39 0xf0, 0x7e, 0x7f, 0x06, 0x01, 0xf7
40};
41
42
43
44
45struct message {
46 struct usb_line6 *line6;
47 const char *buffer;
48 int size;
49 int done;
50};
51
52
53
54
55static void line6_data_received(struct urb *urb);
56static int line6_send_raw_message_async_part(struct message *msg,
57 struct urb *urb);
58
59
60
61
62static int line6_start_listen(struct usb_line6 *line6)
63{
64 int err;
65
66 if (line6->properties->capabilities & LINE6_CAP_CONTROL_MIDI) {
67 usb_fill_int_urb(line6->urb_listen, line6->usbdev,
68 usb_rcvintpipe(line6->usbdev, line6->properties->ep_ctrl_r),
69 line6->buffer_listen, LINE6_BUFSIZE_LISTEN,
70 line6_data_received, line6, line6->interval);
71 } else {
72 usb_fill_bulk_urb(line6->urb_listen, line6->usbdev,
73 usb_rcvbulkpipe(line6->usbdev, line6->properties->ep_ctrl_r),
74 line6->buffer_listen, LINE6_BUFSIZE_LISTEN,
75 line6_data_received, line6);
76 }
77
78
79 if (usb_urb_ep_type_check(line6->urb_listen)) {
80 dev_err(line6->ifcdev, "invalid control EP\n");
81 return -EINVAL;
82 }
83
84 line6->urb_listen->actual_length = 0;
85 err = usb_submit_urb(line6->urb_listen, GFP_ATOMIC);
86 return err;
87}
88
89
90
91
92static void line6_stop_listen(struct usb_line6 *line6)
93{
94 usb_kill_urb(line6->urb_listen);
95}
96
97
98
99
100int line6_send_raw_message(struct usb_line6 *line6, const char *buffer,
101 int size)
102{
103 int i, done = 0;
104 const struct line6_properties *properties = line6->properties;
105
106 for (i = 0; i < size; i += line6->max_packet_size) {
107 int partial;
108 const char *frag_buf = buffer + i;
109 int frag_size = min(line6->max_packet_size, size - i);
110 int retval;
111
112 if (properties->capabilities & LINE6_CAP_CONTROL_MIDI) {
113 retval = usb_interrupt_msg(line6->usbdev,
114 usb_sndintpipe(line6->usbdev, properties->ep_ctrl_w),
115 (char *)frag_buf, frag_size,
116 &partial, LINE6_TIMEOUT * HZ);
117 } else {
118 retval = usb_bulk_msg(line6->usbdev,
119 usb_sndbulkpipe(line6->usbdev, properties->ep_ctrl_w),
120 (char *)frag_buf, frag_size,
121 &partial, LINE6_TIMEOUT * HZ);
122 }
123
124 if (retval) {
125 dev_err(line6->ifcdev,
126 "usb_bulk_msg failed (%d)\n", retval);
127 break;
128 }
129
130 done += frag_size;
131 }
132
133 return done;
134}
135EXPORT_SYMBOL_GPL(line6_send_raw_message);
136
137
138
139
140static void line6_async_request_sent(struct urb *urb)
141{
142 struct message *msg = (struct message *)urb->context;
143
144 if (msg->done >= msg->size) {
145 usb_free_urb(urb);
146 kfree(msg);
147 } else
148 line6_send_raw_message_async_part(msg, urb);
149}
150
151
152
153
154static int line6_send_raw_message_async_part(struct message *msg,
155 struct urb *urb)
156{
157 int retval;
158 struct usb_line6 *line6 = msg->line6;
159 int done = msg->done;
160 int bytes = min(msg->size - done, line6->max_packet_size);
161
162 if (line6->properties->capabilities & LINE6_CAP_CONTROL_MIDI) {
163 usb_fill_int_urb(urb, line6->usbdev,
164 usb_sndintpipe(line6->usbdev, line6->properties->ep_ctrl_w),
165 (char *)msg->buffer + done, bytes,
166 line6_async_request_sent, msg, line6->interval);
167 } else {
168 usb_fill_bulk_urb(urb, line6->usbdev,
169 usb_sndbulkpipe(line6->usbdev, line6->properties->ep_ctrl_w),
170 (char *)msg->buffer + done, bytes,
171 line6_async_request_sent, msg);
172 }
173
174 msg->done += bytes;
175
176
177 retval = usb_urb_ep_type_check(urb);
178 if (retval < 0)
179 goto error;
180
181 retval = usb_submit_urb(urb, GFP_ATOMIC);
182 if (retval < 0)
183 goto error;
184
185 return 0;
186
187 error:
188 dev_err(line6->ifcdev, "%s: usb_submit_urb failed (%d)\n",
189 __func__, retval);
190 usb_free_urb(urb);
191 kfree(msg);
192 return retval;
193}
194
195
196
197
198int line6_send_raw_message_async(struct usb_line6 *line6, const char *buffer,
199 int size)
200{
201 struct message *msg;
202 struct urb *urb;
203
204
205 msg = kmalloc(sizeof(struct message), GFP_ATOMIC);
206 if (msg == NULL)
207 return -ENOMEM;
208
209
210 urb = usb_alloc_urb(0, GFP_ATOMIC);
211
212 if (urb == NULL) {
213 kfree(msg);
214 return -ENOMEM;
215 }
216
217
218 msg->line6 = line6;
219 msg->buffer = buffer;
220 msg->size = size;
221 msg->done = 0;
222
223
224 return line6_send_raw_message_async_part(msg, urb);
225}
226EXPORT_SYMBOL_GPL(line6_send_raw_message_async);
227
228
229
230
231int line6_version_request_async(struct usb_line6 *line6)
232{
233 char *buffer;
234 int retval;
235
236 buffer = kmemdup(line6_request_version,
237 sizeof(line6_request_version), GFP_ATOMIC);
238 if (buffer == NULL)
239 return -ENOMEM;
240
241 retval = line6_send_raw_message_async(line6, buffer,
242 sizeof(line6_request_version));
243 kfree(buffer);
244 return retval;
245}
246EXPORT_SYMBOL_GPL(line6_version_request_async);
247
248
249
250
251int line6_send_sysex_message(struct usb_line6 *line6, const char *buffer,
252 int size)
253{
254 return line6_send_raw_message(line6, buffer,
255 size + SYSEX_EXTRA_SIZE) -
256 SYSEX_EXTRA_SIZE;
257}
258EXPORT_SYMBOL_GPL(line6_send_sysex_message);
259
260
261
262
263
264
265char *line6_alloc_sysex_buffer(struct usb_line6 *line6, int code1, int code2,
266 int size)
267{
268 char *buffer = kmalloc(size + SYSEX_EXTRA_SIZE, GFP_ATOMIC);
269
270 if (!buffer)
271 return NULL;
272
273 buffer[0] = LINE6_SYSEX_BEGIN;
274 memcpy(buffer + 1, line6_midi_id, sizeof(line6_midi_id));
275 buffer[sizeof(line6_midi_id) + 1] = code1;
276 buffer[sizeof(line6_midi_id) + 2] = code2;
277 buffer[sizeof(line6_midi_id) + 3 + size] = LINE6_SYSEX_END;
278 return buffer;
279}
280EXPORT_SYMBOL_GPL(line6_alloc_sysex_buffer);
281
282
283
284
285static void line6_data_received(struct urb *urb)
286{
287 struct usb_line6 *line6 = (struct usb_line6 *)urb->context;
288 struct midi_buffer *mb = &line6->line6midi->midibuf_in;
289 int done;
290
291 if (urb->status == -ESHUTDOWN)
292 return;
293
294 if (line6->properties->capabilities & LINE6_CAP_CONTROL_MIDI) {
295 done =
296 line6_midibuf_write(mb, urb->transfer_buffer, urb->actual_length);
297
298 if (done < urb->actual_length) {
299 line6_midibuf_ignore(mb, done);
300 dev_dbg(line6->ifcdev, "%d %d buffer overflow - message skipped\n",
301 done, urb->actual_length);
302 }
303
304 for (;;) {
305 done =
306 line6_midibuf_read(mb, line6->buffer_message,
307 LINE6_MIDI_MESSAGE_MAXLEN);
308
309 if (done <= 0)
310 break;
311
312 line6->message_length = done;
313 line6_midi_receive(line6, line6->buffer_message, done);
314
315 if (line6->process_message)
316 line6->process_message(line6);
317 }
318 } else {
319 line6->buffer_message = urb->transfer_buffer;
320 line6->message_length = urb->actual_length;
321 if (line6->process_message)
322 line6->process_message(line6);
323 line6->buffer_message = NULL;
324 }
325
326 line6_start_listen(line6);
327}
328
329#define LINE6_READ_WRITE_STATUS_DELAY 2
330#define LINE6_READ_WRITE_MAX_RETRIES 50
331
332
333
334
335int line6_read_data(struct usb_line6 *line6, unsigned address, void *data,
336 unsigned datalen)
337{
338 struct usb_device *usbdev = line6->usbdev;
339 int ret;
340 u8 len;
341 unsigned count;
342
343 if (address > 0xffff || datalen > 0xff)
344 return -EINVAL;
345
346
347 ret = usb_control_msg_send(usbdev, 0, 0x67,
348 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
349 (datalen << 8) | 0x21, address, NULL, 0,
350 LINE6_TIMEOUT * HZ, GFP_KERNEL);
351 if (ret) {
352 dev_err(line6->ifcdev, "read request failed (error %d)\n", ret);
353 goto exit;
354 }
355
356
357 for (count = 0; count < LINE6_READ_WRITE_MAX_RETRIES; count++) {
358 mdelay(LINE6_READ_WRITE_STATUS_DELAY);
359
360 ret = usb_control_msg_recv(usbdev, 0, 0x67,
361 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
362 0x0012, 0x0000, &len, 1,
363 LINE6_TIMEOUT * HZ, GFP_KERNEL);
364 if (ret) {
365 dev_err(line6->ifcdev,
366 "receive length failed (error %d)\n", ret);
367 goto exit;
368 }
369
370 if (len != 0xff)
371 break;
372 }
373
374 ret = -EIO;
375 if (len == 0xff) {
376 dev_err(line6->ifcdev, "read failed after %d retries\n",
377 count);
378 goto exit;
379 } else if (len != datalen) {
380
381 dev_err(line6->ifcdev,
382 "length mismatch (expected %d, got %d)\n",
383 (int)datalen, len);
384 goto exit;
385 }
386
387
388 ret = usb_control_msg_recv(usbdev, 0, 0x67,
389 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
390 0x0013, 0x0000, data, datalen, LINE6_TIMEOUT * HZ,
391 GFP_KERNEL);
392 if (ret)
393 dev_err(line6->ifcdev, "read failed (error %d)\n", ret);
394
395exit:
396 return ret;
397}
398EXPORT_SYMBOL_GPL(line6_read_data);
399
400
401
402
403int line6_write_data(struct usb_line6 *line6, unsigned address, void *data,
404 unsigned datalen)
405{
406 struct usb_device *usbdev = line6->usbdev;
407 int ret;
408 unsigned char *status;
409 int count;
410
411 if (address > 0xffff || datalen > 0xffff)
412 return -EINVAL;
413
414 status = kmalloc(1, GFP_KERNEL);
415 if (!status)
416 return -ENOMEM;
417
418 ret = usb_control_msg_send(usbdev, 0, 0x67,
419 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
420 0x0022, address, data, datalen, LINE6_TIMEOUT * HZ,
421 GFP_KERNEL);
422 if (ret) {
423 dev_err(line6->ifcdev,
424 "write request failed (error %d)\n", ret);
425 goto exit;
426 }
427
428 for (count = 0; count < LINE6_READ_WRITE_MAX_RETRIES; count++) {
429 mdelay(LINE6_READ_WRITE_STATUS_DELAY);
430
431 ret = usb_control_msg_recv(usbdev, 0, 0x67,
432 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
433 0x0012, 0x0000, status, 1, LINE6_TIMEOUT * HZ,
434 GFP_KERNEL);
435 if (ret) {
436 dev_err(line6->ifcdev,
437 "receiving status failed (error %d)\n", ret);
438 goto exit;
439 }
440
441 if (*status != 0xff)
442 break;
443 }
444
445 if (*status == 0xff) {
446 dev_err(line6->ifcdev, "write failed after %d retries\n",
447 count);
448 ret = -EIO;
449 } else if (*status != 0) {
450 dev_err(line6->ifcdev, "write failed (error %d)\n", ret);
451 ret = -EIO;
452 }
453exit:
454 kfree(status);
455 return ret;
456}
457EXPORT_SYMBOL_GPL(line6_write_data);
458
459
460
461
462
463int line6_read_serial_number(struct usb_line6 *line6, u32 *serial_number)
464{
465 return line6_read_data(line6, 0x80d0, serial_number,
466 sizeof(*serial_number));
467}
468EXPORT_SYMBOL_GPL(line6_read_serial_number);
469
470
471
472
473static void line6_destruct(struct snd_card *card)
474{
475 struct usb_line6 *line6 = card->private_data;
476 struct usb_device *usbdev = line6->usbdev;
477
478
479
480
481 kfree(line6->buffer_message);
482
483 kfree(line6->buffer_listen);
484
485
486 usb_free_urb(line6->urb_listen);
487 line6->urb_listen = NULL;
488
489
490 usb_put_dev(usbdev);
491}
492
493static void line6_get_usb_properties(struct usb_line6 *line6)
494{
495 struct usb_device *usbdev = line6->usbdev;
496 const struct line6_properties *properties = line6->properties;
497 int pipe;
498 struct usb_host_endpoint *ep = NULL;
499
500 if (properties->capabilities & LINE6_CAP_CONTROL) {
501 if (properties->capabilities & LINE6_CAP_CONTROL_MIDI) {
502 pipe = usb_rcvintpipe(line6->usbdev,
503 line6->properties->ep_ctrl_r);
504 } else {
505 pipe = usb_rcvbulkpipe(line6->usbdev,
506 line6->properties->ep_ctrl_r);
507 }
508 ep = usbdev->ep_in[usb_pipeendpoint(pipe)];
509 }
510
511
512 if (ep) {
513 line6->interval = ep->desc.bInterval;
514 line6->max_packet_size = le16_to_cpu(ep->desc.wMaxPacketSize);
515 } else {
516 if (properties->capabilities & LINE6_CAP_CONTROL) {
517 dev_err(line6->ifcdev,
518 "endpoint not available, using fallback values");
519 }
520 line6->interval = LINE6_FALLBACK_INTERVAL;
521 line6->max_packet_size = LINE6_FALLBACK_MAXPACKETSIZE;
522 }
523
524
525 if (usbdev->speed == USB_SPEED_LOW) {
526 line6->intervals_per_second = USB_LOW_INTERVALS_PER_SECOND;
527 line6->iso_buffers = USB_LOW_ISO_BUFFERS;
528 } else {
529 line6->intervals_per_second = USB_HIGH_INTERVALS_PER_SECOND;
530 line6->iso_buffers = USB_HIGH_ISO_BUFFERS;
531 }
532}
533
534
535static int line6_hwdep_open(struct snd_hwdep *hw, struct file *file)
536{
537 struct usb_line6 *line6 = hw->private_data;
538
539
540
541 line6->messages.active = 1;
542 line6->messages.nonblock = file->f_flags & O_NONBLOCK ? 1 : 0;
543
544 return 0;
545}
546
547
548static int line6_hwdep_release(struct snd_hwdep *hw, struct file *file)
549{
550 struct usb_line6 *line6 = hw->private_data;
551
552 line6->messages.active = 0;
553
554 return 0;
555}
556
557
558static long
559line6_hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count,
560 loff_t *offset)
561{
562 struct usb_line6 *line6 = hwdep->private_data;
563 long rv = 0;
564 unsigned int out_count;
565
566 if (mutex_lock_interruptible(&line6->messages.read_lock))
567 return -ERESTARTSYS;
568
569 while (kfifo_len(&line6->messages.fifo) == 0) {
570 mutex_unlock(&line6->messages.read_lock);
571
572 if (line6->messages.nonblock)
573 return -EAGAIN;
574
575 rv = wait_event_interruptible(
576 line6->messages.wait_queue,
577 kfifo_len(&line6->messages.fifo) != 0);
578 if (rv < 0)
579 return rv;
580
581 if (mutex_lock_interruptible(&line6->messages.read_lock))
582 return -ERESTARTSYS;
583 }
584
585 if (kfifo_peek_len(&line6->messages.fifo) > count) {
586
587 rv = -EINVAL;
588 } else {
589 rv = kfifo_to_user(&line6->messages.fifo, buf, count, &out_count);
590 if (rv == 0)
591 rv = out_count;
592 }
593
594 mutex_unlock(&line6->messages.read_lock);
595 return rv;
596}
597
598
599static long
600line6_hwdep_write(struct snd_hwdep *hwdep, const char __user *data, long count,
601 loff_t *offset)
602{
603 struct usb_line6 *line6 = hwdep->private_data;
604 int rv;
605 char *data_copy;
606
607 if (count > line6->max_packet_size * LINE6_RAW_MESSAGES_MAXCOUNT) {
608
609 return -EINVAL;
610 }
611
612 data_copy = memdup_user(data, count);
613 if (IS_ERR(data_copy))
614 return PTR_ERR(data_copy);
615
616 rv = line6_send_raw_message(line6, data_copy, count);
617
618 kfree(data_copy);
619 return rv;
620}
621
622static __poll_t
623line6_hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait)
624{
625 __poll_t rv;
626 struct usb_line6 *line6 = hwdep->private_data;
627
628 poll_wait(file, &line6->messages.wait_queue, wait);
629
630 mutex_lock(&line6->messages.read_lock);
631 rv = kfifo_len(&line6->messages.fifo) == 0 ? 0 : EPOLLIN | EPOLLRDNORM;
632 mutex_unlock(&line6->messages.read_lock);
633
634 return rv;
635}
636
637static const struct snd_hwdep_ops hwdep_ops = {
638 .open = line6_hwdep_open,
639 .release = line6_hwdep_release,
640 .read = line6_hwdep_read,
641 .write = line6_hwdep_write,
642 .poll = line6_hwdep_poll,
643};
644
645
646static void line6_hwdep_push_message(struct usb_line6 *line6)
647{
648 if (!line6->messages.active)
649 return;
650
651 if (kfifo_avail(&line6->messages.fifo) >= line6->message_length) {
652
653 kfifo_in(&line6->messages.fifo,
654 line6->buffer_message, line6->message_length);
655 }
656
657 wake_up_interruptible(&line6->messages.wait_queue);
658}
659
660static int line6_hwdep_init(struct usb_line6 *line6)
661{
662 int err;
663 struct snd_hwdep *hwdep;
664
665
666 line6->process_message = line6_hwdep_push_message;
667 line6->messages.active = 0;
668 init_waitqueue_head(&line6->messages.wait_queue);
669 mutex_init(&line6->messages.read_lock);
670 INIT_KFIFO(line6->messages.fifo);
671
672 err = snd_hwdep_new(line6->card, "config", 0, &hwdep);
673 if (err < 0)
674 goto end;
675 strcpy(hwdep->name, "config");
676 hwdep->iface = SNDRV_HWDEP_IFACE_LINE6;
677 hwdep->ops = hwdep_ops;
678 hwdep->private_data = line6;
679 hwdep->exclusive = true;
680
681end:
682 return err;
683}
684
685static int line6_init_cap_control(struct usb_line6 *line6)
686{
687 int ret;
688
689
690 line6->buffer_listen = kmalloc(LINE6_BUFSIZE_LISTEN, GFP_KERNEL);
691 if (!line6->buffer_listen)
692 return -ENOMEM;
693
694 line6->urb_listen = usb_alloc_urb(0, GFP_KERNEL);
695 if (!line6->urb_listen)
696 return -ENOMEM;
697
698 if (line6->properties->capabilities & LINE6_CAP_CONTROL_MIDI) {
699 line6->buffer_message = kmalloc(LINE6_MIDI_MESSAGE_MAXLEN, GFP_KERNEL);
700 if (!line6->buffer_message)
701 return -ENOMEM;
702 } else {
703 ret = line6_hwdep_init(line6);
704 if (ret < 0)
705 return ret;
706 }
707
708 ret = line6_start_listen(line6);
709 if (ret < 0) {
710 dev_err(line6->ifcdev, "cannot start listening: %d\n", ret);
711 return ret;
712 }
713
714 return 0;
715}
716
717static void line6_startup_work(struct work_struct *work)
718{
719 struct usb_line6 *line6 =
720 container_of(work, struct usb_line6, startup_work.work);
721
722 if (line6->startup)
723 line6->startup(line6);
724}
725
726
727
728
729int line6_probe(struct usb_interface *interface,
730 const struct usb_device_id *id,
731 const char *driver_name,
732 const struct line6_properties *properties,
733 int (*private_init)(struct usb_line6 *, const struct usb_device_id *id),
734 size_t data_size)
735{
736 struct usb_device *usbdev = interface_to_usbdev(interface);
737 struct snd_card *card;
738 struct usb_line6 *line6;
739 int interface_number;
740 int ret;
741
742 if (WARN_ON(data_size < sizeof(*line6)))
743 return -EINVAL;
744
745
746 if (usbdev->descriptor.bNumConfigurations != 1)
747 return -ENODEV;
748
749 ret = snd_card_new(&interface->dev,
750 SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
751 THIS_MODULE, data_size, &card);
752 if (ret < 0)
753 return ret;
754
755
756 line6 = card->private_data;
757 line6->card = card;
758 line6->properties = properties;
759 line6->usbdev = usbdev;
760 line6->ifcdev = &interface->dev;
761 INIT_DELAYED_WORK(&line6->startup_work, line6_startup_work);
762
763 strcpy(card->id, properties->id);
764 strcpy(card->driver, driver_name);
765 strcpy(card->shortname, properties->name);
766 sprintf(card->longname, "Line 6 %s at USB %s", properties->name,
767 dev_name(line6->ifcdev));
768 card->private_free = line6_destruct;
769
770 usb_set_intfdata(interface, line6);
771
772
773 usb_get_dev(usbdev);
774
775
776 dev_info(&interface->dev, "Line 6 %s found\n", properties->name);
777
778
779 interface_number = interface->cur_altsetting->desc.bInterfaceNumber;
780
781
782 ret = usb_set_interface(usbdev, interface_number,
783 properties->altsetting);
784 if (ret < 0) {
785 dev_err(&interface->dev, "set_interface failed\n");
786 goto error;
787 }
788
789 line6_get_usb_properties(line6);
790
791 if (properties->capabilities & LINE6_CAP_CONTROL) {
792 ret = line6_init_cap_control(line6);
793 if (ret < 0)
794 goto error;
795 }
796
797
798 ret = private_init(line6, id);
799 if (ret < 0)
800 goto error;
801
802
803
804 dev_info(&interface->dev, "Line 6 %s now attached\n",
805 properties->name);
806
807 return 0;
808
809 error:
810
811
812
813 line6_disconnect(interface);
814 return ret;
815}
816EXPORT_SYMBOL_GPL(line6_probe);
817
818
819
820
821void line6_disconnect(struct usb_interface *interface)
822{
823 struct usb_line6 *line6 = usb_get_intfdata(interface);
824 struct usb_device *usbdev = interface_to_usbdev(interface);
825
826 if (!line6)
827 return;
828
829 if (WARN_ON(usbdev != line6->usbdev))
830 return;
831
832 cancel_delayed_work_sync(&line6->startup_work);
833
834 if (line6->urb_listen != NULL)
835 line6_stop_listen(line6);
836
837 snd_card_disconnect(line6->card);
838 if (line6->line6pcm)
839 line6_pcm_disconnect(line6->line6pcm);
840 if (line6->disconnect)
841 line6->disconnect(line6);
842
843 dev_info(&interface->dev, "Line 6 %s now disconnected\n",
844 line6->properties->name);
845
846
847 usb_set_intfdata(interface, NULL);
848
849 snd_card_free_when_closed(line6->card);
850}
851EXPORT_SYMBOL_GPL(line6_disconnect);
852
853#ifdef CONFIG_PM
854
855
856
857
858int line6_suspend(struct usb_interface *interface, pm_message_t message)
859{
860 struct usb_line6 *line6 = usb_get_intfdata(interface);
861 struct snd_line6_pcm *line6pcm = line6->line6pcm;
862
863 snd_power_change_state(line6->card, SNDRV_CTL_POWER_D3hot);
864
865 if (line6->properties->capabilities & LINE6_CAP_CONTROL)
866 line6_stop_listen(line6);
867
868 if (line6pcm != NULL)
869 line6pcm->flags = 0;
870
871 return 0;
872}
873EXPORT_SYMBOL_GPL(line6_suspend);
874
875
876
877
878int line6_resume(struct usb_interface *interface)
879{
880 struct usb_line6 *line6 = usb_get_intfdata(interface);
881
882 if (line6->properties->capabilities & LINE6_CAP_CONTROL)
883 line6_start_listen(line6);
884
885 snd_power_change_state(line6->card, SNDRV_CTL_POWER_D0);
886 return 0;
887}
888EXPORT_SYMBOL_GPL(line6_resume);
889
890#endif
891
892MODULE_AUTHOR(DRIVER_AUTHOR);
893MODULE_DESCRIPTION(DRIVER_DESC);
894MODULE_LICENSE("GPL");
895
896