Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * serial.c |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 4 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz>, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Isaku Yamahata <yamahata@private.email.ne.jp>, |
| 6 | * George Hansper <ghansper@apana.org.au>, |
| 7 | * Hannu Savolainen |
| 8 | * |
| 9 | * This code is based on the code from ALSA 0.5.9, but heavily rewritten. |
| 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 16 | * |
| 17 | * More documentation can be found in serial-u16550.txt. |
| 18 | */ |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/init.h> |
| 21 | #include <linux/interrupt.h> |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 22 | #include <linux/err.h> |
| 23 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/slab.h> |
| 25 | #include <linux/ioport.h> |
Paul Gortmaker | 65a7721 | 2011-07-15 13:13:37 -0400 | [diff] [blame] | 26 | #include <linux/module.h> |
Takashi Iwai | 6cbbfe1 | 2015-01-28 16:49:33 +0100 | [diff] [blame] | 27 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <sound/core.h> |
| 29 | #include <sound/rawmidi.h> |
| 30 | #include <sound/initval.h> |
| 31 | |
| 32 | #include <linux/serial_reg.h> |
Julia Lawall | f11b799 | 2008-01-07 13:33:45 +0100 | [diff] [blame] | 33 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | MODULE_DESCRIPTION("MIDI serial u16550"); |
| 36 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 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 |
Takashi Iwai | 6c845488 | 2020-01-05 15:48:13 +0100 | [diff] [blame] | 44 | static const char * const adaptor_names[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | "Soundcanvas", |
| 46 | "MS-124T", |
| 47 | "MS-124W S/A", |
| 48 | "MS-124W M/B", |
| 49 | "Generic" |
| 50 | }; |
| 51 | |
| 52 | #define SNDRV_SERIAL_NORMALBUFF 0 /* Normal blocking buffer operation */ |
| 53 | #define SNDRV_SERIAL_DROPBUFF 1 /* Non-blocking discard operation */ |
| 54 | |
| 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 */ |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 57 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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}; |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 65 | static bool droponfull[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS -1)] = SNDRV_SERIAL_NORMALBUFF }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 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."); |
David Howells | b11ce42 | 2017-04-04 16:54:30 +0100 | [diff] [blame] | 73 | module_param_hw_array(port, long, ioport, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | MODULE_PARM_DESC(port, "Port # for UART16550A chip."); |
David Howells | b11ce42 | 2017-04-04 16:54:30 +0100 | [diff] [blame] | 75 | module_param_hw_array(irq, int, irq, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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"); |
| 87 | |
| 88 | module_param_array(adaptor, int, NULL, 0444); |
| 89 | MODULE_PARM_DESC(adaptor, "Type of adaptor."); |
| 90 | |
| 91 | /*#define SNDRV_SERIAL_MS124W_MB_NOCOMBO 1*/ /* Address outs as 0-3 instead of bitmap */ |
| 92 | |
| 93 | #define SNDRV_SERIAL_MAX_OUTS 16 /* max 64, min 16 */ |
| 94 | #define SNDRV_SERIAL_MAX_INS 16 /* max 64, min 16 */ |
| 95 | |
| 96 | #define TX_BUFF_SIZE (1<<15) /* Must be 2^n */ |
| 97 | #define TX_BUFF_MASK (TX_BUFF_SIZE - 1) |
| 98 | |
| 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) |
| 104 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 105 | struct snd_uart16550 { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 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]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 111 | int filemode; /* open status of file */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | spinlock_t open_lock; |
| 114 | |
| 115 | int irq; |
| 116 | |
| 117 | unsigned long base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | unsigned int speed; |
| 120 | unsigned int speed_base; |
| 121 | unsigned char divisor; |
| 122 | |
| 123 | unsigned char old_divisor_lsb; |
| 124 | unsigned char old_divisor_msb; |
| 125 | unsigned char old_line_ctrl_reg; |
| 126 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 127 | /* parameter for using of write loop */ |
| 128 | short int fifo_limit; /* used in uart16550 */ |
| 129 | short int fifo_count; /* used in uart16550 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 131 | /* type of adaptor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | int adaptor; |
| 133 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 134 | /* inputs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | int prev_in; |
| 136 | unsigned char rstatus; |
| 137 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 138 | /* outputs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | int prev_out; |
| 140 | unsigned char prev_status[SNDRV_SERIAL_MAX_OUTS]; |
| 141 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 142 | /* write buffer and its writing/reading position */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | unsigned char tx_buff[TX_BUFF_SIZE]; |
| 144 | int buff_in_count; |
| 145 | int buff_in; |
| 146 | int buff_out; |
| 147 | int drop_on_full; |
| 148 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 149 | /* wait timer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | unsigned int timer_running:1; |
| 151 | struct timer_list buffer_timer; |
| 152 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 153 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 155 | static struct platform_device *devices[SNDRV_CARDS]; |
| 156 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 157 | static inline void snd_uart16550_add_timer(struct snd_uart16550 *uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 159 | if (!uart->timer_running) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | /* timer 38600bps * 10bit * 16byte */ |
Takashi Iwai | d80d05f | 2015-01-19 11:29:09 +0100 | [diff] [blame] | 161 | mod_timer(&uart->buffer_timer, jiffies + (HZ + 255) / 256); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | uart->timer_running = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 166 | static inline void snd_uart16550_del_timer(struct snd_uart16550 *uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | if (uart->timer_running) { |
| 169 | del_timer(&uart->buffer_timer); |
| 170 | uart->timer_running = 0; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /* This macro is only used in snd_uart16550_io_loop */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 175 | static inline void snd_uart16550_buffer_output(struct snd_uart16550 *uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
| 177 | unsigned short buff_out = uart->buff_out; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 178 | if (uart->buff_in_count > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | outb(uart->tx_buff[buff_out], uart->base + UART_TX); |
| 180 | uart->fifo_count++; |
| 181 | buff_out++; |
| 182 | buff_out &= TX_BUFF_MASK; |
| 183 | uart->buff_out = buff_out; |
| 184 | uart->buff_in_count--; |
| 185 | } |
| 186 | } |
| 187 | |
| 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 |
| 191 | */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 192 | static void snd_uart16550_io_loop(struct snd_uart16550 * uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | { |
| 194 | unsigned char c, status; |
| 195 | int substream; |
| 196 | |
| 197 | /* recall previous stream */ |
| 198 | substream = uart->prev_in; |
| 199 | |
| 200 | /* Read Loop */ |
| 201 | while ((status = inb(uart->base + UART_LSR)) & UART_LSR_DR) { |
| 202 | /* while receive data ready */ |
| 203 | c = inb(uart->base + UART_RX); |
| 204 | |
| 205 | /* keep track of last status byte */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 206 | if (c & 0x80) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | uart->rstatus = c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 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) |
| 213 | substream = c - 1; |
| 214 | if (c != 0xf5) |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 215 | /* prevent future bytes from being |
| 216 | interpreted as streams */ |
| 217 | uart->rstatus = 0; |
| 218 | } else if ((uart->filemode & SERIAL_MODE_INPUT_OPEN) |
| 219 | && uart->midi_input[substream]) |
| 220 | snd_rawmidi_receive(uart->midi_input[substream], |
| 221 | &c, 1); |
| 222 | } else if ((uart->filemode & SERIAL_MODE_INPUT_OPEN) && |
| 223 | uart->midi_input[substream]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | snd_rawmidi_receive(uart->midi_input[substream], &c, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
| 226 | if (status & UART_LSR_OE) |
Takashi Iwai | 4520383 | 2009-02-05 15:51:50 +0100 | [diff] [blame] | 227 | snd_printk(KERN_WARNING |
| 228 | "%s: Overrun on device at 0x%lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | uart->rmidi->name, uart->base); |
| 230 | } |
| 231 | |
| 232 | /* remember the last stream */ |
| 233 | uart->prev_in = substream; |
| 234 | |
| 235 | /* no need of check SERIAL_MODE_OUTPUT_OPEN because if not, |
| 236 | buffer is never filled. */ |
| 237 | /* Check write status */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 238 | if (status & UART_LSR_THRE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | uart->fifo_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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); |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 244 | while (uart->fifo_count == 0 && (status & UART_MSR_CTS) && |
| 245 | uart->buff_in_count > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | snd_uart16550_buffer_output(uart); |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 247 | status = inb(uart->base + UART_MSR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
| 249 | } else { |
| 250 | /* Write loop */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 251 | while (uart->fifo_count < uart->fifo_limit /* Can we write ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | && uart->buff_in_count > 0) /* Do we want to? */ |
| 253 | snd_uart16550_buffer_output(uart); |
| 254 | } |
| 255 | if (uart->irq < 0 && uart->buff_in_count > 0) |
| 256 | snd_uart16550_add_timer(uart); |
| 257 | } |
| 258 | |
| 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: |
| 265 | * a) Writing a byte |
| 266 | * b) Reading the IIR |
| 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 |
| 273 | * opened/closed. |
| 274 | * |
| 275 | * |
| 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?) |
| 278 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 279 | static irqreturn_t snd_uart16550_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 281 | struct snd_uart16550 *uart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 283 | uart = dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | spin_lock(&uart->open_lock); |
| 285 | if (uart->filemode == SERIAL_MODE_NOT_OPENED) { |
| 286 | spin_unlock(&uart->open_lock); |
| 287 | return IRQ_NONE; |
| 288 | } |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 289 | /* indicate to the UART that the interrupt has been serviced */ |
| 290 | inb(uart->base + UART_IIR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | snd_uart16550_io_loop(uart); |
| 292 | spin_unlock(&uart->open_lock); |
| 293 | return IRQ_HANDLED; |
| 294 | } |
| 295 | |
| 296 | /* When the polling mode, this function calls snd_uart16550_io_loop. */ |
Kees Cook | bc47ba9 | 2017-10-24 08:34:29 -0700 | [diff] [blame] | 297 | static void snd_uart16550_buffer_timer(struct timer_list *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | { |
| 299 | unsigned long flags; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 300 | struct snd_uart16550 *uart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Kees Cook | bc47ba9 | 2017-10-24 08:34:29 -0700 | [diff] [blame] | 302 | uart = from_timer(uart, t, buffer_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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); |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * this method probes, if an uart sits on given port |
| 311 | * return 0 if found |
| 312 | * return negative error if not found |
| 313 | */ |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 314 | static int snd_uart16550_detect(struct snd_uart16550 *uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
| 316 | unsigned long io_base = uart->base; |
| 317 | int ok; |
| 318 | unsigned char c; |
| 319 | |
| 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 */ |
| 323 | } |
| 324 | |
Takashi Iwai | 60d03de | 2021-07-15 09:59:37 +0200 | [diff] [blame] | 325 | if (!devm_request_region(uart->card->dev, io_base, 8, "Serial MIDI")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | snd_printk(KERN_ERR "u16550: can't grab port 0x%lx\n", io_base); |
| 327 | return -EBUSY; |
| 328 | } |
| 329 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 330 | /* uart detected unless one of the following tests should fail */ |
| 331 | ok = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 */ |
| 336 | if ((c & 0xf0) != 0) |
| 337 | ok = 0; /* failed */ |
| 338 | |
| 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 */ |
| 343 | if (c != 0xaa) |
| 344 | ok = 0; /* failed */ |
| 345 | |
| 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 */ |
| 350 | if (c != 0x55) |
| 351 | ok = 0; /* failed */ |
| 352 | |
| 353 | return ok; |
| 354 | } |
| 355 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 356 | static void snd_uart16550_do_open(struct snd_uart16550 * uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | { |
| 358 | char byte; |
| 359 | |
| 360 | /* Initialize basic variables */ |
| 361 | uart->buff_in_count = 0; |
| 362 | uart->buff_in = 0; |
| 363 | uart->buff_out = 0; |
| 364 | uart->fifo_limit = 1; |
| 365 | uart->fifo_count = 0; |
| 366 | uart->timer_running = 0; |
| 367 | |
| 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 |
| 374 | */ |
| 375 | ,uart->base + UART_FCR); /* FIFO Control Register */ |
| 376 | |
| 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); |
| 385 | |
| 386 | outb(uart->divisor |
| 387 | ,uart->base + UART_DLL); /* Divisor Latch Low */ |
| 388 | outb(0 |
| 389 | ,uart->base + UART_DLM); /* Divisor Latch High */ |
| 390 | /* DLAB is reset to 0 in next outb() */ |
| 391 | } |
| 392 | /* Set serial parameters (parity off, etc) */ |
| 393 | outb(UART_LCR_WLEN8 /* 8 data-bits */ |
| 394 | | 0 /* 1 stop-bit */ |
| 395 | | 0 /* parity off */ |
| 396 | | 0 /* DLAB = 0 */ |
| 397 | ,uart->base + UART_LCR); /* Line Control Register */ |
| 398 | |
| 399 | switch (uart->adaptor) { |
| 400 | default: |
| 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 |
| 405 | */ |
| 406 | ,uart->base + UART_MCR); /* Modem Control Register */ |
| 407 | break; |
| 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); |
| 414 | break; |
| 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); |
| 420 | break; |
| 421 | } |
| 422 | |
| 423 | if (uart->irq < 0) { |
| 424 | byte = (0 & UART_IER_RDI) /* Disable Receiver data interrupt */ |
| 425 | |(0 & UART_IER_THRI) /* Disable Transmitter holding register empty interrupt */ |
| 426 | ; |
| 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 */ |
| 430 | ; |
| 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 */ |
| 435 | ; |
| 436 | } else { |
| 437 | byte = UART_IER_RDI /* Enable Receiver data interrupt */ |
| 438 | | UART_IER_THRI /* Enable Transmitter holding register empty interrupt */ |
| 439 | ; |
| 440 | } |
Joe Perches | 561de31 | 2007-12-18 13:13:47 +0100 | [diff] [blame] | 441 | outb(byte, uart->base + UART_IER); /* Interrupt enable Register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 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 */ |
| 446 | } |
| 447 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 448 | static void snd_uart16550_do_close(struct snd_uart16550 * uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | { |
| 450 | if (uart->irq < 0) |
| 451 | snd_uart16550_del_timer(uart); |
| 452 | |
| 453 | /* NOTE: may need to disable interrupts before de-registering out handler. |
| 454 | * For now, the consequences are harmless. |
| 455 | */ |
| 456 | |
| 457 | outb((0 & UART_IER_RDI) /* Disable Receiver data interrupt */ |
| 458 | |(0 & UART_IER_THRI) /* Disable Transmitter holding register empty interrupt */ |
Joe Perches | 561de31 | 2007-12-18 13:13:47 +0100 | [diff] [blame] | 459 | ,uart->base + UART_IER); /* Interrupt enable Register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | switch (uart->adaptor) { |
| 462 | default: |
| 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 */ |
| 467 | break; |
| 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); |
| 474 | break; |
| 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); |
| 480 | break; |
| 481 | } |
| 482 | |
| 483 | inb(uart->base + UART_IIR); /* Clear any outstanding interrupts */ |
| 484 | |
| 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 */ |
| 496 | } |
| 497 | } |
| 498 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 499 | static int snd_uart16550_input_open(struct snd_rawmidi_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { |
| 501 | unsigned long flags; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 502 | struct snd_uart16550 *uart = substream->rmidi->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
| 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); |
| 510 | return 0; |
| 511 | } |
| 512 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 513 | static int snd_uart16550_input_close(struct snd_rawmidi_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | { |
| 515 | unsigned long flags; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 516 | struct snd_uart16550 *uart = substream->rmidi->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 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); |
| 524 | return 0; |
| 525 | } |
| 526 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 527 | static void snd_uart16550_input_trigger(struct snd_rawmidi_substream *substream, |
| 528 | int up) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | { |
| 530 | unsigned long flags; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 531 | struct snd_uart16550 *uart = substream->rmidi->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
| 533 | spin_lock_irqsave(&uart->open_lock, flags); |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 534 | if (up) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | uart->filemode |= SERIAL_MODE_INPUT_TRIGGERED; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 536 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | uart->filemode &= ~SERIAL_MODE_INPUT_TRIGGERED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | spin_unlock_irqrestore(&uart->open_lock, flags); |
| 539 | } |
| 540 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 541 | static int snd_uart16550_output_open(struct snd_rawmidi_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
| 543 | unsigned long flags; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 544 | struct snd_uart16550 *uart = substream->rmidi->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
| 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); |
| 552 | return 0; |
| 553 | }; |
| 554 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 555 | static int snd_uart16550_output_close(struct snd_rawmidi_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
| 557 | unsigned long flags; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 558 | struct snd_uart16550 *uart = substream->rmidi->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 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); |
| 566 | return 0; |
| 567 | }; |
| 568 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 569 | static inline int snd_uart16550_buffer_can_write(struct snd_uart16550 *uart, |
| 570 | int Num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 572 | if (uart->buff_in_count + Num < TX_BUFF_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | return 1; |
| 574 | else |
| 575 | return 0; |
| 576 | } |
| 577 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 578 | static inline int snd_uart16550_write_buffer(struct snd_uart16550 *uart, |
| 579 | unsigned char byte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | { |
| 581 | unsigned short buff_in = uart->buff_in; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 582 | if (uart->buff_in_count < TX_BUFF_SIZE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | uart->tx_buff[buff_in] = byte; |
| 584 | buff_in++; |
| 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); |
| 590 | return 1; |
| 591 | } else |
| 592 | return 0; |
| 593 | } |
| 594 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 595 | static int snd_uart16550_output_byte(struct snd_uart16550 *uart, |
| 596 | struct snd_rawmidi_substream *substream, |
| 597 | unsigned char midi_byte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 599 | if (uart->buff_in_count == 0 /* Buffer empty? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | && ((uart->adaptor != SNDRV_SERIAL_MS124W_SA && |
| 601 | uart->adaptor != SNDRV_SERIAL_GENERIC) || |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 602 | (uart->fifo_count == 0 /* FIFO empty? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | && (inb(uart->base + UART_MSR) & UART_MSR_CTS)))) { /* CTS? */ |
| 604 | |
| 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); |
| 610 | } else { |
| 611 | if (uart->fifo_count < uart->fifo_limit) { |
| 612 | uart->fifo_count++; |
| 613 | outb(midi_byte, uart->base + UART_TX); |
| 614 | } else { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 615 | /* Cannot write (buffer empty) - |
| 616 | * put char in buffer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | snd_uart16550_write_buffer(uart, midi_byte); |
| 618 | } |
| 619 | } |
| 620 | } else { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 621 | if (!snd_uart16550_write_buffer(uart, midi_byte)) { |
Takashi Iwai | 4520383 | 2009-02-05 15:51:50 +0100 | [diff] [blame] | 622 | snd_printk(KERN_WARNING |
| 623 | "%s: Buffer overrun on device at 0x%lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | uart->rmidi->name, uart->base); |
| 625 | return 0; |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | return 1; |
| 630 | } |
| 631 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 632 | static void snd_uart16550_output_write(struct snd_rawmidi_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | { |
| 634 | unsigned long flags; |
| 635 | unsigned char midi_byte, addr_byte; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 636 | struct snd_uart16550 *uart = substream->rmidi->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | char first; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 638 | static unsigned long lasttime = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
Joe Perches | 561de31 | 2007-12-18 13:13:47 +0100 | [diff] [blame] | 640 | /* Interrupts are disabled during the updating of the tx_buff, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | * since it is 'bad' to have two processes updating the same |
| 642 | * variables (ie buff_in & buff_out) |
| 643 | */ |
| 644 | |
| 645 | spin_lock_irqsave(&uart->open_lock, flags); |
| 646 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 647 | if (uart->irq < 0) /* polling */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | snd_uart16550_io_loop(uart); |
| 649 | |
| 650 | if (uart->adaptor == SNDRV_SERIAL_MS124W_MB) { |
| 651 | while (1) { |
| 652 | /* buffer full? */ |
| 653 | /* in this mode we need two bytes of space */ |
| 654 | if (uart->buff_in_count > TX_BUFF_SIZE - 2) |
| 655 | break; |
| 656 | if (snd_rawmidi_transmit(substream, &midi_byte, 1) != 1) |
| 657 | break; |
| 658 | #ifdef SNDRV_SERIAL_MS124W_MB_NOCOMBO |
| 659 | /* select exactly one of the four ports */ |
| 660 | addr_byte = (1 << (substream->number + 4)) | 0x08; |
| 661 | #else |
| 662 | /* select any combination of the four ports */ |
| 663 | addr_byte = (substream->number << 4) | 0x08; |
| 664 | /* ...except none */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 665 | if (addr_byte == 0x08) |
| 666 | addr_byte = 0xf8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | #endif |
| 668 | snd_uart16550_output_byte(uart, substream, addr_byte); |
| 669 | /* send midi byte */ |
| 670 | snd_uart16550_output_byte(uart, substream, midi_byte); |
| 671 | } |
| 672 | } else { |
| 673 | first = 0; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 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 */ |
| 677 | if (first == 0 && |
| 678 | (uart->adaptor == SNDRV_SERIAL_SOUNDCANVAS || |
| 679 | uart->adaptor == SNDRV_SERIAL_GENERIC) && |
| 680 | (uart->prev_out != substream->number || |
Julia Lawall | f11b799 | 2008-01-07 13:33:45 +0100 | [diff] [blame] | 681 | time_after(jiffies, lasttime + 3*HZ))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 683 | if (snd_uart16550_buffer_can_write(uart, 3)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | /* Roland Soundcanvas part selection */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 685 | /* If this substream of the data is |
| 686 | * different previous substream |
| 687 | * in this uart, send the change part |
| 688 | * event |
| 689 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | uart->prev_out = substream->number; |
| 691 | /* change part */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 692 | snd_uart16550_output_byte(uart, substream, |
| 693 | 0xf5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | /* data */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 695 | snd_uart16550_output_byte(uart, substream, |
| 696 | uart->prev_out + 1); |
| 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) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | snd_uart16550_output_byte(uart, substream, uart->prev_status[uart->prev_out]); |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 702 | } else if (!uart->drop_on_full) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | break; |
| 704 | |
| 705 | } |
| 706 | |
| 707 | /* send midi byte */ |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 708 | if (!snd_uart16550_output_byte(uart, substream, midi_byte) && |
| 709 | !uart->drop_on_full ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | break; |
| 711 | |
| 712 | if (midi_byte >= 0x80 && midi_byte < 0xf0) |
| 713 | uart->prev_status[uart->prev_out] = midi_byte; |
| 714 | first = 1; |
| 715 | |
| 716 | snd_rawmidi_transmit_ack( substream, 1 ); |
| 717 | } |
| 718 | lasttime = jiffies; |
| 719 | } |
| 720 | spin_unlock_irqrestore(&uart->open_lock, flags); |
| 721 | } |
| 722 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 723 | static void snd_uart16550_output_trigger(struct snd_rawmidi_substream *substream, |
| 724 | int up) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | { |
| 726 | unsigned long flags; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 727 | struct snd_uart16550 *uart = substream->rmidi->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | |
| 729 | spin_lock_irqsave(&uart->open_lock, flags); |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 730 | if (up) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | uart->filemode |= SERIAL_MODE_OUTPUT_TRIGGERED; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 732 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | uart->filemode &= ~SERIAL_MODE_OUTPUT_TRIGGERED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | spin_unlock_irqrestore(&uart->open_lock, flags); |
| 735 | if (up) |
| 736 | snd_uart16550_output_write(substream); |
| 737 | } |
| 738 | |
Takashi Iwai | c36f486 | 2017-01-05 17:28:39 +0100 | [diff] [blame] | 739 | static const struct snd_rawmidi_ops snd_uart16550_output = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { |
| 741 | .open = snd_uart16550_output_open, |
| 742 | .close = snd_uart16550_output_close, |
| 743 | .trigger = snd_uart16550_output_trigger, |
| 744 | }; |
| 745 | |
Takashi Iwai | c36f486 | 2017-01-05 17:28:39 +0100 | [diff] [blame] | 746 | static const struct snd_rawmidi_ops snd_uart16550_input = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
| 748 | .open = snd_uart16550_input_open, |
| 749 | .close = snd_uart16550_input_close, |
| 750 | .trigger = snd_uart16550_input_trigger, |
| 751 | }; |
| 752 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 753 | static int snd_uart16550_create(struct snd_card *card, |
| 754 | unsigned long iobase, |
| 755 | int irq, |
| 756 | unsigned int speed, |
| 757 | unsigned int base, |
| 758 | int adaptor, |
| 759 | int droponfull, |
| 760 | struct snd_uart16550 **ruart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 762 | struct snd_uart16550 *uart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | int err; |
| 764 | |
| 765 | |
Takashi Iwai | 60d03de | 2021-07-15 09:59:37 +0200 | [diff] [blame] | 766 | uart = devm_kzalloc(card->dev, sizeof(*uart), GFP_KERNEL); |
Takashi Iwai | d0ad13e | 2021-06-08 16:05:36 +0200 | [diff] [blame] | 767 | if (!uart) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | return -ENOMEM; |
| 769 | uart->adaptor = adaptor; |
| 770 | uart->card = card; |
| 771 | spin_lock_init(&uart->open_lock); |
| 772 | uart->irq = -1; |
| 773 | uart->base = iobase; |
| 774 | uart->drop_on_full = droponfull; |
| 775 | |
Takashi Iwai | d0ad13e | 2021-06-08 16:05:36 +0200 | [diff] [blame] | 776 | err = snd_uart16550_detect(uart); |
| 777 | if (err <= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | printk(KERN_ERR "no UART detected at 0x%lx\n", iobase); |
Takashi Iwai | 68b8bc0 | 2006-01-23 15:21:28 +0100 | [diff] [blame] | 779 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | if (irq >= 0 && irq != SNDRV_AUTO_IRQ) { |
Takashi Iwai | 60d03de | 2021-07-15 09:59:37 +0200 | [diff] [blame] | 783 | if (devm_request_irq(card->dev, irq, snd_uart16550_interrupt, |
| 784 | 0, "Serial MIDI", uart)) { |
Takashi Iwai | 4520383 | 2009-02-05 15:51:50 +0100 | [diff] [blame] | 785 | snd_printk(KERN_WARNING |
| 786 | "irq %d busy. Using Polling.\n", irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } else { |
| 788 | uart->irq = irq; |
| 789 | } |
| 790 | } |
| 791 | uart->divisor = base / speed; |
| 792 | uart->speed = base / (unsigned int)uart->divisor; |
| 793 | uart->speed_base = base; |
| 794 | uart->prev_out = -1; |
| 795 | uart->prev_in = 0; |
| 796 | uart->rstatus = 0; |
| 797 | memset(uart->prev_status, 0x80, sizeof(unsigned char) * SNDRV_SERIAL_MAX_OUTS); |
Kees Cook | bc47ba9 | 2017-10-24 08:34:29 -0700 | [diff] [blame] | 798 | timer_setup(&uart->buffer_timer, snd_uart16550_buffer_timer, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | uart->timer_running = 0; |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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); |
| 807 | break; |
| 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); |
| 812 | break; |
| 813 | default: |
| 814 | break; |
| 815 | } |
| 816 | |
| 817 | if (ruart) |
| 818 | *ruart = uart; |
| 819 | |
| 820 | return 0; |
| 821 | } |
| 822 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 823 | static void snd_uart16550_substreams(struct snd_rawmidi_str *stream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 825 | struct snd_rawmidi_substream *substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 827 | list_for_each_entry(substream, &stream->substreams, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | sprintf(substream->name, "Serial MIDI %d", substream->number + 1); |
| 829 | } |
| 830 | } |
| 831 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 832 | static int snd_uart16550_rmidi(struct snd_uart16550 *uart, int device, |
| 833 | int outs, int ins, |
| 834 | struct snd_rawmidi **rmidi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 836 | struct snd_rawmidi *rrawmidi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | int err; |
| 838 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 839 | err = snd_rawmidi_new(uart->card, "UART Serial MIDI", device, |
| 840 | outs, ins, &rrawmidi); |
| 841 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | return err; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
| 854 | if (rmidi) |
| 855 | *rmidi = rrawmidi; |
| 856 | return 0; |
| 857 | } |
| 858 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 859 | static int snd_serial_probe(struct platform_device *devptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 861 | struct snd_card *card; |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 862 | struct snd_uart16550 *uart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | int err; |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 864 | int dev = devptr->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | |
| 866 | switch (adaptor[dev]) { |
| 867 | case SNDRV_SERIAL_SOUNDCANVAS: |
| 868 | ins[dev] = 1; |
| 869 | break; |
| 870 | case SNDRV_SERIAL_MS124T: |
| 871 | case SNDRV_SERIAL_MS124W_SA: |
| 872 | outs[dev] = 1; |
| 873 | ins[dev] = 1; |
| 874 | break; |
| 875 | case SNDRV_SERIAL_MS124W_MB: |
| 876 | outs[dev] = 16; |
| 877 | ins[dev] = 1; |
| 878 | break; |
| 879 | case SNDRV_SERIAL_GENERIC: |
| 880 | break; |
| 881 | default: |
Takashi Iwai | 4520383 | 2009-02-05 15:51:50 +0100 | [diff] [blame] | 882 | snd_printk(KERN_ERR |
| 883 | "Adaptor type is out of range 0-%d (%d)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | SNDRV_SERIAL_MAX_ADAPTOR, adaptor[dev]); |
| 885 | return -ENODEV; |
| 886 | } |
| 887 | |
| 888 | if (outs[dev] < 1 || outs[dev] > SNDRV_SERIAL_MAX_OUTS) { |
Takashi Iwai | 4520383 | 2009-02-05 15:51:50 +0100 | [diff] [blame] | 889 | snd_printk(KERN_ERR |
| 890 | "Count of outputs is out of range 1-%d (%d)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | SNDRV_SERIAL_MAX_OUTS, outs[dev]); |
| 892 | return -ENODEV; |
| 893 | } |
| 894 | |
| 895 | if (ins[dev] < 1 || ins[dev] > SNDRV_SERIAL_MAX_INS) { |
Takashi Iwai | 4520383 | 2009-02-05 15:51:50 +0100 | [diff] [blame] | 896 | snd_printk(KERN_ERR |
| 897 | "Count of inputs is out of range 1-%d (%d)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | SNDRV_SERIAL_MAX_INS, ins[dev]); |
| 899 | return -ENODEV; |
| 900 | } |
| 901 | |
Takashi Iwai | 60d03de | 2021-07-15 09:59:37 +0200 | [diff] [blame] | 902 | err = snd_devm_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE, |
| 903 | 0, &card); |
Takashi Iwai | bd7dd77 | 2008-12-28 16:45:02 +0100 | [diff] [blame] | 904 | if (err < 0) |
| 905 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | |
| 907 | strcpy(card->driver, "Serial"); |
| 908 | strcpy(card->shortname, "Serial MIDI (UART16550A)"); |
| 909 | |
Takashi Iwai | d0ad13e | 2021-06-08 16:05:36 +0200 | [diff] [blame] | 910 | err = snd_uart16550_create(card, port[dev], irq[dev], speed[dev], |
| 911 | base[dev], adaptor[dev], droponfull[dev], |
| 912 | &uart); |
| 913 | if (err < 0) |
Takashi Iwai | 60d03de | 2021-07-15 09:59:37 +0200 | [diff] [blame] | 914 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | |
Takashi Iwai | 0b830bac | 2006-11-24 16:13:57 +0100 | [diff] [blame] | 916 | err = snd_uart16550_rmidi(uart, 0, outs[dev], ins[dev], &uart->rmidi); |
| 917 | if (err < 0) |
Takashi Iwai | 60d03de | 2021-07-15 09:59:37 +0200 | [diff] [blame] | 918 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
Clemens Ladisch | bd0185c | 2009-05-05 15:39:39 +0200 | [diff] [blame] | 920 | sprintf(card->longname, "%s [%s] at %#lx, irq %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | card->shortname, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | adaptor_names[uart->adaptor], |
Clemens Ladisch | bd0185c | 2009-05-05 15:39:39 +0200 | [diff] [blame] | 923 | uart->base, |
| 924 | uart->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
Takashi Iwai | d0ad13e | 2021-06-08 16:05:36 +0200 | [diff] [blame] | 926 | err = snd_card_register(card); |
| 927 | if (err < 0) |
Takashi Iwai | 60d03de | 2021-07-15 09:59:37 +0200 | [diff] [blame] | 928 | return err; |
Takashi Iwai | 16dab54 | 2005-09-05 17:17:58 +0200 | [diff] [blame] | 929 | |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 930 | platform_set_drvdata(devptr, card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | return 0; |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | #define SND_SERIAL_DRIVER "snd_serial_u16550" |
| 935 | |
| 936 | static struct platform_driver snd_serial_driver = { |
| 937 | .probe = snd_serial_probe, |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 938 | .driver = { |
Takashi Iwai | 8bf01d8 | 2012-07-02 10:50:24 +0200 | [diff] [blame] | 939 | .name = SND_SERIAL_DRIVER, |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 940 | }, |
| 941 | }; |
| 942 | |
Randy Dunlap | bdec0c7 | 2007-06-25 12:07:38 +0200 | [diff] [blame] | 943 | static void snd_serial_unregister_all(void) |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 944 | { |
| 945 | int i; |
| 946 | |
| 947 | for (i = 0; i < ARRAY_SIZE(devices); ++i) |
| 948 | platform_device_unregister(devices[i]); |
| 949 | platform_driver_unregister(&snd_serial_driver); |
| 950 | } |
| 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | static int __init alsa_card_serial_init(void) |
| 953 | { |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 954 | int i, cards, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | |
Takashi Iwai | d0ad13e | 2021-06-08 16:05:36 +0200 | [diff] [blame] | 956 | err = platform_driver_register(&snd_serial_driver); |
| 957 | if (err < 0) |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 958 | return err; |
| 959 | |
| 960 | cards = 0; |
Takashi Iwai | 8278ca8 | 2006-02-20 11:57:34 +0100 | [diff] [blame] | 961 | for (i = 0; i < SNDRV_CARDS; i++) { |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 962 | struct platform_device *device; |
Takashi Iwai | 8278ca8 | 2006-02-20 11:57:34 +0100 | [diff] [blame] | 963 | if (! enable[i]) |
| 964 | continue; |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 965 | device = platform_device_register_simple(SND_SERIAL_DRIVER, |
| 966 | i, NULL, 0); |
Rene Herman | a182ee9 | 2006-04-13 12:57:11 +0200 | [diff] [blame] | 967 | if (IS_ERR(device)) |
| 968 | continue; |
Rene Herman | 7152447 | 2006-04-13 12:58:06 +0200 | [diff] [blame] | 969 | if (!platform_get_drvdata(device)) { |
| 970 | platform_device_unregister(device); |
| 971 | continue; |
| 972 | } |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 973 | devices[i] = device; |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 974 | cards++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | } |
Takashi Iwai | 9caf6b5 | 2005-11-17 16:02:30 +0100 | [diff] [blame] | 976 | if (! cards) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | #ifdef MODULE |
| 978 | printk(KERN_ERR "serial midi soundcard not found or device busy\n"); |
| 979 | #endif |
Rene Herman | a182ee9 | 2006-04-13 12:57:11 +0200 | [diff] [blame] | 980 | snd_serial_unregister_all(); |
| 981 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | } |
| 983 | return 0; |
| 984 | } |
| 985 | |
| 986 | static void __exit alsa_card_serial_exit(void) |
| 987 | { |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 988 | snd_serial_unregister_all(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | module_init(alsa_card_serial_init) |
| 992 | module_exit(alsa_card_serial_exit) |