2 * Line6 Linux USB driver - 0.9.1beta
4 * Copyright (C) 2004-2010 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.
12 #include <linux/slab.h>
18 #define VARIAX_OFFSET_ACTIVATE 7
21 This message is sent by the device during initialization and identifies
22 the connected guitar version.
24 static const char variax_init_version
[] = {
25 0xf0, 0x7e, 0x7f, 0x06, 0x02, 0x00, 0x01, 0x0c,
26 0x07, 0x00, 0x00, 0x00
30 This message is the last one sent by the device during initialization.
32 static const char variax_init_done
[] = {
33 0xf0, 0x00, 0x01, 0x0c, 0x07, 0x00, 0x6b
36 static const char variax_activate
[] = {
37 0xf0, 0x00, 0x01, 0x0c, 0x07, 0x00, 0x2a, 0x01,
41 /* forward declarations: */
42 static void variax_startup2(unsigned long data
);
43 static void variax_startup4(unsigned long data
);
44 static void variax_startup5(unsigned long data
);
46 static void variax_activate_async(struct usb_line6_variax
*variax
, int a
)
48 variax
->buffer_activate
[VARIAX_OFFSET_ACTIVATE
] = a
;
49 line6_send_raw_message_async(&variax
->line6
, variax
->buffer_activate
,
50 sizeof(variax_activate
));
54 Variax startup procedure.
55 This is a sequence of functions with special requirements (e.g., must
56 not run immediately after initialization, must not run in interrupt
57 context). After the last one has finished, the device is ready to use.
60 static void variax_startup1(struct usb_line6_variax
*variax
)
62 CHECK_STARTUP_PROGRESS(variax
->startup_progress
, VARIAX_STARTUP_INIT
);
64 /* delay startup procedure: */
65 line6_start_timer(&variax
->startup_timer1
, VARIAX_STARTUP_DELAY1
,
66 variax_startup2
, (unsigned long)variax
);
69 static void variax_startup2(unsigned long data
)
71 struct usb_line6_variax
*variax
= (struct usb_line6_variax
*)data
;
72 struct usb_line6
*line6
= &variax
->line6
;
74 /* schedule another startup procedure until startup is complete: */
75 if (variax
->startup_progress
>= VARIAX_STARTUP_LAST
)
78 variax
->startup_progress
= VARIAX_STARTUP_VERSIONREQ
;
79 line6_start_timer(&variax
->startup_timer1
, VARIAX_STARTUP_DELAY1
,
80 variax_startup2
, (unsigned long)variax
);
82 /* request firmware version: */
83 line6_version_request_async(line6
);
86 static void variax_startup3(struct usb_line6_variax
*variax
)
88 CHECK_STARTUP_PROGRESS(variax
->startup_progress
, VARIAX_STARTUP_WAIT
);
90 /* delay startup procedure: */
91 line6_start_timer(&variax
->startup_timer2
, VARIAX_STARTUP_DELAY3
,
92 variax_startup4
, (unsigned long)variax
);
95 static void variax_startup4(unsigned long data
)
97 struct usb_line6_variax
*variax
= (struct usb_line6_variax
*)data
;
98 CHECK_STARTUP_PROGRESS(variax
->startup_progress
,
99 VARIAX_STARTUP_ACTIVATE
);
101 /* activate device: */
102 variax_activate_async(variax
, 1);
103 line6_start_timer(&variax
->startup_timer2
, VARIAX_STARTUP_DELAY4
,
104 variax_startup5
, (unsigned long)variax
);
107 static void variax_startup5(unsigned long data
)
109 struct usb_line6_variax
*variax
= (struct usb_line6_variax
*)data
;
110 CHECK_STARTUP_PROGRESS(variax
->startup_progress
,
111 VARIAX_STARTUP_WORKQUEUE
);
113 /* schedule work for global work queue: */
114 schedule_work(&variax
->startup_work
);
117 static void variax_startup6(struct work_struct
*work
)
119 struct usb_line6_variax
*variax
=
120 container_of(work
, struct usb_line6_variax
, startup_work
);
122 CHECK_STARTUP_PROGRESS(variax
->startup_progress
, VARIAX_STARTUP_SETUP
);
124 /* ALSA audio interface: */
125 line6_register_audio(&variax
->line6
);
129 Process a completely received message.
131 void line6_variax_process_message(struct usb_line6_variax
*variax
)
133 const unsigned char *buf
= variax
->line6
.buffer_message
;
137 dev_info(variax
->line6
.ifcdev
, "VARIAX reset\n");
140 case LINE6_SYSEX_BEGIN
:
141 if (memcmp(buf
+ 1, variax_init_version
+ 1,
142 sizeof(variax_init_version
) - 1) == 0) {
143 variax_startup3(variax
);
144 } else if (memcmp(buf
+ 1, variax_init_done
+ 1,
145 sizeof(variax_init_done
) - 1) == 0) {
146 /* notify of complete initialization: */
147 variax_startup4((unsigned long)variax
);
156 static void variax_destruct(struct usb_interface
*interface
)
158 struct usb_line6_variax
*variax
= usb_get_intfdata(interface
);
162 line6_cleanup_audio(&variax
->line6
);
164 del_timer(&variax
->startup_timer1
);
165 del_timer(&variax
->startup_timer2
);
166 cancel_work_sync(&variax
->startup_work
);
168 kfree(variax
->buffer_activate
);
172 Try to init workbench device.
174 static int variax_try_init(struct usb_interface
*interface
,
175 struct usb_line6_variax
*variax
)
179 init_timer(&variax
->startup_timer1
);
180 init_timer(&variax
->startup_timer2
);
181 INIT_WORK(&variax
->startup_work
, variax_startup6
);
183 if ((interface
== NULL
) || (variax
== NULL
))
186 /* initialize USB buffers: */
187 variax
->buffer_activate
= kmemdup(variax_activate
,
188 sizeof(variax_activate
), GFP_KERNEL
);
190 if (variax
->buffer_activate
== NULL
) {
191 dev_err(&interface
->dev
, "Out of memory\n");
195 /* initialize audio system: */
196 err
= line6_init_audio(&variax
->line6
);
200 /* initialize MIDI subsystem: */
201 err
= line6_init_midi(&variax
->line6
);
205 /* initiate startup procedure: */
206 variax_startup1(variax
);
211 Init workbench device (and clean up in case of failure).
213 int line6_variax_init(struct usb_interface
*interface
,
214 struct usb_line6_variax
*variax
)
216 int err
= variax_try_init(interface
, variax
);
219 variax_destruct(interface
);
225 Workbench device disconnected.
227 void line6_variax_disconnect(struct usb_interface
*interface
)
229 if (interface
== NULL
)
232 variax_destruct(interface
);