blob: 36a610ba342ec190b7b44c4a842fe93251380241 [file] [log] [blame]
Markus Grabner705ecec2009-02-27 19:43:04 -08001/*
Chris Rorvickc078a4a2015-01-20 02:20:50 -06002 * Line 6 Linux USB driver
Markus Grabner705ecec2009-02-27 19:43:04 -08003 *
Markus Grabner1027f4762010-08-12 01:35:30 +02004 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
Markus Grabner705ecec2009-02-27 19:43:04 -08005 *
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.
9 *
10 */
11
Markus Grabner705ecec2009-02-27 19:43:04 -080012#include <linux/slab.h>
13
14#include "midibuf.h"
15
Greg Kroah-Hartmanb702ed252009-02-27 20:45:03 -080016static int midibuf_message_length(unsigned char code)
Markus Grabner705ecec2009-02-27 19:43:04 -080017{
Domagoj Trsand1d1a9d2014-09-20 14:40:38 +020018 int message_length;
19
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -080020 if (code < 0x80)
Domagoj Trsand1d1a9d2014-09-20 14:40:38 +020021 message_length = -1;
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -080022 else if (code < 0xf0) {
Markus Grabner705ecec2009-02-27 19:43:04 -080023 static const int length[] = { 3, 3, 3, 3, 2, 2, 3 };
Domagoj Trsand1d1a9d2014-09-20 14:40:38 +020024
25 message_length = length[(code >> 4) - 8];
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -080026 } else {
Markus Grabner705ecec2009-02-27 19:43:04 -080027 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +020028 Note that according to the MIDI specification 0xf2 is
Chris Rorvickc6fffce2015-01-20 02:20:49 -060029 the "Song Position Pointer", but this is used by Line 6
Markus Grabnere1a164d2010-08-23 01:08:25 +020030 to send sysex messages to the host.
31 */
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -080032 static const int length[] = { -1, 2, -1, 2, -1, -1, 1, 1, 1, 1,
Markus Grabnere1a164d2010-08-23 01:08:25 +020033 1, 1, 1, -1, 1, 1
34 };
Domagoj Trsand1d1a9d2014-09-20 14:40:38 +020035 message_length = length[code & 0x0f];
Markus Grabner705ecec2009-02-27 19:43:04 -080036 }
Domagoj Trsand1d1a9d2014-09-20 14:40:38 +020037
38 return message_length;
Markus Grabner705ecec2009-02-27 19:43:04 -080039}
40
Stefan Hajnoczi269edc82013-01-11 23:08:09 +010041static int midibuf_is_empty(struct midi_buffer *this)
Markus Grabner705ecec2009-02-27 19:43:04 -080042{
43 return (this->pos_read == this->pos_write) && !this->full;
44}
45
Stefan Hajnoczi269edc82013-01-11 23:08:09 +010046static int midibuf_is_full(struct midi_buffer *this)
Markus Grabner705ecec2009-02-27 19:43:04 -080047{
48 return this->full;
49}
50
Stefan Hajnoczi269edc82013-01-11 23:08:09 +010051void line6_midibuf_reset(struct midi_buffer *this)
Markus Grabner1027f4762010-08-12 01:35:30 +020052{
53 this->pos_read = this->pos_write = this->full = 0;
54 this->command_prev = -1;
55}
56
Stefan Hajnoczi269edc82013-01-11 23:08:09 +010057int line6_midibuf_init(struct midi_buffer *this, int size, int split)
Markus Grabner1027f4762010-08-12 01:35:30 +020058{
59 this->buf = kmalloc(size, GFP_KERNEL);
60
61 if (this->buf == NULL)
62 return -ENOMEM;
63
64 this->size = size;
65 this->split = split;
66 line6_midibuf_reset(this);
67 return 0;
68}
69
Stefan Hajnoczi269edc82013-01-11 23:08:09 +010070int line6_midibuf_bytes_free(struct midi_buffer *this)
Markus Grabner705ecec2009-02-27 19:43:04 -080071{
72 return
Markus Grabnere1a164d2010-08-23 01:08:25 +020073 midibuf_is_full(this) ?
74 0 :
75 (this->pos_read - this->pos_write + this->size - 1) % this->size +
76 1;
Markus Grabner705ecec2009-02-27 19:43:04 -080077}
78
Stefan Hajnoczi269edc82013-01-11 23:08:09 +010079int line6_midibuf_bytes_used(struct midi_buffer *this)
Markus Grabner705ecec2009-02-27 19:43:04 -080080{
81 return
Markus Grabnere1a164d2010-08-23 01:08:25 +020082 midibuf_is_empty(this) ?
83 0 :
84 (this->pos_write - this->pos_read + this->size - 1) % this->size +
85 1;
Markus Grabner705ecec2009-02-27 19:43:04 -080086}
87
Stefan Hajnoczi269edc82013-01-11 23:08:09 +010088int line6_midibuf_write(struct midi_buffer *this, unsigned char *data,
Markus Grabnere1a164d2010-08-23 01:08:25 +020089 int length)
Markus Grabner705ecec2009-02-27 19:43:04 -080090{
91 int bytes_free;
92 int length1, length2;
93 int skip_active_sense = 0;
94
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -080095 if (midibuf_is_full(this) || (length <= 0))
Markus Grabner705ecec2009-02-27 19:43:04 -080096 return 0;
97
98 /* skip trailing active sense */
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -080099 if (data[length - 1] == 0xfe) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800100 --length;
101 skip_active_sense = 1;
102 }
103
Markus Grabner1027f4762010-08-12 01:35:30 +0200104 bytes_free = line6_midibuf_bytes_free(this);
Markus Grabner705ecec2009-02-27 19:43:04 -0800105
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800106 if (length > bytes_free)
Markus Grabner705ecec2009-02-27 19:43:04 -0800107 length = bytes_free;
108
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800109 if (length > 0) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800110 length1 = this->size - this->pos_write;
111
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800112 if (length < length1) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800113 /* no buffer wraparound */
114 memcpy(this->buf + this->pos_write, data, length);
115 this->pos_write += length;
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800116 } else {
Markus Grabner705ecec2009-02-27 19:43:04 -0800117 /* buffer wraparound */
118 length2 = length - length1;
119 memcpy(this->buf + this->pos_write, data, length1);
120 memcpy(this->buf, data + length1, length2);
121 this->pos_write = length2;
122 }
123
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800124 if (this->pos_write == this->pos_read)
Markus Grabner705ecec2009-02-27 19:43:04 -0800125 this->full = 1;
126 }
127
128 return length + skip_active_sense;
129}
130
Stefan Hajnoczi269edc82013-01-11 23:08:09 +0100131int line6_midibuf_read(struct midi_buffer *this, unsigned char *data,
132 int length)
Markus Grabner705ecec2009-02-27 19:43:04 -0800133{
134 int bytes_used;
135 int length1, length2;
136 int command;
137 int midi_length;
138 int repeat = 0;
139 int i;
140
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800141 /* we need to be able to store at least a 3 byte MIDI message */
142 if (length < 3)
143 return -EINVAL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800144
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800145 if (midibuf_is_empty(this))
Markus Grabner705ecec2009-02-27 19:43:04 -0800146 return 0;
147
Markus Grabner1027f4762010-08-12 01:35:30 +0200148 bytes_used = line6_midibuf_bytes_used(this);
Markus Grabner705ecec2009-02-27 19:43:04 -0800149
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800150 if (length > bytes_used)
Markus Grabner705ecec2009-02-27 19:43:04 -0800151 length = bytes_used;
152
153 length1 = this->size - this->pos_read;
154
155 /* check MIDI command length */
156 command = this->buf[this->pos_read];
157
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800158 if (command & 0x80) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800159 midi_length = midibuf_message_length(command);
160 this->command_prev = command;
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800161 } else {
162 if (this->command_prev > 0) {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200163 int midi_length_prev =
164 midibuf_message_length(this->command_prev);
Markus Grabner705ecec2009-02-27 19:43:04 -0800165
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800166 if (midi_length_prev > 0) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800167 midi_length = midi_length_prev - 1;
168 repeat = 1;
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800169 } else
Markus Grabner705ecec2009-02-27 19:43:04 -0800170 midi_length = -1;
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800171 } else
Markus Grabner705ecec2009-02-27 19:43:04 -0800172 midi_length = -1;
173 }
174
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800175 if (midi_length < 0) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800176 /* search for end of message */
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800177 if (length < length1) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800178 /* no buffer wraparound */
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800179 for (i = 1; i < length; ++i)
180 if (this->buf[this->pos_read + i] & 0x80)
Markus Grabner705ecec2009-02-27 19:43:04 -0800181 break;
182
183 midi_length = i;
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800184 } else {
Markus Grabner705ecec2009-02-27 19:43:04 -0800185 /* buffer wraparound */
186 length2 = length - length1;
187
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800188 for (i = 1; i < length1; ++i)
189 if (this->buf[this->pos_read + i] & 0x80)
Markus Grabner705ecec2009-02-27 19:43:04 -0800190 break;
191
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800192 if (i < length1)
Markus Grabner705ecec2009-02-27 19:43:04 -0800193 midi_length = i;
194 else {
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800195 for (i = 0; i < length2; ++i)
196 if (this->buf[i] & 0x80)
Markus Grabner705ecec2009-02-27 19:43:04 -0800197 break;
198
199 midi_length = length1 + i;
200 }
201 }
202
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800203 if (midi_length == length)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200204 midi_length = -1; /* end of message not found */
Markus Grabner705ecec2009-02-27 19:43:04 -0800205 }
206
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800207 if (midi_length < 0) {
208 if (!this->split)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200209 return 0; /* command is not yet complete */
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800210 } else {
211 if (length < midi_length)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200212 return 0; /* command is not yet complete */
Markus Grabner705ecec2009-02-27 19:43:04 -0800213
214 length = midi_length;
215 }
216
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800217 if (length < length1) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800218 /* no buffer wraparound */
219 memcpy(data + repeat, this->buf + this->pos_read, length);
220 this->pos_read += length;
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800221 } else {
Markus Grabner705ecec2009-02-27 19:43:04 -0800222 /* buffer wraparound */
223 length2 = length - length1;
224 memcpy(data + repeat, this->buf + this->pos_read, length1);
225 memcpy(data + repeat + length1, this->buf, length2);
226 this->pos_read = length2;
227 }
228
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800229 if (repeat)
Markus Grabner705ecec2009-02-27 19:43:04 -0800230 data[0] = this->command_prev;
231
232 this->full = 0;
233 return length + repeat;
234}
235
Stefan Hajnoczi269edc82013-01-11 23:08:09 +0100236int line6_midibuf_ignore(struct midi_buffer *this, int length)
Markus Grabner705ecec2009-02-27 19:43:04 -0800237{
Markus Grabner1027f4762010-08-12 01:35:30 +0200238 int bytes_used = line6_midibuf_bytes_used(this);
Markus Grabner705ecec2009-02-27 19:43:04 -0800239
Greg Kroah-Hartmance9b4902009-02-27 22:43:11 -0800240 if (length > bytes_used)
Markus Grabner705ecec2009-02-27 19:43:04 -0800241 length = bytes_used;
242
243 this->pos_read = (this->pos_read + length) % this->size;
244 this->full = 0;
245 return length;
246}
247
Stefan Hajnoczi269edc82013-01-11 23:08:09 +0100248void line6_midibuf_destroy(struct midi_buffer *this)
Markus Grabner705ecec2009-02-27 19:43:04 -0800249{
Greg Kroah-Hartman536165d2009-02-27 20:49:46 -0800250 kfree(this->buf);
251 this->buf = NULL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800252}