blob: dd6ec4266732b168e4af30d415436b4bea3b7de3 [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
6 * interrupts thus output is done via polling. Also, if irq < 0, then
7 * 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>
36#include <linux/interrupt.h>
37#include <linux/errno.h>
38#include <sound/core.h>
39#include <sound/mpu401.h>
40
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020041MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042MODULE_DESCRIPTION("Routines for control of MPU-401 in UART mode");
43MODULE_LICENSE("GPL");
44
Takashi Iwaie1fad172005-11-17 14:12:45 +010045static void snd_mpu401_uart_input_read(struct snd_mpu401 * mpu);
46static void snd_mpu401_uart_output_write(struct snd_mpu401 * mpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49
50 */
51
52#define snd_mpu401_input_avail(mpu) (!(mpu->read(mpu, MPU401C(mpu)) & 0x80))
53#define snd_mpu401_output_ready(mpu) (!(mpu->read(mpu, MPU401C(mpu)) & 0x40))
54
55#define MPU401_RESET 0xff
56#define MPU401_ENTER_UART 0x3f
57#define MPU401_ACK 0xfe
58
59/* Build in lowlevel io */
Takashi Iwai2851d962006-05-18 14:48:26 +020060static void mpu401_write_port(struct snd_mpu401 *mpu, unsigned char data,
61 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 outb(data, addr);
64}
65
Takashi Iwai2851d962006-05-18 14:48:26 +020066static unsigned char mpu401_read_port(struct snd_mpu401 *mpu,
67 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 return inb(addr);
70}
71
Takashi Iwai2851d962006-05-18 14:48:26 +020072static void mpu401_write_mmio(struct snd_mpu401 *mpu, unsigned char data,
73 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 writeb(data, (void __iomem *)addr);
76}
77
Takashi Iwai2851d962006-05-18 14:48:26 +020078static unsigned char mpu401_read_mmio(struct snd_mpu401 *mpu,
79 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 return readb((void __iomem *)addr);
82}
83/* */
84
Takashi Iwaie1fad172005-11-17 14:12:45 +010085static void snd_mpu401_uart_clear_rx(struct snd_mpu401 *mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 int timeout = 100000;
88 for (; timeout > 0 && snd_mpu401_input_avail(mpu); timeout--)
89 mpu->read(mpu, MPU401D(mpu));
90#ifdef CONFIG_SND_DEBUG
91 if (timeout <= 0)
Takashi Iwai2851d962006-05-18 14:48:26 +020092 snd_printk(KERN_ERR "cmd: clear rx timeout (status = 0x%x)\n",
93 mpu->read(mpu, MPU401C(mpu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#endif
95}
96
Takashi Iwai302e4c22006-05-23 13:24:30 +020097static void uart_interrupt_tx(struct snd_mpu401 *mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Clemens Ladisch60fac852007-11-12 08:47:57 +010099 unsigned long flags;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (test_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode) &&
102 test_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode)) {
Clemens Ladisch60fac852007-11-12 08:47:57 +0100103 spin_lock_irqsave(&mpu->output_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 snd_mpu401_uart_output_write(mpu);
Clemens Ladisch60fac852007-11-12 08:47:57 +0100105 spin_unlock_irqrestore(&mpu->output_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107}
108
Takashi Iwai302e4c22006-05-23 13:24:30 +0200109static void _snd_mpu401_uart_interrupt(struct snd_mpu401 *mpu)
110{
Clemens Ladisch60fac852007-11-12 08:47:57 +0100111 unsigned long flags;
112
Takashi Iwai302e4c22006-05-23 13:24:30 +0200113 if (mpu->info_flags & MPU401_INFO_INPUT) {
Clemens Ladisch60fac852007-11-12 08:47:57 +0100114 spin_lock_irqsave(&mpu->input_lock, flags);
Takashi Iwai302e4c22006-05-23 13:24:30 +0200115 if (test_bit(MPU401_MODE_BIT_INPUT, &mpu->mode))
116 snd_mpu401_uart_input_read(mpu);
117 else
118 snd_mpu401_uart_clear_rx(mpu);
Clemens Ladisch60fac852007-11-12 08:47:57 +0100119 spin_unlock_irqrestore(&mpu->input_lock, flags);
Takashi Iwai302e4c22006-05-23 13:24:30 +0200120 }
121 if (! (mpu->info_flags & MPU401_INFO_TX_IRQ))
122 /* ok. for better Tx performance try do some output
123 when input is done */
124 uart_interrupt_tx(mpu);
125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/**
128 * snd_mpu401_uart_interrupt - generic MPU401-UART interrupt handler
129 * @irq: the irq number
130 * @dev_id: mpu401 instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
132 * Processes the interrupt for MPU401-UART i/o.
133 */
David Howells7d12e782006-10-05 14:55:46 +0100134irqreturn_t snd_mpu401_uart_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100136 struct snd_mpu401 *mpu = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 if (mpu == NULL)
139 return IRQ_NONE;
140 _snd_mpu401_uart_interrupt(mpu);
141 return IRQ_HANDLED;
142}
143
Takashi Iwai2851d962006-05-18 14:48:26 +0200144EXPORT_SYMBOL(snd_mpu401_uart_interrupt);
145
Takashi Iwai302e4c22006-05-23 13:24:30 +0200146/**
147 * snd_mpu401_uart_interrupt_tx - generic MPU401-UART transmit irq handler
148 * @irq: the irq number
149 * @dev_id: mpu401 instance
Takashi Iwai302e4c22006-05-23 13:24:30 +0200150 *
151 * Processes the interrupt for MPU401-UART output.
152 */
David Howells7d12e782006-10-05 14:55:46 +0100153irqreturn_t snd_mpu401_uart_interrupt_tx(int irq, void *dev_id)
Takashi Iwai302e4c22006-05-23 13:24:30 +0200154{
155 struct snd_mpu401 *mpu = dev_id;
156
157 if (mpu == NULL)
158 return IRQ_NONE;
159 uart_interrupt_tx(mpu);
160 return IRQ_HANDLED;
161}
162
163EXPORT_SYMBOL(snd_mpu401_uart_interrupt_tx);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
166 * timer callback
167 * reprogram the timer and call the interrupt job
168 */
169static void snd_mpu401_uart_timer(unsigned long data)
170{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100171 struct snd_mpu401 *mpu = (struct snd_mpu401 *)data;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100172 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Takashi Iwaib32425a2005-11-18 18:52:14 +0100174 spin_lock_irqsave(&mpu->timer_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /*mpu->mode |= MPU401_MODE_TIMER;*/
176 mpu->timer.expires = 1 + jiffies;
177 add_timer(&mpu->timer);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100178 spin_unlock_irqrestore(&mpu->timer_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (mpu->rmidi)
180 _snd_mpu401_uart_interrupt(mpu);
181}
182
183/*
184 * initialize the timer callback if not programmed yet
185 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100186static void snd_mpu401_uart_add_timer (struct snd_mpu401 *mpu, int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 unsigned long flags;
189
190 spin_lock_irqsave (&mpu->timer_lock, flags);
191 if (mpu->timer_invoked == 0) {
192 init_timer(&mpu->timer);
193 mpu->timer.data = (unsigned long)mpu;
194 mpu->timer.function = snd_mpu401_uart_timer;
195 mpu->timer.expires = 1 + jiffies;
196 add_timer(&mpu->timer);
197 }
Takashi Iwai2851d962006-05-18 14:48:26 +0200198 mpu->timer_invoked |= input ? MPU401_MODE_INPUT_TIMER :
199 MPU401_MODE_OUTPUT_TIMER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 spin_unlock_irqrestore (&mpu->timer_lock, flags);
201}
202
203/*
204 * remove the timer callback if still active
205 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100206static void snd_mpu401_uart_remove_timer (struct snd_mpu401 *mpu, int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 unsigned long flags;
209
210 spin_lock_irqsave (&mpu->timer_lock, flags);
211 if (mpu->timer_invoked) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200212 mpu->timer_invoked &= input ? ~MPU401_MODE_INPUT_TIMER :
213 ~MPU401_MODE_OUTPUT_TIMER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (! mpu->timer_invoked)
215 del_timer(&mpu->timer);
216 }
217 spin_unlock_irqrestore (&mpu->timer_lock, flags);
218}
219
220/*
Takashi Iwai2851d962006-05-18 14:48:26 +0200221 * send a UART command
222 * return zero if successful, non-zero for some errors
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 */
224
Jon Masters962f8312006-04-20 02:43:20 -0700225static int snd_mpu401_uart_cmd(struct snd_mpu401 * mpu, unsigned char cmd,
Takashi Iwai2851d962006-05-18 14:48:26 +0200226 int ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 unsigned long flags;
229 int timeout, ok;
230
231 spin_lock_irqsave(&mpu->input_lock, flags);
232 if (mpu->hardware != MPU401_HW_TRID4DWAVE) {
233 mpu->write(mpu, 0x00, MPU401D(mpu));
234 /*snd_mpu401_uart_clear_rx(mpu);*/
235 }
236 /* ok. standard MPU-401 initialization */
237 if (mpu->hardware != MPU401_HW_SB) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200238 for (timeout = 1000; timeout > 0 &&
239 !snd_mpu401_output_ready(mpu); timeout--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 udelay(10);
241#ifdef CONFIG_SND_DEBUG
242 if (!timeout)
Takashi Iwai2851d962006-05-18 14:48:26 +0200243 snd_printk(KERN_ERR "cmd: tx timeout (status = 0x%x)\n",
244 mpu->read(mpu, MPU401C(mpu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#endif
246 }
247 mpu->write(mpu, cmd, MPU401C(mpu));
248 if (ack) {
249 ok = 0;
250 timeout = 10000;
251 while (!ok && timeout-- > 0) {
252 if (snd_mpu401_input_avail(mpu)) {
253 if (mpu->read(mpu, MPU401D(mpu)) == MPU401_ACK)
254 ok = 1;
255 }
256 }
257 if (!ok && mpu->read(mpu, MPU401D(mpu)) == MPU401_ACK)
258 ok = 1;
Takashi Iwai2851d962006-05-18 14:48:26 +0200259 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spin_unlock_irqrestore(&mpu->input_lock, flags);
Jon Masters962f8312006-04-20 02:43:20 -0700262 if (!ok) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200263 snd_printk(KERN_ERR "cmd: 0x%x failed at 0x%lx "
264 "(status = 0x%x, data = 0x%x)\n", cmd, mpu->port,
265 mpu->read(mpu, MPU401C(mpu)),
266 mpu->read(mpu, MPU401D(mpu)));
Jon Masters962f8312006-04-20 02:43:20 -0700267 return 1;
268 }
269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100272static int snd_mpu401_do_reset(struct snd_mpu401 *mpu)
273{
274 if (snd_mpu401_uart_cmd(mpu, MPU401_RESET, 1))
275 return -EIO;
Clemens Ladischc1099fc2007-10-11 14:42:23 +0200276 if (snd_mpu401_uart_cmd(mpu, MPU401_ENTER_UART, 0))
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100277 return -EIO;
278 return 0;
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/*
282 * input/output open/close - protected by open_mutex in rawmidi.c
283 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100284static int snd_mpu401_uart_input_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100286 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 int err;
288
289 mpu = substream->rmidi->private_data;
290 if (mpu->open_input && (err = mpu->open_input(mpu)) < 0)
291 return err;
292 if (! test_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode)) {
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100293 if (snd_mpu401_do_reset(mpu) < 0)
Jon Masters962f8312006-04-20 02:43:20 -0700294 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296 mpu->substream_input = substream;
297 set_bit(MPU401_MODE_BIT_INPUT, &mpu->mode);
298 return 0;
Jon Masters962f8312006-04-20 02:43:20 -0700299
300error_out:
301 if (mpu->open_input && mpu->close_input)
302 mpu->close_input(mpu);
303 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Takashi Iwaie1fad172005-11-17 14:12:45 +0100306static int snd_mpu401_uart_output_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100308 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int err;
310
311 mpu = substream->rmidi->private_data;
312 if (mpu->open_output && (err = mpu->open_output(mpu)) < 0)
313 return err;
314 if (! test_bit(MPU401_MODE_BIT_INPUT, &mpu->mode)) {
Takashi Iwai8f7ba052007-02-22 16:07:21 +0100315 if (snd_mpu401_do_reset(mpu) < 0)
Jon Masters962f8312006-04-20 02:43:20 -0700316 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 mpu->substream_output = substream;
319 set_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode);
320 return 0;
Jon Masters962f8312006-04-20 02:43:20 -0700321
322error_out:
323 if (mpu->open_output && mpu->close_output)
324 mpu->close_output(mpu);
325 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Takashi Iwaie1fad172005-11-17 14:12:45 +0100328static int snd_mpu401_uart_input_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100330 struct snd_mpu401 *mpu;
Jon Masters962f8312006-04-20 02:43:20 -0700331 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 mpu = substream->rmidi->private_data;
334 clear_bit(MPU401_MODE_BIT_INPUT, &mpu->mode);
335 mpu->substream_input = NULL;
336 if (! test_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode))
Jon Masters962f8312006-04-20 02:43:20 -0700337 err = snd_mpu401_uart_cmd(mpu, MPU401_RESET, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (mpu->close_input)
339 mpu->close_input(mpu);
Jon Masters962f8312006-04-20 02:43:20 -0700340 if (err)
341 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return 0;
343}
344
Takashi Iwaie1fad172005-11-17 14:12:45 +0100345static int snd_mpu401_uart_output_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100347 struct snd_mpu401 *mpu;
Jon Masters962f8312006-04-20 02:43:20 -0700348 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 mpu = substream->rmidi->private_data;
351 clear_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode);
352 mpu->substream_output = NULL;
353 if (! test_bit(MPU401_MODE_BIT_INPUT, &mpu->mode))
Jon Masters962f8312006-04-20 02:43:20 -0700354 err = snd_mpu401_uart_cmd(mpu, MPU401_RESET, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (mpu->close_output)
356 mpu->close_output(mpu);
Jon Masters962f8312006-04-20 02:43:20 -0700357 if (err)
358 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360}
361
362/*
363 * trigger input callback
364 */
Takashi Iwai2851d962006-05-18 14:48:26 +0200365static void
366snd_mpu401_uart_input_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 unsigned long flags;
Takashi Iwaie1fad172005-11-17 14:12:45 +0100369 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 int max = 64;
371
372 mpu = substream->rmidi->private_data;
373 if (up) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200374 if (! test_and_set_bit(MPU401_MODE_BIT_INPUT_TRIGGER,
375 &mpu->mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /* first time - flush FIFO */
377 while (max-- > 0)
378 mpu->read(mpu, MPU401D(mpu));
379 if (mpu->irq < 0)
380 snd_mpu401_uart_add_timer(mpu, 1);
381 }
382
383 /* read data in advance */
384 spin_lock_irqsave(&mpu->input_lock, flags);
385 snd_mpu401_uart_input_read(mpu);
386 spin_unlock_irqrestore(&mpu->input_lock, flags);
387 } else {
388 if (mpu->irq < 0)
389 snd_mpu401_uart_remove_timer(mpu, 1);
390 clear_bit(MPU401_MODE_BIT_INPUT_TRIGGER, &mpu->mode);
391 }
Jon Masters962f8312006-04-20 02:43:20 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395/*
396 * transfer input pending data
397 * call with input_lock spinlock held
398 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100399static void snd_mpu401_uart_input_read(struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 int max = 128;
402 unsigned char byte;
403
404 while (max-- > 0) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200405 if (! snd_mpu401_input_avail(mpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 break; /* input not available */
Takashi Iwai2851d962006-05-18 14:48:26 +0200407 byte = mpu->read(mpu, MPU401D(mpu));
408 if (test_bit(MPU401_MODE_BIT_INPUT_TRIGGER, &mpu->mode))
409 snd_rawmidi_receive(mpu->substream_input, &byte, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411}
412
413/*
414 * Tx FIFO sizes:
415 * CS4237B - 16 bytes
416 * AudioDrive ES1688 - 12 bytes
417 * S3 SonicVibes - 8 bytes
418 * SoundBlaster AWE 64 - 2 bytes (ugly hardware)
419 */
420
421/*
422 * write output pending bytes
423 * call with output_lock spinlock held
424 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100425static void snd_mpu401_uart_output_write(struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 unsigned char byte;
Clemens Ladischea6b5822008-02-25 10:59:52 +0100428 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 do {
Takashi Iwai2851d962006-05-18 14:48:26 +0200431 if (snd_rawmidi_transmit_peek(mpu->substream_output,
432 &byte, 1) == 1) {
Clemens Ladischea6b5822008-02-25 10:59:52 +0100433 /*
434 * Try twice because there is hardware that insists on
435 * setting the output busy bit after each write.
436 */
437 if (!snd_mpu401_output_ready(mpu) &&
438 !snd_mpu401_output_ready(mpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break; /* Tx FIFO full - try again later */
Takashi Iwai2851d962006-05-18 14:48:26 +0200440 mpu->write(mpu, byte, MPU401D(mpu));
441 snd_rawmidi_transmit_ack(mpu->substream_output, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 } else {
443 snd_mpu401_uart_remove_timer (mpu, 0);
444 break; /* no other data - leave the tx loop */
445 }
446 } while (--max > 0);
447}
448
449/*
450 * output trigger callback
451 */
Takashi Iwai2851d962006-05-18 14:48:26 +0200452static void
453snd_mpu401_uart_output_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 unsigned long flags;
Takashi Iwaie1fad172005-11-17 14:12:45 +0100456 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 mpu = substream->rmidi->private_data;
459 if (up) {
460 set_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode);
461
462 /* try to add the timer at each output trigger,
463 * since the output timer might have been removed in
464 * snd_mpu401_uart_output_write().
465 */
Takashi Iwai302e4c22006-05-23 13:24:30 +0200466 if (! (mpu->info_flags & MPU401_INFO_TX_IRQ))
467 snd_mpu401_uart_add_timer(mpu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 /* output pending data */
470 spin_lock_irqsave(&mpu->output_lock, flags);
471 snd_mpu401_uart_output_write(mpu);
472 spin_unlock_irqrestore(&mpu->output_lock, flags);
473 } else {
Takashi Iwai302e4c22006-05-23 13:24:30 +0200474 if (! (mpu->info_flags & MPU401_INFO_TX_IRQ))
475 snd_mpu401_uart_remove_timer(mpu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 clear_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode);
477 }
478}
479
480/*
481
482 */
483
Takashi Iwaie1fad172005-11-17 14:12:45 +0100484static struct snd_rawmidi_ops snd_mpu401_uart_output =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 .open = snd_mpu401_uart_output_open,
487 .close = snd_mpu401_uart_output_close,
488 .trigger = snd_mpu401_uart_output_trigger,
489};
490
Takashi Iwaie1fad172005-11-17 14:12:45 +0100491static struct snd_rawmidi_ops snd_mpu401_uart_input =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 .open = snd_mpu401_uart_input_open,
494 .close = snd_mpu401_uart_input_close,
495 .trigger = snd_mpu401_uart_input_trigger,
496};
497
Takashi Iwaie1fad172005-11-17 14:12:45 +0100498static void snd_mpu401_uart_free(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100500 struct snd_mpu401 *mpu = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (mpu->irq_flags && mpu->irq >= 0)
502 free_irq(mpu->irq, (void *) mpu);
Takashi Iwaib1d57762005-10-10 11:56:31 +0200503 release_and_free_resource(mpu->res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 kfree(mpu);
505}
506
507/**
508 * snd_mpu401_uart_new - create an MPU401-UART instance
509 * @card: the card instance
510 * @device: the device index, zero-based
511 * @hardware: the hardware type, MPU401_HW_XXXX
512 * @port: the base address of MPU401 port
Takashi Iwai302e4c22006-05-23 13:24:30 +0200513 * @info_flags: bitflags MPU401_INFO_XXX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * @irq: the irq number, -1 if no interrupt for mpu
515 * @irq_flags: the irq request flags (SA_XXX), 0 if irq was already reserved.
516 * @rrawmidi: the pointer to store the new rawmidi instance
517 *
518 * Creates a new MPU-401 instance.
519 *
520 * Note that the rawmidi instance is returned on the rrawmidi argument,
521 * not the mpu401 instance itself. To access to the mpu401 instance,
Takashi Iwaie1fad172005-11-17 14:12:45 +0100522 * cast from rawmidi->private_data (with struct snd_mpu401 magic-cast).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 *
524 * Returns zero if successful, or a negative error code.
525 */
Takashi Iwaie1fad172005-11-17 14:12:45 +0100526int snd_mpu401_uart_new(struct snd_card *card, int device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 unsigned short hardware,
Takashi Iwai302e4c22006-05-23 13:24:30 +0200528 unsigned long port,
529 unsigned int info_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 int irq, int irq_flags,
Takashi Iwaie1fad172005-11-17 14:12:45 +0100531 struct snd_rawmidi ** rrawmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Takashi Iwaie1fad172005-11-17 14:12:45 +0100533 struct snd_mpu401 *mpu;
534 struct snd_rawmidi *rmidi;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200535 int in_enable, out_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int err;
537
538 if (rrawmidi)
539 *rrawmidi = NULL;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200540 if (! (info_flags & (MPU401_INFO_INPUT | MPU401_INFO_OUTPUT)))
541 info_flags |= MPU401_INFO_INPUT | MPU401_INFO_OUTPUT;
542 in_enable = (info_flags & MPU401_INFO_INPUT) ? 1 : 0;
543 out_enable = (info_flags & MPU401_INFO_OUTPUT) ? 1 : 0;
544 if ((err = snd_rawmidi_new(card, "MPU-401U", device,
545 out_enable, in_enable, &rmidi)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return err;
Takashi Iwai561b2202005-09-09 14:22:34 +0200547 mpu = kzalloc(sizeof(*mpu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (mpu == NULL) {
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100549 snd_printk(KERN_ERR "mpu401_uart: cannot allocate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 snd_device_free(card, rmidi);
551 return -ENOMEM;
552 }
553 rmidi->private_data = mpu;
554 rmidi->private_free = snd_mpu401_uart_free;
555 spin_lock_init(&mpu->input_lock);
556 spin_lock_init(&mpu->output_lock);
557 spin_lock_init(&mpu->timer_lock);
558 mpu->hardware = hardware;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200559 if (! (info_flags & MPU401_INFO_INTEGRATED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int res_size = hardware == MPU401_HW_PC98II ? 4 : 2;
Takashi Iwai2851d962006-05-18 14:48:26 +0200561 mpu->res = request_region(port, res_size, "MPU401 UART");
562 if (mpu->res == NULL) {
563 snd_printk(KERN_ERR "mpu401_uart: "
564 "unable to grab port 0x%lx size %d\n",
565 port, res_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 snd_device_free(card, rmidi);
567 return -EBUSY;
568 }
569 }
Takashi Iwai302e4c22006-05-23 13:24:30 +0200570 if (info_flags & MPU401_INFO_MMIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 mpu->write = mpu401_write_mmio;
572 mpu->read = mpu401_read_mmio;
Takashi Iwai302e4c22006-05-23 13:24:30 +0200573 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 mpu->write = mpu401_write_port;
575 mpu->read = mpu401_read_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577 mpu->port = port;
578 if (hardware == MPU401_HW_PC98II)
579 mpu->cport = port + 2;
580 else
581 mpu->cport = port + 1;
582 if (irq >= 0 && irq_flags) {
Takashi Iwai2851d962006-05-18 14:48:26 +0200583 if (request_irq(irq, snd_mpu401_uart_interrupt, irq_flags,
584 "MPU401 UART", (void *) mpu)) {
585 snd_printk(KERN_ERR "mpu401_uart: "
586 "unable to grab IRQ %d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 snd_device_free(card, rmidi);
588 return -EBUSY;
589 }
590 }
Takashi Iwai302e4c22006-05-23 13:24:30 +0200591 mpu->info_flags = info_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 mpu->irq = irq;
593 mpu->irq_flags = irq_flags;
594 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)