-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathusbmidi_vusb.cpp
424 lines (374 loc) · 12.3 KB
/
usbmidi_vusb.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*
* Copyright (C) 2015-2018 UAB Vilniaus Blokas
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD license. Implementation for microcontrollers without built-in
* USB support depends on V-USB library by Objective Development,
* https://www.obdev.at/vusb/ licensed under GPLv2 license.
*
* See the LICENSE file for details.
*/
// This USBMIDI implementation is based on V-USB-MIDI project: http://cryptomys.de/horo/V-USB-MIDI/index.html
#include <avr/io.h>
#include <avr/pgmspace.h>
#ifndef USBCON
#include "usbdrv.h"
#include "fifo.h"
#include "midi_serialization.h"
#include "usbmidi.h"
#include <Arduino.h>
#if defined USB_COUNT_SOF && USB_COUNT_SOF != 0
#define USBMIDI_ENABLE_SUSPEND_RESUME
#endif
#ifdef USBMIDI_ENABLE_SUSPEND_RESUME
static void (*g_suspendResumeCallback)(bool suspended) = NULL;
#endif
// USB device descriptor
static const PROGMEM unsigned char deviceDescrMIDI[] =
{
18, // sizeof(usbDescriptorDevice): length of descriptor in bytes
USBDESCR_DEVICE, // descriptor type
0x10, 0x01, // USB version supported
0, // device class: defined at interface level
0, // subclass
0, // protocol
8, // max packet size
USB_CFG_VENDOR_ID, // 2 bytes
USB_CFG_DEVICE_ID, // 2 bytes
USB_CFG_DEVICE_VERSION, // 2 bytes
1, // manufacturer string index
2, // product string index
0, // serial number string index
1, // number of configurations
};
// B.2 Configuration Descriptor
// USB configuration descriptor
static const PROGMEM unsigned char configDescrMIDI[] =
{
9, // sizeof(usbDescrConfig): length of descriptor in bytes
USBDESCR_CONFIG, // descriptor type
101, 0, // total length of data returned (including inlined descriptors)
2, // number of interfaces in this configuration
1, // index of this configuration
0, // configuration name string index
#if USB_CFG_IS_SELF_POWERED
USBATTR_SELFPOWER, // attributes
#else
USBATTR_BUSPOWER, // attributes
#endif
USB_CFG_MAX_BUS_POWER / 2, // max USB current in 2mA units
// B.3 AudioControl Interface Descriptors
// The AudioControl interface describes the device structure (audio function topology)
// and is used to manipulate the Audio Controls. This device has no audio function
// incorporated. However, the AudioControl interface is mandatory and therefore both
// the standard AC interface descriptor and the classspecific AC interface descriptor
// must be present. The class-specific AC interface descriptor only contains the header
// descriptor.
// B.3.1 Standard AC Interface Descriptor
// The AudioControl interface has no dedicated endpoints associated with it. It uses the
// default pipe (endpoint 0) for all communication purposes. Class-specific AudioControl
// Requests are sent using the default pipe. There is no Status Interrupt endpoint provided.
// AC interface descriptor follows inline:
9, // sizeof(usbDescrInterface): length of descriptor in bytes
USBDESCR_INTERFACE, // descriptor type
0, // index of this interface
0, // alternate setting for this interface
0, // endpoints excl 0: number of endpoint descriptors to follow
1, //
1, //
0, //
0, // string index for interface
// B.3.2 Class-specific AC Interface Descriptor
// The Class-specific AC interface descriptor is always headed by a Header descriptor
// that contains general information about the AudioControl interface. It contains all
// the pointers needed to describe the Audio Interface Collection, associated with the
// described audio function. Only the Header descriptor is present in this device
// because it does not contain any audio functionality as such.
// AC Class-Specific descriptor
9, // sizeof(usbDescrCDC_HeaderFn): length of descriptor in bytes
36, // descriptor type
1, // header functional descriptor
0x0, 0x01, // bcdADC
9, 0, // wTotalLength
1, //
1, //
// B.4 MIDIStreaming Interface Descriptors
// B.4.1 Standard MS Interface Descriptor
// interface descriptor follows inline:
9, // length of descriptor in bytes
USBDESCR_INTERFACE, // descriptor type
1, // index of this interface
0, // alternate setting for this interface
2, // endpoints excl 0: number of endpoint descriptors to follow
1, // AUDIO
3, // MS
0, // unused
0, // string index for interface
// B.4.2 Class-specific MS Interface Descriptor
// MS Class-Specific descriptor
7, // length of descriptor in bytes
36, // descriptor type
1, // header functional descriptor
0x0, 0x01, // bcdADC
65, 0, // wTotalLength
// B.4.3 MIDI IN Jack Descriptor
6, // bLength
36, // descriptor type
2, // MIDI_IN_JACK desc subtype
1, // EMBEDDED bJackType
1, // bJackID
0, // iJack
6, // bLength
36, // descriptor type
2, // MIDI_IN_JACK desc subtype
2, // EXTERNAL bJackType
2, // bJackID
0, // iJack
//B.4.4 MIDI OUT Jack Descriptor
9, // length of descriptor in bytes
36, // descriptor type
3, // MIDI_OUT_JACK descriptor
1, // EMBEDDED bJackType
3, // bJackID
1, // No of input pins
2, // BaSourceID
1, // BaSourcePin
0, // iJack
9, // bLength of descriptor in bytes
36, // bDescriptorType
3, // MIDI_OUT_JACK bDescriptorSubtype
2, // EXTERNAL bJackType
4, // bJackID
1, // bNrInputPins
1, // baSourceID (0)
1, // baSourcePin (0)
0, // iJack
// B.5 Bulk OUT Endpoint Descriptors
//B.5.1 Standard Bulk OUT Endpoint Descriptor
9, // bLength
USBDESCR_ENDPOINT, // bDescriptorType = endpoint
0x1, // bEndpointAddress OUT endpoint number 1
3, // bmAttributes: 2:Bulk, 3:Interrupt endpoint
8, 0, // wMaxPacketSize
10, // bInterval in ms
0, // bRefresh
0, // bSyncAddress
// B.5.2 Class-specific MS Bulk OUT Endpoint Descriptor
5, // bLength of descriptor in bytes
37, // bDescriptorType
1, // bDescriptorSubtype
1, // bNumEmbMIDIJack
1, // baAssocJackID (0)
//B.6 Bulk IN Endpoint Descriptors
//B.6.1 Standard Bulk IN Endpoint Descriptor
9, // bLength
USBDESCR_ENDPOINT, // bDescriptorType = endpoint
0x81, // bEndpointAddress IN endpoint number 1
3, // bmAttributes: 2: Bulk, 3: Interrupt endpoint
8, 0, // wMaxPacketSize
10, // bIntervall in ms
0, // bRefresh
0, // bSyncAddress
// B.6.2 Class-specific MS Bulk IN Endpoint Descriptor
5, // bLength of descriptor in bytes
37, // bDescriptorType
1, // bDescriptorSubtype
1, // bNumEmbMIDIJack (0)
3, // baAssocJackID (0)
};
static TFifo<uint8_t, uint8_t, 64> g_midiInput;
static TFifo<uint8_t, uint8_t, 64> g_midiOutput;
static MidiToUsb g_serializer(0);
__attribute__((weak)) USBMIDI_DEFINE_VENDOR_NAME(USB_CFG_VENDOR_NAME);
__attribute__((weak)) USBMIDI_DEFINE_PRODUCT_NAME(USB_CFG_DEVICE_NAME);
usbMsgLen_t usbFunctionDescriptor(usbRequest_t * rq)
{
if (rq->wValue.bytes[1] == USBDESCR_DEVICE)
{
usbMsgPtr = (usbMsgPtr_t)deviceDescrMIDI;
return sizeof(deviceDescrMIDI);
}
else if (rq->wValue.bytes[1] == USBDESCR_CONFIG)
{
usbMsgPtr = (usbMsgPtr_t)configDescrMIDI;
return sizeof(configDescrMIDI);
}
else if (rq->wValue.bytes[1] == USBDESCR_STRING)
{
if (rq->wValue.bytes[0] == 1)
{
const uint8_t *data;
usbMsgLen_t n = _usbmidi_get_vendor_string(data);
usbMsgPtr = (usbMsgPtr_t)data;
return n;
}
else if (rq->wValue.bytes[0] == 2)
{
const uint8_t *data;
usbMsgLen_t n = _usbmidi_get_product_string(data);
usbMsgPtr = (usbMsgPtr_t)data;
return n;
}
}
return 0;
}
uint8_t usbFunctionSetup(uint8_t data[8])
{
return 0;
}
// Called when receiving MIDI message from PC.
void usbFunctionWriteOut(uint8_t * data, uint8_t len)
{
uint8_t m[3];
for (uint8_t i=0; i<len; i+=4)
{
midi_event_t event;
event.m_event = data[i+0];
event.m_data[0] = data[i+1];
event.m_data[1] = data[i+2];
event.m_data[2] = data[i+3];
uint8_t n = UsbToMidi::process(event, m);
for (uint8_t j=0; j<n; ++j)
{
g_midiInput.push(m[j]);
}
}
}
static void midiUsbInit(void)
{
// Activate pull-ups except on USB lines.
USB_CFG_IOPORT = (uint8_t)~((1 << USB_CFG_DMINUS_BIT) | (1 << USB_CFG_DPLUS_BIT));
// All pins input except USB (-> USB reset).
#ifdef USB_CFG_PULLUP_IOPORT // Use usbDeviceConnect()/usbDeviceDisconnect() if available.
USBDDR = 0; // We do RESET by deactivating pullup.
usbDeviceDisconnect();
#else
USBDDR = (1 << USB_CFG_DMINUS_BIT) | (1 << USB_CFG_DPLUS_BIT);
#endif
// USB Reset by device only required on Watchdog Reset.
volatile uint8_t j = 0;
while (--j) { /* USB Reset by device only required on Watchdog Reset */
volatile uint8_t i = 0;
while (--i); /* delay >10ms for USB reset */
}
#ifdef USB_CFG_PULLUP_IOPORT
usbDeviceConnect();
#else
USBDDR = 0; // Remove USB reset condition.
#endif
usbInit();
}
USBMIDI_ USBMIDI;
USBMIDI_::USBMIDI_()
{
midiUsbInit();
}
int USBMIDI_::available()
{
return g_midiInput.size();
}
int USBMIDI_::read()
{
uint8_t byte;
if (g_midiInput.pop(byte))
{
return byte;
}
else return -1;
}
int USBMIDI_::peek()
{
uint8_t byte;
if (g_midiInput.peek(byte))
{
return byte;
}
else return -1;
}
void USBMIDI_::flush()
{
while (!g_midiOutput.empty())
{
poll();
}
}
size_t USBMIDI_::write(uint8_t c)
{
if (g_midiOutput.full())
flush();
g_midiOutput.push(c);
return sizeof(c);
}
static uint8_t fillBuffer(uint8_t buffer[8])
{
midi_event_t ev;
uint8_t byte;
uint8_t n=0;
for (uint8_t i=0; !g_midiOutput.empty() && i<2; ++i)
{
while (g_midiOutput.pop(byte))
{
if (g_serializer.process(byte, ev))
{
memcpy(&buffer[i * sizeof(ev)], &ev, sizeof(ev));
++n;
break;
}
}
}
return n * sizeof(ev);
}
void USBMIDI_::setSuspendResumeCallback(void (*callback)(bool suspended))
{
#ifdef USBMIDI_ENABLE_SUSPEND_RESUME
g_suspendResumeCallback = callback;
#else
(void)callback;
#endif
}
void USBMIDI_::poll()
{
#ifdef USBMIDI_ENABLE_SUSPEND_RESUME
static uint8_t lastSofCount = usbSofCount;
static unsigned long lastUpdate = millis();
static bool lastSuspended = false;
uint8_t sofCount = usbSofCount;
unsigned long now = millis();
if (sofCount != lastSofCount)
{
lastSofCount = sofCount;
lastUpdate = now;
if (lastSuspended)
{
if (g_suspendResumeCallback != NULL)
g_suspendResumeCallback(false);
lastSuspended = false;
}
}
else
{
if (!lastSuspended)
{
if (now - lastUpdate >= 15) // USB suspend detected.
{
if (g_suspendResumeCallback != NULL)
g_suspendResumeCallback(true);
cli();
usbInit();
sei();
lastSuspended = true;
}
}
}
#endif
if (!g_midiOutput.empty() && usbInterruptIsReady())
{
uint8_t buffer[8];
uint8_t n = fillBuffer(buffer);
if (n)
usbSetInterrupt(buffer, n);
}
usbPoll();
}
#endif // USBCON