rawmidi.c 49.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *  Abstract layer for MIDI v1.0 stream
3
 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 *
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 */

#include <sound/core.h>
#include <linux/major.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/time.h>
#include <linux/wait.h>
29
#include <linux/mutex.h>
30
#include <linux/module.h>
L
Linus Torvalds 已提交
31 32 33 34 35 36 37
#include <linux/delay.h>
#include <sound/rawmidi.h>
#include <sound/info.h>
#include <sound/control.h>
#include <sound/minors.h>
#include <sound/initval.h>

38
MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
L
Linus Torvalds 已提交
39 40 41 42
MODULE_DESCRIPTION("Midlevel RawMidi code for ALSA.");
MODULE_LICENSE("GPL");

#ifdef CONFIG_SND_OSSEMUL
43
static int midi_map[SNDRV_CARDS];
L
Linus Torvalds 已提交
44 45 46 47 48 49 50
static int amidi_map[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 1};
module_param_array(midi_map, int, NULL, 0444);
MODULE_PARM_DESC(midi_map, "Raw MIDI device number assigned to 1st OSS device.");
module_param_array(amidi_map, int, NULL, 0444);
MODULE_PARM_DESC(amidi_map, "Raw MIDI device number assigned to 2nd OSS device.");
#endif /* CONFIG_SND_OSSEMUL */

51 52 53 54
static int snd_rawmidi_free(struct snd_rawmidi *rawmidi);
static int snd_rawmidi_dev_free(struct snd_device *device);
static int snd_rawmidi_dev_register(struct snd_device *device);
static int snd_rawmidi_dev_disconnect(struct snd_device *device);
L
Linus Torvalds 已提交
55

56
static LIST_HEAD(snd_rawmidi_devices);
57
static DEFINE_MUTEX(register_mutex);
L
Linus Torvalds 已提交
58

59
#define rmidi_err(rmidi, fmt, args...) \
60
	dev_err(&(rmidi)->dev, fmt, ##args)
61
#define rmidi_warn(rmidi, fmt, args...) \
62
	dev_warn(&(rmidi)->dev, fmt, ##args)
63
#define rmidi_dbg(rmidi, fmt, args...) \
64
	dev_dbg(&(rmidi)->dev, fmt, ##args)
65

66 67 68 69
static struct snd_rawmidi *snd_rawmidi_search(struct snd_card *card, int device)
{
	struct snd_rawmidi *rawmidi;

70
	list_for_each_entry(rawmidi, &snd_rawmidi_devices, list)
71 72 73 74 75
		if (rawmidi->card == card && rawmidi->device == device)
			return rawmidi;
	return NULL;
}

L
Linus Torvalds 已提交
76 77 78 79 80 81 82 83 84 85 86 87
static inline unsigned short snd_rawmidi_file_flags(struct file *file)
{
	switch (file->f_mode & (FMODE_READ | FMODE_WRITE)) {
	case FMODE_WRITE:
		return SNDRV_RAWMIDI_LFLG_OUTPUT;
	case FMODE_READ:
		return SNDRV_RAWMIDI_LFLG_INPUT;
	default:
		return SNDRV_RAWMIDI_LFLG_OPEN;
	}
}

88
static inline int snd_rawmidi_ready(struct snd_rawmidi_substream *substream)
L
Linus Torvalds 已提交
89
{
90
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
91 92 93
	return runtime->avail >= runtime->avail_min;
}

94 95
static inline int snd_rawmidi_ready_append(struct snd_rawmidi_substream *substream,
					   size_t count)
L
Linus Torvalds 已提交
96
{
97
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
98 99 100 101
	return runtime->avail >= runtime->avail_min &&
	       (!substream->append || runtime->avail >= count);
}

102
static void snd_rawmidi_input_event_work(struct work_struct *work)
L
Linus Torvalds 已提交
103
{
104 105 106 107
	struct snd_rawmidi_runtime *runtime =
		container_of(work, struct snd_rawmidi_runtime, event_work);
	if (runtime->event)
		runtime->event(runtime->substream);
L
Linus Torvalds 已提交
108 109
}

110
static int snd_rawmidi_runtime_create(struct snd_rawmidi_substream *substream)
L
Linus Torvalds 已提交
111
{
112
	struct snd_rawmidi_runtime *runtime;
L
Linus Torvalds 已提交
113

114
	if ((runtime = kzalloc(sizeof(*runtime), GFP_KERNEL)) == NULL)
L
Linus Torvalds 已提交
115
		return -ENOMEM;
116
	runtime->substream = substream;
L
Linus Torvalds 已提交
117 118
	spin_lock_init(&runtime->lock);
	init_waitqueue_head(&runtime->sleep);
119
	INIT_WORK(&runtime->event_work, snd_rawmidi_input_event_work);
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
	runtime->event = NULL;
	runtime->buffer_size = PAGE_SIZE;
	runtime->avail_min = 1;
	if (substream->stream == SNDRV_RAWMIDI_STREAM_INPUT)
		runtime->avail = 0;
	else
		runtime->avail = runtime->buffer_size;
	if ((runtime->buffer = kmalloc(runtime->buffer_size, GFP_KERNEL)) == NULL) {
		kfree(runtime);
		return -ENOMEM;
	}
	runtime->appl_ptr = runtime->hw_ptr = 0;
	substream->runtime = runtime;
	return 0;
}

136
static int snd_rawmidi_runtime_free(struct snd_rawmidi_substream *substream)
L
Linus Torvalds 已提交
137
{
138
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
139 140 141 142 143 144 145

	kfree(runtime->buffer);
	kfree(runtime);
	substream->runtime = NULL;
	return 0;
}

146
static inline void snd_rawmidi_output_trigger(struct snd_rawmidi_substream *substream,int up)
L
Linus Torvalds 已提交
147
{
148 149
	if (!substream->opened)
		return;
150
	substream->ops->trigger(substream, up);
L
Linus Torvalds 已提交
151 152
}

153
static void snd_rawmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
L
Linus Torvalds 已提交
154
{
155 156
	if (!substream->opened)
		return;
L
Linus Torvalds 已提交
157
	substream->ops->trigger(substream, up);
158 159
	if (!up)
		cancel_work_sync(&substream->runtime->event_work);
L
Linus Torvalds 已提交
160 161
}

162
int snd_rawmidi_drop_output(struct snd_rawmidi_substream *substream)
L
Linus Torvalds 已提交
163 164
{
	unsigned long flags;
165
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
166 167 168 169 170 171 172 173 174

	snd_rawmidi_output_trigger(substream, 0);
	runtime->drain = 0;
	spin_lock_irqsave(&runtime->lock, flags);
	runtime->appl_ptr = runtime->hw_ptr = 0;
	runtime->avail = runtime->buffer_size;
	spin_unlock_irqrestore(&runtime->lock, flags);
	return 0;
}
175
EXPORT_SYMBOL(snd_rawmidi_drop_output);
L
Linus Torvalds 已提交
176

177
int snd_rawmidi_drain_output(struct snd_rawmidi_substream *substream)
L
Linus Torvalds 已提交
178 179 180
{
	int err;
	long timeout;
181
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
182 183 184 185 186 187 188 189 190

	err = 0;
	runtime->drain = 1;
	timeout = wait_event_interruptible_timeout(runtime->sleep,
				(runtime->avail >= runtime->buffer_size),
				10*HZ);
	if (signal_pending(current))
		err = -ERESTARTSYS;
	if (runtime->avail < runtime->buffer_size && !timeout) {
191 192 193
		rmidi_warn(substream->rmidi,
			   "rawmidi drain error (avail = %li, buffer_size = %li)\n",
			   (long)runtime->avail, (long)runtime->buffer_size);
L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206
		err = -EIO;
	}
	runtime->drain = 0;
	if (err != -ERESTARTSYS) {
		/* we need wait a while to make sure that Tx FIFOs are empty */
		if (substream->ops->drain)
			substream->ops->drain(substream);
		else
			msleep(50);
		snd_rawmidi_drop_output(substream);
	}
	return err;
}
207
EXPORT_SYMBOL(snd_rawmidi_drain_output);
L
Linus Torvalds 已提交
208

209
int snd_rawmidi_drain_input(struct snd_rawmidi_substream *substream)
L
Linus Torvalds 已提交
210 211
{
	unsigned long flags;
212
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220 221

	snd_rawmidi_input_trigger(substream, 0);
	runtime->drain = 0;
	spin_lock_irqsave(&runtime->lock, flags);
	runtime->appl_ptr = runtime->hw_ptr = 0;
	runtime->avail = 0;
	spin_unlock_irqrestore(&runtime->lock, flags);
	return 0;
}
222
EXPORT_SYMBOL(snd_rawmidi_drain_input);
L
Linus Torvalds 已提交
223

224 225 226 227 228 229
/* look for an available substream for the given stream direction;
 * if a specific subdevice is given, try to assign it
 */
static int assign_substream(struct snd_rawmidi *rmidi, int subdevice,
			    int stream, int mode,
			    struct snd_rawmidi_substream **sub_ret)
L
Linus Torvalds 已提交
230
{
231 232 233 234 235 236
	struct snd_rawmidi_substream *substream;
	struct snd_rawmidi_str *s = &rmidi->streams[stream];
	static unsigned int info_flags[2] = {
		[SNDRV_RAWMIDI_STREAM_OUTPUT] = SNDRV_RAWMIDI_INFO_OUTPUT,
		[SNDRV_RAWMIDI_STREAM_INPUT] = SNDRV_RAWMIDI_INFO_INPUT,
	};
L
Linus Torvalds 已提交
237

238
	if (!(rmidi->info_flags & info_flags[stream]))
239
		return -ENXIO;
240 241 242 243 244 245
	if (subdevice >= 0 && subdevice >= s->substream_count)
		return -ENODEV;

	list_for_each_entry(substream, &s->substreams, list) {
		if (substream->opened) {
			if (stream == SNDRV_RAWMIDI_STREAM_INPUT ||
246 247
			    !(mode & SNDRV_RAWMIDI_LFLG_APPEND) ||
			    !substream->append)
248 249 250 251 252 253
				continue;
		}
		if (subdevice < 0 || subdevice == substream->number) {
			*sub_ret = substream;
			return 0;
		}
L
Linus Torvalds 已提交
254
	}
255 256
	return -EAGAIN;
}
257

258 259 260 261 262 263 264
/* open and do ref-counting for the given substream */
static int open_substream(struct snd_rawmidi *rmidi,
			  struct snd_rawmidi_substream *substream,
			  int mode)
{
	int err;

265 266 267 268 269
	if (substream->use_count == 0) {
		err = snd_rawmidi_runtime_create(substream);
		if (err < 0)
			return err;
		err = substream->ops->open(substream);
270 271
		if (err < 0) {
			snd_rawmidi_runtime_free(substream);
272
			return err;
273
		}
274
		substream->opened = 1;
275
		substream->active_sensing = 0;
276 277
		if (mode & SNDRV_RAWMIDI_LFLG_APPEND)
			substream->append = 1;
278
		substream->pid = get_pid(task_pid(current));
279
		rmidi->streams[substream->stream].substream_opened++;
280 281
	}
	substream->use_count++;
282 283 284 285 286 287 288 289 290 291 292 293 294 295
	return 0;
}

static void close_substream(struct snd_rawmidi *rmidi,
			    struct snd_rawmidi_substream *substream,
			    int cleanup);

static int rawmidi_open_priv(struct snd_rawmidi *rmidi, int subdevice, int mode,
			     struct snd_rawmidi_file *rfile)
{
	struct snd_rawmidi_substream *sinput = NULL, *soutput = NULL;
	int err;

	rfile->input = rfile->output = NULL;
L
Linus Torvalds 已提交
296
	if (mode & SNDRV_RAWMIDI_LFLG_INPUT) {
297 298 299 300
		err = assign_substream(rmidi, subdevice,
				       SNDRV_RAWMIDI_STREAM_INPUT,
				       mode, &sinput);
		if (err < 0)
301
			return err;
L
Linus Torvalds 已提交
302 303
	}
	if (mode & SNDRV_RAWMIDI_LFLG_OUTPUT) {
304 305 306 307
		err = assign_substream(rmidi, subdevice,
				       SNDRV_RAWMIDI_STREAM_OUTPUT,
				       mode, &soutput);
		if (err < 0)
308
			return err;
L
Linus Torvalds 已提交
309
	}
310 311 312 313

	if (sinput) {
		err = open_substream(rmidi, sinput, mode);
		if (err < 0)
314
			return err;
L
Linus Torvalds 已提交
315
	}
316 317 318 319 320
	if (soutput) {
		err = open_substream(rmidi, soutput, mode);
		if (err < 0) {
			if (sinput)
				close_substream(rmidi, sinput, 0);
321
			return err;
L
Linus Torvalds 已提交
322 323
		}
	}
324 325 326 327

	rfile->rmidi = rmidi;
	rfile->input = sinput;
	rfile->output = soutput;
L
Linus Torvalds 已提交
328
	return 0;
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
}

/* called from sound/core/seq/seq_midi.c */
int snd_rawmidi_kernel_open(struct snd_card *card, int device, int subdevice,
			    int mode, struct snd_rawmidi_file * rfile)
{
	struct snd_rawmidi *rmidi;
	int err;

	if (snd_BUG_ON(!rfile))
		return -EINVAL;

	mutex_lock(&register_mutex);
	rmidi = snd_rawmidi_search(card, device);
	if (rmidi == NULL) {
		mutex_unlock(&register_mutex);
		return -ENODEV;
	}
	if (!try_module_get(rmidi->card->module)) {
		mutex_unlock(&register_mutex);
		return -ENXIO;
	}
	mutex_unlock(&register_mutex);

	mutex_lock(&rmidi->open_mutex);
	err = rawmidi_open_priv(rmidi, subdevice, mode, rfile);
	mutex_unlock(&rmidi->open_mutex);
	if (err < 0)
		module_put(rmidi->card->module);
L
Linus Torvalds 已提交
358 359
	return err;
}
360
EXPORT_SYMBOL(snd_rawmidi_kernel_open);
L
Linus Torvalds 已提交
361 362 363 364

static int snd_rawmidi_open(struct inode *inode, struct file *file)
{
	int maj = imajor(inode);
365
	struct snd_card *card;
366
	int subdevice;
L
Linus Torvalds 已提交
367 368
	unsigned short fflags;
	int err;
369
	struct snd_rawmidi *rmidi;
370
	struct snd_rawmidi_file *rawmidi_file = NULL;
L
Linus Torvalds 已提交
371 372
	wait_queue_t wait;

373 374 375
	if ((file->f_flags & O_APPEND) && !(file->f_flags & O_NONBLOCK)) 
		return -EINVAL;		/* invalid combination */

T
Takashi Iwai 已提交
376 377 378 379
	err = nonseekable_open(inode, file);
	if (err < 0)
		return err;

380
	if (maj == snd_major) {
381 382
		rmidi = snd_lookup_minor_data(iminor(inode),
					      SNDRV_DEVICE_TYPE_RAWMIDI);
L
Linus Torvalds 已提交
383
#ifdef CONFIG_SND_OSSEMUL
384
	} else if (maj == SOUND_MAJOR) {
385 386
		rmidi = snd_lookup_oss_minor_data(iminor(inode),
						  SNDRV_OSS_DEVICE_TYPE_MIDI);
L
Linus Torvalds 已提交
387
#endif
388
	} else
L
Linus Torvalds 已提交
389 390 391 392
		return -ENXIO;

	if (rmidi == NULL)
		return -ENODEV;
393

394 395
	if (!try_module_get(rmidi->card->module)) {
		snd_card_unref(rmidi->card);
396
		return -ENXIO;
397
	}
398 399

	mutex_lock(&rmidi->open_mutex);
L
Linus Torvalds 已提交
400 401 402
	card = rmidi->card;
	err = snd_card_file_add(card, file);
	if (err < 0)
403
		goto __error_card;
L
Linus Torvalds 已提交
404
	fflags = snd_rawmidi_file_flags(file);
405
	if ((file->f_flags & O_APPEND) || maj == SOUND_MAJOR) /* OSS emul? */
L
Linus Torvalds 已提交
406 407 408
		fflags |= SNDRV_RAWMIDI_LFLG_APPEND;
	rawmidi_file = kmalloc(sizeof(*rawmidi_file), GFP_KERNEL);
	if (rawmidi_file == NULL) {
409 410
		err = -ENOMEM;
		goto __error;
L
Linus Torvalds 已提交
411 412 413 414
	}
	init_waitqueue_entry(&wait, current);
	add_wait_queue(&rmidi->open_wait, &wait);
	while (1) {
415
		subdevice = snd_ctl_get_preferred_subdevice(card, SND_CTL_SUBDEV_RAWMIDI);
416
		err = rawmidi_open_priv(rmidi, subdevice, fflags, rawmidi_file);
L
Linus Torvalds 已提交
417 418 419 420 421 422 423 424 425 426
		if (err >= 0)
			break;
		if (err == -EAGAIN) {
			if (file->f_flags & O_NONBLOCK) {
				err = -EBUSY;
				break;
			}
		} else
			break;
		set_current_state(TASK_INTERRUPTIBLE);
427
		mutex_unlock(&rmidi->open_mutex);
L
Linus Torvalds 已提交
428
		schedule();
429
		mutex_lock(&rmidi->open_mutex);
430 431 432 433
		if (rmidi->card->shutdown) {
			err = -ENODEV;
			break;
		}
L
Linus Torvalds 已提交
434 435 436 437 438
		if (signal_pending(current)) {
			err = -ERESTARTSYS;
			break;
		}
	}
439 440 441 442 443
	remove_wait_queue(&rmidi->open_wait, &wait);
	if (err < 0) {
		kfree(rawmidi_file);
		goto __error;
	}
L
Linus Torvalds 已提交
444 445 446 447 448 449
#ifdef CONFIG_SND_OSSEMUL
	if (rawmidi_file->input && rawmidi_file->input->runtime)
		rawmidi_file->input->runtime->oss = (maj == SOUND_MAJOR);
	if (rawmidi_file->output && rawmidi_file->output->runtime)
		rawmidi_file->output->runtime->oss = (maj == SOUND_MAJOR);
#endif
450 451
	file->private_data = rawmidi_file;
	mutex_unlock(&rmidi->open_mutex);
452
	snd_card_unref(rmidi->card);
453 454 455 456 457
	return 0;

 __error:
	snd_card_file_remove(card, file);
 __error_card:
458
	mutex_unlock(&rmidi->open_mutex);
459
	module_put(rmidi->card->module);
460
	snd_card_unref(rmidi->card);
L
Linus Torvalds 已提交
461 462 463
	return err;
}

464 465 466
static void close_substream(struct snd_rawmidi *rmidi,
			    struct snd_rawmidi_substream *substream,
			    int cleanup)
L
Linus Torvalds 已提交
467
{
468 469
	if (--substream->use_count)
		return;
L
Linus Torvalds 已提交
470

471 472 473 474
	if (cleanup) {
		if (substream->stream == SNDRV_RAWMIDI_STREAM_INPUT)
			snd_rawmidi_input_trigger(substream, 0);
		else {
L
Linus Torvalds 已提交
475 476
			if (substream->active_sensing) {
				unsigned char buf = 0xfe;
477 478 479
				/* sending single active sensing message
				 * to shut the device up
				 */
L
Linus Torvalds 已提交
480 481 482 483 484 485
				snd_rawmidi_kernel_write(substream, &buf, 1);
			}
			if (snd_rawmidi_drain_output(substream) == -ERESTARTSYS)
				snd_rawmidi_output_trigger(substream, 0);
		}
	}
486 487 488 489 490 491
	substream->ops->close(substream);
	if (substream->runtime->private_free)
		substream->runtime->private_free(substream);
	snd_rawmidi_runtime_free(substream);
	substream->opened = 0;
	substream->append = 0;
492 493
	put_pid(substream->pid);
	substream->pid = NULL;
494
	rmidi->streams[substream->stream].substream_opened--;
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
}

static void rawmidi_release_priv(struct snd_rawmidi_file *rfile)
{
	struct snd_rawmidi *rmidi;

	rmidi = rfile->rmidi;
	mutex_lock(&rmidi->open_mutex);
	if (rfile->input) {
		close_substream(rmidi, rfile->input, 1);
		rfile->input = NULL;
	}
	if (rfile->output) {
		close_substream(rmidi, rfile->output, 1);
		rfile->output = NULL;
	}
	rfile->rmidi = NULL;
512
	mutex_unlock(&rmidi->open_mutex);
513 514 515 516 517 518 519 520 521 522 523 524 525
	wake_up(&rmidi->open_wait);
}

/* called from sound/core/seq/seq_midi.c */
int snd_rawmidi_kernel_release(struct snd_rawmidi_file *rfile)
{
	struct snd_rawmidi *rmidi;

	if (snd_BUG_ON(!rfile))
		return -ENXIO;
	
	rmidi = rfile->rmidi;
	rawmidi_release_priv(rfile);
L
Linus Torvalds 已提交
526 527 528
	module_put(rmidi->card->module);
	return 0;
}
529
EXPORT_SYMBOL(snd_rawmidi_kernel_release);
L
Linus Torvalds 已提交
530 531 532

static int snd_rawmidi_release(struct inode *inode, struct file *file)
{
533 534
	struct snd_rawmidi_file *rfile;
	struct snd_rawmidi *rmidi;
535
	struct module *module;
L
Linus Torvalds 已提交
536 537 538

	rfile = file->private_data;
	rmidi = rfile->rmidi;
539
	rawmidi_release_priv(rfile);
L
Linus Torvalds 已提交
540
	kfree(rfile);
541
	module = rmidi->card->module;
L
Linus Torvalds 已提交
542
	snd_card_file_remove(rmidi->card, file);
543
	module_put(module);
544
	return 0;
L
Linus Torvalds 已提交
545 546
}

A
Adrian Bunk 已提交
547 548
static int snd_rawmidi_info(struct snd_rawmidi_substream *substream,
			    struct snd_rawmidi_info *info)
L
Linus Torvalds 已提交
549
{
550
	struct snd_rawmidi *rmidi;
L
Linus Torvalds 已提交
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
	
	if (substream == NULL)
		return -ENODEV;
	rmidi = substream->rmidi;
	memset(info, 0, sizeof(*info));
	info->card = rmidi->card->number;
	info->device = rmidi->device;
	info->subdevice = substream->number;
	info->stream = substream->stream;
	info->flags = rmidi->info_flags;
	strcpy(info->id, rmidi->id);
	strcpy(info->name, rmidi->name);
	strcpy(info->subname, substream->name);
	info->subdevices_count = substream->pstr->substream_count;
	info->subdevices_avail = (substream->pstr->substream_count -
				  substream->pstr->substream_opened);
	return 0;
}

570 571
static int snd_rawmidi_info_user(struct snd_rawmidi_substream *substream,
				 struct snd_rawmidi_info __user * _info)
L
Linus Torvalds 已提交
572
{
573
	struct snd_rawmidi_info info;
L
Linus Torvalds 已提交
574 575 576
	int err;
	if ((err = snd_rawmidi_info(substream, &info)) < 0)
		return err;
577
	if (copy_to_user(_info, &info, sizeof(struct snd_rawmidi_info)))
L
Linus Torvalds 已提交
578 579 580 581
		return -EFAULT;
	return 0;
}

582
int snd_rawmidi_info_select(struct snd_card *card, struct snd_rawmidi_info *info)
L
Linus Torvalds 已提交
583
{
584 585 586
	struct snd_rawmidi *rmidi;
	struct snd_rawmidi_str *pstr;
	struct snd_rawmidi_substream *substream;
587

588
	mutex_lock(&register_mutex);
589
	rmidi = snd_rawmidi_search(card, info->device);
590
	mutex_unlock(&register_mutex);
591 592
	if (!rmidi)
		return -ENXIO;
L
Linus Torvalds 已提交
593 594 595 596 597 598 599
	if (info->stream < 0 || info->stream > 1)
		return -EINVAL;
	pstr = &rmidi->streams[info->stream];
	if (pstr->substream_count == 0)
		return -ENOENT;
	if (info->subdevice >= pstr->substream_count)
		return -ENXIO;
600
	list_for_each_entry(substream, &pstr->substreams, list) {
L
Linus Torvalds 已提交
601 602 603 604 605
		if ((unsigned int)substream->number == info->subdevice)
			return snd_rawmidi_info(substream, info);
	}
	return -ENXIO;
}
606
EXPORT_SYMBOL(snd_rawmidi_info_select);
L
Linus Torvalds 已提交
607

608 609
static int snd_rawmidi_info_select_user(struct snd_card *card,
					struct snd_rawmidi_info __user *_info)
L
Linus Torvalds 已提交
610 611
{
	int err;
612
	struct snd_rawmidi_info info;
L
Linus Torvalds 已提交
613 614 615 616 617 618 619 620
	if (get_user(info.device, &_info->device))
		return -EFAULT;
	if (get_user(info.stream, &_info->stream))
		return -EFAULT;
	if (get_user(info.subdevice, &_info->subdevice))
		return -EFAULT;
	if ((err = snd_rawmidi_info_select(card, &info)) < 0)
		return err;
621
	if (copy_to_user(_info, &info, sizeof(struct snd_rawmidi_info)))
L
Linus Torvalds 已提交
622 623 624 625
		return -EFAULT;
	return 0;
}

626 627
int snd_rawmidi_output_params(struct snd_rawmidi_substream *substream,
			      struct snd_rawmidi_params * params)
L
Linus Torvalds 已提交
628 629
{
	char *newbuf;
630
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
631 632 633 634 635 636 637 638 639 640 641
	
	if (substream->append && substream->use_count > 1)
		return -EBUSY;
	snd_rawmidi_drain_output(substream);
	if (params->buffer_size < 32 || params->buffer_size > 1024L * 1024L) {
		return -EINVAL;
	}
	if (params->avail_min < 1 || params->avail_min > params->buffer_size) {
		return -EINVAL;
	}
	if (params->buffer_size != runtime->buffer_size) {
642 643
		newbuf = krealloc(runtime->buffer, params->buffer_size,
				  GFP_KERNEL);
644
		if (!newbuf)
L
Linus Torvalds 已提交
645 646 647
			return -ENOMEM;
		runtime->buffer = newbuf;
		runtime->buffer_size = params->buffer_size;
648
		runtime->avail = runtime->buffer_size;
L
Linus Torvalds 已提交
649 650 651 652 653
	}
	runtime->avail_min = params->avail_min;
	substream->active_sensing = !params->no_active_sensing;
	return 0;
}
654
EXPORT_SYMBOL(snd_rawmidi_output_params);
L
Linus Torvalds 已提交
655

656 657
int snd_rawmidi_input_params(struct snd_rawmidi_substream *substream,
			     struct snd_rawmidi_params * params)
L
Linus Torvalds 已提交
658 659
{
	char *newbuf;
660
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
661 662 663 664 665 666 667 668 669

	snd_rawmidi_drain_input(substream);
	if (params->buffer_size < 32 || params->buffer_size > 1024L * 1024L) {
		return -EINVAL;
	}
	if (params->avail_min < 1 || params->avail_min > params->buffer_size) {
		return -EINVAL;
	}
	if (params->buffer_size != runtime->buffer_size) {
670 671
		newbuf = krealloc(runtime->buffer, params->buffer_size,
				  GFP_KERNEL);
672
		if (!newbuf)
L
Linus Torvalds 已提交
673 674 675 676 677 678 679
			return -ENOMEM;
		runtime->buffer = newbuf;
		runtime->buffer_size = params->buffer_size;
	}
	runtime->avail_min = params->avail_min;
	return 0;
}
680
EXPORT_SYMBOL(snd_rawmidi_input_params);
L
Linus Torvalds 已提交
681

682 683
static int snd_rawmidi_output_status(struct snd_rawmidi_substream *substream,
				     struct snd_rawmidi_status * status)
L
Linus Torvalds 已提交
684
{
685
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
686 687 688 689 690 691 692 693 694

	memset(status, 0, sizeof(*status));
	status->stream = SNDRV_RAWMIDI_STREAM_OUTPUT;
	spin_lock_irq(&runtime->lock);
	status->avail = runtime->avail;
	spin_unlock_irq(&runtime->lock);
	return 0;
}

695 696
static int snd_rawmidi_input_status(struct snd_rawmidi_substream *substream,
				    struct snd_rawmidi_status * status)
L
Linus Torvalds 已提交
697
{
698
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
699 700 701 702 703 704 705 706 707 708 709 710 711

	memset(status, 0, sizeof(*status));
	status->stream = SNDRV_RAWMIDI_STREAM_INPUT;
	spin_lock_irq(&runtime->lock);
	status->avail = runtime->avail;
	status->xruns = runtime->xruns;
	runtime->xruns = 0;
	spin_unlock_irq(&runtime->lock);
	return 0;
}

static long snd_rawmidi_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
712
	struct snd_rawmidi_file *rfile;
L
Linus Torvalds 已提交
713 714 715 716 717 718 719 720 721 722
	void __user *argp = (void __user *)arg;

	rfile = file->private_data;
	if (((cmd >> 8) & 0xff) != 'W')
		return -ENOTTY;
	switch (cmd) {
	case SNDRV_RAWMIDI_IOCTL_PVERSION:
		return put_user(SNDRV_RAWMIDI_VERSION, (int __user *)argp) ? -EFAULT : 0;
	case SNDRV_RAWMIDI_IOCTL_INFO:
	{
723 724
		int stream;
		struct snd_rawmidi_info __user *info = argp;
L
Linus Torvalds 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737
		if (get_user(stream, &info->stream))
			return -EFAULT;
		switch (stream) {
		case SNDRV_RAWMIDI_STREAM_INPUT:
			return snd_rawmidi_info_user(rfile->input, info);
		case SNDRV_RAWMIDI_STREAM_OUTPUT:
			return snd_rawmidi_info_user(rfile->output, info);
		default:
			return -EINVAL;
		}
	}
	case SNDRV_RAWMIDI_IOCTL_PARAMS:
	{
738 739
		struct snd_rawmidi_params params;
		if (copy_from_user(&params, argp, sizeof(struct snd_rawmidi_params)))
L
Linus Torvalds 已提交
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
			return -EFAULT;
		switch (params.stream) {
		case SNDRV_RAWMIDI_STREAM_OUTPUT:
			if (rfile->output == NULL)
				return -EINVAL;
			return snd_rawmidi_output_params(rfile->output, &params);
		case SNDRV_RAWMIDI_STREAM_INPUT:
			if (rfile->input == NULL)
				return -EINVAL;
			return snd_rawmidi_input_params(rfile->input, &params);
		default:
			return -EINVAL;
		}
	}
	case SNDRV_RAWMIDI_IOCTL_STATUS:
	{
		int err = 0;
757 758
		struct snd_rawmidi_status status;
		if (copy_from_user(&status, argp, sizeof(struct snd_rawmidi_status)))
L
Linus Torvalds 已提交
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
			return -EFAULT;
		switch (status.stream) {
		case SNDRV_RAWMIDI_STREAM_OUTPUT:
			if (rfile->output == NULL)
				return -EINVAL;
			err = snd_rawmidi_output_status(rfile->output, &status);
			break;
		case SNDRV_RAWMIDI_STREAM_INPUT:
			if (rfile->input == NULL)
				return -EINVAL;
			err = snd_rawmidi_input_status(rfile->input, &status);
			break;
		default:
			return -EINVAL;
		}
		if (err < 0)
			return err;
776
		if (copy_to_user(argp, &status, sizeof(struct snd_rawmidi_status)))
L
Linus Torvalds 已提交
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
			return -EFAULT;
		return 0;
	}
	case SNDRV_RAWMIDI_IOCTL_DROP:
	{
		int val;
		if (get_user(val, (int __user *) argp))
			return -EFAULT;
		switch (val) {
		case SNDRV_RAWMIDI_STREAM_OUTPUT:
			if (rfile->output == NULL)
				return -EINVAL;
			return snd_rawmidi_drop_output(rfile->output);
		default:
			return -EINVAL;
		}
	}
	case SNDRV_RAWMIDI_IOCTL_DRAIN:
	{
		int val;
		if (get_user(val, (int __user *) argp))
			return -EFAULT;
		switch (val) {
		case SNDRV_RAWMIDI_STREAM_OUTPUT:
			if (rfile->output == NULL)
				return -EINVAL;
			return snd_rawmidi_drain_output(rfile->output);
		case SNDRV_RAWMIDI_STREAM_INPUT:
			if (rfile->input == NULL)
				return -EINVAL;
			return snd_rawmidi_drain_input(rfile->input);
		default:
			return -EINVAL;
		}
	}
	default:
813 814
		rmidi_dbg(rfile->rmidi,
			  "rawmidi: unknown command = 0x%x\n", cmd);
L
Linus Torvalds 已提交
815 816 817 818
	}
	return -ENOTTY;
}

819 820
static int snd_rawmidi_control_ioctl(struct snd_card *card,
				     struct snd_ctl_file *control,
L
Linus Torvalds 已提交
821 822 823 824 825 826 827 828 829 830 831 832
				     unsigned int cmd,
				     unsigned long arg)
{
	void __user *argp = (void __user *)arg;

	switch (cmd) {
	case SNDRV_CTL_IOCTL_RAWMIDI_NEXT_DEVICE:
	{
		int device;
		
		if (get_user(device, (int __user *)argp))
			return -EFAULT;
833 834
		if (device >= SNDRV_RAWMIDI_DEVICES) /* next device is -1 */
			device = SNDRV_RAWMIDI_DEVICES - 1;
835
		mutex_lock(&register_mutex);
L
Linus Torvalds 已提交
836 837
		device = device < 0 ? 0 : device + 1;
		while (device < SNDRV_RAWMIDI_DEVICES) {
838
			if (snd_rawmidi_search(card, device))
L
Linus Torvalds 已提交
839 840 841 842 843
				break;
			device++;
		}
		if (device == SNDRV_RAWMIDI_DEVICES)
			device = -1;
844
		mutex_unlock(&register_mutex);
L
Linus Torvalds 已提交
845 846 847 848 849 850 851 852 853 854
		if (put_user(device, (int __user *)argp))
			return -EFAULT;
		return 0;
	}
	case SNDRV_CTL_IOCTL_RAWMIDI_PREFER_SUBDEVICE:
	{
		int val;
		
		if (get_user(val, (int __user *)argp))
			return -EFAULT;
855
		control->preferred_subdevice[SND_CTL_SUBDEV_RAWMIDI] = val;
L
Linus Torvalds 已提交
856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871
		return 0;
	}
	case SNDRV_CTL_IOCTL_RAWMIDI_INFO:
		return snd_rawmidi_info_select_user(card, argp);
	}
	return -ENOIOCTLCMD;
}

/**
 * snd_rawmidi_receive - receive the input data from the device
 * @substream: the rawmidi substream
 * @buffer: the buffer pointer
 * @count: the data size to read
 *
 * Reads the data from the internal buffer.
 *
872
 * Return: The size of read data, or a negative error code on failure.
L
Linus Torvalds 已提交
873
 */
874 875
int snd_rawmidi_receive(struct snd_rawmidi_substream *substream,
			const unsigned char *buffer, int count)
L
Linus Torvalds 已提交
876 877 878
{
	unsigned long flags;
	int result = 0, count1;
879
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
880

881 882
	if (!substream->opened)
		return -EBADFD;
L
Linus Torvalds 已提交
883
	if (runtime->buffer == NULL) {
884 885
		rmidi_dbg(substream->rmidi,
			  "snd_rawmidi_receive: input is not active!!!\n");
L
Linus Torvalds 已提交
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
		return -EINVAL;
	}
	spin_lock_irqsave(&runtime->lock, flags);
	if (count == 1) {	/* special case, faster code */
		substream->bytes++;
		if (runtime->avail < runtime->buffer_size) {
			runtime->buffer[runtime->hw_ptr++] = buffer[0];
			runtime->hw_ptr %= runtime->buffer_size;
			runtime->avail++;
			result++;
		} else {
			runtime->xruns++;
		}
	} else {
		substream->bytes += count;
		count1 = runtime->buffer_size - runtime->hw_ptr;
		if (count1 > count)
			count1 = count;
		if (count1 > (int)(runtime->buffer_size - runtime->avail))
			count1 = runtime->buffer_size - runtime->avail;
		memcpy(runtime->buffer + runtime->hw_ptr, buffer, count1);
		runtime->hw_ptr += count1;
		runtime->hw_ptr %= runtime->buffer_size;
		runtime->avail += count1;
		count -= count1;
		result += count1;
		if (count > 0) {
			buffer += count1;
			count1 = count;
			if (count1 > (int)(runtime->buffer_size - runtime->avail)) {
				count1 = runtime->buffer_size - runtime->avail;
				runtime->xruns += count - count1;
			}
			if (count1 > 0) {
				memcpy(runtime->buffer, buffer, count1);
				runtime->hw_ptr = count1;
				runtime->avail += count1;
				result += count1;
			}
		}
	}
	if (result > 0) {
		if (runtime->event)
929
			schedule_work(&runtime->event_work);
L
Linus Torvalds 已提交
930 931 932 933 934 935
		else if (snd_rawmidi_ready(substream))
			wake_up(&runtime->sleep);
	}
	spin_unlock_irqrestore(&runtime->lock, flags);
	return result;
}
936
EXPORT_SYMBOL(snd_rawmidi_receive);
L
Linus Torvalds 已提交
937

938
static long snd_rawmidi_kernel_read1(struct snd_rawmidi_substream *substream,
939 940
				     unsigned char __user *userbuf,
				     unsigned char *kernelbuf, long count)
L
Linus Torvalds 已提交
941 942 943
{
	unsigned long flags;
	long result = 0, count1;
944
	struct snd_rawmidi_runtime *runtime = substream->runtime;
945
	unsigned long appl_ptr;
L
Linus Torvalds 已提交
946

947
	spin_lock_irqsave(&runtime->lock, flags);
L
Linus Torvalds 已提交
948 949 950 951 952 953
	while (count > 0 && runtime->avail) {
		count1 = runtime->buffer_size - runtime->appl_ptr;
		if (count1 > count)
			count1 = count;
		if (count1 > (int)runtime->avail)
			count1 = runtime->avail;
954 955 956 957 958 959 960

		/* update runtime->appl_ptr before unlocking for userbuf */
		appl_ptr = runtime->appl_ptr;
		runtime->appl_ptr += count1;
		runtime->appl_ptr %= runtime->buffer_size;
		runtime->avail -= count1;

961
		if (kernelbuf)
962
			memcpy(kernelbuf + result, runtime->buffer + appl_ptr, count1);
963
		if (userbuf) {
L
Linus Torvalds 已提交
964
			spin_unlock_irqrestore(&runtime->lock, flags);
965
			if (copy_to_user(userbuf + result,
966
					 runtime->buffer + appl_ptr, count1)) {
L
Linus Torvalds 已提交
967 968 969 970 971 972 973
				return result > 0 ? result : -EFAULT;
			}
			spin_lock_irqsave(&runtime->lock, flags);
		}
		result += count1;
		count -= count1;
	}
974
	spin_unlock_irqrestore(&runtime->lock, flags);
L
Linus Torvalds 已提交
975 976 977
	return result;
}

978 979
long snd_rawmidi_kernel_read(struct snd_rawmidi_substream *substream,
			     unsigned char *buf, long count)
L
Linus Torvalds 已提交
980 981
{
	snd_rawmidi_input_trigger(substream, 1);
982
	return snd_rawmidi_kernel_read1(substream, NULL/*userbuf*/, buf, count);
L
Linus Torvalds 已提交
983
}
984
EXPORT_SYMBOL(snd_rawmidi_kernel_read);
L
Linus Torvalds 已提交
985

986 987
static ssize_t snd_rawmidi_read(struct file *file, char __user *buf, size_t count,
				loff_t *offset)
L
Linus Torvalds 已提交
988 989 990
{
	long result;
	int count1;
991 992 993
	struct snd_rawmidi_file *rfile;
	struct snd_rawmidi_substream *substream;
	struct snd_rawmidi_runtime *runtime;
L
Linus Torvalds 已提交
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015

	rfile = file->private_data;
	substream = rfile->input;
	if (substream == NULL)
		return -EIO;
	runtime = substream->runtime;
	snd_rawmidi_input_trigger(substream, 1);
	result = 0;
	while (count > 0) {
		spin_lock_irq(&runtime->lock);
		while (!snd_rawmidi_ready(substream)) {
			wait_queue_t wait;
			if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
				spin_unlock_irq(&runtime->lock);
				return result > 0 ? result : -EAGAIN;
			}
			init_waitqueue_entry(&wait, current);
			add_wait_queue(&runtime->sleep, &wait);
			set_current_state(TASK_INTERRUPTIBLE);
			spin_unlock_irq(&runtime->lock);
			schedule();
			remove_wait_queue(&runtime->sleep, &wait);
1016 1017
			if (rfile->rmidi->card->shutdown)
				return -ENODEV;
L
Linus Torvalds 已提交
1018 1019 1020 1021 1022 1023 1024
			if (signal_pending(current))
				return result > 0 ? result : -ERESTARTSYS;
			if (!runtime->avail)
				return result > 0 ? result : -EIO;
			spin_lock_irq(&runtime->lock);
		}
		spin_unlock_irq(&runtime->lock);
1025
		count1 = snd_rawmidi_kernel_read1(substream,
1026 1027 1028
						  (unsigned char __user *)buf,
						  NULL/*kernelbuf*/,
						  count);
L
Linus Torvalds 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
		if (count1 < 0)
			return result > 0 ? result : count1;
		result += count1;
		buf += count1;
		count -= count1;
	}
	return result;
}

/**
 * snd_rawmidi_transmit_empty - check whether the output buffer is empty
 * @substream: the rawmidi substream
1041 1042
 *
 * Return: 1 if the internal output buffer is empty, 0 if not.
L
Linus Torvalds 已提交
1043
 */
1044
int snd_rawmidi_transmit_empty(struct snd_rawmidi_substream *substream)
L
Linus Torvalds 已提交
1045
{
1046
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
1047 1048 1049 1050
	int result;
	unsigned long flags;

	if (runtime->buffer == NULL) {
1051 1052
		rmidi_dbg(substream->rmidi,
			  "snd_rawmidi_transmit_empty: output is not active!!!\n");
L
Linus Torvalds 已提交
1053 1054 1055 1056 1057 1058 1059
		return 1;
	}
	spin_lock_irqsave(&runtime->lock, flags);
	result = runtime->avail >= runtime->buffer_size;
	spin_unlock_irqrestore(&runtime->lock, flags);
	return result;		
}
1060
EXPORT_SYMBOL(snd_rawmidi_transmit_empty);
L
Linus Torvalds 已提交
1061 1062

/**
1063
 * __snd_rawmidi_transmit_peek - copy data from the internal buffer
L
Linus Torvalds 已提交
1064 1065 1066 1067
 * @substream: the rawmidi substream
 * @buffer: the buffer pointer
 * @count: data size to transfer
 *
1068
 * This is a variant of snd_rawmidi_transmit_peek() without spinlock.
L
Linus Torvalds 已提交
1069
 */
1070
int __snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,
1071
			      unsigned char *buffer, int count)
L
Linus Torvalds 已提交
1072 1073
{
	int result, count1;
1074
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
1075 1076

	if (runtime->buffer == NULL) {
1077 1078
		rmidi_dbg(substream->rmidi,
			  "snd_rawmidi_transmit_peek: output is not active!!!\n");
L
Linus Torvalds 已提交
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
		return -EINVAL;
	}
	result = 0;
	if (runtime->avail >= runtime->buffer_size) {
		/* warning: lowlevel layer MUST trigger down the hardware */
		goto __skip;
	}
	if (count == 1) {	/* special case, faster code */
		*buffer = runtime->buffer[runtime->hw_ptr];
		result++;
	} else {
		count1 = runtime->buffer_size - runtime->hw_ptr;
		if (count1 > count)
			count1 = count;
		if (count1 > (int)(runtime->buffer_size - runtime->avail))
			count1 = runtime->buffer_size - runtime->avail;
		memcpy(buffer, runtime->buffer + runtime->hw_ptr, count1);
		count -= count1;
		result += count1;
		if (count > 0) {
			if (count > (int)(runtime->buffer_size - runtime->avail - count1))
				count = runtime->buffer_size - runtime->avail - count1;
			memcpy(buffer + count1, runtime->buffer, count);
			result += count;
		}
	}
      __skip:
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
	return result;
}
EXPORT_SYMBOL(__snd_rawmidi_transmit_peek);

/**
 * snd_rawmidi_transmit_peek - copy data from the internal buffer
 * @substream: the rawmidi substream
 * @buffer: the buffer pointer
 * @count: data size to transfer
 *
 * Copies data from the internal output buffer to the given buffer.
 *
 * Call this in the interrupt handler when the midi output is ready,
 * and call snd_rawmidi_transmit_ack() after the transmission is
 * finished.
 *
 * Return: The size of copied data, or a negative error code on failure.
 */
int snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,
			      unsigned char *buffer, int count)
{
	struct snd_rawmidi_runtime *runtime = substream->runtime;
	int result;
	unsigned long flags;

	spin_lock_irqsave(&runtime->lock, flags);
	result = __snd_rawmidi_transmit_peek(substream, buffer, count);
L
Linus Torvalds 已提交
1133 1134 1135
	spin_unlock_irqrestore(&runtime->lock, flags);
	return result;
}
1136
EXPORT_SYMBOL(snd_rawmidi_transmit_peek);
L
Linus Torvalds 已提交
1137 1138

/**
1139
 * __snd_rawmidi_transmit_ack - acknowledge the transmission
L
Linus Torvalds 已提交
1140
 * @substream: the rawmidi substream
1141
 * @count: the transferred count
L
Linus Torvalds 已提交
1142
 *
1143
 * This is a variant of __snd_rawmidi_transmit_ack() without spinlock.
L
Linus Torvalds 已提交
1144
 */
1145
int __snd_rawmidi_transmit_ack(struct snd_rawmidi_substream *substream, int count)
L
Linus Torvalds 已提交
1146
{
1147
	struct snd_rawmidi_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
1148 1149

	if (runtime->buffer == NULL) {
1150 1151
		rmidi_dbg(substream->rmidi,
			  "snd_rawmidi_transmit_ack: output is not active!!!\n");
L
Linus Torvalds 已提交
1152 1153
		return -EINVAL;
	}
1154
	snd_BUG_ON(runtime->avail + count > runtime->buffer_size);
L
Linus Torvalds 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
	runtime->hw_ptr += count;
	runtime->hw_ptr %= runtime->buffer_size;
	runtime->avail += count;
	substream->bytes += count;
	if (count > 0) {
		if (runtime->drain || snd_rawmidi_ready(substream))
			wake_up(&runtime->sleep);
	}
	return count;
}
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
EXPORT_SYMBOL(__snd_rawmidi_transmit_ack);

/**
 * snd_rawmidi_transmit_ack - acknowledge the transmission
 * @substream: the rawmidi substream
 * @count: the transferred count
 *
 * Advances the hardware pointer for the internal output buffer with
 * the given size and updates the condition.
 * Call after the transmission is finished.
 *
 * Return: The advanced size if successful, or a negative error code on failure.
 */
int snd_rawmidi_transmit_ack(struct snd_rawmidi_substream *substream, int count)
{
	struct snd_rawmidi_runtime *runtime = substream->runtime;
	int result;
	unsigned long flags;

	spin_lock_irqsave(&runtime->lock, flags);
	result = __snd_rawmidi_transmit_ack(substream, count);
	spin_unlock_irqrestore(&runtime->lock, flags);
	return result;
}
1189
EXPORT_SYMBOL(snd_rawmidi_transmit_ack);
L
Linus Torvalds 已提交
1190 1191 1192 1193

/**
 * snd_rawmidi_transmit - copy from the buffer to the device
 * @substream: the rawmidi substream
T
Takashi Iwai 已提交
1194
 * @buffer: the buffer pointer
L
Linus Torvalds 已提交
1195 1196 1197 1198
 * @count: the data size to transfer
 * 
 * Copies data from the buffer to the device and advances the pointer.
 *
1199
 * Return: The copied size if successful, or a negative error code on failure.
L
Linus Torvalds 已提交
1200
 */
1201 1202
int snd_rawmidi_transmit(struct snd_rawmidi_substream *substream,
			 unsigned char *buffer, int count)
L
Linus Torvalds 已提交
1203
{
1204 1205 1206 1207 1208
	struct snd_rawmidi_runtime *runtime = substream->runtime;
	int result;
	unsigned long flags;

	spin_lock_irqsave(&runtime->lock, flags);
1209
	if (!substream->opened)
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
		result = -EBADFD;
	else {
		count = __snd_rawmidi_transmit_peek(substream, buffer, count);
		if (count <= 0)
			result = count;
		else
			result = __snd_rawmidi_transmit_ack(substream, count);
	}
	spin_unlock_irqrestore(&runtime->lock, flags);
	return result;
L
Linus Torvalds 已提交
1220
}
1221
EXPORT_SYMBOL(snd_rawmidi_transmit);
L
Linus Torvalds 已提交
1222

1223
static long snd_rawmidi_kernel_write1(struct snd_rawmidi_substream *substream,
1224 1225 1226
				      const unsigned char __user *userbuf,
				      const unsigned char *kernelbuf,
				      long count)
L
Linus Torvalds 已提交
1227 1228 1229
{
	unsigned long flags;
	long count1, result;
1230
	struct snd_rawmidi_runtime *runtime = substream->runtime;
1231
	unsigned long appl_ptr;
L
Linus Torvalds 已提交
1232

1233
	if (!kernelbuf && !userbuf)
1234 1235 1236
		return -EINVAL;
	if (snd_BUG_ON(!runtime->buffer))
		return -EINVAL;
L
Linus Torvalds 已提交
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251

	result = 0;
	spin_lock_irqsave(&runtime->lock, flags);
	if (substream->append) {
		if ((long)runtime->avail < count) {
			spin_unlock_irqrestore(&runtime->lock, flags);
			return -EAGAIN;
		}
	}
	while (count > 0 && runtime->avail > 0) {
		count1 = runtime->buffer_size - runtime->appl_ptr;
		if (count1 > count)
			count1 = count;
		if (count1 > (long)runtime->avail)
			count1 = runtime->avail;
1252 1253 1254 1255 1256 1257 1258

		/* update runtime->appl_ptr before unlocking for userbuf */
		appl_ptr = runtime->appl_ptr;
		runtime->appl_ptr += count1;
		runtime->appl_ptr %= runtime->buffer_size;
		runtime->avail -= count1;

1259
		if (kernelbuf)
1260
			memcpy(runtime->buffer + appl_ptr,
1261 1262
			       kernelbuf + result, count1);
		else if (userbuf) {
L
Linus Torvalds 已提交
1263
			spin_unlock_irqrestore(&runtime->lock, flags);
1264
			if (copy_from_user(runtime->buffer + appl_ptr,
1265
					   userbuf + result, count1)) {
L
Linus Torvalds 已提交
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
				spin_lock_irqsave(&runtime->lock, flags);
				result = result > 0 ? result : -EFAULT;
				goto __end;
			}
			spin_lock_irqsave(&runtime->lock, flags);
		}
		result += count1;
		count -= count1;
	}
      __end:
	count1 = runtime->avail < runtime->buffer_size;
	spin_unlock_irqrestore(&runtime->lock, flags);
	if (count1)
		snd_rawmidi_output_trigger(substream, 1);
	return result;
}

1283 1284
long snd_rawmidi_kernel_write(struct snd_rawmidi_substream *substream,
			      const unsigned char *buf, long count)
L
Linus Torvalds 已提交
1285
{
1286
	return snd_rawmidi_kernel_write1(substream, NULL, buf, count);
L
Linus Torvalds 已提交
1287
}
1288
EXPORT_SYMBOL(snd_rawmidi_kernel_write);
L
Linus Torvalds 已提交
1289

1290 1291
static ssize_t snd_rawmidi_write(struct file *file, const char __user *buf,
				 size_t count, loff_t *offset)
L
Linus Torvalds 已提交
1292 1293 1294
{
	long result, timeout;
	int count1;
1295 1296 1297
	struct snd_rawmidi_file *rfile;
	struct snd_rawmidi_runtime *runtime;
	struct snd_rawmidi_substream *substream;
L
Linus Torvalds 已提交
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319

	rfile = file->private_data;
	substream = rfile->output;
	runtime = substream->runtime;
	/* we cannot put an atomic message to our buffer */
	if (substream->append && count > runtime->buffer_size)
		return -EIO;
	result = 0;
	while (count > 0) {
		spin_lock_irq(&runtime->lock);
		while (!snd_rawmidi_ready_append(substream, count)) {
			wait_queue_t wait;
			if (file->f_flags & O_NONBLOCK) {
				spin_unlock_irq(&runtime->lock);
				return result > 0 ? result : -EAGAIN;
			}
			init_waitqueue_entry(&wait, current);
			add_wait_queue(&runtime->sleep, &wait);
			set_current_state(TASK_INTERRUPTIBLE);
			spin_unlock_irq(&runtime->lock);
			timeout = schedule_timeout(30 * HZ);
			remove_wait_queue(&runtime->sleep, &wait);
1320 1321
			if (rfile->rmidi->card->shutdown)
				return -ENODEV;
L
Linus Torvalds 已提交
1322 1323 1324 1325 1326 1327 1328
			if (signal_pending(current))
				return result > 0 ? result : -ERESTARTSYS;
			if (!runtime->avail && !timeout)
				return result > 0 ? result : -EIO;
			spin_lock_irq(&runtime->lock);
		}
		spin_unlock_irq(&runtime->lock);
1329
		count1 = snd_rawmidi_kernel_write1(substream, buf, NULL, count);
L
Linus Torvalds 已提交
1330 1331 1332 1333 1334 1335 1336 1337
		if (count1 < 0)
			return result > 0 ? result : count1;
		result += count1;
		buf += count1;
		if ((size_t)count1 < count && (file->f_flags & O_NONBLOCK))
			break;
		count -= count1;
	}
1338
	if (file->f_flags & O_DSYNC) {
L
Linus Torvalds 已提交
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
		spin_lock_irq(&runtime->lock);
		while (runtime->avail != runtime->buffer_size) {
			wait_queue_t wait;
			unsigned int last_avail = runtime->avail;
			init_waitqueue_entry(&wait, current);
			add_wait_queue(&runtime->sleep, &wait);
			set_current_state(TASK_INTERRUPTIBLE);
			spin_unlock_irq(&runtime->lock);
			timeout = schedule_timeout(30 * HZ);
			remove_wait_queue(&runtime->sleep, &wait);
			if (signal_pending(current))
				return result > 0 ? result : -ERESTARTSYS;
			if (runtime->avail == last_avail && !timeout)
				return result > 0 ? result : -EIO;
			spin_lock_irq(&runtime->lock);
		}
		spin_unlock_irq(&runtime->lock);
	}
	return result;
}

static unsigned int snd_rawmidi_poll(struct file *file, poll_table * wait)
{
1362 1363
	struct snd_rawmidi_file *rfile;
	struct snd_rawmidi_runtime *runtime;
L
Linus Torvalds 已提交
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
	unsigned int mask;

	rfile = file->private_data;
	if (rfile->input != NULL) {
		runtime = rfile->input->runtime;
		snd_rawmidi_input_trigger(rfile->input, 1);
		poll_wait(file, &runtime->sleep, wait);
	}
	if (rfile->output != NULL) {
		runtime = rfile->output->runtime;
		poll_wait(file, &runtime->sleep, wait);
	}
	mask = 0;
	if (rfile->input != NULL) {
		if (snd_rawmidi_ready(rfile->input))
			mask |= POLLIN | POLLRDNORM;
	}
	if (rfile->output != NULL) {
		if (snd_rawmidi_ready(rfile->output))
			mask |= POLLOUT | POLLWRNORM;
	}
	return mask;
}

/*
 */
#ifdef CONFIG_COMPAT
#include "rawmidi_compat.c"
#else
#define snd_rawmidi_ioctl_compat	NULL
#endif

/*

 */

1400 1401
static void snd_rawmidi_proc_info_read(struct snd_info_entry *entry,
				       struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
1402
{
1403 1404 1405
	struct snd_rawmidi *rmidi;
	struct snd_rawmidi_substream *substream;
	struct snd_rawmidi_runtime *runtime;
L
Linus Torvalds 已提交
1406 1407 1408

	rmidi = entry->private_data;
	snd_iprintf(buffer, "%s\n\n", rmidi->name);
1409
	mutex_lock(&rmidi->open_mutex);
L
Linus Torvalds 已提交
1410
	if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_OUTPUT) {
1411 1412 1413
		list_for_each_entry(substream,
				    &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT].substreams,
				    list) {
L
Linus Torvalds 已提交
1414 1415 1416 1417 1418 1419
			snd_iprintf(buffer,
				    "Output %d\n"
				    "  Tx bytes     : %lu\n",
				    substream->number,
				    (unsigned long) substream->bytes);
			if (substream->opened) {
1420 1421 1422
				snd_iprintf(buffer,
				    "  Owner PID    : %d\n",
				    pid_vnr(substream->pid));
L
Linus Torvalds 已提交
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
				runtime = substream->runtime;
				snd_iprintf(buffer,
				    "  Mode         : %s\n"
				    "  Buffer size  : %lu\n"
				    "  Avail        : %lu\n",
				    runtime->oss ? "OSS compatible" : "native",
				    (unsigned long) runtime->buffer_size,
				    (unsigned long) runtime->avail);
			}
		}
	}
	if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_INPUT) {
1435 1436 1437
		list_for_each_entry(substream,
				    &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT].substreams,
				    list) {
L
Linus Torvalds 已提交
1438 1439 1440 1441 1442 1443
			snd_iprintf(buffer,
				    "Input %d\n"
				    "  Rx bytes     : %lu\n",
				    substream->number,
				    (unsigned long) substream->bytes);
			if (substream->opened) {
1444 1445 1446
				snd_iprintf(buffer,
					    "  Owner PID    : %d\n",
					    pid_vnr(substream->pid));
L
Linus Torvalds 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
				runtime = substream->runtime;
				snd_iprintf(buffer,
					    "  Buffer size  : %lu\n"
					    "  Avail        : %lu\n"
					    "  Overruns     : %lu\n",
					    (unsigned long) runtime->buffer_size,
					    (unsigned long) runtime->avail,
					    (unsigned long) runtime->xruns);
			}
		}
	}
1458
	mutex_unlock(&rmidi->open_mutex);
L
Linus Torvalds 已提交
1459 1460 1461 1462 1463 1464
}

/*
 *  Register functions
 */

1465
static const struct file_operations snd_rawmidi_f_ops =
L
Linus Torvalds 已提交
1466 1467 1468 1469 1470 1471
{
	.owner =	THIS_MODULE,
	.read =		snd_rawmidi_read,
	.write =	snd_rawmidi_write,
	.open =		snd_rawmidi_open,
	.release =	snd_rawmidi_release,
T
Takashi Iwai 已提交
1472
	.llseek =	no_llseek,
L
Linus Torvalds 已提交
1473 1474 1475 1476 1477
	.poll =		snd_rawmidi_poll,
	.unlocked_ioctl =	snd_rawmidi_ioctl,
	.compat_ioctl =	snd_rawmidi_ioctl_compat,
};

1478 1479
static int snd_rawmidi_alloc_substreams(struct snd_rawmidi *rmidi,
					struct snd_rawmidi_str *stream,
L
Linus Torvalds 已提交
1480 1481 1482
					int direction,
					int count)
{
1483
	struct snd_rawmidi_substream *substream;
L
Linus Torvalds 已提交
1484 1485 1486
	int idx;

	for (idx = 0; idx < count; idx++) {
1487
		substream = kzalloc(sizeof(*substream), GFP_KERNEL);
1488
		if (!substream)
L
Linus Torvalds 已提交
1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
			return -ENOMEM;
		substream->stream = direction;
		substream->number = idx;
		substream->rmidi = rmidi;
		substream->pstr = stream;
		list_add_tail(&substream->list, &stream->substreams);
		stream->substream_count++;
	}
	return 0;
}

1500 1501 1502 1503 1504
static void release_rawmidi_device(struct device *dev)
{
	kfree(container_of(dev, struct snd_rawmidi, dev));
}

L
Linus Torvalds 已提交
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
/**
 * snd_rawmidi_new - create a rawmidi instance
 * @card: the card instance
 * @id: the id string
 * @device: the device index
 * @output_count: the number of output streams
 * @input_count: the number of input streams
 * @rrawmidi: the pointer to store the new rawmidi instance
 *
 * Creates a new rawmidi instance.
 * Use snd_rawmidi_set_ops() to set the operators to the new instance.
 *
1517
 * Return: Zero if successful, or a negative error code on failure.
L
Linus Torvalds 已提交
1518
 */
1519
int snd_rawmidi_new(struct snd_card *card, char *id, int device,
L
Linus Torvalds 已提交
1520
		    int output_count, int input_count,
1521
		    struct snd_rawmidi ** rrawmidi)
L
Linus Torvalds 已提交
1522
{
1523
	struct snd_rawmidi *rmidi;
L
Linus Torvalds 已提交
1524
	int err;
1525
	static struct snd_device_ops ops = {
L
Linus Torvalds 已提交
1526 1527 1528 1529 1530
		.dev_free = snd_rawmidi_dev_free,
		.dev_register = snd_rawmidi_dev_register,
		.dev_disconnect = snd_rawmidi_dev_disconnect,
	};

1531 1532 1533 1534
	if (snd_BUG_ON(!card))
		return -ENXIO;
	if (rrawmidi)
		*rrawmidi = NULL;
1535
	rmidi = kzalloc(sizeof(*rmidi), GFP_KERNEL);
1536
	if (!rmidi)
L
Linus Torvalds 已提交
1537 1538 1539
		return -ENOMEM;
	rmidi->card = card;
	rmidi->device = device;
1540
	mutex_init(&rmidi->open_mutex);
L
Linus Torvalds 已提交
1541
	init_waitqueue_head(&rmidi->open_wait);
1542 1543 1544
	INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT].substreams);
	INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT].substreams);

L
Linus Torvalds 已提交
1545 1546
	if (id != NULL)
		strlcpy(rmidi->id, id, sizeof(rmidi->id));
1547 1548 1549 1550 1551

	snd_device_initialize(&rmidi->dev, card);
	rmidi->dev.release = release_rawmidi_device;
	dev_set_name(&rmidi->dev, "midiC%iD%i", card->number, device);

T
Takashi Iwai 已提交
1552 1553 1554 1555
	if ((err = snd_rawmidi_alloc_substreams(rmidi,
						&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT],
						SNDRV_RAWMIDI_STREAM_INPUT,
						input_count)) < 0) {
L
Linus Torvalds 已提交
1556 1557 1558
		snd_rawmidi_free(rmidi);
		return err;
	}
T
Takashi Iwai 已提交
1559 1560 1561 1562
	if ((err = snd_rawmidi_alloc_substreams(rmidi,
						&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT],
						SNDRV_RAWMIDI_STREAM_OUTPUT,
						output_count)) < 0) {
L
Linus Torvalds 已提交
1563 1564 1565 1566 1567 1568 1569
		snd_rawmidi_free(rmidi);
		return err;
	}
	if ((err = snd_device_new(card, SNDRV_DEV_RAWMIDI, rmidi, &ops)) < 0) {
		snd_rawmidi_free(rmidi);
		return err;
	}
1570 1571
	if (rrawmidi)
		*rrawmidi = rmidi;
L
Linus Torvalds 已提交
1572 1573
	return 0;
}
1574
EXPORT_SYMBOL(snd_rawmidi_new);
L
Linus Torvalds 已提交
1575

1576
static void snd_rawmidi_free_substreams(struct snd_rawmidi_str *stream)
L
Linus Torvalds 已提交
1577
{
1578
	struct snd_rawmidi_substream *substream;
L
Linus Torvalds 已提交
1579 1580

	while (!list_empty(&stream->substreams)) {
1581
		substream = list_entry(stream->substreams.next, struct snd_rawmidi_substream, list);
L
Linus Torvalds 已提交
1582 1583 1584 1585 1586
		list_del(&substream->list);
		kfree(substream);
	}
}

1587
static int snd_rawmidi_free(struct snd_rawmidi *rmidi)
L
Linus Torvalds 已提交
1588
{
1589 1590
	if (!rmidi)
		return 0;
1591 1592 1593 1594 1595 1596 1597 1598

	snd_info_free_entry(rmidi->proc_entry);
	rmidi->proc_entry = NULL;
	mutex_lock(&register_mutex);
	if (rmidi->ops && rmidi->ops->dev_unregister)
		rmidi->ops->dev_unregister(rmidi);
	mutex_unlock(&register_mutex);

L
Linus Torvalds 已提交
1599 1600 1601 1602
	snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT]);
	snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT]);
	if (rmidi->private_free)
		rmidi->private_free(rmidi);
1603
	put_device(&rmidi->dev);
L
Linus Torvalds 已提交
1604 1605 1606
	return 0;
}

1607
static int snd_rawmidi_dev_free(struct snd_device *device)
L
Linus Torvalds 已提交
1608
{
1609
	struct snd_rawmidi *rmidi = device->device_data;
L
Linus Torvalds 已提交
1610 1611 1612
	return snd_rawmidi_free(rmidi);
}

1613
#if IS_REACHABLE(CONFIG_SND_SEQUENCER)
1614
static void snd_rawmidi_dev_seq_free(struct snd_seq_device *device)
L
Linus Torvalds 已提交
1615
{
1616
	struct snd_rawmidi *rmidi = device->private_data;
L
Linus Torvalds 已提交
1617 1618 1619 1620
	rmidi->seq_dev = NULL;
}
#endif

1621
static int snd_rawmidi_dev_register(struct snd_device *device)
L
Linus Torvalds 已提交
1622
{
1623
	int err;
1624
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
1625
	char name[16];
1626
	struct snd_rawmidi *rmidi = device->device_data;
L
Linus Torvalds 已提交
1627 1628 1629

	if (rmidi->device >= SNDRV_RAWMIDI_DEVICES)
		return -ENOMEM;
1630
	mutex_lock(&register_mutex);
1631
	if (snd_rawmidi_search(rmidi->card, rmidi->device)) {
1632
		mutex_unlock(&register_mutex);
L
Linus Torvalds 已提交
1633 1634
		return -EBUSY;
	}
1635
	list_add_tail(&rmidi->list, &snd_rawmidi_devices);
1636
	mutex_unlock(&register_mutex);
1637 1638 1639
	err = snd_register_device(SNDRV_DEVICE_TYPE_RAWMIDI,
				  rmidi->card, rmidi->device,
				  &snd_rawmidi_f_ops, rmidi, &rmidi->dev);
1640 1641
	if (err < 0) {
		rmidi_err(rmidi, "unable to register\n");
1642
		mutex_lock(&register_mutex);
1643
		list_del(&rmidi->list);
1644
		mutex_unlock(&register_mutex);
L
Linus Torvalds 已提交
1645 1646 1647 1648
		return err;
	}
	if (rmidi->ops && rmidi->ops->dev_register &&
	    (err = rmidi->ops->dev_register(rmidi)) < 0) {
1649
		snd_unregister_device(&rmidi->dev);
1650
		mutex_lock(&register_mutex);
1651
		list_del(&rmidi->list);
1652
		mutex_unlock(&register_mutex);
L
Linus Torvalds 已提交
1653 1654 1655 1656 1657 1658
		return err;
	}
#ifdef CONFIG_SND_OSSEMUL
	rmidi->ossreg = 0;
	if ((int)rmidi->device == midi_map[rmidi->card->number]) {
		if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI,
1659
					    rmidi->card, 0, &snd_rawmidi_f_ops,
1660
					    rmidi) < 0) {
1661 1662 1663
			rmidi_err(rmidi,
				  "unable to register OSS rawmidi device %i:%i\n",
				  rmidi->card->number, 0);
L
Linus Torvalds 已提交
1664 1665 1666 1667 1668 1669 1670 1671 1672
		} else {
			rmidi->ossreg++;
#ifdef SNDRV_OSS_INFO_DEV_MIDI
			snd_oss_info_register(SNDRV_OSS_INFO_DEV_MIDI, rmidi->card->number, rmidi->name);
#endif
		}
	}
	if ((int)rmidi->device == amidi_map[rmidi->card->number]) {
		if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI,
1673
					    rmidi->card, 1, &snd_rawmidi_f_ops,
1674
					    rmidi) < 0) {
1675 1676 1677
			rmidi_err(rmidi,
				  "unable to register OSS rawmidi device %i:%i\n",
				  rmidi->card->number, 1);
L
Linus Torvalds 已提交
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
		} else {
			rmidi->ossreg++;
		}
	}
#endif /* CONFIG_SND_OSSEMUL */
	sprintf(name, "midi%d", rmidi->device);
	entry = snd_info_create_card_entry(rmidi->card, name, rmidi->card->proc_root);
	if (entry) {
		entry->private_data = rmidi;
		entry->c.text.read = snd_rawmidi_proc_info_read;
		if (snd_info_register(entry) < 0) {
			snd_info_free_entry(entry);
			entry = NULL;
		}
	}
	rmidi->proc_entry = entry;
1694
#if IS_REACHABLE(CONFIG_SND_SEQUENCER)
L
Linus Torvalds 已提交
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
	if (!rmidi->ops || !rmidi->ops->dev_register) { /* own registration mechanism */
		if (snd_seq_device_new(rmidi->card, rmidi->device, SNDRV_SEQ_DEV_ID_MIDISYNTH, 0, &rmidi->seq_dev) >= 0) {
			rmidi->seq_dev->private_data = rmidi;
			rmidi->seq_dev->private_free = snd_rawmidi_dev_seq_free;
			sprintf(rmidi->seq_dev->name, "MIDI %d-%d", rmidi->card->number, rmidi->device);
			snd_device_register(rmidi->card, rmidi->seq_dev);
		}
	}
#endif
	return 0;
}

1707
static int snd_rawmidi_dev_disconnect(struct snd_device *device)
L
Linus Torvalds 已提交
1708
{
1709
	struct snd_rawmidi *rmidi = device->device_data;
1710
	int dir;
L
Linus Torvalds 已提交
1711

1712
	mutex_lock(&register_mutex);
1713 1714
	mutex_lock(&rmidi->open_mutex);
	wake_up(&rmidi->open_wait);
1715
	list_del_init(&rmidi->list);
1716 1717 1718 1719 1720 1721 1722 1723
	for (dir = 0; dir < 2; dir++) {
		struct snd_rawmidi_substream *s;
		list_for_each_entry(s, &rmidi->streams[dir].substreams, list) {
			if (s->runtime)
				wake_up(&s->runtime->sleep);
		}
	}

L
Linus Torvalds 已提交
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
#ifdef CONFIG_SND_OSSEMUL
	if (rmidi->ossreg) {
		if ((int)rmidi->device == midi_map[rmidi->card->number]) {
			snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI, rmidi->card, 0);
#ifdef SNDRV_OSS_INFO_DEV_MIDI
			snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_MIDI, rmidi->card->number);
#endif
		}
		if ((int)rmidi->device == amidi_map[rmidi->card->number])
			snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI, rmidi->card, 1);
		rmidi->ossreg = 0;
	}
#endif /* CONFIG_SND_OSSEMUL */
1737
	snd_unregister_device(&rmidi->dev);
1738
	mutex_unlock(&rmidi->open_mutex);
1739
	mutex_unlock(&register_mutex);
1740
	return 0;
L
Linus Torvalds 已提交
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750
}

/**
 * snd_rawmidi_set_ops - set the rawmidi operators
 * @rmidi: the rawmidi instance
 * @stream: the stream direction, SNDRV_RAWMIDI_STREAM_XXX
 * @ops: the operator table
 *
 * Sets the rawmidi operators for the given stream direction.
 */
1751 1752
void snd_rawmidi_set_ops(struct snd_rawmidi *rmidi, int stream,
			 struct snd_rawmidi_ops *ops)
L
Linus Torvalds 已提交
1753
{
1754
	struct snd_rawmidi_substream *substream;
L
Linus Torvalds 已提交
1755
	
1756
	list_for_each_entry(substream, &rmidi->streams[stream].substreams, list)
L
Linus Torvalds 已提交
1757 1758
		substream->ops = ops;
}
1759
EXPORT_SYMBOL(snd_rawmidi_set_ops);
L
Linus Torvalds 已提交
1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774

/*
 *  ENTRY functions
 */

static int __init alsa_rawmidi_init(void)
{

	snd_ctl_register_ioctl(snd_rawmidi_control_ioctl);
	snd_ctl_register_ioctl_compat(snd_rawmidi_control_ioctl);
#ifdef CONFIG_SND_OSSEMUL
	{ int i;
	/* check device map table */
	for (i = 0; i < SNDRV_CARDS; i++) {
		if (midi_map[i] < 0 || midi_map[i] >= SNDRV_RAWMIDI_DEVICES) {
1775 1776
			pr_err("ALSA: rawmidi: invalid midi_map[%d] = %d\n",
			       i, midi_map[i]);
L
Linus Torvalds 已提交
1777 1778 1779
			midi_map[i] = 0;
		}
		if (amidi_map[i] < 0 || amidi_map[i] >= SNDRV_RAWMIDI_DEVICES) {
1780 1781
			pr_err("ALSA: rawmidi: invalid amidi_map[%d] = %d\n",
			       i, amidi_map[i]);
L
Linus Torvalds 已提交
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797
			amidi_map[i] = 1;
		}
	}
	}
#endif /* CONFIG_SND_OSSEMUL */
	return 0;
}

static void __exit alsa_rawmidi_exit(void)
{
	snd_ctl_unregister_ioctl(snd_rawmidi_control_ioctl);
	snd_ctl_unregister_ioctl_compat(snd_rawmidi_control_ioctl);
}

module_init(alsa_rawmidi_init)
module_exit(alsa_rawmidi_exit)