msnd_midi.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
  3. * Copyright (c) 2009 by Krzysztof Helt
  4. * Routines for control of MPU-401 in UART mode
  5. *
  6. * MPU-401 supports UART mode which is not capable generate transmit
  7. * interrupts thus output is done via polling. Also, if irq < 0, then
  8. * input is done also via polling. Do not expect good performance.
  9. *
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24. *
  25. */
  26. #include <linux/io.h>
  27. #include <linux/slab.h>
  28. #include <linux/delay.h>
  29. #include <linux/ioport.h>
  30. #include <linux/errno.h>
  31. #include <linux/export.h>
  32. #include <sound/core.h>
  33. #include <sound/rawmidi.h>
  34. #include "msnd.h"
  35. #define MSNDMIDI_MODE_BIT_INPUT 0
  36. #define MSNDMIDI_MODE_BIT_OUTPUT 1
  37. #define MSNDMIDI_MODE_BIT_INPUT_TRIGGER 2
  38. #define MSNDMIDI_MODE_BIT_OUTPUT_TRIGGER 3
  39. struct snd_msndmidi {
  40. struct snd_msnd *dev;
  41. unsigned long mode; /* MSNDMIDI_MODE_XXXX */
  42. struct snd_rawmidi_substream *substream_input;
  43. spinlock_t input_lock;
  44. };
  45. /*
  46. * input/output open/close - protected by open_mutex in rawmidi.c
  47. */
  48. static int snd_msndmidi_input_open(struct snd_rawmidi_substream *substream)
  49. {
  50. struct snd_msndmidi *mpu;
  51. snd_printdd("snd_msndmidi_input_open()\n");
  52. mpu = substream->rmidi->private_data;
  53. mpu->substream_input = substream;
  54. snd_msnd_enable_irq(mpu->dev);
  55. snd_msnd_send_dsp_cmd(mpu->dev, HDEX_MIDI_IN_START);
  56. set_bit(MSNDMIDI_MODE_BIT_INPUT, &mpu->mode);
  57. return 0;
  58. }
  59. static int snd_msndmidi_input_close(struct snd_rawmidi_substream *substream)
  60. {
  61. struct snd_msndmidi *mpu;
  62. mpu = substream->rmidi->private_data;
  63. snd_msnd_send_dsp_cmd(mpu->dev, HDEX_MIDI_IN_STOP);
  64. clear_bit(MSNDMIDI_MODE_BIT_INPUT, &mpu->mode);
  65. mpu->substream_input = NULL;
  66. snd_msnd_disable_irq(mpu->dev);
  67. return 0;
  68. }
  69. static void snd_msndmidi_input_drop(struct snd_msndmidi *mpu)
  70. {
  71. u16 tail;
  72. tail = readw(mpu->dev->MIDQ + JQS_wTail);
  73. writew(tail, mpu->dev->MIDQ + JQS_wHead);
  74. }
  75. /*
  76. * trigger input
  77. */
  78. static void snd_msndmidi_input_trigger(struct snd_rawmidi_substream *substream,
  79. int up)
  80. {
  81. unsigned long flags;
  82. struct snd_msndmidi *mpu;
  83. snd_printdd("snd_msndmidi_input_trigger(, %i)\n", up);
  84. mpu = substream->rmidi->private_data;
  85. spin_lock_irqsave(&mpu->input_lock, flags);
  86. if (up) {
  87. if (!test_and_set_bit(MSNDMIDI_MODE_BIT_INPUT_TRIGGER,
  88. &mpu->mode))
  89. snd_msndmidi_input_drop(mpu);
  90. } else {
  91. clear_bit(MSNDMIDI_MODE_BIT_INPUT_TRIGGER, &mpu->mode);
  92. }
  93. spin_unlock_irqrestore(&mpu->input_lock, flags);
  94. if (up)
  95. snd_msndmidi_input_read(mpu);
  96. }
  97. void snd_msndmidi_input_read(void *mpuv)
  98. {
  99. unsigned long flags;
  100. struct snd_msndmidi *mpu = mpuv;
  101. void *pwMIDQData = mpu->dev->mappedbase + MIDQ_DATA_BUFF;
  102. u16 head, tail, size;
  103. spin_lock_irqsave(&mpu->input_lock, flags);
  104. head = readw(mpu->dev->MIDQ + JQS_wHead);
  105. tail = readw(mpu->dev->MIDQ + JQS_wTail);
  106. size = readw(mpu->dev->MIDQ + JQS_wSize);
  107. if (head > size || tail > size)
  108. goto out;
  109. while (head != tail) {
  110. unsigned char val = readw(pwMIDQData + 2 * head);
  111. if (test_bit(MSNDMIDI_MODE_BIT_INPUT_TRIGGER, &mpu->mode))
  112. snd_rawmidi_receive(mpu->substream_input, &val, 1);
  113. if (++head > size)
  114. head = 0;
  115. writew(head, mpu->dev->MIDQ + JQS_wHead);
  116. }
  117. out:
  118. spin_unlock_irqrestore(&mpu->input_lock, flags);
  119. }
  120. EXPORT_SYMBOL(snd_msndmidi_input_read);
  121. static struct snd_rawmidi_ops snd_msndmidi_input = {
  122. .open = snd_msndmidi_input_open,
  123. .close = snd_msndmidi_input_close,
  124. .trigger = snd_msndmidi_input_trigger,
  125. };
  126. static void snd_msndmidi_free(struct snd_rawmidi *rmidi)
  127. {
  128. struct snd_msndmidi *mpu = rmidi->private_data;
  129. kfree(mpu);
  130. }
  131. int snd_msndmidi_new(struct snd_card *card, int device)
  132. {
  133. struct snd_msnd *chip = card->private_data;
  134. struct snd_msndmidi *mpu;
  135. struct snd_rawmidi *rmidi;
  136. int err;
  137. err = snd_rawmidi_new(card, "MSND-MIDI", device, 1, 1, &rmidi);
  138. if (err < 0)
  139. return err;
  140. mpu = kzalloc(sizeof(*mpu), GFP_KERNEL);
  141. if (mpu == NULL) {
  142. snd_device_free(card, rmidi);
  143. return -ENOMEM;
  144. }
  145. mpu->dev = chip;
  146. chip->msndmidi_mpu = mpu;
  147. rmidi->private_data = mpu;
  148. rmidi->private_free = snd_msndmidi_free;
  149. spin_lock_init(&mpu->input_lock);
  150. strcpy(rmidi->name, "MSND MIDI");
  151. snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
  152. &snd_msndmidi_input);
  153. rmidi->info_flags |= SNDRV_RAWMIDI_INFO_INPUT;
  154. return 0;
  155. }