2 * tascam-transaction.c - a part of driver for TASCAM FireWire series
4 * Copyright (c) 2015 Takashi Sakamoto
6 * Licensed under the terms of the GNU General Public License, version 2.
12 * When return minus value, given argument is not MIDI status.
13 * When return 0, given argument is a beginning of system exclusive.
14 * When return the others, given argument is MIDI data.
16 static inline int calculate_message_bytes(u8 status
)
19 case 0xf6: /* Tune request. */
20 case 0xf8: /* Timing clock. */
21 case 0xfa: /* Start. */
22 case 0xfb: /* Continue. */
23 case 0xfc: /* Stop. */
24 case 0xfe: /* Active sensing. */
25 case 0xff: /* System reset. */
27 case 0xf1: /* MIDI time code quarter frame. */
28 case 0xf3: /* Song select. */
30 case 0xf2: /* Song position pointer. */
32 case 0xf0: /* Exclusive. */
34 case 0xf7: /* End of exclusive. */
36 case 0xf4: /* Undefined. */
37 case 0xf5: /* Undefined. */
38 case 0xf9: /* Undefined. */
39 case 0xfd: /* Undefined. */
42 switch (status
& 0xf0) {
43 case 0x80: /* Note on. */
44 case 0x90: /* Note off. */
45 case 0xa0: /* Polyphonic key pressure. */
46 case 0xb0: /* Control change and Mode change. */
47 case 0xe0: /* Pitch bend change. */
49 case 0xc0: /* Program change. */
50 case 0xd0: /* Channel pressure. */
61 static int fill_message(struct snd_rawmidi_substream
*substream
, u8
*buf
)
63 struct snd_tscm
*tscm
= substream
->rmidi
->private_data
;
64 unsigned int port
= substream
->number
;
69 /* The first byte is used for label, the rest for MIDI bytes. */
73 consume
= snd_rawmidi_transmit_peek(substream
, msg
, 3);
77 /* On exclusive message. */
78 if (tscm
->on_sysex
[port
]) {
79 /* Seek the end of exclusives. */
80 for (i
= 0; i
< consume
; ++i
) {
82 tscm
->on_sysex
[port
] = false;
87 /* At the end of exclusive message, use label 0x07. */
88 if (!tscm
->on_sysex
[port
]) {
90 *label
= (port
<< 4) | 0x07;
91 /* During exclusive message, use label 0x04. */
92 } else if (consume
== 3) {
93 *label
= (port
<< 4) | 0x04;
94 /* We need to fill whole 3 bytes. Go to next change. */
101 /* The beginning of exclusives. */
102 if (msg
[0] == 0xf0) {
103 /* Transfer it in next chance in another condition. */
104 tscm
->on_sysex
[port
] = true;
107 /* On running-status. */
108 if ((msg
[0] & 0x80) != 0x80)
109 status
= tscm
->running_status
[port
];
113 /* Calculate consume bytes. */
114 len
= calculate_message_bytes(status
);
118 /* On running-status. */
119 if ((msg
[0] & 0x80) != 0x80) {
120 /* Enough MIDI bytes were not retrieved. */
121 if (consume
< len
- 1)
127 msg
[0] = tscm
->running_status
[port
];
129 /* Enough MIDI bytes were not retrieved. */
134 tscm
->running_status
[port
] = msg
[0];
138 *label
= (port
<< 4) | (msg
[0] >> 4);
141 if (len
> 0 && len
< 3)
142 memset(msg
+ len
, 0, 3 - len
);
147 static void handle_midi_tx(struct fw_card
*card
, struct fw_request
*request
,
148 int tcode
, int destination
, int source
,
149 int generation
, unsigned long long offset
,
150 void *data
, size_t length
, void *callback_data
)
152 struct snd_tscm
*tscm
= callback_data
;
153 u32
*buf
= (u32
*)data
;
154 unsigned int messages
;
157 struct snd_rawmidi_substream
*substream
;
161 if (offset
!= tscm
->async_handler
.offset
)
164 messages
= length
/ 8;
165 for (i
= 0; i
< messages
; i
++) {
166 b
= (u8
*)(buf
+ i
* 2);
169 /* TODO: support virtual MIDI ports. */
170 if (port
>= tscm
->spec
->midi_capture_ports
)
173 /* Assume the message length. */
174 bytes
= calculate_message_bytes(b
[1]);
175 /* On MIDI data or exclusives. */
177 /* Seek the end of exclusives. */
178 for (bytes
= 1; bytes
< 4; bytes
++) {
179 if (b
[bytes
] == 0xf7)
186 substream
= ACCESS_ONCE(tscm
->tx_midi_substreams
[port
]);
187 if (substream
!= NULL
)
188 snd_rawmidi_receive(substream
, b
+ 1, bytes
);
191 fw_send_response(card
, request
, RCODE_COMPLETE
);
194 int snd_tscm_transaction_register(struct snd_tscm
*tscm
)
196 static const struct fw_address_region resp_register_region
= {
197 .start
= 0xffffe0000000ull
,
198 .end
= 0xffffe000ffffull
,
204 * Usually, two quadlets are transferred by one transaction. The first
205 * quadlet has MIDI messages, the rest includes timestamp.
206 * Sometimes, 8 set of the data is transferred by a block transaction.
208 tscm
->async_handler
.length
= 8 * 8;
209 tscm
->async_handler
.address_callback
= handle_midi_tx
;
210 tscm
->async_handler
.callback_data
= tscm
;
212 err
= fw_core_add_address_handler(&tscm
->async_handler
,
213 &resp_register_region
);
217 err
= snd_tscm_transaction_reregister(tscm
);
221 for (i
= 0; i
< TSCM_MIDI_OUT_PORT_MAX
; i
++) {
222 err
= snd_fw_async_midi_port_init(
223 &tscm
->out_ports
[i
], tscm
->unit
,
224 TSCM_ADDR_BASE
+ TSCM_OFFSET_MIDI_RX_QUAD
,
232 fw_core_remove_address_handler(&tscm
->async_handler
);
236 /* At bus reset, these registers are cleared. */
237 int snd_tscm_transaction_reregister(struct snd_tscm
*tscm
)
239 struct fw_device
*device
= fw_parent_device(tscm
->unit
);
243 /* Register messaging address. Block transaction is not allowed. */
244 reg
= cpu_to_be32((device
->card
->node_id
<< 16) |
245 (tscm
->async_handler
.offset
>> 32));
246 err
= snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
247 TSCM_ADDR_BASE
+ TSCM_OFFSET_MIDI_TX_ADDR_HI
,
248 ®
, sizeof(reg
), 0);
252 reg
= cpu_to_be32(tscm
->async_handler
.offset
);
253 err
= snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
254 TSCM_ADDR_BASE
+ TSCM_OFFSET_MIDI_TX_ADDR_LO
,
255 ®
, sizeof(reg
), 0);
259 /* Turn on messaging. */
260 reg
= cpu_to_be32(0x00000001);
261 err
= snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
262 TSCM_ADDR_BASE
+ TSCM_OFFSET_MIDI_TX_ON
,
263 ®
, sizeof(reg
), 0);
267 /* Turn on FireWire LED. */
268 reg
= cpu_to_be32(0x0001008e);
269 return snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
270 TSCM_ADDR_BASE
+ TSCM_OFFSET_LED_POWER
,
271 ®
, sizeof(reg
), 0);
274 void snd_tscm_transaction_unregister(struct snd_tscm
*tscm
)
279 /* Turn off FireWire LED. */
280 reg
= cpu_to_be32(0x0000008e);
281 snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
282 TSCM_ADDR_BASE
+ TSCM_OFFSET_LED_POWER
,
283 ®
, sizeof(reg
), 0);
285 /* Turn off messaging. */
286 reg
= cpu_to_be32(0x00000000);
287 snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
288 TSCM_ADDR_BASE
+ TSCM_OFFSET_MIDI_TX_ON
,
289 ®
, sizeof(reg
), 0);
291 /* Unregister the address. */
292 snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
293 TSCM_ADDR_BASE
+ TSCM_OFFSET_MIDI_TX_ADDR_HI
,
294 ®
, sizeof(reg
), 0);
295 snd_fw_transaction(tscm
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
296 TSCM_ADDR_BASE
+ TSCM_OFFSET_MIDI_TX_ADDR_LO
,
297 ®
, sizeof(reg
), 0);
299 fw_core_remove_address_handler(&tscm
->async_handler
);
300 for (i
= 0; i
< TSCM_MIDI_OUT_PORT_MAX
; i
++)
301 snd_fw_async_midi_port_destroy(&tscm
->out_ports
[i
]);