Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Interface for OSS sequencer emulation
4 *
5 * Copyright (C) 1999 Takashi Iwai <tiwai@suse.de>
6 *
7 * Changes
8 * 19990227 Steve Ratcliffe Made separate file and merged in latest
9 * midi emulation.
10 */
11
12
13#include <linux/export.h>
14#include <linux/uaccess.h>
15#include <sound/core.h>
16#include "emux_voice.h"
17#include <sound/asoundef.h>
18
19static int snd_emux_open_seq_oss(struct snd_seq_oss_arg *arg, void *closure);
20static int snd_emux_close_seq_oss(struct snd_seq_oss_arg *arg);
21static int snd_emux_ioctl_seq_oss(struct snd_seq_oss_arg *arg, unsigned int cmd,
22 unsigned long ioarg);
23static int snd_emux_load_patch_seq_oss(struct snd_seq_oss_arg *arg, int format,
24 const char __user *buf, int offs, int count);
25static int snd_emux_reset_seq_oss(struct snd_seq_oss_arg *arg);
26static int snd_emux_event_oss_input(struct snd_seq_event *ev, int direct,
27 void *private, int atomic, int hop);
28static void reset_port_mode(struct snd_emux_port *port, int midi_mode);
29static void emuspec_control(struct snd_emux *emu, struct snd_emux_port *port,
30 int cmd, unsigned char *event, int atomic, int hop);
31static void gusspec_control(struct snd_emux *emu, struct snd_emux_port *port,
32 int cmd, unsigned char *event, int atomic, int hop);
33static void fake_event(struct snd_emux *emu, struct snd_emux_port *port,
34 int ch, int param, int val, int atomic, int hop);
35
36/* operators */
37static const struct snd_seq_oss_callback oss_callback = {
38 .owner = THIS_MODULE,
39 .open = snd_emux_open_seq_oss,
40 .close = snd_emux_close_seq_oss,
41 .ioctl = snd_emux_ioctl_seq_oss,
42 .load_patch = snd_emux_load_patch_seq_oss,
43 .reset = snd_emux_reset_seq_oss,
44};
45
46
47/*
48 * register OSS synth
49 */
50
51void
52snd_emux_init_seq_oss(struct snd_emux *emu)
53{
54 struct snd_seq_oss_reg *arg;
55 struct snd_seq_device *dev;
56
57 /* using device#1 here for avoiding conflicts with OPL3 */
58 if (snd_seq_device_new(emu->card, 1, SNDRV_SEQ_DEV_ID_OSS,
59 sizeof(struct snd_seq_oss_reg), &dev) < 0)
60 return;
61
62 emu->oss_synth = dev;
63 strcpy(dev->name, emu->name);
64 arg = SNDRV_SEQ_DEVICE_ARGPTR(dev);
65 arg->type = SYNTH_TYPE_SAMPLE;
66 arg->subtype = SAMPLE_TYPE_AWE32;
67 arg->nvoices = emu->max_voices;
68 arg->oper = oss_callback;
69 arg->private_data = emu;
70
71 /* register to OSS synth table */
72 snd_device_register(emu->card, dev);
73}
74
75
76/*
77 * unregister
78 */
79void
80snd_emux_detach_seq_oss(struct snd_emux *emu)
81{
82 if (emu->oss_synth) {
83 snd_device_free(emu->card, emu->oss_synth);
84 emu->oss_synth = NULL;
85 }
86}
87
88
89/* use port number as a unique soundfont client number */
90#define SF_CLIENT_NO(p) ((p) + 0x1000)
91
92/*
93 * open port for OSS sequencer
94 */
95static int
96snd_emux_open_seq_oss(struct snd_seq_oss_arg *arg, void *closure)
97{
98 struct snd_emux *emu;
99 struct snd_emux_port *p;
100 struct snd_seq_port_callback callback;
101 char tmpname[64];
102
103 emu = closure;
104 if (snd_BUG_ON(!arg || !emu))
105 return -ENXIO;
106
107 if (!snd_emux_inc_count(emu))
108 return -EFAULT;
109
110 memset(&callback, 0, sizeof(callback));
111 callback.owner = THIS_MODULE;
112 callback.event_input = snd_emux_event_oss_input;
113
114 sprintf(tmpname, "%s OSS Port", emu->name);
115 p = snd_emux_create_port(emu, tmpname, 32,
116 1, &callback);
117 if (p == NULL) {
118 dev_err(emu->card->dev, "can't create port\n");
119 snd_emux_dec_count(emu);
120 return -ENOMEM;
121 }
122
123 /* fill the argument data */
124 arg->private_data = p;
125 arg->addr.client = p->chset.client;
126 arg->addr.port = p->chset.port;
127 p->oss_arg = arg;
128
129 reset_port_mode(p, arg->seq_mode);
130
131 snd_emux_reset_port(p);
132 return 0;
133}
134
135
136#define DEFAULT_DRUM_FLAGS ((1<<9) | (1<<25))
137
138/*
139 * reset port mode
140 */
141static void
142reset_port_mode(struct snd_emux_port *port, int midi_mode)
143{
144 if (midi_mode) {
145 port->port_mode = SNDRV_EMUX_PORT_MODE_OSS_MIDI;
146 port->drum_flags = DEFAULT_DRUM_FLAGS;
147 port->volume_atten = 0;
148 port->oss_arg->event_passing = SNDRV_SEQ_OSS_PROCESS_KEYPRESS;
149 } else {
150 port->port_mode = SNDRV_EMUX_PORT_MODE_OSS_SYNTH;
151 port->drum_flags = 0;
152 port->volume_atten = 32;
153 port->oss_arg->event_passing = SNDRV_SEQ_OSS_PROCESS_EVENTS;
154 }
155}
156
157
158/*
159 * close port
160 */
161static int
162snd_emux_close_seq_oss(struct snd_seq_oss_arg *arg)
163{
164 struct snd_emux *emu;
165 struct snd_emux_port *p;
166
167 if (snd_BUG_ON(!arg))
168 return -ENXIO;
169 p = arg->private_data;
170 if (snd_BUG_ON(!p))
171 return -ENXIO;
172
173 emu = p->emu;
174 if (snd_BUG_ON(!emu))
175 return -ENXIO;
176
177 snd_emux_sounds_off_all(p);
178 snd_soundfont_close_check(emu->sflist, SF_CLIENT_NO(p->chset.port));
179 snd_seq_event_port_detach(p->chset.client, p->chset.port);
180 snd_emux_dec_count(emu);
181
182 return 0;
183}
184
185
186/*
187 * load patch
188 */
189static int
190snd_emux_load_patch_seq_oss(struct snd_seq_oss_arg *arg, int format,
191 const char __user *buf, int offs, int count)
192{
193 struct snd_emux *emu;
194 struct snd_emux_port *p;
195 int rc;
196
197 if (snd_BUG_ON(!arg))
198 return -ENXIO;
199 p = arg->private_data;
200 if (snd_BUG_ON(!p))
201 return -ENXIO;
202
203 emu = p->emu;
204 if (snd_BUG_ON(!emu))
205 return -ENXIO;
206
207 if (format == GUS_PATCH)
208 rc = snd_soundfont_load_guspatch(emu->card, emu->sflist, buf, count);
209 else if (format == SNDRV_OSS_SOUNDFONT_PATCH) {
210 struct soundfont_patch_info patch;
211 if (count < (int)sizeof(patch))
212 return -EINVAL;
213 if (copy_from_user(&patch, buf, sizeof(patch)))
214 return -EFAULT;
215 if (patch.type >= SNDRV_SFNT_LOAD_INFO &&
216 patch.type <= SNDRV_SFNT_PROBE_DATA)
217 rc = snd_soundfont_load(emu->card, emu->sflist, buf,
218 count,
219 SF_CLIENT_NO(p->chset.port));
220 else {
221 if (emu->ops.load_fx)
222 rc = emu->ops.load_fx(emu, patch.type,
223 patch.optarg, buf, count);
224 else
225 rc = -EINVAL;
226 }
227 } else
228 rc = 0;
229 return rc;
230}
231
232
233/*
234 * ioctl
235 */
236static int
237snd_emux_ioctl_seq_oss(struct snd_seq_oss_arg *arg, unsigned int cmd, unsigned long ioarg)
238{
239 struct snd_emux_port *p;
240 struct snd_emux *emu;
241
242 if (snd_BUG_ON(!arg))
243 return -ENXIO;
244 p = arg->private_data;
245 if (snd_BUG_ON(!p))
246 return -ENXIO;
247
248 emu = p->emu;
249 if (snd_BUG_ON(!emu))
250 return -ENXIO;
251
252 switch (cmd) {
253 case SNDCTL_SEQ_RESETSAMPLES:
254 snd_soundfont_remove_samples(emu->sflist);
255 return 0;
256
257 case SNDCTL_SYNTH_MEMAVL:
258 if (emu->memhdr)
259 return snd_util_mem_avail(emu->memhdr);
260 return 0;
261 }
262
263 return 0;
264}
265
266
267/*
268 * reset device
269 */
270static int
271snd_emux_reset_seq_oss(struct snd_seq_oss_arg *arg)
272{
273 struct snd_emux_port *p;
274
275 if (snd_BUG_ON(!arg))
276 return -ENXIO;
277 p = arg->private_data;
278 if (snd_BUG_ON(!p))
279 return -ENXIO;
280 snd_emux_reset_port(p);
281 return 0;
282}
283
284
285/*
286 * receive raw events: only SEQ_PRIVATE is accepted.
287 */
288static int
289snd_emux_event_oss_input(struct snd_seq_event *ev, int direct, void *private_data,
290 int atomic, int hop)
291{
292 struct snd_emux *emu;
293 struct snd_emux_port *p;
294 unsigned char cmd, *data;
295
296 p = private_data;
297 if (snd_BUG_ON(!p))
298 return -EINVAL;
299 emu = p->emu;
300 if (snd_BUG_ON(!emu))
301 return -EINVAL;
302 if (ev->type != SNDRV_SEQ_EVENT_OSS)
303 return snd_emux_event_input(ev, direct, private_data, atomic, hop);
304
305 data = ev->data.raw8.d;
306 /* only SEQ_PRIVATE is accepted */
307 if (data[0] != 0xfe)
308 return 0;
309 cmd = data[2] & _EMUX_OSS_MODE_VALUE_MASK;
310 if (data[2] & _EMUX_OSS_MODE_FLAG)
311 emuspec_control(emu, p, cmd, data, atomic, hop);
312 else
313 gusspec_control(emu, p, cmd, data, atomic, hop);
314 return 0;
315}
316
317
318/*
319 * OSS/AWE driver specific h/w controls
320 */
321static void
322emuspec_control(struct snd_emux *emu, struct snd_emux_port *port, int cmd,
323 unsigned char *event, int atomic, int hop)
324{
325 int voice;
326 unsigned short p1;
327 short p2;
328 int i;
329 struct snd_midi_channel *chan;
330
331 voice = event[3];
332 if (voice < 0 || voice >= port->chset.max_channels)
333 chan = NULL;
334 else
335 chan = &port->chset.channels[voice];
336
337 p1 = *(unsigned short *) &event[4];
338 p2 = *(short *) &event[6];
339
340 switch (cmd) {
341#if 0 /* don't do this atomically */
342 case _EMUX_OSS_REMOVE_LAST_SAMPLES:
343 snd_soundfont_remove_unlocked(emu->sflist);
344 break;
345#endif
346 case _EMUX_OSS_SEND_EFFECT:
347 if (chan)
348 snd_emux_send_effect_oss(port, chan, p1, p2);
349 break;
350
351 case _EMUX_OSS_TERMINATE_ALL:
352 snd_emux_terminate_all(emu);
353 break;
354
355 case _EMUX_OSS_TERMINATE_CHANNEL:
356 /*snd_emux_mute_channel(emu, chan);*/
357 break;
358 case _EMUX_OSS_RESET_CHANNEL:
359 /*snd_emux_channel_init(chset, chan);*/
360 break;
361
362 case _EMUX_OSS_RELEASE_ALL:
363 fake_event(emu, port, voice, MIDI_CTL_ALL_NOTES_OFF, 0, atomic, hop);
364 break;
365 case _EMUX_OSS_NOTEOFF_ALL:
366 fake_event(emu, port, voice, MIDI_CTL_ALL_SOUNDS_OFF, 0, atomic, hop);
367 break;
368
369 case _EMUX_OSS_INITIAL_VOLUME:
370 if (p2) {
371 port->volume_atten = (short)p1;
372 snd_emux_update_port(port, SNDRV_EMUX_UPDATE_VOLUME);
373 }
374 break;
375
376 case _EMUX_OSS_CHN_PRESSURE:
377 if (chan) {
378 chan->midi_pressure = p1;
379 snd_emux_update_channel(port, chan, SNDRV_EMUX_UPDATE_FMMOD|SNDRV_EMUX_UPDATE_FM2FRQ2);
380 }
381 break;
382
383 case _EMUX_OSS_CHANNEL_MODE:
384 reset_port_mode(port, p1);
385 snd_emux_reset_port(port);
386 break;
387
388 case _EMUX_OSS_DRUM_CHANNELS:
389 port->drum_flags = *(unsigned int*)&event[4];
390 for (i = 0; i < port->chset.max_channels; i++) {
391 chan = &port->chset.channels[i];
392 chan->drum_channel = ((port->drum_flags >> i) & 1) ? 1 : 0;
393 }
394 break;
395
396 case _EMUX_OSS_MISC_MODE:
397 if (p1 < EMUX_MD_END)
398 port->ctrls[p1] = p2;
399 break;
400 case _EMUX_OSS_DEBUG_MODE:
401 break;
402
403 default:
404 if (emu->ops.oss_ioctl)
405 emu->ops.oss_ioctl(emu, cmd, p1, p2);
406 break;
407 }
408}
409
410/*
411 * GUS specific h/w controls
412 */
413
414#include <linux/ultrasound.h>
415
416static void
417gusspec_control(struct snd_emux *emu, struct snd_emux_port *port, int cmd,
418 unsigned char *event, int atomic, int hop)
419{
420 int voice;
421 unsigned short p1;
422 int plong;
423 struct snd_midi_channel *chan;
424
425 if (port->port_mode != SNDRV_EMUX_PORT_MODE_OSS_SYNTH)
426 return;
427 if (cmd == _GUS_NUMVOICES)
428 return;
429 voice = event[3];
430 if (voice < 0 || voice >= port->chset.max_channels)
431 return;
432
433 chan = &port->chset.channels[voice];
434
435 p1 = *(unsigned short *) &event[4];
436 plong = *(int*) &event[4];
437
438 switch (cmd) {
439 case _GUS_VOICESAMPLE:
440 chan->midi_program = p1;
441 return;
442
443 case _GUS_VOICEBALA:
444 /* 0 to 15 --> 0 to 127 */
445 chan->control[MIDI_CTL_MSB_PAN] = (int)p1 << 3;
446 snd_emux_update_channel(port, chan, SNDRV_EMUX_UPDATE_PAN);
447 return;
448
449 case _GUS_VOICEVOL:
450 case _GUS_VOICEVOL2:
451 /* not supported yet */
452 return;
453
454 case _GUS_RAMPRANGE:
455 case _GUS_RAMPRATE:
456 case _GUS_RAMPMODE:
457 case _GUS_RAMPON:
458 case _GUS_RAMPOFF:
459 /* volume ramping not supported */
460 return;
461
462 case _GUS_VOLUME_SCALE:
463 return;
464
465 case _GUS_VOICE_POS:
466#ifdef SNDRV_EMUX_USE_RAW_EFFECT
467 snd_emux_send_effect(port, chan, EMUX_FX_SAMPLE_START,
468 (short)(plong & 0x7fff),
469 EMUX_FX_FLAG_SET);
470 snd_emux_send_effect(port, chan, EMUX_FX_COARSE_SAMPLE_START,
471 (plong >> 15) & 0xffff,
472 EMUX_FX_FLAG_SET);
473#endif
474 return;
475 }
476}
477
478
479/*
480 * send an event to midi emulation
481 */
482static void
483fake_event(struct snd_emux *emu, struct snd_emux_port *port, int ch, int param, int val, int atomic, int hop)
484{
485 struct snd_seq_event ev;
486 memset(&ev, 0, sizeof(ev));
487 ev.type = SNDRV_SEQ_EVENT_CONTROLLER;
488 ev.data.control.channel = ch;
489 ev.data.control.param = param;
490 ev.data.control.value = val;
491 snd_emux_event_input(&ev, 0, port, atomic, hop);
492}
1/*
2 * Interface for OSS sequencer emulation
3 *
4 * Copyright (C) 1999 Takashi Iwai <tiwai@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 * Changes
21 * 19990227 Steve Ratcliffe Made separate file and merged in latest
22 * midi emulation.
23 */
24
25
26#ifdef CONFIG_SND_SEQUENCER_OSS
27
28#include <linux/export.h>
29#include <linux/uaccess.h>
30#include <sound/core.h>
31#include "emux_voice.h"
32#include <sound/asoundef.h>
33
34static int snd_emux_open_seq_oss(struct snd_seq_oss_arg *arg, void *closure);
35static int snd_emux_close_seq_oss(struct snd_seq_oss_arg *arg);
36static int snd_emux_ioctl_seq_oss(struct snd_seq_oss_arg *arg, unsigned int cmd,
37 unsigned long ioarg);
38static int snd_emux_load_patch_seq_oss(struct snd_seq_oss_arg *arg, int format,
39 const char __user *buf, int offs, int count);
40static int snd_emux_reset_seq_oss(struct snd_seq_oss_arg *arg);
41static int snd_emux_event_oss_input(struct snd_seq_event *ev, int direct,
42 void *private, int atomic, int hop);
43static void reset_port_mode(struct snd_emux_port *port, int midi_mode);
44static void emuspec_control(struct snd_emux *emu, struct snd_emux_port *port,
45 int cmd, unsigned char *event, int atomic, int hop);
46static void gusspec_control(struct snd_emux *emu, struct snd_emux_port *port,
47 int cmd, unsigned char *event, int atomic, int hop);
48static void fake_event(struct snd_emux *emu, struct snd_emux_port *port,
49 int ch, int param, int val, int atomic, int hop);
50
51/* operators */
52static struct snd_seq_oss_callback oss_callback = {
53 .owner = THIS_MODULE,
54 .open = snd_emux_open_seq_oss,
55 .close = snd_emux_close_seq_oss,
56 .ioctl = snd_emux_ioctl_seq_oss,
57 .load_patch = snd_emux_load_patch_seq_oss,
58 .reset = snd_emux_reset_seq_oss,
59};
60
61
62/*
63 * register OSS synth
64 */
65
66void
67snd_emux_init_seq_oss(struct snd_emux *emu)
68{
69 struct snd_seq_oss_reg *arg;
70 struct snd_seq_device *dev;
71
72 /* using device#1 here for avoiding conflicts with OPL3 */
73 if (snd_seq_device_new(emu->card, 1, SNDRV_SEQ_DEV_ID_OSS,
74 sizeof(struct snd_seq_oss_reg), &dev) < 0)
75 return;
76
77 emu->oss_synth = dev;
78 strcpy(dev->name, emu->name);
79 arg = SNDRV_SEQ_DEVICE_ARGPTR(dev);
80 arg->type = SYNTH_TYPE_SAMPLE;
81 arg->subtype = SAMPLE_TYPE_AWE32;
82 arg->nvoices = emu->max_voices;
83 arg->oper = oss_callback;
84 arg->private_data = emu;
85
86 /* register to OSS synth table */
87 snd_device_register(emu->card, dev);
88}
89
90
91/*
92 * unregister
93 */
94void
95snd_emux_detach_seq_oss(struct snd_emux *emu)
96{
97 if (emu->oss_synth) {
98 snd_device_free(emu->card, emu->oss_synth);
99 emu->oss_synth = NULL;
100 }
101}
102
103
104/* use port number as a unique soundfont client number */
105#define SF_CLIENT_NO(p) ((p) + 0x1000)
106
107/*
108 * open port for OSS sequencer
109 */
110static int
111snd_emux_open_seq_oss(struct snd_seq_oss_arg *arg, void *closure)
112{
113 struct snd_emux *emu;
114 struct snd_emux_port *p;
115 struct snd_seq_port_callback callback;
116 char tmpname[64];
117
118 emu = closure;
119 if (snd_BUG_ON(!arg || !emu))
120 return -ENXIO;
121
122 if (!snd_emux_inc_count(emu))
123 return -EFAULT;
124
125 memset(&callback, 0, sizeof(callback));
126 callback.owner = THIS_MODULE;
127 callback.event_input = snd_emux_event_oss_input;
128
129 sprintf(tmpname, "%s OSS Port", emu->name);
130 p = snd_emux_create_port(emu, tmpname, 32,
131 1, &callback);
132 if (p == NULL) {
133 snd_printk(KERN_ERR "can't create port\n");
134 snd_emux_dec_count(emu);
135 return -ENOMEM;
136 }
137
138 /* fill the argument data */
139 arg->private_data = p;
140 arg->addr.client = p->chset.client;
141 arg->addr.port = p->chset.port;
142 p->oss_arg = arg;
143
144 reset_port_mode(p, arg->seq_mode);
145
146 snd_emux_reset_port(p);
147 return 0;
148}
149
150
151#define DEFAULT_DRUM_FLAGS ((1<<9) | (1<<25))
152
153/*
154 * reset port mode
155 */
156static void
157reset_port_mode(struct snd_emux_port *port, int midi_mode)
158{
159 if (midi_mode) {
160 port->port_mode = SNDRV_EMUX_PORT_MODE_OSS_MIDI;
161 port->drum_flags = DEFAULT_DRUM_FLAGS;
162 port->volume_atten = 0;
163 port->oss_arg->event_passing = SNDRV_SEQ_OSS_PROCESS_KEYPRESS;
164 } else {
165 port->port_mode = SNDRV_EMUX_PORT_MODE_OSS_SYNTH;
166 port->drum_flags = 0;
167 port->volume_atten = 32;
168 port->oss_arg->event_passing = SNDRV_SEQ_OSS_PROCESS_EVENTS;
169 }
170}
171
172
173/*
174 * close port
175 */
176static int
177snd_emux_close_seq_oss(struct snd_seq_oss_arg *arg)
178{
179 struct snd_emux *emu;
180 struct snd_emux_port *p;
181
182 if (snd_BUG_ON(!arg))
183 return -ENXIO;
184 p = arg->private_data;
185 if (snd_BUG_ON(!p))
186 return -ENXIO;
187
188 emu = p->emu;
189 if (snd_BUG_ON(!emu))
190 return -ENXIO;
191
192 snd_emux_sounds_off_all(p);
193 snd_soundfont_close_check(emu->sflist, SF_CLIENT_NO(p->chset.port));
194 snd_seq_event_port_detach(p->chset.client, p->chset.port);
195 snd_emux_dec_count(emu);
196
197 return 0;
198}
199
200
201/*
202 * load patch
203 */
204static int
205snd_emux_load_patch_seq_oss(struct snd_seq_oss_arg *arg, int format,
206 const char __user *buf, int offs, int count)
207{
208 struct snd_emux *emu;
209 struct snd_emux_port *p;
210 int rc;
211
212 if (snd_BUG_ON(!arg))
213 return -ENXIO;
214 p = arg->private_data;
215 if (snd_BUG_ON(!p))
216 return -ENXIO;
217
218 emu = p->emu;
219 if (snd_BUG_ON(!emu))
220 return -ENXIO;
221
222 if (format == GUS_PATCH)
223 rc = snd_soundfont_load_guspatch(emu->sflist, buf, count,
224 SF_CLIENT_NO(p->chset.port));
225 else if (format == SNDRV_OSS_SOUNDFONT_PATCH) {
226 struct soundfont_patch_info patch;
227 if (count < (int)sizeof(patch))
228 rc = -EINVAL;
229 if (copy_from_user(&patch, buf, sizeof(patch)))
230 rc = -EFAULT;
231 if (patch.type >= SNDRV_SFNT_LOAD_INFO &&
232 patch.type <= SNDRV_SFNT_PROBE_DATA)
233 rc = snd_soundfont_load(emu->sflist, buf, count, SF_CLIENT_NO(p->chset.port));
234 else {
235 if (emu->ops.load_fx)
236 rc = emu->ops.load_fx(emu, patch.type, patch.optarg, buf, count);
237 else
238 rc = -EINVAL;
239 }
240 } else
241 rc = 0;
242 return rc;
243}
244
245
246/*
247 * ioctl
248 */
249static int
250snd_emux_ioctl_seq_oss(struct snd_seq_oss_arg *arg, unsigned int cmd, unsigned long ioarg)
251{
252 struct snd_emux_port *p;
253 struct snd_emux *emu;
254
255 if (snd_BUG_ON(!arg))
256 return -ENXIO;
257 p = arg->private_data;
258 if (snd_BUG_ON(!p))
259 return -ENXIO;
260
261 emu = p->emu;
262 if (snd_BUG_ON(!emu))
263 return -ENXIO;
264
265 switch (cmd) {
266 case SNDCTL_SEQ_RESETSAMPLES:
267 snd_soundfont_remove_samples(emu->sflist);
268 return 0;
269
270 case SNDCTL_SYNTH_MEMAVL:
271 if (emu->memhdr)
272 return snd_util_mem_avail(emu->memhdr);
273 return 0;
274 }
275
276 return 0;
277}
278
279
280/*
281 * reset device
282 */
283static int
284snd_emux_reset_seq_oss(struct snd_seq_oss_arg *arg)
285{
286 struct snd_emux_port *p;
287
288 if (snd_BUG_ON(!arg))
289 return -ENXIO;
290 p = arg->private_data;
291 if (snd_BUG_ON(!p))
292 return -ENXIO;
293 snd_emux_reset_port(p);
294 return 0;
295}
296
297
298/*
299 * receive raw events: only SEQ_PRIVATE is accepted.
300 */
301static int
302snd_emux_event_oss_input(struct snd_seq_event *ev, int direct, void *private_data,
303 int atomic, int hop)
304{
305 struct snd_emux *emu;
306 struct snd_emux_port *p;
307 unsigned char cmd, *data;
308
309 p = private_data;
310 if (snd_BUG_ON(!p))
311 return -EINVAL;
312 emu = p->emu;
313 if (snd_BUG_ON(!emu))
314 return -EINVAL;
315 if (ev->type != SNDRV_SEQ_EVENT_OSS)
316 return snd_emux_event_input(ev, direct, private_data, atomic, hop);
317
318 data = ev->data.raw8.d;
319 /* only SEQ_PRIVATE is accepted */
320 if (data[0] != 0xfe)
321 return 0;
322 cmd = data[2] & _EMUX_OSS_MODE_VALUE_MASK;
323 if (data[2] & _EMUX_OSS_MODE_FLAG)
324 emuspec_control(emu, p, cmd, data, atomic, hop);
325 else
326 gusspec_control(emu, p, cmd, data, atomic, hop);
327 return 0;
328}
329
330
331/*
332 * OSS/AWE driver specific h/w controls
333 */
334static void
335emuspec_control(struct snd_emux *emu, struct snd_emux_port *port, int cmd,
336 unsigned char *event, int atomic, int hop)
337{
338 int voice;
339 unsigned short p1;
340 short p2;
341 int i;
342 struct snd_midi_channel *chan;
343
344 voice = event[3];
345 if (voice < 0 || voice >= port->chset.max_channels)
346 chan = NULL;
347 else
348 chan = &port->chset.channels[voice];
349
350 p1 = *(unsigned short *) &event[4];
351 p2 = *(short *) &event[6];
352
353 switch (cmd) {
354#if 0 /* don't do this atomically */
355 case _EMUX_OSS_REMOVE_LAST_SAMPLES:
356 snd_soundfont_remove_unlocked(emu->sflist);
357 break;
358#endif
359 case _EMUX_OSS_SEND_EFFECT:
360 if (chan)
361 snd_emux_send_effect_oss(port, chan, p1, p2);
362 break;
363
364 case _EMUX_OSS_TERMINATE_ALL:
365 snd_emux_terminate_all(emu);
366 break;
367
368 case _EMUX_OSS_TERMINATE_CHANNEL:
369 /*snd_emux_mute_channel(emu, chan);*/
370 break;
371 case _EMUX_OSS_RESET_CHANNEL:
372 /*snd_emux_channel_init(chset, chan);*/
373 break;
374
375 case _EMUX_OSS_RELEASE_ALL:
376 fake_event(emu, port, voice, MIDI_CTL_ALL_NOTES_OFF, 0, atomic, hop);
377 break;
378 case _EMUX_OSS_NOTEOFF_ALL:
379 fake_event(emu, port, voice, MIDI_CTL_ALL_SOUNDS_OFF, 0, atomic, hop);
380 break;
381
382 case _EMUX_OSS_INITIAL_VOLUME:
383 if (p2) {
384 port->volume_atten = (short)p1;
385 snd_emux_update_port(port, SNDRV_EMUX_UPDATE_VOLUME);
386 }
387 break;
388
389 case _EMUX_OSS_CHN_PRESSURE:
390 if (chan) {
391 chan->midi_pressure = p1;
392 snd_emux_update_channel(port, chan, SNDRV_EMUX_UPDATE_FMMOD|SNDRV_EMUX_UPDATE_FM2FRQ2);
393 }
394 break;
395
396 case _EMUX_OSS_CHANNEL_MODE:
397 reset_port_mode(port, p1);
398 snd_emux_reset_port(port);
399 break;
400
401 case _EMUX_OSS_DRUM_CHANNELS:
402 port->drum_flags = *(unsigned int*)&event[4];
403 for (i = 0; i < port->chset.max_channels; i++) {
404 chan = &port->chset.channels[i];
405 chan->drum_channel = ((port->drum_flags >> i) & 1) ? 1 : 0;
406 }
407 break;
408
409 case _EMUX_OSS_MISC_MODE:
410 if (p1 < EMUX_MD_END)
411 port->ctrls[p1] = p2;
412 break;
413 case _EMUX_OSS_DEBUG_MODE:
414 break;
415
416 default:
417 if (emu->ops.oss_ioctl)
418 emu->ops.oss_ioctl(emu, cmd, p1, p2);
419 break;
420 }
421}
422
423/*
424 * GUS specific h/w controls
425 */
426
427#include <linux/ultrasound.h>
428
429static void
430gusspec_control(struct snd_emux *emu, struct snd_emux_port *port, int cmd,
431 unsigned char *event, int atomic, int hop)
432{
433 int voice;
434 unsigned short p1;
435 short p2;
436 int plong;
437 struct snd_midi_channel *chan;
438
439 if (port->port_mode != SNDRV_EMUX_PORT_MODE_OSS_SYNTH)
440 return;
441 if (cmd == _GUS_NUMVOICES)
442 return;
443 voice = event[3];
444 if (voice < 0 || voice >= port->chset.max_channels)
445 return;
446
447 chan = &port->chset.channels[voice];
448
449 p1 = *(unsigned short *) &event[4];
450 p2 = *(short *) &event[6];
451 plong = *(int*) &event[4];
452
453 switch (cmd) {
454 case _GUS_VOICESAMPLE:
455 chan->midi_program = p1;
456 return;
457
458 case _GUS_VOICEBALA:
459 /* 0 to 15 --> 0 to 127 */
460 chan->control[MIDI_CTL_MSB_PAN] = (int)p1 << 3;
461 snd_emux_update_channel(port, chan, SNDRV_EMUX_UPDATE_PAN);
462 return;
463
464 case _GUS_VOICEVOL:
465 case _GUS_VOICEVOL2:
466 /* not supported yet */
467 return;
468
469 case _GUS_RAMPRANGE:
470 case _GUS_RAMPRATE:
471 case _GUS_RAMPMODE:
472 case _GUS_RAMPON:
473 case _GUS_RAMPOFF:
474 /* volume ramping not supported */
475 return;
476
477 case _GUS_VOLUME_SCALE:
478 return;
479
480 case _GUS_VOICE_POS:
481#ifdef SNDRV_EMUX_USE_RAW_EFFECT
482 snd_emux_send_effect(port, chan, EMUX_FX_SAMPLE_START,
483 (short)(plong & 0x7fff),
484 EMUX_FX_FLAG_SET);
485 snd_emux_send_effect(port, chan, EMUX_FX_COARSE_SAMPLE_START,
486 (plong >> 15) & 0xffff,
487 EMUX_FX_FLAG_SET);
488#endif
489 return;
490 }
491}
492
493
494/*
495 * send an event to midi emulation
496 */
497static void
498fake_event(struct snd_emux *emu, struct snd_emux_port *port, int ch, int param, int val, int atomic, int hop)
499{
500 struct snd_seq_event ev;
501 memset(&ev, 0, sizeof(ev));
502 ev.type = SNDRV_SEQ_EVENT_CONTROLLER;
503 ev.data.control.channel = ch;
504 ev.data.control.param = param;
505 ev.data.control.value = val;
506 snd_emux_event_input(&ev, 0, port, atomic, hop);
507}
508
509#endif /* CONFIG_SND_SEQUENCER_OSS */