2 * Line6 Linux USB driver - 0.9.1beta
4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
5 * Emil Myhrman (emil.myhrman@gmail.com)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation, version 2.
13 #include <linux/wait.h>
14 #include <sound/control.h>
22 static int toneport_send_cmd(struct usb_device
*usbdev
, int cmd1
, int cmd2
);
24 #define TONEPORT_PCM_DELAY 1
26 static struct snd_ratden toneport_ratden
= {
33 static struct line6_pcm_properties toneport_pcm_properties
= {
34 .snd_line6_playback_hw
= {
35 .info
= (SNDRV_PCM_INFO_MMAP
|
36 SNDRV_PCM_INFO_INTERLEAVED
|
37 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
38 SNDRV_PCM_INFO_MMAP_VALID
|
39 SNDRV_PCM_INFO_PAUSE
|
41 SNDRV_PCM_INFO_RESUME
|
43 SNDRV_PCM_INFO_SYNC_START
),
44 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
45 .rates
= SNDRV_PCM_RATE_KNOT
,
50 .buffer_bytes_max
= 60000,
51 .period_bytes_min
= 64,
52 .period_bytes_max
= 8192,
55 .snd_line6_capture_hw
= {
56 .info
= (SNDRV_PCM_INFO_MMAP
|
57 SNDRV_PCM_INFO_INTERLEAVED
|
58 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
59 SNDRV_PCM_INFO_MMAP_VALID
|
61 SNDRV_PCM_INFO_RESUME
|
63 SNDRV_PCM_INFO_SYNC_START
),
64 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
65 .rates
= SNDRV_PCM_RATE_KNOT
,
70 .buffer_bytes_max
= 60000,
71 .period_bytes_min
= 64,
72 .period_bytes_max
= 8192,
77 .rats
= &toneport_ratden
},
82 For the led on Guitarport.
83 Brightness goes from 0x00 to 0x26. Set a value above this to have led
85 (void cmd_0x02(byte red, byte green)
87 static int led_red
= 0x00;
88 static int led_green
= 0x26;
90 struct ToneportSourceInfo
{
95 static const struct ToneportSourceInfo toneport_source_info
[] = {
96 {"Microphone", 0x0a01},
98 {"Instrument", 0x0b01},
99 {"Inst & Mic", 0x0901}
102 static bool toneport_has_led(short product
)
105 (product
== LINE6_DEVID_GUITARPORT
) ||
106 (product
== LINE6_DEVID_TONEPORT_GX
);
107 /* add your device here if you are missing support for the LEDs */
110 static void toneport_update_led(struct device
*dev
)
112 struct usb_interface
*interface
= to_usb_interface(dev
);
113 struct usb_line6_toneport
*tp
= usb_get_intfdata(interface
);
114 struct usb_line6
*line6
;
121 toneport_send_cmd(line6
->usbdev
, (led_red
<< 8) | 0x0002,
125 static ssize_t
toneport_set_led_red(struct device
*dev
,
126 struct device_attribute
*attr
,
127 const char *buf
, size_t count
)
132 retval
= strict_strtol(buf
, 10, &value
);
137 toneport_update_led(dev
);
141 static ssize_t
toneport_set_led_green(struct device
*dev
,
142 struct device_attribute
*attr
,
143 const char *buf
, size_t count
)
148 retval
= strict_strtol(buf
, 10, &value
);
153 toneport_update_led(dev
);
157 static DEVICE_ATTR(led_red
, S_IWUSR
| S_IRUGO
, line6_nop_read
,
158 toneport_set_led_red
);
159 static DEVICE_ATTR(led_green
, S_IWUSR
| S_IRUGO
, line6_nop_read
,
160 toneport_set_led_green
);
162 static int toneport_send_cmd(struct usb_device
*usbdev
, int cmd1
, int cmd2
)
166 ret
= usb_control_msg(usbdev
, usb_sndctrlpipe(usbdev
, 0), 0x67,
167 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
,
168 cmd1
, cmd2
, NULL
, 0, LINE6_TIMEOUT
* HZ
);
171 err("send failed (error %d)\n", ret
);
178 /* monitor info callback */
179 static int snd_toneport_monitor_info(struct snd_kcontrol
*kcontrol
,
180 struct snd_ctl_elem_info
*uinfo
)
182 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
184 uinfo
->value
.integer
.min
= 0;
185 uinfo
->value
.integer
.max
= 256;
189 /* monitor get callback */
190 static int snd_toneport_monitor_get(struct snd_kcontrol
*kcontrol
,
191 struct snd_ctl_elem_value
*ucontrol
)
193 struct snd_line6_pcm
*line6pcm
= snd_kcontrol_chip(kcontrol
);
194 ucontrol
->value
.integer
.value
[0] = line6pcm
->volume_monitor
;
198 /* monitor put callback */
199 static int snd_toneport_monitor_put(struct snd_kcontrol
*kcontrol
,
200 struct snd_ctl_elem_value
*ucontrol
)
202 struct snd_line6_pcm
*line6pcm
= snd_kcontrol_chip(kcontrol
);
204 if (ucontrol
->value
.integer
.value
[0] == line6pcm
->volume_monitor
)
207 line6pcm
->volume_monitor
= ucontrol
->value
.integer
.value
[0];
209 if (line6pcm
->volume_monitor
> 0)
210 line6_pcm_start(line6pcm
, MASK_PCM_MONITOR
);
212 line6_pcm_stop(line6pcm
, MASK_PCM_MONITOR
);
217 /* source info callback */
218 static int snd_toneport_source_info(struct snd_kcontrol
*kcontrol
,
219 struct snd_ctl_elem_info
*uinfo
)
221 const int size
= ARRAY_SIZE(toneport_source_info
);
222 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
224 uinfo
->value
.enumerated
.items
= size
;
226 if (uinfo
->value
.enumerated
.item
>= size
)
227 uinfo
->value
.enumerated
.item
= size
- 1;
229 strcpy(uinfo
->value
.enumerated
.name
,
230 toneport_source_info
[uinfo
->value
.enumerated
.item
].name
);
235 /* source get callback */
236 static int snd_toneport_source_get(struct snd_kcontrol
*kcontrol
,
237 struct snd_ctl_elem_value
*ucontrol
)
239 struct snd_line6_pcm
*line6pcm
= snd_kcontrol_chip(kcontrol
);
240 struct usb_line6_toneport
*toneport
=
241 (struct usb_line6_toneport
*)line6pcm
->line6
;
242 ucontrol
->value
.enumerated
.item
[0] = toneport
->source
;
246 /* source put callback */
247 static int snd_toneport_source_put(struct snd_kcontrol
*kcontrol
,
248 struct snd_ctl_elem_value
*ucontrol
)
250 struct snd_line6_pcm
*line6pcm
= snd_kcontrol_chip(kcontrol
);
251 struct usb_line6_toneport
*toneport
=
252 (struct usb_line6_toneport
*)line6pcm
->line6
;
254 if (ucontrol
->value
.enumerated
.item
[0] == toneport
->source
)
257 toneport
->source
= ucontrol
->value
.enumerated
.item
[0];
258 toneport_send_cmd(toneport
->line6
.usbdev
,
259 toneport_source_info
[toneport
->source
].code
, 0x0000);
263 static void toneport_start_pcm(unsigned long arg
)
265 struct usb_line6_toneport
*toneport
= (struct usb_line6_toneport
*)arg
;
266 struct usb_line6
*line6
= &toneport
->line6
;
267 line6_pcm_start(line6
->line6pcm
, MASK_PCM_MONITOR
);
270 /* control definition */
271 static struct snd_kcontrol_new toneport_control_monitor
= {
272 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
273 .name
= "Monitor Playback Volume",
275 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
276 .info
= snd_toneport_monitor_info
,
277 .get
= snd_toneport_monitor_get
,
278 .put
= snd_toneport_monitor_put
281 /* source selector definition */
282 static struct snd_kcontrol_new toneport_control_source
= {
283 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
284 .name
= "PCM Capture Source",
286 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
287 .info
= snd_toneport_source_info
,
288 .get
= snd_toneport_source_get
,
289 .put
= snd_toneport_source_put
295 static void toneport_destruct(struct usb_interface
*interface
)
297 struct usb_line6_toneport
*toneport
= usb_get_intfdata(interface
);
298 struct usb_line6
*line6
;
300 if (toneport
== NULL
)
302 line6
= &toneport
->line6
;
305 line6_cleanup_audio(line6
);
309 Setup Toneport device.
311 static void toneport_setup(struct usb_line6_toneport
*toneport
)
314 struct usb_line6
*line6
= &toneport
->line6
;
315 struct usb_device
*usbdev
= line6
->usbdev
;
317 /* sync time on device with host: */
318 ticks
= (int)get_seconds();
319 line6_write_data(line6
, 0x80c6, &ticks
, 4);
322 toneport_send_cmd(usbdev
, 0x0301, 0x0000);
324 /* initialize source select: */
325 switch (usbdev
->descriptor
.idProduct
) {
326 case LINE6_DEVID_TONEPORT_UX1
:
327 case LINE6_DEVID_PODSTUDIO_UX1
:
328 toneport_send_cmd(usbdev
,
329 toneport_source_info
[toneport
->source
].code
,
333 if (toneport_has_led(usbdev
->descriptor
.idProduct
))
334 toneport_update_led(&usbdev
->dev
);
338 Try to init Toneport device.
340 static int toneport_try_init(struct usb_interface
*interface
,
341 struct usb_line6_toneport
*toneport
)
344 struct usb_line6
*line6
= &toneport
->line6
;
345 struct usb_device
*usbdev
= line6
->usbdev
;
347 if ((interface
== NULL
) || (toneport
== NULL
))
350 /* initialize audio system: */
351 err
= line6_init_audio(line6
);
355 /* initialize PCM subsystem: */
356 err
= line6_init_pcm(line6
, &toneport_pcm_properties
);
360 /* register monitor control: */
361 err
= snd_ctl_add(line6
->card
,
362 snd_ctl_new1(&toneport_control_monitor
,
367 /* register source select control: */
368 switch (usbdev
->descriptor
.idProduct
) {
369 case LINE6_DEVID_TONEPORT_UX1
:
370 case LINE6_DEVID_PODSTUDIO_UX1
:
372 snd_ctl_add(line6
->card
,
373 snd_ctl_new1(&toneport_control_source
,
379 /* register audio system: */
380 err
= line6_register_audio(line6
);
384 line6_read_serial_number(line6
, &toneport
->serial_number
);
385 line6_read_data(line6
, 0x80c2, &toneport
->firmware_version
, 1);
387 if (toneport_has_led(usbdev
->descriptor
.idProduct
)) {
388 CHECK_RETURN(device_create_file
389 (&interface
->dev
, &dev_attr_led_red
));
390 CHECK_RETURN(device_create_file
391 (&interface
->dev
, &dev_attr_led_green
));
394 toneport_setup(toneport
);
396 init_timer(&toneport
->timer
);
397 toneport
->timer
.expires
= jiffies
+ TONEPORT_PCM_DELAY
* HZ
;
398 toneport
->timer
.function
= toneport_start_pcm
;
399 toneport
->timer
.data
= (unsigned long)toneport
;
400 add_timer(&toneport
->timer
);
406 Init Toneport device (and clean up in case of failure).
408 int line6_toneport_init(struct usb_interface
*interface
,
409 struct usb_line6_toneport
*toneport
)
411 int err
= toneport_try_init(interface
, toneport
);
414 toneport_destruct(interface
);
420 Resume Toneport device after reset.
422 void line6_toneport_reset_resume(struct usb_line6_toneport
*toneport
)
424 toneport_setup(toneport
);
428 Toneport device disconnected.
430 void line6_toneport_disconnect(struct usb_interface
*interface
)
432 struct usb_line6_toneport
*toneport
;
434 if (interface
== NULL
)
437 toneport
= usb_get_intfdata(interface
);
438 del_timer_sync(&toneport
->timer
);
440 if (toneport_has_led(toneport
->line6
.usbdev
->descriptor
.idProduct
)) {
441 device_remove_file(&interface
->dev
, &dev_attr_led_red
);
442 device_remove_file(&interface
->dev
, &dev_attr_led_green
);
445 if (toneport
!= NULL
) {
446 struct snd_line6_pcm
*line6pcm
= toneport
->line6
.line6pcm
;
448 if (line6pcm
!= NULL
) {
449 line6_pcm_stop(line6pcm
, MASK_PCM_MONITOR
);
450 line6_pcm_disconnect(line6pcm
);
454 toneport_destruct(interface
);