1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>,
5 * Isaku Yamahata <yamahata@private.email.ne.jp>,
6 * George Hansper <ghansper@apana.org.au>,
9 * This code is based on the code from ALSA 0.5.9, but heavily rewritten.
11 * Sat Mar 31 17:27:57 PST 2001 tim.mann@compaq.com
12 * Added support for the Midiator MS-124T and for the MS-124W in
13 * Single Addressed (S/A) or Multiple Burst (M/B) mode, with
14 * power derived either parasitically from the serial port or
15 * from a separate power supply.
17 * More documentation can be found in serial-u16550.txt.
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
22 #include <linux/err.h>
23 #include <linux/platform_device.h>
24 #include <linux/slab.h>
25 #include <linux/ioport.h>
26 #include <linux/module.h>
28 #include <sound/core.h>
29 #include <sound/rawmidi.h>
30 #include <sound/initval.h>
32 #include <linux/serial_reg.h>
33 #include <linux/jiffies.h>
35 MODULE_DESCRIPTION("MIDI serial u16550");
36 MODULE_LICENSE("GPL");
38 #define SNDRV_SERIAL_SOUNDCANVAS 0 /* Roland Soundcanvas; F5 NN selects part */
39 #define SNDRV_SERIAL_MS124T 1 /* Midiator MS-124T */
40 #define SNDRV_SERIAL_MS124W_SA 2 /* Midiator MS-124W in S/A mode */
41 #define SNDRV_SERIAL_MS124W_MB 3 /* Midiator MS-124W in M/B mode */
42 #define SNDRV_SERIAL_GENERIC 4 /* Generic Interface */
43 #define SNDRV_SERIAL_MAX_ADAPTOR SNDRV_SERIAL_GENERIC
44 static const char * const adaptor_names[] = {
52 #define SNDRV_SERIAL_NORMALBUFF 0 /* Normal blocking buffer operation */
53 #define SNDRV_SERIAL_DROPBUFF 1 /* Non-blocking discard operation */
55 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
56 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
57 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
58 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x3f8,0x2f8,0x3e8,0x2e8 */
59 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 3,4,5,7,9,10,11,14,15 */
60 static int speed[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 38400}; /* 9600,19200,38400,57600,115200 */
61 static int base[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 115200}; /* baud base */
62 static int outs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; /* 1 to 16 */
63 static int ins[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; /* 1 to 16 */
64 static int adaptor[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = SNDRV_SERIAL_SOUNDCANVAS};
65 static bool droponfull[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS -1)] = SNDRV_SERIAL_NORMALBUFF };
67 module_param_array(index, int, NULL, 0444);
68 MODULE_PARM_DESC(index, "Index value for Serial MIDI.");
69 module_param_array(id, charp, NULL, 0444);
70 MODULE_PARM_DESC(id, "ID string for Serial MIDI.");
71 module_param_array(enable, bool, NULL, 0444);
72 MODULE_PARM_DESC(enable, "Enable UART16550A chip.");
73 module_param_hw_array(port, long, ioport, NULL, 0444);
74 MODULE_PARM_DESC(port, "Port # for UART16550A chip.");
75 module_param_hw_array(irq, int, irq, NULL, 0444);
76 MODULE_PARM_DESC(irq, "IRQ # for UART16550A chip.");
77 module_param_array(speed, int, NULL, 0444);
78 MODULE_PARM_DESC(speed, "Speed in bauds.");
79 module_param_array(base, int, NULL, 0444);
80 MODULE_PARM_DESC(base, "Base for divisor in bauds.");
81 module_param_array(outs, int, NULL, 0444);
82 MODULE_PARM_DESC(outs, "Number of MIDI outputs.");
83 module_param_array(ins, int, NULL, 0444);
84 MODULE_PARM_DESC(ins, "Number of MIDI inputs.");
85 module_param_array(droponfull, bool, NULL, 0444);
86 MODULE_PARM_DESC(droponfull, "Flag to enable drop-on-full buffer mode");
88 module_param_array(adaptor, int, NULL, 0444);
89 MODULE_PARM_DESC(adaptor, "Type of adaptor.");
91 /*#define SNDRV_SERIAL_MS124W_MB_NOCOMBO 1*/ /* Address outs as 0-3 instead of bitmap */
93 #define SNDRV_SERIAL_MAX_OUTS 16 /* max 64, min 16 */
94 #define SNDRV_SERIAL_MAX_INS 16 /* max 64, min 16 */
96 #define TX_BUFF_SIZE (1<<15) /* Must be 2^n */
97 #define TX_BUFF_MASK (TX_BUFF_SIZE - 1)
99 #define SERIAL_MODE_NOT_OPENED (0)
100 #define SERIAL_MODE_INPUT_OPEN (1 << 0)
101 #define SERIAL_MODE_OUTPUT_OPEN (1 << 1)
102 #define SERIAL_MODE_INPUT_TRIGGERED (1 << 2)
103 #define SERIAL_MODE_OUTPUT_TRIGGERED (1 << 3)
105 struct snd_uart16550 {
106 struct snd_card *card;
107 struct snd_rawmidi *rmidi;
108 struct snd_rawmidi_substream *midi_output[SNDRV_SERIAL_MAX_OUTS];
109 struct snd_rawmidi_substream *midi_input[SNDRV_SERIAL_MAX_INS];
111 int filemode; /* open status of file */
113 spinlock_t open_lock;
120 unsigned int speed_base;
121 unsigned char divisor;
123 unsigned char old_divisor_lsb;
124 unsigned char old_divisor_msb;
125 unsigned char old_line_ctrl_reg;
127 /* parameter for using of write loop */
128 short int fifo_limit; /* used in uart16550 */
129 short int fifo_count; /* used in uart16550 */
131 /* type of adaptor */
136 unsigned char rstatus;
140 unsigned char prev_status[SNDRV_SERIAL_MAX_OUTS];
142 /* write buffer and its writing/reading position */
143 unsigned char tx_buff[TX_BUFF_SIZE];
150 unsigned int timer_running:1;
151 struct timer_list buffer_timer;
155 static struct platform_device *devices[SNDRV_CARDS];
157 static inline void snd_uart16550_add_timer(struct snd_uart16550 *uart)
159 if (!uart->timer_running) {
160 /* timer 38600bps * 10bit * 16byte */
161 mod_timer(&uart->buffer_timer, jiffies + (HZ + 255) / 256);
162 uart->timer_running = 1;
166 static inline void snd_uart16550_del_timer(struct snd_uart16550 *uart)
168 if (uart->timer_running) {
169 del_timer(&uart->buffer_timer);
170 uart->timer_running = 0;
174 /* This macro is only used in snd_uart16550_io_loop */
175 static inline void snd_uart16550_buffer_output(struct snd_uart16550 *uart)
177 unsigned short buff_out = uart->buff_out;
178 if (uart->buff_in_count > 0) {
179 outb(uart->tx_buff[buff_out], uart->base + UART_TX);
182 buff_out &= TX_BUFF_MASK;
183 uart->buff_out = buff_out;
184 uart->buff_in_count--;
188 /* This loop should be called with interrupts disabled
189 * We don't want to interrupt this,
190 * as we're already handling an interrupt
192 static void snd_uart16550_io_loop(struct snd_uart16550 * uart)
194 unsigned char c, status;
197 /* recall previous stream */
198 substream = uart->prev_in;
201 while ((status = inb(uart->base + UART_LSR)) & UART_LSR_DR) {
202 /* while receive data ready */
203 c = inb(uart->base + UART_RX);
205 /* keep track of last status byte */
209 /* handle stream switch */
210 if (uart->adaptor == SNDRV_SERIAL_GENERIC) {
211 if (uart->rstatus == 0xf5) {
212 if (c <= SNDRV_SERIAL_MAX_INS && c > 0)
215 /* prevent future bytes from being
216 interpreted as streams */
218 } else if ((uart->filemode & SERIAL_MODE_INPUT_OPEN)
219 && uart->midi_input[substream])
220 snd_rawmidi_receive(uart->midi_input[substream],
222 } else if ((uart->filemode & SERIAL_MODE_INPUT_OPEN) &&
223 uart->midi_input[substream])
224 snd_rawmidi_receive(uart->midi_input[substream], &c, 1);
226 if (status & UART_LSR_OE)
227 snd_printk(KERN_WARNING
228 "%s: Overrun on device at 0x%lx\n",
229 uart->rmidi->name, uart->base);
232 /* remember the last stream */
233 uart->prev_in = substream;
235 /* no need of check SERIAL_MODE_OUTPUT_OPEN because if not,
236 buffer is never filled. */
237 /* Check write status */
238 if (status & UART_LSR_THRE)
239 uart->fifo_count = 0;
240 if (uart->adaptor == SNDRV_SERIAL_MS124W_SA
241 || uart->adaptor == SNDRV_SERIAL_GENERIC) {
242 /* Can't use FIFO, must send only when CTS is true */
243 status = inb(uart->base + UART_MSR);
244 while (uart->fifo_count == 0 && (status & UART_MSR_CTS) &&
245 uart->buff_in_count > 0) {
246 snd_uart16550_buffer_output(uart);
247 status = inb(uart->base + UART_MSR);
251 while (uart->fifo_count < uart->fifo_limit /* Can we write ? */
252 && uart->buff_in_count > 0) /* Do we want to? */
253 snd_uart16550_buffer_output(uart);
255 if (uart->irq < 0 && uart->buff_in_count > 0)
256 snd_uart16550_add_timer(uart);
259 /* NOTES ON SERVICING INTERUPTS
260 * ---------------------------
261 * After receiving a interrupt, it is important to indicate to the UART that
262 * this has been done.
263 * For a Rx interrupt, this is done by reading the received byte.
264 * For a Tx interrupt this is done by either:
267 * It is particularly important to read the IIR if a Tx interrupt is received
268 * when there is no data in tx_buff[], as in this case there no other
269 * indication that the interrupt has been serviced, and it remains outstanding
270 * indefinitely. This has the curious side effect that and no further interrupts
271 * will be generated from this device AT ALL!!.
272 * It is also desirable to clear outstanding interrupts when the device is
276 * Note that some devices need OUT2 to be set before they will generate
277 * interrupts at all. (Possibly tied to an internal pull-up on CTS?)
279 static irqreturn_t snd_uart16550_interrupt(int irq, void *dev_id)
281 struct snd_uart16550 *uart;
284 spin_lock(&uart->open_lock);
285 if (uart->filemode == SERIAL_MODE_NOT_OPENED) {
286 spin_unlock(&uart->open_lock);
289 /* indicate to the UART that the interrupt has been serviced */
290 inb(uart->base + UART_IIR);
291 snd_uart16550_io_loop(uart);
292 spin_unlock(&uart->open_lock);
296 /* When the polling mode, this function calls snd_uart16550_io_loop. */
297 static void snd_uart16550_buffer_timer(struct timer_list *t)
300 struct snd_uart16550 *uart;
302 uart = from_timer(uart, t, buffer_timer);
303 spin_lock_irqsave(&uart->open_lock, flags);
304 snd_uart16550_del_timer(uart);
305 snd_uart16550_io_loop(uart);
306 spin_unlock_irqrestore(&uart->open_lock, flags);
310 * this method probes, if an uart sits on given port
312 * return negative error if not found
314 static int snd_uart16550_detect(struct snd_uart16550 *uart)
316 unsigned long io_base = uart->base;
320 /* Do some vague tests for the presence of the uart */
321 if (io_base == 0 || io_base == SNDRV_AUTO_PORT) {
322 return -ENODEV; /* Not configured */
325 if (!devm_request_region(uart->card->dev, io_base, 8, "Serial MIDI")) {
326 snd_printk(KERN_ERR "u16550: can't grab port 0x%lx\n", io_base);
330 /* uart detected unless one of the following tests should fail */
332 /* 8 data-bits, 1 stop-bit, parity off, DLAB = 0 */
333 outb(UART_LCR_WLEN8, io_base + UART_LCR); /* Line Control Register */
334 c = inb(io_base + UART_IER);
335 /* The top four bits of the IER should always == 0 */
339 outb(0xaa, io_base + UART_SCR);
340 /* Write arbitrary data into the scratch reg */
341 c = inb(io_base + UART_SCR);
342 /* If it comes back, it's OK */
346 outb(0x55, io_base + UART_SCR);
347 /* Write arbitrary data into the scratch reg */
348 c = inb(io_base + UART_SCR);
349 /* If it comes back, it's OK */
356 static void snd_uart16550_do_open(struct snd_uart16550 * uart)
360 /* Initialize basic variables */
361 uart->buff_in_count = 0;
364 uart->fifo_limit = 1;
365 uart->fifo_count = 0;
366 uart->timer_running = 0;
368 outb(UART_FCR_ENABLE_FIFO /* Enable FIFO's (if available) */
369 | UART_FCR_CLEAR_RCVR /* Clear receiver FIFO */
370 | UART_FCR_CLEAR_XMIT /* Clear transmitter FIFO */
371 | UART_FCR_TRIGGER_4 /* Set FIFO trigger at 4-bytes */
372 /* NOTE: interrupt generated after T=(time)4-bytes
373 * if less than UART_FCR_TRIGGER bytes received
375 ,uart->base + UART_FCR); /* FIFO Control Register */
377 if ((inb(uart->base + UART_IIR) & 0xf0) == 0xc0)
378 uart->fifo_limit = 16;
379 if (uart->divisor != 0) {
380 uart->old_line_ctrl_reg = inb(uart->base + UART_LCR);
381 outb(UART_LCR_DLAB /* Divisor latch access bit */
382 ,uart->base + UART_LCR); /* Line Control Register */
383 uart->old_divisor_lsb = inb(uart->base + UART_DLL);
384 uart->old_divisor_msb = inb(uart->base + UART_DLM);
387 ,uart->base + UART_DLL); /* Divisor Latch Low */
389 ,uart->base + UART_DLM); /* Divisor Latch High */
390 /* DLAB is reset to 0 in next outb() */
392 /* Set serial parameters (parity off, etc) */
393 outb(UART_LCR_WLEN8 /* 8 data-bits */
397 ,uart->base + UART_LCR); /* Line Control Register */
399 switch (uart->adaptor) {
401 outb(UART_MCR_RTS /* Set Request-To-Send line active */
402 | UART_MCR_DTR /* Set Data-Terminal-Ready line active */
403 | UART_MCR_OUT2 /* Set OUT2 - not always required, but when
404 * it is, it is ESSENTIAL for enabling interrupts
406 ,uart->base + UART_MCR); /* Modem Control Register */
408 case SNDRV_SERIAL_MS124W_SA:
409 case SNDRV_SERIAL_MS124W_MB:
410 /* MS-124W can draw power from RTS and DTR if they
411 are in opposite states. */
412 outb(UART_MCR_RTS | (0&UART_MCR_DTR) | UART_MCR_OUT2,
413 uart->base + UART_MCR);
415 case SNDRV_SERIAL_MS124T:
416 /* MS-124T can draw power from RTS and/or DTR (preferably
417 both) if they are both asserted. */
418 outb(UART_MCR_RTS | UART_MCR_DTR | UART_MCR_OUT2,
419 uart->base + UART_MCR);
424 byte = (0 & UART_IER_RDI) /* Disable Receiver data interrupt */
425 |(0 & UART_IER_THRI) /* Disable Transmitter holding register empty interrupt */
427 } else if (uart->adaptor == SNDRV_SERIAL_MS124W_SA) {
428 byte = UART_IER_RDI /* Enable Receiver data interrupt */
429 | UART_IER_MSI /* Enable Modem status interrupt */
431 } else if (uart->adaptor == SNDRV_SERIAL_GENERIC) {
432 byte = UART_IER_RDI /* Enable Receiver data interrupt */
433 | UART_IER_MSI /* Enable Modem status interrupt */
434 | UART_IER_THRI /* Enable Transmitter holding register empty interrupt */
437 byte = UART_IER_RDI /* Enable Receiver data interrupt */
438 | UART_IER_THRI /* Enable Transmitter holding register empty interrupt */
441 outb(byte, uart->base + UART_IER); /* Interrupt enable Register */
443 inb(uart->base + UART_LSR); /* Clear any pre-existing overrun indication */
444 inb(uart->base + UART_IIR); /* Clear any pre-existing transmit interrupt */
445 inb(uart->base + UART_RX); /* Clear any pre-existing receive interrupt */
448 static void snd_uart16550_do_close(struct snd_uart16550 * uart)
451 snd_uart16550_del_timer(uart);
453 /* NOTE: may need to disable interrupts before de-registering out handler.
454 * For now, the consequences are harmless.
457 outb((0 & UART_IER_RDI) /* Disable Receiver data interrupt */
458 |(0 & UART_IER_THRI) /* Disable Transmitter holding register empty interrupt */
459 ,uart->base + UART_IER); /* Interrupt enable Register */
461 switch (uart->adaptor) {
463 outb((0 & UART_MCR_RTS) /* Deactivate Request-To-Send line */
464 |(0 & UART_MCR_DTR) /* Deactivate Data-Terminal-Ready line */
465 |(0 & UART_MCR_OUT2) /* Deactivate OUT2 */
466 ,uart->base + UART_MCR); /* Modem Control Register */
468 case SNDRV_SERIAL_MS124W_SA:
469 case SNDRV_SERIAL_MS124W_MB:
470 /* MS-124W can draw power from RTS and DTR if they
471 are in opposite states; leave it powered. */
472 outb(UART_MCR_RTS | (0&UART_MCR_DTR) | (0&UART_MCR_OUT2),
473 uart->base + UART_MCR);
475 case SNDRV_SERIAL_MS124T:
476 /* MS-124T can draw power from RTS and/or DTR (preferably
477 both) if they are both asserted; leave it powered. */
478 outb(UART_MCR_RTS | UART_MCR_DTR | (0&UART_MCR_OUT2),
479 uart->base + UART_MCR);
483 inb(uart->base + UART_IIR); /* Clear any outstanding interrupts */
485 /* Restore old divisor */
486 if (uart->divisor != 0) {
487 outb(UART_LCR_DLAB /* Divisor latch access bit */
488 ,uart->base + UART_LCR); /* Line Control Register */
489 outb(uart->old_divisor_lsb
490 ,uart->base + UART_DLL); /* Divisor Latch Low */
491 outb(uart->old_divisor_msb
492 ,uart->base + UART_DLM); /* Divisor Latch High */
493 /* Restore old LCR (data bits, stop bits, parity, DLAB) */
494 outb(uart->old_line_ctrl_reg
495 ,uart->base + UART_LCR); /* Line Control Register */
499 static int snd_uart16550_input_open(struct snd_rawmidi_substream *substream)
502 struct snd_uart16550 *uart = substream->rmidi->private_data;
504 spin_lock_irqsave(&uart->open_lock, flags);
505 if (uart->filemode == SERIAL_MODE_NOT_OPENED)
506 snd_uart16550_do_open(uart);
507 uart->filemode |= SERIAL_MODE_INPUT_OPEN;
508 uart->midi_input[substream->number] = substream;
509 spin_unlock_irqrestore(&uart->open_lock, flags);
513 static int snd_uart16550_input_close(struct snd_rawmidi_substream *substream)
516 struct snd_uart16550 *uart = substream->rmidi->private_data;
518 spin_lock_irqsave(&uart->open_lock, flags);
519 uart->filemode &= ~SERIAL_MODE_INPUT_OPEN;
520 uart->midi_input[substream->number] = NULL;
521 if (uart->filemode == SERIAL_MODE_NOT_OPENED)
522 snd_uart16550_do_close(uart);
523 spin_unlock_irqrestore(&uart->open_lock, flags);
527 static void snd_uart16550_input_trigger(struct snd_rawmidi_substream *substream,
531 struct snd_uart16550 *uart = substream->rmidi->private_data;
533 spin_lock_irqsave(&uart->open_lock, flags);
535 uart->filemode |= SERIAL_MODE_INPUT_TRIGGERED;
537 uart->filemode &= ~SERIAL_MODE_INPUT_TRIGGERED;
538 spin_unlock_irqrestore(&uart->open_lock, flags);
541 static int snd_uart16550_output_open(struct snd_rawmidi_substream *substream)
544 struct snd_uart16550 *uart = substream->rmidi->private_data;
546 spin_lock_irqsave(&uart->open_lock, flags);
547 if (uart->filemode == SERIAL_MODE_NOT_OPENED)
548 snd_uart16550_do_open(uart);
549 uart->filemode |= SERIAL_MODE_OUTPUT_OPEN;
550 uart->midi_output[substream->number] = substream;
551 spin_unlock_irqrestore(&uart->open_lock, flags);
555 static int snd_uart16550_output_close(struct snd_rawmidi_substream *substream)
558 struct snd_uart16550 *uart = substream->rmidi->private_data;
560 spin_lock_irqsave(&uart->open_lock, flags);
561 uart->filemode &= ~SERIAL_MODE_OUTPUT_OPEN;
562 uart->midi_output[substream->number] = NULL;
563 if (uart->filemode == SERIAL_MODE_NOT_OPENED)
564 snd_uart16550_do_close(uart);
565 spin_unlock_irqrestore(&uart->open_lock, flags);
569 static inline int snd_uart16550_buffer_can_write(struct snd_uart16550 *uart,
572 if (uart->buff_in_count + Num < TX_BUFF_SIZE)
578 static inline int snd_uart16550_write_buffer(struct snd_uart16550 *uart,
581 unsigned short buff_in = uart->buff_in;
582 if (uart->buff_in_count < TX_BUFF_SIZE) {
583 uart->tx_buff[buff_in] = byte;
585 buff_in &= TX_BUFF_MASK;
586 uart->buff_in = buff_in;
587 uart->buff_in_count++;
588 if (uart->irq < 0) /* polling mode */
589 snd_uart16550_add_timer(uart);
595 static int snd_uart16550_output_byte(struct snd_uart16550 *uart,
596 struct snd_rawmidi_substream *substream,
597 unsigned char midi_byte)
599 if (uart->buff_in_count == 0 /* Buffer empty? */
600 && ((uart->adaptor != SNDRV_SERIAL_MS124W_SA &&
601 uart->adaptor != SNDRV_SERIAL_GENERIC) ||
602 (uart->fifo_count == 0 /* FIFO empty? */
603 && (inb(uart->base + UART_MSR) & UART_MSR_CTS)))) { /* CTS? */
605 /* Tx Buffer Empty - try to write immediately */
606 if ((inb(uart->base + UART_LSR) & UART_LSR_THRE) != 0) {
607 /* Transmitter holding register (and Tx FIFO) empty */
608 uart->fifo_count = 1;
609 outb(midi_byte, uart->base + UART_TX);
611 if (uart->fifo_count < uart->fifo_limit) {
613 outb(midi_byte, uart->base + UART_TX);
615 /* Cannot write (buffer empty) -
616 * put char in buffer */
617 snd_uart16550_write_buffer(uart, midi_byte);
621 if (!snd_uart16550_write_buffer(uart, midi_byte)) {
622 snd_printk(KERN_WARNING
623 "%s: Buffer overrun on device at 0x%lx\n",
624 uart->rmidi->name, uart->base);
632 static void snd_uart16550_output_write(struct snd_rawmidi_substream *substream)
635 unsigned char midi_byte, addr_byte;
636 struct snd_uart16550 *uart = substream->rmidi->private_data;
638 static unsigned long lasttime = 0;
640 /* Interrupts are disabled during the updating of the tx_buff,
641 * since it is 'bad' to have two processes updating the same
642 * variables (ie buff_in & buff_out)
645 spin_lock_irqsave(&uart->open_lock, flags);
647 if (uart->irq < 0) /* polling */
648 snd_uart16550_io_loop(uart);
650 if (uart->adaptor == SNDRV_SERIAL_MS124W_MB) {
653 /* in this mode we need two bytes of space */
654 if (uart->buff_in_count > TX_BUFF_SIZE - 2)
656 if (snd_rawmidi_transmit(substream, &midi_byte, 1) != 1)
658 #ifdef SNDRV_SERIAL_MS124W_MB_NOCOMBO
659 /* select exactly one of the four ports */
660 addr_byte = (1 << (substream->number + 4)) | 0x08;
662 /* select any combination of the four ports */
663 addr_byte = (substream->number << 4) | 0x08;
665 if (addr_byte == 0x08)
668 snd_uart16550_output_byte(uart, substream, addr_byte);
670 snd_uart16550_output_byte(uart, substream, midi_byte);
674 while (snd_rawmidi_transmit_peek(substream, &midi_byte, 1) == 1) {
675 /* Also send F5 after 3 seconds with no data
676 * to handle device disconnect */
678 (uart->adaptor == SNDRV_SERIAL_SOUNDCANVAS ||
679 uart->adaptor == SNDRV_SERIAL_GENERIC) &&
680 (uart->prev_out != substream->number ||
681 time_after(jiffies, lasttime + 3*HZ))) {
683 if (snd_uart16550_buffer_can_write(uart, 3)) {
684 /* Roland Soundcanvas part selection */
685 /* If this substream of the data is
686 * different previous substream
687 * in this uart, send the change part
690 uart->prev_out = substream->number;
692 snd_uart16550_output_byte(uart, substream,
695 snd_uart16550_output_byte(uart, substream,
697 /* If midi_byte is a data byte,
698 * send the previous status byte */
699 if (midi_byte < 0x80 &&
700 uart->adaptor == SNDRV_SERIAL_SOUNDCANVAS)
701 snd_uart16550_output_byte(uart, substream, uart->prev_status[uart->prev_out]);
702 } else if (!uart->drop_on_full)
708 if (!snd_uart16550_output_byte(uart, substream, midi_byte) &&
709 !uart->drop_on_full )
712 if (midi_byte >= 0x80 && midi_byte < 0xf0)
713 uart->prev_status[uart->prev_out] = midi_byte;
716 snd_rawmidi_transmit_ack( substream, 1 );
720 spin_unlock_irqrestore(&uart->open_lock, flags);
723 static void snd_uart16550_output_trigger(struct snd_rawmidi_substream *substream,
727 struct snd_uart16550 *uart = substream->rmidi->private_data;
729 spin_lock_irqsave(&uart->open_lock, flags);
731 uart->filemode |= SERIAL_MODE_OUTPUT_TRIGGERED;
733 uart->filemode &= ~SERIAL_MODE_OUTPUT_TRIGGERED;
734 spin_unlock_irqrestore(&uart->open_lock, flags);
736 snd_uart16550_output_write(substream);
739 static const struct snd_rawmidi_ops snd_uart16550_output =
741 .open = snd_uart16550_output_open,
742 .close = snd_uart16550_output_close,
743 .trigger = snd_uart16550_output_trigger,
746 static const struct snd_rawmidi_ops snd_uart16550_input =
748 .open = snd_uart16550_input_open,
749 .close = snd_uart16550_input_close,
750 .trigger = snd_uart16550_input_trigger,
753 static int snd_uart16550_create(struct snd_card *card,
754 unsigned long iobase,
760 struct snd_uart16550 **ruart)
762 struct snd_uart16550 *uart;
766 uart = devm_kzalloc(card->dev, sizeof(*uart), GFP_KERNEL);
769 uart->adaptor = adaptor;
771 spin_lock_init(&uart->open_lock);
774 uart->drop_on_full = droponfull;
776 err = snd_uart16550_detect(uart);
778 printk(KERN_ERR "no UART detected at 0x%lx\n", iobase);
782 if (irq >= 0 && irq != SNDRV_AUTO_IRQ) {
783 if (devm_request_irq(card->dev, irq, snd_uart16550_interrupt,
784 0, "Serial MIDI", uart)) {
785 snd_printk(KERN_WARNING
786 "irq %d busy. Using Polling.\n", irq);
791 uart->divisor = base / speed;
792 uart->speed = base / (unsigned int)uart->divisor;
793 uart->speed_base = base;
797 memset(uart->prev_status, 0x80, sizeof(unsigned char) * SNDRV_SERIAL_MAX_OUTS);
798 timer_setup(&uart->buffer_timer, snd_uart16550_buffer_timer, 0);
799 uart->timer_running = 0;
801 switch (uart->adaptor) {
802 case SNDRV_SERIAL_MS124W_SA:
803 case SNDRV_SERIAL_MS124W_MB:
804 /* MS-124W can draw power from RTS and DTR if they
805 are in opposite states. */
806 outb(UART_MCR_RTS | (0&UART_MCR_DTR), uart->base + UART_MCR);
808 case SNDRV_SERIAL_MS124T:
809 /* MS-124T can draw power from RTS and/or DTR (preferably
810 both) if they are asserted. */
811 outb(UART_MCR_RTS | UART_MCR_DTR, uart->base + UART_MCR);
823 static void snd_uart16550_substreams(struct snd_rawmidi_str *stream)
825 struct snd_rawmidi_substream *substream;
827 list_for_each_entry(substream, &stream->substreams, list) {
828 sprintf(substream->name, "Serial MIDI %d", substream->number + 1);
832 static int snd_uart16550_rmidi(struct snd_uart16550 *uart, int device,
834 struct snd_rawmidi **rmidi)
836 struct snd_rawmidi *rrawmidi;
839 err = snd_rawmidi_new(uart->card, "UART Serial MIDI", device,
840 outs, ins, &rrawmidi);
843 snd_rawmidi_set_ops(rrawmidi, SNDRV_RAWMIDI_STREAM_INPUT,
844 &snd_uart16550_input);
845 snd_rawmidi_set_ops(rrawmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
846 &snd_uart16550_output);
847 strcpy(rrawmidi->name, "Serial MIDI");
848 snd_uart16550_substreams(&rrawmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT]);
849 snd_uart16550_substreams(&rrawmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT]);
850 rrawmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
851 SNDRV_RAWMIDI_INFO_INPUT |
852 SNDRV_RAWMIDI_INFO_DUPLEX;
853 rrawmidi->private_data = uart;
859 static int snd_serial_probe(struct platform_device *devptr)
861 struct snd_card *card;
862 struct snd_uart16550 *uart;
864 int dev = devptr->id;
866 switch (adaptor[dev]) {
867 case SNDRV_SERIAL_SOUNDCANVAS:
870 case SNDRV_SERIAL_MS124T:
871 case SNDRV_SERIAL_MS124W_SA:
875 case SNDRV_SERIAL_MS124W_MB:
879 case SNDRV_SERIAL_GENERIC:
883 "Adaptor type is out of range 0-%d (%d)\n",
884 SNDRV_SERIAL_MAX_ADAPTOR, adaptor[dev]);
888 if (outs[dev] < 1 || outs[dev] > SNDRV_SERIAL_MAX_OUTS) {
890 "Count of outputs is out of range 1-%d (%d)\n",
891 SNDRV_SERIAL_MAX_OUTS, outs[dev]);
895 if (ins[dev] < 1 || ins[dev] > SNDRV_SERIAL_MAX_INS) {
897 "Count of inputs is out of range 1-%d (%d)\n",
898 SNDRV_SERIAL_MAX_INS, ins[dev]);
902 err = snd_devm_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE,
907 strcpy(card->driver, "Serial");
908 strcpy(card->shortname, "Serial MIDI (UART16550A)");
910 err = snd_uart16550_create(card, port[dev], irq[dev], speed[dev],
911 base[dev], adaptor[dev], droponfull[dev],
916 err = snd_uart16550_rmidi(uart, 0, outs[dev], ins[dev], &uart->rmidi);
920 sprintf(card->longname, "%s [%s] at %#lx, irq %d",
922 adaptor_names[uart->adaptor],
926 err = snd_card_register(card);
930 platform_set_drvdata(devptr, card);
934 #define SND_SERIAL_DRIVER "snd_serial_u16550"
936 static struct platform_driver snd_serial_driver = {
937 .probe = snd_serial_probe,
939 .name = SND_SERIAL_DRIVER,
943 static void snd_serial_unregister_all(void)
947 for (i = 0; i < ARRAY_SIZE(devices); ++i)
948 platform_device_unregister(devices[i]);
949 platform_driver_unregister(&snd_serial_driver);
952 static int __init alsa_card_serial_init(void)
956 err = platform_driver_register(&snd_serial_driver);
961 for (i = 0; i < SNDRV_CARDS; i++) {
962 struct platform_device *device;
965 device = platform_device_register_simple(SND_SERIAL_DRIVER,
969 if (!platform_get_drvdata(device)) {
970 platform_device_unregister(device);
978 printk(KERN_ERR "serial midi soundcard not found or device busy\n");
980 snd_serial_unregister_all();
986 static void __exit alsa_card_serial_exit(void)
988 snd_serial_unregister_all();
991 module_init(alsa_card_serial_init)
992 module_exit(alsa_card_serial_exit)