1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Line 6 Linux USB driver
5 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
11 #include <linux/usb.h>
12 #include <linux/mutex.h>
13 #include <linux/kfifo.h>
14 #include <sound/core.h>
18 /* USB 1.1 speed configuration */
19 #define USB_LOW_INTERVALS_PER_SECOND 1000
20 #define USB_LOW_ISO_BUFFERS 2
22 /* USB 2.0+ speed configuration */
23 #define USB_HIGH_INTERVALS_PER_SECOND 8000
24 #define USB_HIGH_ISO_BUFFERS 16
26 /* Fallback USB interval and max packet size values */
27 #define LINE6_FALLBACK_INTERVAL 10
28 #define LINE6_FALLBACK_MAXPACKETSIZE 16
30 #define LINE6_TIMEOUT 1
31 #define LINE6_BUFSIZE_LISTEN 64
32 #define LINE6_MIDI_MESSAGE_MAXLEN 256
34 #define LINE6_RAW_MESSAGES_MAXCOUNT_ORDER 7
35 /* 4k packets are common, BUFSIZE * MAXCOUNT should be bigger... */
36 #define LINE6_RAW_MESSAGES_MAXCOUNT (1 << LINE6_RAW_MESSAGES_MAXCOUNT_ORDER)
39 #if LINE6_BUFSIZE_LISTEN > 65535
40 #error "Use dynamic fifo instead"
44 Line 6 MIDI control commands
46 #define LINE6_PARAM_CHANGE 0xb0
47 #define LINE6_PROGRAM_CHANGE 0xc0
48 #define LINE6_SYSEX_BEGIN 0xf0
49 #define LINE6_SYSEX_END 0xf7
50 #define LINE6_RESET 0xff
53 MIDI channel for messages initiated by the host
54 (and eventually echoed back by the device)
56 #define LINE6_CHANNEL_HOST 0x00
59 MIDI channel for messages initiated by the device
61 #define LINE6_CHANNEL_DEVICE 0x02
63 #define LINE6_CHANNEL_UNKNOWN 5 /* don't know yet what this is good for */
65 #define LINE6_CHANNEL_MASK 0x0f
67 extern const unsigned char line6_midi_id
[3];
69 static const int SYSEX_DATA_OFS
= sizeof(line6_midi_id
) + 3;
70 static const int SYSEX_EXTRA_SIZE
= sizeof(line6_midi_id
) + 4;
73 Common properties of Line 6 devices.
75 struct line6_properties
{
76 /* Card id string (maximum 16 characters).
77 * This can be used to address the device in ALSA programs as
82 /* Card short name (maximum 32 characters) */
85 /* Bit vector defining this device's capabilities in line6usb driver */
91 unsigned int ep_ctrl_r
;
92 unsigned int ep_ctrl_w
;
93 unsigned int ep_audio_r
;
94 unsigned int ep_audio_w
;
99 /* device supports settings parameter via USB */
100 LINE6_CAP_CONTROL
= 1 << 0,
101 /* device supports PCM input/output via USB */
102 LINE6_CAP_PCM
= 1 << 1,
103 /* device supports hardware monitoring */
104 LINE6_CAP_HWMON
= 1 << 2,
105 /* device requires output data when input is read */
106 LINE6_CAP_IN_NEEDS_OUT
= 1 << 3,
107 /* device uses raw MIDI via USB (data endpoints) */
108 LINE6_CAP_CONTROL_MIDI
= 1 << 4,
109 /* device provides low-level information */
110 LINE6_CAP_CONTROL_INFO
= 1 << 5,
114 Common data shared by all Line 6 devices.
115 Corresponds to a pair of USB endpoints.
119 struct usb_device
*usbdev
;
122 const struct line6_properties
*properties
;
124 /* Interval for data USB packets */
126 /* ...for isochronous transfers framing */
127 int intervals_per_second
;
129 /* Number of isochronous URBs used for frame transfers */
132 /* Maximum size of data USB packet */
135 /* Device representing the USB interface */
136 struct device
*ifcdev
;
138 /* Line 6 sound card data structure.
139 * Each device has at least MIDI or PCM.
141 struct snd_card
*card
;
143 /* Line 6 PCM device data structure */
144 struct snd_line6_pcm
*line6pcm
;
146 /* Line 6 MIDI device data structure */
147 struct snd_line6_midi
*line6midi
;
149 /* URB for listening to POD data endpoint */
150 struct urb
*urb_listen
;
152 /* Buffer for incoming data from POD data endpoint */
153 unsigned char *buffer_listen
;
155 /* Buffer for message to be processed, generated from MIDI layer */
156 unsigned char *buffer_message
;
158 /* Length of message to be processed, generated from MIDI layer */
161 /* Circular buffer for non-MIDI control messages */
163 struct mutex read_lock
;
164 wait_queue_head_t wait_queue
;
165 unsigned int active
:1;
166 STRUCT_KFIFO_REC_2(LINE6_BUFSIZE_LISTEN
* LINE6_RAW_MESSAGES_MAXCOUNT
)
170 /* Work for delayed PCM startup */
171 struct delayed_work startup_work
;
173 /* If MIDI is supported, buffer_message contains the pre-processed data;
174 * otherwise the data is only in urb_listen (buffer_incoming).
176 void (*process_message
)(struct usb_line6
*);
177 void (*disconnect
)(struct usb_line6
*line6
);
178 void (*startup
)(struct usb_line6
*line6
);
181 extern char *line6_alloc_sysex_buffer(struct usb_line6
*line6
, int code1
,
182 int code2
, int size
);
183 extern int line6_read_data(struct usb_line6
*line6
, unsigned address
,
184 void *data
, unsigned datalen
);
185 extern int line6_read_serial_number(struct usb_line6
*line6
,
187 extern int line6_send_raw_message_async(struct usb_line6
*line6
,
188 const char *buffer
, int size
);
189 extern int line6_send_sysex_message(struct usb_line6
*line6
,
190 const char *buffer
, int size
);
191 extern ssize_t
line6_set_raw(struct device
*dev
, struct device_attribute
*attr
,
192 const char *buf
, size_t count
);
193 extern int line6_version_request_async(struct usb_line6
*line6
);
194 extern int line6_write_data(struct usb_line6
*line6
, unsigned address
,
195 void *data
, unsigned datalen
);
197 int line6_probe(struct usb_interface
*interface
,
198 const struct usb_device_id
*id
,
199 const char *driver_name
,
200 const struct line6_properties
*properties
,
201 int (*private_init
)(struct usb_line6
*, const struct usb_device_id
*id
),
204 void line6_disconnect(struct usb_interface
*interface
);
207 int line6_suspend(struct usb_interface
*interface
, pm_message_t message
);
208 int line6_resume(struct usb_interface
*interface
);