blob: 4608c2ca43f84601643be8a6cdba6451d3953a22 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02002 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Routines for control of MPU-401 in UART mode
4 *
5 * MPU-401 supports UART mode which is not capable generate transmit
Clemens Ladischdba8b462011-09-13 11:24:41 +02006 * interrupts thus output is done via polling. Without interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * input is done also via polling. Do not expect good performance.
8 *
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 * 13-03-2003:
25 * Added support for different kind of hardware I/O. Build in choices
26 * are port and mmio. For other kind of I/O, set mpu->read and
27 * mpu->write to your own I/O functions.
28 *
29 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/io.h>
32#include <linux/delay.h>
33#include <linux/init.h>
34#include <linux/slab.h>
35#include <linux/ioport.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040036#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/interrupt.h>
38#include <linux/errno.h>
39#include <sound/core.h>
40#include <sound/mpu401.h>
41
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020042MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043MODULE_DESCRIPTION("Routines for control of MPU-401 in UART mode");
44MODULE_LICENSE("GPL");
45
Takashi Iwaie1fad172005-11-17 14:12:45 +010046static void snd_mpu401_uart_input_read(struct snd_mpu401 * mpu);
47static void snd_mpu401_uart_output_write(struct snd_mpu401 * mpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50
51 */
52
Takashi Iwaib415ed42008-04-23 17:47:28 +020053#define snd_mpu401_input_avail(mpu) \
54 (!(mpu->read(mpu, MPU401C(mpu)) & MPU401_RX_EMPTY))
55#define snd_mpu401_output_ready(mpu) \
56 (!(mpu->read(mpu, MPU401C(mpu)) & MPU401_TX_FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* Build in lowlevel io */
Takashi Iwai2851d962006-05-18 14:48:26 +020059static void mpu401_write_port(struct snd_mpu401 *mpu, unsigned char data,
60 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 outb(data, addr);
63}
64
Takashi Iwai2851d962006-05-18 14:48:26 +020065static unsigned char mpu401_read_port(struct snd_mpu401 *mpu,
66 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 return inb(addr);
69}
70
Takashi Iwai2851d962006-05-18 14:48:26 +020071static void mpu401_write_mmio(struct snd_mpu401 *mpu, unsigned char data,
72 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 writeb(data, (void __iomem *)addr);
75}
76
Takashi Iwai2851d962006-05-18 14:48:26 +020077static unsigned char mpu401_read_mmio(struct snd_mpu401 *mpu,
78 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 return readb((void __iomem *)addr);
81}
82/* */
83
Takashi Iwaie1fad172005-11-17 14:12:45 +010084static void snd_mpu401_uart_clear_rx(struct snd_mpu401 *mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 int timeout = 100000;
87 for (; timeout > 0 && snd_mpu401_input_avail(mpu); timeout--)
88 mpu->read(mpu, MPU401D(mpu));
89#ifdef CONFIG_SND_DEBUG
90 if (timeout <= 0)
Takashi Iwai2851d962006-05-18 14:48:26 +020091 snd_printk(KERN_ERR "cmd: clear rx timeout (status = 0x%x)\n",
92 mpu->read(mpu, MPU401C(mpu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
94}
95
Takashi Iwai302e4c22006-05-23 13:24:30 +020096static void uart_interrupt_tx(struct snd_mpu401 *mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Clemens Ladisch60fac852007-11-12 08:47:57 +010098 unsigned long flags;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (test_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode) &&
101 test_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode)) {
Clemens Ladisch60fac852007-11-12 08:47:57 +0100102 spin_lock_irqsave(&mpu->output_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 snd_mpu401_uart_output_write(mpu);
Clemens Ladisch60fac852007-11-12 08:47:57 +0100104 spin_unlock_irqrestore(&mpu->output_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106}
107
Takashi Iwai302e4c22006-05-23 13:24:30 +0200108static void _snd_mpu401_uart_interrupt(struct snd_mpu401 *mpu)
109{
Clemens Ladisch60fac852007-11-12 08:47:57 +0100110 unsigned long flags;
111
Takashi Iwai302e4c22006-05-23 13:24:30 +0200112 if (mpu->info_flags & MPU401_INFO_INPUT) {
Clemens Ladisch60fac852007-11-12 08:47:57 +0100113 spin_lock_irqsave(&mpu->input_lock, flags);
Takashi Iwai302e4c22006-05-23 13:24:30 +0200114 if (test_bit(MPU401_MODE_BIT_INPUT, &mpu->mode))
115 snd_mpu401_uart_input_read(mpu);
116 else
117 snd_mpu401_uart_clear_rx(mpu);
Clemens Ladisch60fac852007-11-12 08:47:57 +0100118 spin_unlock_irqrestore(&mpu->input_lock, flags);
Takashi Iwai302e4c22006-05-23 13:24:30 +0200119 }
120 if (! (mpu->info_flags & MPU401_INFO_TX_IRQ))
121 /* ok. for better Tx performance try do some output
122 when input is done */
123 uart_interrupt_tx(mpu);
124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/**
127 * snd_mpu401_uart_interrupt - generic MPU401-UART interrupt handler
128 * @irq: the irq number
129 * @dev_id: mpu401 instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 *
131 * Processes the interrupt for MPU401-UART i/o.
132 */
David Howells7d12e782006-10-05 14:55:46 +0100133irqreturn_t snd_mpu401_uart_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100135 struct snd_mpu401 *mpu = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 if (mpu == NULL)
138 return IRQ_NONE;
139 _snd_mpu401_uart_interrupt(mpu);
140 return IRQ_HANDLED;
141}
142
Takashi Iwai2851d962006-05-18 14:48:26 +0200143EXPORT_SYMBOL(snd_mpu401_uart_interrupt);
144
Takashi Iwai302e4c22006-05-23 13:24:30 +0200145/**
146 * snd_mpu401_uart_interrupt_tx - generic MPU401-UART transmit irq handler
147 * @irq: the irq number
148 * @dev_id: mpu401 instance
Takashi Iwai302e4c22006-05-23 13:24:30 +0200149 *
150 * Processes the interrupt for MPU401-UART output.
151 */
David Howells7d12e782006-10-05 14:55:46 +0100152irqreturn_t snd_mpu401_uart_interrupt_tx(int irq, void *dev_id)
Takashi Iwai302e4c22006-05-23 13:24:30 +0200153{
154 struct snd_mpu401 *mpu = dev_id;
155
156 if (mpu == NULL)
157 return IRQ_NONE;
158 uart_interrupt_tx(mpu);
159 return IRQ_HANDLED;
160}
161
162EXPORT_SYMBOL(snd_mpu401_uart_interrupt_tx);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/*
165 * timer callback
166 * reprogram the timer and call the interrupt job
167 */
168static void snd_mpu401_uart_timer(unsigned long data)
169{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100170 struct snd_mpu401 *mpu = (struct snd_mpu401 *)data;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100171 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Takashi Iwaib32425a2005-11-18 18:52:14 +0100173 spin_lock_irqsave(&mpu->timer_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /*mpu->mode |= MPU401_MODE_TIMER;*/
175 mpu->timer.expires = 1 + jiffies;
176 add_timer(&mpu->timer);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100177 spin_unlock_irqrestore(&mpu->timer_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (mpu->rmidi)
179 _snd_mpu401_uart_interrupt(mpu);
180}
181
182/*
183 * initialize the timer callback if not programmed yet
184 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100185static void snd_mpu401_uart_add_timer (struct snd_mpu401 *mpu, int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 unsigned long flags;
188
189 spin_lock_irqsave (&mpu->timer_lock, flags);
190 if (mpu->timer_invoked == 0) {
191 init_timer(&mpu->timer);
192 mpu->timer.data = (unsigned long)mpu;
193 mpu->timer.function = snd_mpu401_uart_timer;
194 mpu->timer.expires = 1 + jiffies;
195 add_timer(&mpu->timer);
196 }
Takashi Iwai2851d962006-05-18 14:48:26 +0200197 mpu->timer_invoked |= input ? MPU401_MODE_INPUT_TIMER :
198 MPU401_MODE_OUTPUT_TIMER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 spin_unlock_irqrestore (&mpu->timer_lock, flags);
200}
201
202/*
203 * remove the timer callback if still active
204 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100205static void snd_mpu401_uart_remove_timer (struct snd_mpu401 *mpu, int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 unsigned long flags;
208
209 spin_lock_irqsave (&mpu->timer_lock, flags);
210 if (mpu->timer_invoked) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200211 mpu->timer_invoked &= input ? ~MPU401_MODE_INPUT_TIMER :
212 ~MPU401_MODE_OUTPUT_TIMER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (! mpu->timer_invoked)
214 del_timer(&mpu->timer);
215 }
216 spin_unlock_irqrestore (&mpu->timer_lock, flags);
217}
218
219/*
Takashi Iwai2851d962006-05-18 14:48:26 +0200220 * send a UART command
221 * return zero if successful, non-zero for some errors
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
223
Jon Masters962f8312006-04-20 02:43:20 -0700224static int snd_mpu401_uart_cmd(struct snd_mpu401 * mpu, unsigned char cmd,
Takashi Iwai2851d962006-05-18 14:48:26 +0200225 int ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 unsigned long flags;
228 int timeout, ok;
229
230 spin_lock_irqsave(&mpu->input_lock, flags);
231 if (mpu->hardware != MPU401_HW_TRID4DWAVE) {
232 mpu->write(mpu, 0x00, MPU401D(mpu));
233 /*snd_mpu401_uart_clear_rx(mpu);*/
234 }
235 /* ok. standard MPU-401 initialization */
236 if (mpu->hardware != MPU401_HW_SB) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200237 for (timeout = 1000; timeout > 0 &&
238 !snd_mpu401_output_ready(mpu); timeout--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 udelay(10);
240#ifdef CONFIG_SND_DEBUG
241 if (!timeout)
Takashi Iwai2851d962006-05-18 14:48:26 +0200242 snd_printk(KERN_ERR "cmd: tx timeout (status = 0x%x)\n",
243 mpu->read(mpu, MPU401C(mpu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244#endif
245 }
246 mpu->write(mpu, cmd, MPU401C(mpu));
Takashi Iwaidf7e3fd2008-04-25 09:13:45 +0200247 if (ack && !(mpu->info_flags & MPU401_INFO_NO_ACK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 ok = 0;
249 timeout = 10000;
250 while (!ok && timeout-- > 0) {
251 if (snd_mpu401_input_avail(mpu)) {
252 if (mpu->read(mpu, MPU401D(mpu)) == MPU401_ACK)
253 ok = 1;
254 }
255 }
256 if (!ok && mpu->read(mpu, MPU401D(mpu)) == MPU401_ACK)
257 ok = 1;
Takashi Iwai2851d962006-05-18 14:48:26 +0200258 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 spin_unlock_irqrestore(&mpu->input_lock, flags);
Jon Masters962f8312006-04-20 02:43:20 -0700261 if (!ok) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200262 snd_printk(KERN_ERR "cmd: 0x%x failed at 0x%lx "
263 "(status = 0x%x, data = 0x%x)\n", cmd, mpu->port,
264 mpu->read(mpu, MPU401C(mpu)),
265 mpu->read(mpu, MPU401D(mpu)));
Jon Masters962f8312006-04-20 02:43:20 -0700266 return 1;
267 }
268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100271static int snd_mpu401_do_reset(struct snd_mpu401 *mpu)
272{
273 if (snd_mpu401_uart_cmd(mpu, MPU401_RESET, 1))
274 return -EIO;
Clemens Ladischc1099fc2007-10-11 14:42:23 +0200275 if (snd_mpu401_uart_cmd(mpu, MPU401_ENTER_UART, 0))
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100276 return -EIO;
277 return 0;
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/*
281 * input/output open/close - protected by open_mutex in rawmidi.c
282 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100283static int snd_mpu401_uart_input_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100285 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 int err;
287
288 mpu = substream->rmidi->private_data;
289 if (mpu->open_input && (err = mpu->open_input(mpu)) < 0)
290 return err;
291 if (! test_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode)) {
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100292 if (snd_mpu401_do_reset(mpu) < 0)
Jon Masters962f8312006-04-20 02:43:20 -0700293 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 mpu->substream_input = substream;
296 set_bit(MPU401_MODE_BIT_INPUT, &mpu->mode);
297 return 0;
Jon Masters962f8312006-04-20 02:43:20 -0700298
299error_out:
300 if (mpu->open_input && mpu->close_input)
301 mpu->close_input(mpu);
302 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Takashi Iwaie1fad172005-11-17 14:12:45 +0100305static int snd_mpu401_uart_output_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100307 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int err;
309
310 mpu = substream->rmidi->private_data;
311 if (mpu->open_output && (err = mpu->open_output(mpu)) < 0)
312 return err;
313 if (! test_bit(MPU401_MODE_BIT_INPUT, &mpu->mode)) {
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100314 if (snd_mpu401_do_reset(mpu) < 0)
Jon Masters962f8312006-04-20 02:43:20 -0700315 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317 mpu->substream_output = substream;
318 set_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode);
319 return 0;
Jon Masters962f8312006-04-20 02:43:20 -0700320
321error_out:
322 if (mpu->open_output && mpu->close_output)
323 mpu->close_output(mpu);
324 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Takashi Iwaie1fad172005-11-17 14:12:45 +0100327static int snd_mpu401_uart_input_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100329 struct snd_mpu401 *mpu;
Jon Masters962f8312006-04-20 02:43:20 -0700330 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 mpu = substream->rmidi->private_data;
333 clear_bit(MPU401_MODE_BIT_INPUT, &mpu->mode);
334 mpu->substream_input = NULL;
335 if (! test_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode))
Jon Masters962f8312006-04-20 02:43:20 -0700336 err = snd_mpu401_uart_cmd(mpu, MPU401_RESET, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (mpu->close_input)
338 mpu->close_input(mpu);
Jon Masters962f8312006-04-20 02:43:20 -0700339 if (err)
340 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 0;
342}
343
Takashi Iwaie1fad172005-11-17 14:12:45 +0100344static int snd_mpu401_uart_output_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100346 struct snd_mpu401 *mpu;
Jon Masters962f8312006-04-20 02:43:20 -0700347 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 mpu = substream->rmidi->private_data;
350 clear_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode);
351 mpu->substream_output = NULL;
352 if (! test_bit(MPU401_MODE_BIT_INPUT, &mpu->mode))
Jon Masters962f8312006-04-20 02:43:20 -0700353 err = snd_mpu401_uart_cmd(mpu, MPU401_RESET, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (mpu->close_output)
355 mpu->close_output(mpu);
Jon Masters962f8312006-04-20 02:43:20 -0700356 if (err)
357 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 0;
359}
360
361/*
362 * trigger input callback
363 */
Takashi Iwai2851d962006-05-18 14:48:26 +0200364static void
365snd_mpu401_uart_input_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 unsigned long flags;
Takashi Iwaie1fad172005-11-17 14:12:45 +0100368 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 int max = 64;
370
371 mpu = substream->rmidi->private_data;
372 if (up) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200373 if (! test_and_set_bit(MPU401_MODE_BIT_INPUT_TRIGGER,
374 &mpu->mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* first time - flush FIFO */
376 while (max-- > 0)
377 mpu->read(mpu, MPU401D(mpu));
Clemens Ladischdba8b462011-09-13 11:24:41 +0200378 if (mpu->info_flags & MPU401_INFO_USE_TIMER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 snd_mpu401_uart_add_timer(mpu, 1);
380 }
381
382 /* read data in advance */
383 spin_lock_irqsave(&mpu->input_lock, flags);
384 snd_mpu401_uart_input_read(mpu);
385 spin_unlock_irqrestore(&mpu->input_lock, flags);
386 } else {
Clemens Ladischdba8b462011-09-13 11:24:41 +0200387 if (mpu->info_flags & MPU401_INFO_USE_TIMER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 snd_mpu401_uart_remove_timer(mpu, 1);
389 clear_bit(MPU401_MODE_BIT_INPUT_TRIGGER, &mpu->mode);
390 }
Jon Masters962f8312006-04-20 02:43:20 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394/*
395 * transfer input pending data
396 * call with input_lock spinlock held
397 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100398static void snd_mpu401_uart_input_read(struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 int max = 128;
401 unsigned char byte;
402
403 while (max-- > 0) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200404 if (! snd_mpu401_input_avail(mpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 break; /* input not available */
Takashi Iwai2851d962006-05-18 14:48:26 +0200406 byte = mpu->read(mpu, MPU401D(mpu));
407 if (test_bit(MPU401_MODE_BIT_INPUT_TRIGGER, &mpu->mode))
408 snd_rawmidi_receive(mpu->substream_input, &byte, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410}
411
412/*
413 * Tx FIFO sizes:
414 * CS4237B - 16 bytes
415 * AudioDrive ES1688 - 12 bytes
416 * S3 SonicVibes - 8 bytes
417 * SoundBlaster AWE 64 - 2 bytes (ugly hardware)
418 */
419
420/*
421 * write output pending bytes
422 * call with output_lock spinlock held
423 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100424static void snd_mpu401_uart_output_write(struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 unsigned char byte;
Clemens Ladischea6b5822008-02-25 10:59:52 +0100427 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 do {
Takashi Iwai2851d962006-05-18 14:48:26 +0200430 if (snd_rawmidi_transmit_peek(mpu->substream_output,
431 &byte, 1) == 1) {
Clemens Ladischea6b5822008-02-25 10:59:52 +0100432 /*
433 * Try twice because there is hardware that insists on
434 * setting the output busy bit after each write.
435 */
436 if (!snd_mpu401_output_ready(mpu) &&
437 !snd_mpu401_output_ready(mpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 break; /* Tx FIFO full - try again later */
Takashi Iwai2851d962006-05-18 14:48:26 +0200439 mpu->write(mpu, byte, MPU401D(mpu));
440 snd_rawmidi_transmit_ack(mpu->substream_output, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 } else {
442 snd_mpu401_uart_remove_timer (mpu, 0);
443 break; /* no other data - leave the tx loop */
444 }
445 } while (--max > 0);
446}
447
448/*
449 * output trigger callback
450 */
Takashi Iwai2851d962006-05-18 14:48:26 +0200451static void
452snd_mpu401_uart_output_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 unsigned long flags;
Takashi Iwaie1fad172005-11-17 14:12:45 +0100455 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 mpu = substream->rmidi->private_data;
458 if (up) {
459 set_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode);
460
461 /* try to add the timer at each output trigger,
462 * since the output timer might have been removed in
463 * snd_mpu401_uart_output_write().
464 */
Takashi Iwai302e4c22006-05-23 13:24:30 +0200465 if (! (mpu->info_flags & MPU401_INFO_TX_IRQ))
466 snd_mpu401_uart_add_timer(mpu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /* output pending data */
469 spin_lock_irqsave(&mpu->output_lock, flags);
470 snd_mpu401_uart_output_write(mpu);
471 spin_unlock_irqrestore(&mpu->output_lock, flags);
472 } else {
Takashi Iwai302e4c22006-05-23 13:24:30 +0200473 if (! (mpu->info_flags & MPU401_INFO_TX_IRQ))
474 snd_mpu401_uart_remove_timer(mpu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 clear_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode);
476 }
477}
478
479/*
480
481 */
482
Takashi Iwaie1fad172005-11-17 14:12:45 +0100483static struct snd_rawmidi_ops snd_mpu401_uart_output =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 .open = snd_mpu401_uart_output_open,
486 .close = snd_mpu401_uart_output_close,
487 .trigger = snd_mpu401_uart_output_trigger,
488};
489
Takashi Iwaie1fad172005-11-17 14:12:45 +0100490static struct snd_rawmidi_ops snd_mpu401_uart_input =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 .open = snd_mpu401_uart_input_open,
493 .close = snd_mpu401_uart_input_close,
494 .trigger = snd_mpu401_uart_input_trigger,
495};
496
Takashi Iwaie1fad172005-11-17 14:12:45 +0100497static void snd_mpu401_uart_free(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100499 struct snd_mpu401 *mpu = rmidi->private_data;
Clemens Ladischdba8b462011-09-13 11:24:41 +0200500 if (mpu->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 free_irq(mpu->irq, (void *) mpu);
Takashi Iwaib1d57762005-10-10 11:56:31 +0200502 release_and_free_resource(mpu->res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 kfree(mpu);
504}
505
506/**
507 * snd_mpu401_uart_new - create an MPU401-UART instance
508 * @card: the card instance
509 * @device: the device index, zero-based
510 * @hardware: the hardware type, MPU401_HW_XXXX
511 * @port: the base address of MPU401 port
Takashi Iwai302e4c22006-05-23 13:24:30 +0200512 * @info_flags: bitflags MPU401_INFO_XXX
Clemens Ladischdba8b462011-09-13 11:24:41 +0200513 * @irq: the ISA irq number, -1 if not to be allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * @rrawmidi: the pointer to store the new rawmidi instance
515 *
516 * Creates a new MPU-401 instance.
517 *
518 * Note that the rawmidi instance is returned on the rrawmidi argument,
519 * not the mpu401 instance itself. To access to the mpu401 instance,
Takashi Iwaie1fad172005-11-17 14:12:45 +0100520 * cast from rawmidi->private_data (with struct snd_mpu401 magic-cast).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 *
522 * Returns zero if successful, or a negative error code.
523 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100524int snd_mpu401_uart_new(struct snd_card *card, int device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 unsigned short hardware,
Takashi Iwai302e4c22006-05-23 13:24:30 +0200526 unsigned long port,
527 unsigned int info_flags,
Clemens Ladischdba8b462011-09-13 11:24:41 +0200528 int irq,
Takashi Iwaie1fad172005-11-17 14:12:45 +0100529 struct snd_rawmidi ** rrawmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100531 struct snd_mpu401 *mpu;
532 struct snd_rawmidi *rmidi;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200533 int in_enable, out_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int err;
535
536 if (rrawmidi)
537 *rrawmidi = NULL;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200538 if (! (info_flags & (MPU401_INFO_INPUT | MPU401_INFO_OUTPUT)))
539 info_flags |= MPU401_INFO_INPUT | MPU401_INFO_OUTPUT;
540 in_enable = (info_flags & MPU401_INFO_INPUT) ? 1 : 0;
541 out_enable = (info_flags & MPU401_INFO_OUTPUT) ? 1 : 0;
542 if ((err = snd_rawmidi_new(card, "MPU-401U", device,
543 out_enable, in_enable, &rmidi)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return err;
Takashi Iwai561b2202005-09-09 14:22:34 +0200545 mpu = kzalloc(sizeof(*mpu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (mpu == NULL) {
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100547 snd_printk(KERN_ERR "mpu401_uart: cannot allocate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 snd_device_free(card, rmidi);
549 return -ENOMEM;
550 }
551 rmidi->private_data = mpu;
552 rmidi->private_free = snd_mpu401_uart_free;
553 spin_lock_init(&mpu->input_lock);
554 spin_lock_init(&mpu->output_lock);
555 spin_lock_init(&mpu->timer_lock);
556 mpu->hardware = hardware;
Takashi Iwaibc733d42012-07-23 11:35:55 +0200557 mpu->irq = -1;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200558 if (! (info_flags & MPU401_INFO_INTEGRATED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int res_size = hardware == MPU401_HW_PC98II ? 4 : 2;
Takashi Iwai2851d962006-05-18 14:48:26 +0200560 mpu->res = request_region(port, res_size, "MPU401 UART");
561 if (mpu->res == NULL) {
562 snd_printk(KERN_ERR "mpu401_uart: "
563 "unable to grab port 0x%lx size %d\n",
564 port, res_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 snd_device_free(card, rmidi);
566 return -EBUSY;
567 }
568 }
Takashi Iwai302e4c22006-05-23 13:24:30 +0200569 if (info_flags & MPU401_INFO_MMIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 mpu->write = mpu401_write_mmio;
571 mpu->read = mpu401_read_mmio;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200572 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 mpu->write = mpu401_write_port;
574 mpu->read = mpu401_read_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 mpu->port = port;
577 if (hardware == MPU401_HW_PC98II)
578 mpu->cport = port + 2;
579 else
580 mpu->cport = port + 1;
Clemens Ladischdba8b462011-09-13 11:24:41 +0200581 if (irq >= 0) {
Yong Zhang88e24c32011-09-22 16:59:20 +0800582 if (request_irq(irq, snd_mpu401_uart_interrupt, 0,
Takashi Iwai2851d962006-05-18 14:48:26 +0200583 "MPU401 UART", (void *) mpu)) {
584 snd_printk(KERN_ERR "mpu401_uart: "
585 "unable to grab IRQ %d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 snd_device_free(card, rmidi);
587 return -EBUSY;
588 }
589 }
Clemens Ladischdba8b462011-09-13 11:24:41 +0200590 if (irq < 0 && !(info_flags & MPU401_INFO_IRQ_HOOK))
591 info_flags |= MPU401_INFO_USE_TIMER;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200592 mpu->info_flags = info_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 mpu->irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (card->shortname[0])
Takashi Iwai2851d962006-05-18 14:48:26 +0200595 snprintf(rmidi->name, sizeof(rmidi->name), "%s MIDI",
596 card->shortname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 else
Takashi Iwai2851d962006-05-18 14:48:26 +0200598 sprintf(rmidi->name, "MPU-401 MIDI %d-%d",card->number, device);
Takashi Iwai302e4c22006-05-23 13:24:30 +0200599 if (out_enable) {
600 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
601 &snd_mpu401_uart_output);
602 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT;
603 }
604 if (in_enable) {
605 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
606 &snd_mpu401_uart_input);
607 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_INPUT;
608 if (out_enable)
609 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_DUPLEX;
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 mpu->rmidi = rmidi;
612 if (rrawmidi)
613 *rrawmidi = rmidi;
614 return 0;
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617EXPORT_SYMBOL(snd_mpu401_uart_new);
618
619/*
620 * INIT part
621 */
622
623static int __init alsa_mpu401_uart_init(void)
624{
625 return 0;
626}
627
628static void __exit alsa_mpu401_uart_exit(void)
629{
630}
631
632module_init(alsa_mpu401_uart_init)
633module_exit(alsa_mpu401_uart_exit)