Blame view

sound/oss/sb_midi.c 4.25 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
f30c22695   Uwe Zeisberger   fix file specific...
2
   * sound/oss/sb_midi.c
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
6
7
8
9
10
11
12
13
14
   *
   * The low level driver for the Sound Blaster DS chips.
   *
   *
   * Copyright (C) by Hannu Savolainen 1993-1997
   *
   * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
   * Version 2 (June 1991). See the "COPYING" file distributed with this software
   * for more info.
   */
  
  #include <linux/spinlock.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
15
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
  
  #include "sound_config.h"
  
  #include "sb.h"
  #undef SB_TEST_IRQ
  
  /*
   * The DSP channel can be used either for input or output. Variable
   * 'sb_irq_mode' will be set when the program calls read or write first time
   * after open. Current version doesn't support mode changes without closing
   * and reopening the device. Support for this feature may be implemented in a
   * future version of this driver.
   */
  
  
  static int sb_midi_open(int dev, int mode,
  	     void            (*input) (int dev, unsigned char data),
  	     void            (*output) (int dev)
  )
  {
  	sb_devc *devc = midi_devs[dev]->devc;
  	unsigned long flags;
  
  	if (devc == NULL)
  		return -ENXIO;
  
  	spin_lock_irqsave(&devc->lock, flags);
  	if (devc->opened)
  	{
  		spin_unlock_irqrestore(&devc->lock, flags);
  		return -EBUSY;
  	}
  	devc->opened = 1;
  	spin_unlock_irqrestore(&devc->lock, flags);
  
  	devc->irq_mode = IMODE_MIDI;
  	devc->midi_broken = 0;
  
  	sb_dsp_reset(devc);
  
  	if (!sb_dsp_command(devc, 0x35))	/* Start MIDI UART mode */
  	{
  		  devc->opened = 0;
  		  return -EIO;
  	}
  	devc->intr_active = 1;
  
  	if (mode & OPEN_READ)
  	{
  		devc->input_opened = 1;
  		devc->midi_input_intr = input;
  	}
  	return 0;
  }
  
  static void sb_midi_close(int dev)
  {
  	sb_devc *devc = midi_devs[dev]->devc;
  	unsigned long flags;
  
  	if (devc == NULL)
  		return;
  
  	spin_lock_irqsave(&devc->lock, flags);
  	sb_dsp_reset(devc);
  	devc->intr_active = 0;
  	devc->input_opened = 0;
  	devc->opened = 0;
  	spin_unlock_irqrestore(&devc->lock, flags);
  }
  
  static int sb_midi_out(int dev, unsigned char midi_byte)
  {
  	sb_devc *devc = midi_devs[dev]->devc;
  
  	if (devc == NULL)
  		return 1;
  
  	if (devc->midi_broken)
  		return 1;
  
  	if (!sb_dsp_command(devc, midi_byte))
  	{
  		devc->midi_broken = 1;
  		return 1;
  	}
  	return 1;
  }
  
  static int sb_midi_start_read(int dev)
  {
  	return 0;
  }
  
  static int sb_midi_end_read(int dev)
  {
  	sb_devc *devc = midi_devs[dev]->devc;
  
  	if (devc == NULL)
  		return -ENXIO;
  
  	sb_dsp_reset(devc);
  	devc->intr_active = 0;
  	return 0;
  }
  
  static int sb_midi_ioctl(int dev, unsigned cmd, void __user *arg)
  {
          return -EINVAL;
  }
  
  void sb_midi_interrupt(sb_devc * devc)
  {
  	unsigned long   flags;
  	unsigned char   data;
  
  	if (devc == NULL)
  		return;
  
  	spin_lock_irqsave(&devc->lock, flags);
  
  	data = inb(DSP_READ);
  	if (devc->input_opened)
  		devc->midi_input_intr(devc->my_mididev, data);
  
  	spin_unlock_irqrestore(&devc->lock, flags);
  }
  
  #define MIDI_SYNTH_NAME	"Sound Blaster Midi"
  #define MIDI_SYNTH_CAPS	0
  #include "midi_synth.h"
  
  static struct midi_operations sb_midi_operations =
  {
  	.owner		= THIS_MODULE,
  	.info		= {"Sound Blaster", 0, 0, SNDCARD_SB},
  	.converter	= &std_midi_synth,
  	.in_info	= {0},
  	.open		= sb_midi_open,
  	.close		= sb_midi_close,
  	.ioctl		= sb_midi_ioctl,
  	.outputc	= sb_midi_out,
  	.start_read	= sb_midi_start_read,
  	.end_read	= sb_midi_end_read,
  };
  
  void sb_dsp_midi_init(sb_devc * devc, struct module *owner)
  {
  	int dev;
  
  	if (devc->model < 2)	/* No MIDI support for SB 1.x */
  		return;
  
  	dev = sound_alloc_mididev();
  
  	if (dev == -1)
  	{
  		printk(KERN_ERR "sb_midi: too many MIDI devices detected
  ");
  		return;
  	}
  	std_midi_synth.midi_dev = devc->my_mididev = dev;
5cbded585   Robert P. J. Day   [PATCH] getting r...
178
  	midi_devs[dev] = kmalloc(sizeof(struct midi_operations), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
179
180
181
182
183
  	if (midi_devs[dev] == NULL)
  	{
  		printk(KERN_WARNING "Sound Blaster:  failed to allocate MIDI memory.
  ");
  		sound_unload_mididev(dev);
f0418d46d   Dan Carpenter   sound/sb_midi: a ...
184
  		return;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
185
186
187
188
189
  	}
  	memcpy((char *) midi_devs[dev], (char *) &sb_midi_operations,
  	       sizeof(struct midi_operations));
  
  	if (owner)
f0418d46d   Dan Carpenter   sound/sb_midi: a ...
190
  		midi_devs[dev]->owner = owner;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
191
  	midi_devs[dev]->devc = devc;
5cbded585   Robert P. J. Day   [PATCH] getting r...
192
  	midi_devs[dev]->converter = kmalloc(sizeof(struct synth_operations), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
193
194
195
196
197
198
199
200
201
202
203
204
205
206
  	if (midi_devs[dev]->converter == NULL)
  	{
  		  printk(KERN_WARNING "Sound Blaster:  failed to allocate MIDI memory.
  ");
  		  kfree(midi_devs[dev]);
  		  sound_unload_mididev(dev);
  		  return;
  	}
  	memcpy((char *) midi_devs[dev]->converter, (char *) &std_midi_synth,
  	       sizeof(struct synth_operations));
  
  	midi_devs[dev]->converter->id = "SBMIDI";
  	sequencer_init();
  }