Blame view

sound/core/oss/pcm_oss.c 85.1 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
  /*
   *  Digital Audio (PCM) abstract layer / OSS compatible
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
3
   *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
   *
   *
   *   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
   *
   */
  
  #if 0
  #define PLUGIN_DEBUG
  #endif
  #if 0
  #define OSS_DEBUG
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
  #include <linux/init.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
30
31
  #include <linux/slab.h>
  #include <linux/time.h>
  #include <linux/vmalloc.h>
65a772172   Paul Gortmaker   sound: fix driver...
32
  #include <linux/module.h>
3f7440a6b   Takashi Iwai   ALSA: Clean up 64...
33
  #include <linux/math64.h>
543537bd9   Paulo Marques   [PATCH] create a ...
34
  #include <linux/string.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
37
38
39
40
41
42
  #include <sound/core.h>
  #include <sound/minors.h>
  #include <sound/pcm.h>
  #include <sound/pcm_params.h>
  #include "pcm_plugin.h"
  #include <sound/info.h>
  #include <linux/soundcard.h>
  #include <sound/initval.h>
fea952e5c   Clemens Ladisch   ALSA: core: spars...
43
  #include <sound/mixer_oss.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
44
45
  
  #define OSS_ALSAEMULVER		_SIOR ('M', 249, int)
6581f4e74   Takashi Iwai   [ALSA] Remove zer...
46
  static int dsp_map[SNDRV_CARDS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
  static int adsp_map[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 1};
a67ff6a54   Rusty Russell   ALSA: module_para...
48
  static bool nonblock_open = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49

c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
50
  MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Abramo Bagnara <abramo@alsa-project.org>");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
52
53
54
55
56
57
58
59
60
  MODULE_DESCRIPTION("PCM OSS emulation for ALSA.");
  MODULE_LICENSE("GPL");
  module_param_array(dsp_map, int, NULL, 0444);
  MODULE_PARM_DESC(dsp_map, "PCM device number assigned to 1st OSS device.");
  module_param_array(adsp_map, int, NULL, 0444);
  MODULE_PARM_DESC(adsp_map, "PCM device number assigned to 2nd OSS device.");
  module_param(nonblock_open, bool, 0644);
  MODULE_PARM_DESC(nonblock_open, "Don't block opening busy PCM devices.");
  MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_PCM);
  MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_PCM1);
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
61
62
63
  static int snd_pcm_oss_get_rate(struct snd_pcm_oss_file *pcm_oss_file);
  static int snd_pcm_oss_get_channels(struct snd_pcm_oss_file *pcm_oss_file);
  static int snd_pcm_oss_get_format(struct snd_pcm_oss_file *pcm_oss_file);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
66
67
68
69
70
71
72
73
74
75
  
  static inline mm_segment_t snd_enter_user(void)
  {
  	mm_segment_t fs = get_fs();
  	set_fs(get_ds());
  	return fs;
  }
  
  static inline void snd_leave_user(mm_segment_t fs)
  {
  	set_fs(fs);
  }
e88e8ae63   Takashi Iwai   [ALSA] Move OSS-s...
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
  /*
   * helper functions to process hw_params
   */
  static int snd_interval_refine_min(struct snd_interval *i, unsigned int min, int openmin)
  {
  	int changed = 0;
  	if (i->min < min) {
  		i->min = min;
  		i->openmin = openmin;
  		changed = 1;
  	} else if (i->min == min && !i->openmin && openmin) {
  		i->openmin = 1;
  		changed = 1;
  	}
  	if (i->integer) {
  		if (i->openmin) {
  			i->min++;
  			i->openmin = 0;
  		}
  	}
  	if (snd_interval_checkempty(i)) {
  		snd_interval_none(i);
  		return -EINVAL;
  	}
  	return changed;
  }
  
  static int snd_interval_refine_max(struct snd_interval *i, unsigned int max, int openmax)
  {
  	int changed = 0;
  	if (i->max > max) {
  		i->max = max;
  		i->openmax = openmax;
  		changed = 1;
  	} else if (i->max == max && !i->openmax && openmax) {
  		i->openmax = 1;
  		changed = 1;
  	}
  	if (i->integer) {
  		if (i->openmax) {
  			i->max--;
  			i->openmax = 0;
  		}
  	}
  	if (snd_interval_checkempty(i)) {
  		snd_interval_none(i);
  		return -EINVAL;
  	}
  	return changed;
  }
  
  static int snd_interval_refine_set(struct snd_interval *i, unsigned int val)
  {
  	struct snd_interval t;
  	t.empty = 0;
  	t.min = t.max = val;
  	t.openmin = t.openmax = 0;
  	t.integer = 1;
  	return snd_interval_refine(i, &t);
  }
  
  /**
   * snd_pcm_hw_param_value_min
   * @params: the hw_params instance
   * @var: parameter to retrieve
   * @dir: pointer to the direction (-1,0,1) or NULL
   *
   * Return the minimum value for field PAR.
   */
  static unsigned int
  snd_pcm_hw_param_value_min(const struct snd_pcm_hw_params *params,
  			   snd_pcm_hw_param_t var, int *dir)
  {
  	if (hw_is_mask(var)) {
  		if (dir)
  			*dir = 0;
  		return snd_mask_min(hw_param_mask_c(params, var));
  	}
  	if (hw_is_interval(var)) {
  		const struct snd_interval *i = hw_param_interval_c(params, var);
  		if (dir)
  			*dir = i->openmin;
  		return snd_interval_min(i);
  	}
  	return -EINVAL;
  }
  
  /**
   * snd_pcm_hw_param_value_max
   * @params: the hw_params instance
   * @var: parameter to retrieve
   * @dir: pointer to the direction (-1,0,1) or NULL
   *
   * Return the maximum value for field PAR.
   */
  static unsigned int
  snd_pcm_hw_param_value_max(const struct snd_pcm_hw_params *params,
  			   snd_pcm_hw_param_t var, int *dir)
  {
  	if (hw_is_mask(var)) {
  		if (dir)
  			*dir = 0;
  		return snd_mask_max(hw_param_mask_c(params, var));
  	}
  	if (hw_is_interval(var)) {
  		const struct snd_interval *i = hw_param_interval_c(params, var);
  		if (dir)
  			*dir = - (int) i->openmax;
  		return snd_interval_max(i);
  	}
  	return -EINVAL;
  }
  
  static int _snd_pcm_hw_param_mask(struct snd_pcm_hw_params *params,
  				  snd_pcm_hw_param_t var,
  				  const struct snd_mask *val)
  {
  	int changed;
  	changed = snd_mask_refine(hw_param_mask(params, var), val);
  	if (changed) {
  		params->cmask |= 1 << var;
  		params->rmask |= 1 << var;
  	}
  	return changed;
  }
  
  static int snd_pcm_hw_param_mask(struct snd_pcm_substream *pcm,
  				 struct snd_pcm_hw_params *params,
  				 snd_pcm_hw_param_t var,
  				 const struct snd_mask *val)
  {
  	int changed = _snd_pcm_hw_param_mask(params, var, val);
  	if (changed < 0)
  		return changed;
  	if (params->rmask) {
  		int err = snd_pcm_hw_refine(pcm, params);
  		if (err < 0)
  			return err;
  	}
  	return 0;
  }
  
  static int _snd_pcm_hw_param_min(struct snd_pcm_hw_params *params,
  				 snd_pcm_hw_param_t var, unsigned int val,
  				 int dir)
  {
  	int changed;
  	int open = 0;
  	if (dir) {
  		if (dir > 0) {
  			open = 1;
  		} else if (dir < 0) {
  			if (val > 0) {
  				open = 1;
  				val--;
  			}
  		}
  	}
  	if (hw_is_mask(var))
  		changed = snd_mask_refine_min(hw_param_mask(params, var),
  					      val + !!open);
  	else if (hw_is_interval(var))
  		changed = snd_interval_refine_min(hw_param_interval(params, var),
  						  val, open);
  	else
  		return -EINVAL;
  	if (changed) {
  		params->cmask |= 1 << var;
  		params->rmask |= 1 << var;
  	}
  	return changed;
  }
  
  /**
   * snd_pcm_hw_param_min
   * @pcm: PCM instance
   * @params: the hw_params instance
   * @var: parameter to retrieve
   * @val: minimal value
   * @dir: pointer to the direction (-1,0,1) or NULL
   *
   * Inside configuration space defined by PARAMS remove from PAR all 
   * values < VAL. Reduce configuration space accordingly.
   * Return new minimum or -EINVAL if the configuration space is empty
   */
  static int snd_pcm_hw_param_min(struct snd_pcm_substream *pcm,
  				struct snd_pcm_hw_params *params,
  				snd_pcm_hw_param_t var, unsigned int val,
  				int *dir)
  {
  	int changed = _snd_pcm_hw_param_min(params, var, val, dir ? *dir : 0);
  	if (changed < 0)
  		return changed;
  	if (params->rmask) {
  		int err = snd_pcm_hw_refine(pcm, params);
  		if (err < 0)
  			return err;
  	}
  	return snd_pcm_hw_param_value_min(params, var, dir);
  }
  
  static int _snd_pcm_hw_param_max(struct snd_pcm_hw_params *params,
  				 snd_pcm_hw_param_t var, unsigned int val,
  				 int dir)
  {
  	int changed;
  	int open = 0;
  	if (dir) {
  		if (dir < 0) {
  			open = 1;
  		} else if (dir > 0) {
  			open = 1;
  			val++;
  		}
  	}
  	if (hw_is_mask(var)) {
  		if (val == 0 && open) {
  			snd_mask_none(hw_param_mask(params, var));
  			changed = -EINVAL;
  		} else
  			changed = snd_mask_refine_max(hw_param_mask(params, var),
  						      val - !!open);
  	} else if (hw_is_interval(var))
  		changed = snd_interval_refine_max(hw_param_interval(params, var),
  						  val, open);
  	else
  		return -EINVAL;
  	if (changed) {
  		params->cmask |= 1 << var;
  		params->rmask |= 1 << var;
  	}
  	return changed;
  }
  
  /**
   * snd_pcm_hw_param_max
   * @pcm: PCM instance
   * @params: the hw_params instance
   * @var: parameter to retrieve
   * @val: maximal value
   * @dir: pointer to the direction (-1,0,1) or NULL
   *
   * Inside configuration space defined by PARAMS remove from PAR all 
   *  values >= VAL + 1. Reduce configuration space accordingly.
   *  Return new maximum or -EINVAL if the configuration space is empty
   */
  static int snd_pcm_hw_param_max(struct snd_pcm_substream *pcm,
  				struct snd_pcm_hw_params *params,
  				snd_pcm_hw_param_t var, unsigned int val,
  				int *dir)
  {
  	int changed = _snd_pcm_hw_param_max(params, var, val, dir ? *dir : 0);
  	if (changed < 0)
  		return changed;
  	if (params->rmask) {
  		int err = snd_pcm_hw_refine(pcm, params);
  		if (err < 0)
  			return err;
  	}
  	return snd_pcm_hw_param_value_max(params, var, dir);
  }
  
  static int boundary_sub(int a, int adir,
  			int b, int bdir,
  			int *c, int *cdir)
  {
  	adir = adir < 0 ? -1 : (adir > 0 ? 1 : 0);
  	bdir = bdir < 0 ? -1 : (bdir > 0 ? 1 : 0);
  	*c = a - b;
  	*cdir = adir - bdir;
  	if (*cdir == -2) {
  		(*c)--;
  	} else if (*cdir == 2) {
  		(*c)++;
  	}
  	return 0;
  }
  
  static int boundary_lt(unsigned int a, int adir,
  		       unsigned int b, int bdir)
  {
  	if (adir < 0) {
  		a--;
  		adir = 1;
  	} else if (adir > 0)
  		adir = 1;
  	if (bdir < 0) {
  		b--;
  		bdir = 1;
  	} else if (bdir > 0)
  		bdir = 1;
  	return a < b || (a == b && adir < bdir);
  }
  
  /* Return 1 if min is nearer to best than max */
  static int boundary_nearer(int min, int mindir,
  			   int best, int bestdir,
  			   int max, int maxdir)
  {
  	int dmin, dmindir;
  	int dmax, dmaxdir;
  	boundary_sub(best, bestdir, min, mindir, &dmin, &dmindir);
  	boundary_sub(max, maxdir, best, bestdir, &dmax, &dmaxdir);
  	return boundary_lt(dmin, dmindir, dmax, dmaxdir);
  }
  
  /**
   * snd_pcm_hw_param_near
   * @pcm: PCM instance
   * @params: the hw_params instance
   * @var: parameter to retrieve
   * @best: value to set
   * @dir: pointer to the direction (-1,0,1) or NULL
   *
   * Inside configuration space defined by PARAMS set PAR to the available value
   * nearest to VAL. Reduce configuration space accordingly.
   * This function cannot be called for SNDRV_PCM_HW_PARAM_ACCESS,
   * SNDRV_PCM_HW_PARAM_FORMAT, SNDRV_PCM_HW_PARAM_SUBFORMAT.
   * Return the value found.
    */
  static int snd_pcm_hw_param_near(struct snd_pcm_substream *pcm,
  				 struct snd_pcm_hw_params *params,
  				 snd_pcm_hw_param_t var, unsigned int best,
  				 int *dir)
  {
  	struct snd_pcm_hw_params *save = NULL;
  	int v;
  	unsigned int saved_min;
  	int last = 0;
  	int min, max;
  	int mindir, maxdir;
  	int valdir = dir ? *dir : 0;
  	/* FIXME */
  	if (best > INT_MAX)
  		best = INT_MAX;
  	min = max = best;
  	mindir = maxdir = valdir;
  	if (maxdir > 0)
  		maxdir = 0;
  	else if (maxdir == 0)
  		maxdir = -1;
  	else {
  		maxdir = 1;
  		max--;
  	}
  	save = kmalloc(sizeof(*save), GFP_KERNEL);
  	if (save == NULL)
  		return -ENOMEM;
  	*save = *params;
  	saved_min = min;
  	min = snd_pcm_hw_param_min(pcm, params, var, min, &mindir);
  	if (min >= 0) {
  		struct snd_pcm_hw_params *params1;
  		if (max < 0)
  			goto _end;
  		if ((unsigned int)min == saved_min && mindir == valdir)
  			goto _end;
  		params1 = kmalloc(sizeof(*params1), GFP_KERNEL);
  		if (params1 == NULL) {
  			kfree(save);
  			return -ENOMEM;
  		}
  		*params1 = *save;
  		max = snd_pcm_hw_param_max(pcm, params1, var, max, &maxdir);
  		if (max < 0) {
  			kfree(params1);
  			goto _end;
  		}
  		if (boundary_nearer(max, maxdir, best, valdir, min, mindir)) {
  			*params = *params1;
  			last = 1;
  		}
  		kfree(params1);
  	} else {
  		*params = *save;
  		max = snd_pcm_hw_param_max(pcm, params, var, max, &maxdir);
3daa7ea65   Jesper Juhl   ALSA: Don't leak ...
452
453
  		if (max < 0) {
  			kfree(save);
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
454
  			return max;
3daa7ea65   Jesper Juhl   ALSA: Don't leak ...
455
  		}
e88e8ae63   Takashi Iwai   [ALSA] Move OSS-s...
456
457
458
459
460
461
462
463
  		last = 1;
  	}
   _end:
   	kfree(save);
  	if (last)
  		v = snd_pcm_hw_param_last(pcm, params, var, dir);
  	else
  		v = snd_pcm_hw_param_first(pcm, params, var, dir);
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
464
  	snd_BUG_ON(v < 0);
e88e8ae63   Takashi Iwai   [ALSA] Move OSS-s...
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
  	return v;
  }
  
  static int _snd_pcm_hw_param_set(struct snd_pcm_hw_params *params,
  				 snd_pcm_hw_param_t var, unsigned int val,
  				 int dir)
  {
  	int changed;
  	if (hw_is_mask(var)) {
  		struct snd_mask *m = hw_param_mask(params, var);
  		if (val == 0 && dir < 0) {
  			changed = -EINVAL;
  			snd_mask_none(m);
  		} else {
  			if (dir > 0)
  				val++;
  			else if (dir < 0)
  				val--;
  			changed = snd_mask_refine_set(hw_param_mask(params, var), val);
  		}
  	} else if (hw_is_interval(var)) {
  		struct snd_interval *i = hw_param_interval(params, var);
  		if (val == 0 && dir < 0) {
  			changed = -EINVAL;
  			snd_interval_none(i);
  		} else if (dir == 0)
  			changed = snd_interval_refine_set(i, val);
  		else {
  			struct snd_interval t;
  			t.openmin = 1;
  			t.openmax = 1;
  			t.empty = 0;
  			t.integer = 0;
  			if (dir < 0) {
  				t.min = val - 1;
  				t.max = val;
  			} else {
  				t.min = val;
  				t.max = val+1;
  			}
  			changed = snd_interval_refine(i, &t);
  		}
  	} else
  		return -EINVAL;
  	if (changed) {
  		params->cmask |= 1 << var;
  		params->rmask |= 1 << var;
  	}
  	return changed;
  }
  
  /**
   * snd_pcm_hw_param_set
   * @pcm: PCM instance
   * @params: the hw_params instance
   * @var: parameter to retrieve
   * @val: value to set
   * @dir: pointer to the direction (-1,0,1) or NULL
   *
   * Inside configuration space defined by PARAMS remove from PAR all 
   * values != VAL. Reduce configuration space accordingly.
   *  Return VAL or -EINVAL if the configuration space is empty
   */
  static int snd_pcm_hw_param_set(struct snd_pcm_substream *pcm,
  				struct snd_pcm_hw_params *params,
  				snd_pcm_hw_param_t var, unsigned int val,
  				int dir)
  {
  	int changed = _snd_pcm_hw_param_set(params, var, val, dir);
  	if (changed < 0)
  		return changed;
  	if (params->rmask) {
  		int err = snd_pcm_hw_refine(pcm, params);
  		if (err < 0)
  			return err;
  	}
  	return snd_pcm_hw_param_value(params, var, NULL);
  }
  
  static int _snd_pcm_hw_param_setinteger(struct snd_pcm_hw_params *params,
  					snd_pcm_hw_param_t var)
  {
  	int changed;
  	changed = snd_interval_setinteger(hw_param_interval(params, var));
  	if (changed) {
  		params->cmask |= 1 << var;
  		params->rmask |= 1 << var;
  	}
  	return changed;
  }
  	
  /*
   * plugin
   */
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
559
  #ifdef CONFIG_SND_PCM_OSS_PLUGINS
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
560
  static int snd_pcm_oss_plugin_clear(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
561
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
562
563
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct snd_pcm_plugin *plugin, *next;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
564
565
566
567
568
569
570
571
572
573
  	
  	plugin = runtime->oss.plugin_first;
  	while (plugin) {
  		next = plugin->next;
  		snd_pcm_plugin_free(plugin);
  		plugin = next;
  	}
  	runtime->oss.plugin_first = runtime->oss.plugin_last = NULL;
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
574
  static int snd_pcm_plugin_insert(struct snd_pcm_plugin *plugin)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
575
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
576
  	struct snd_pcm_runtime *runtime = plugin->plug->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
577
578
579
580
581
582
583
584
585
586
587
  	plugin->next = runtime->oss.plugin_first;
  	plugin->prev = NULL;
  	if (runtime->oss.plugin_first) {
  		runtime->oss.plugin_first->prev = plugin;
  		runtime->oss.plugin_first = plugin;
  	} else {
  		runtime->oss.plugin_last =
  		runtime->oss.plugin_first = plugin;
  	}
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
588
  int snd_pcm_plugin_append(struct snd_pcm_plugin *plugin)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
589
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
590
  	struct snd_pcm_runtime *runtime = plugin->plug->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
591
592
593
594
595
596
597
598
599
600
601
  	plugin->next = NULL;
  	plugin->prev = runtime->oss.plugin_last;
  	if (runtime->oss.plugin_last) {
  		runtime->oss.plugin_last->next = plugin;
  		runtime->oss.plugin_last = plugin;
  	} else {
  		runtime->oss.plugin_last =
  		runtime->oss.plugin_first = plugin;
  	}
  	return 0;
  }
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
602
  #endif /* CONFIG_SND_PCM_OSS_PLUGINS */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
603

6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
604
  static long snd_pcm_oss_bytes(struct snd_pcm_substream *substream, long frames)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
605
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
606
  	struct snd_pcm_runtime *runtime = substream->runtime;
af0816139   Jaroslav Kysela   [ALSA] alsa-oss -...
607
  	long buffer_size = snd_pcm_lib_buffer_bytes(substream);
bfc5bddb8   Jaroslav Kysela   [ALSA] alsa-oss -...
608
  	long bytes = frames_to_bytes(runtime, frames);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
609
  	if (buffer_size == runtime->oss.buffer_bytes)
bfc5bddb8   Jaroslav Kysela   [ALSA] alsa-oss -...
610
  		return bytes;
cdc5c53fd   Takashi Iwai   [ALSA] Fix compil...
611
612
613
614
615
  #if BITS_PER_LONG >= 64
  	return runtime->oss.buffer_bytes * bytes / buffer_size;
  #else
  	{
  		u64 bsize = (u64)runtime->oss.buffer_bytes * (u64)bytes;
3f7440a6b   Takashi Iwai   ALSA: Clean up 64...
616
  		return div_u64(bsize, buffer_size);
cdc5c53fd   Takashi Iwai   [ALSA] Fix compil...
617
618
  	}
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
619
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
620
  static long snd_pcm_alsa_frames(struct snd_pcm_substream *substream, long bytes)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
621
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
622
  	struct snd_pcm_runtime *runtime = substream->runtime;
af0816139   Jaroslav Kysela   [ALSA] alsa-oss -...
623
  	long buffer_size = snd_pcm_lib_buffer_bytes(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
624
625
626
627
  	if (buffer_size == runtime->oss.buffer_bytes)
  		return bytes_to_frames(runtime, bytes);
  	return bytes_to_frames(runtime, (buffer_size * bytes) / runtime->oss.buffer_bytes);
  }
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
628
629
630
  static inline
  snd_pcm_uframes_t get_hw_ptr_period(struct snd_pcm_runtime *runtime)
  {
e76369257   Jaroslav Kysela   ALSA: pcm_lib - r...
631
  	return runtime->hw_ptr_interrupt;
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
632
  }
24038a25e   Takashi Iwai   [ALSA] Add new AF...
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
  /* define extended formats in the recent OSS versions (if any) */
  /* linear formats */
  #define AFMT_S32_LE      0x00001000
  #define AFMT_S32_BE      0x00002000
  #define AFMT_S24_LE      0x00008000
  #define AFMT_S24_BE      0x00010000
  #define AFMT_S24_PACKED  0x00040000
  
  /* other supported formats */
  #define AFMT_FLOAT       0x00004000
  #define AFMT_SPDIF_RAW   0x00020000
  
  /* unsupported formats */
  #define AFMT_AC3         0x00000400
  #define AFMT_VORBIS      0x00000800
fea952e5c   Clemens Ladisch   ALSA: core: spars...
648
  static snd_pcm_format_t snd_pcm_oss_format_from(int format)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
649
650
651
652
653
654
655
656
657
658
659
660
  {
  	switch (format) {
  	case AFMT_MU_LAW:	return SNDRV_PCM_FORMAT_MU_LAW;
  	case AFMT_A_LAW:	return SNDRV_PCM_FORMAT_A_LAW;
  	case AFMT_IMA_ADPCM:	return SNDRV_PCM_FORMAT_IMA_ADPCM;
  	case AFMT_U8:		return SNDRV_PCM_FORMAT_U8;
  	case AFMT_S16_LE:	return SNDRV_PCM_FORMAT_S16_LE;
  	case AFMT_S16_BE:	return SNDRV_PCM_FORMAT_S16_BE;
  	case AFMT_S8:		return SNDRV_PCM_FORMAT_S8;
  	case AFMT_U16_LE:	return SNDRV_PCM_FORMAT_U16_LE;
  	case AFMT_U16_BE:	return SNDRV_PCM_FORMAT_U16_BE;
  	case AFMT_MPEG:		return SNDRV_PCM_FORMAT_MPEG;
24038a25e   Takashi Iwai   [ALSA] Add new AF...
661
662
663
664
665
666
667
  	case AFMT_S32_LE:	return SNDRV_PCM_FORMAT_S32_LE;
  	case AFMT_S32_BE:	return SNDRV_PCM_FORMAT_S32_BE;
  	case AFMT_S24_LE:	return SNDRV_PCM_FORMAT_S24_LE;
  	case AFMT_S24_BE:	return SNDRV_PCM_FORMAT_S24_BE;
  	case AFMT_S24_PACKED:	return SNDRV_PCM_FORMAT_S24_3LE;
  	case AFMT_FLOAT:	return SNDRV_PCM_FORMAT_FLOAT;
  	case AFMT_SPDIF_RAW:	return SNDRV_PCM_FORMAT_IEC958_SUBFRAME;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
668
669
670
  	default:		return SNDRV_PCM_FORMAT_U8;
  	}
  }
fea952e5c   Clemens Ladisch   ALSA: core: spars...
671
  static int snd_pcm_oss_format_to(snd_pcm_format_t format)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
672
673
674
675
676
677
678
679
680
681
682
683
  {
  	switch (format) {
  	case SNDRV_PCM_FORMAT_MU_LAW:	return AFMT_MU_LAW;
  	case SNDRV_PCM_FORMAT_A_LAW:	return AFMT_A_LAW;
  	case SNDRV_PCM_FORMAT_IMA_ADPCM:	return AFMT_IMA_ADPCM;
  	case SNDRV_PCM_FORMAT_U8:		return AFMT_U8;
  	case SNDRV_PCM_FORMAT_S16_LE:	return AFMT_S16_LE;
  	case SNDRV_PCM_FORMAT_S16_BE:	return AFMT_S16_BE;
  	case SNDRV_PCM_FORMAT_S8:		return AFMT_S8;
  	case SNDRV_PCM_FORMAT_U16_LE:	return AFMT_U16_LE;
  	case SNDRV_PCM_FORMAT_U16_BE:	return AFMT_U16_BE;
  	case SNDRV_PCM_FORMAT_MPEG:		return AFMT_MPEG;
24038a25e   Takashi Iwai   [ALSA] Add new AF...
684
685
686
687
688
689
690
  	case SNDRV_PCM_FORMAT_S32_LE:	return AFMT_S32_LE;
  	case SNDRV_PCM_FORMAT_S32_BE:	return AFMT_S32_BE;
  	case SNDRV_PCM_FORMAT_S24_LE:	return AFMT_S24_LE;
  	case SNDRV_PCM_FORMAT_S24_BE:	return AFMT_S24_BE;
  	case SNDRV_PCM_FORMAT_S24_3LE:	return AFMT_S24_PACKED;
  	case SNDRV_PCM_FORMAT_FLOAT:	return AFMT_FLOAT;
  	case SNDRV_PCM_FORMAT_IEC958_SUBFRAME: return AFMT_SPDIF_RAW;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
691
692
693
  	default:			return -EINVAL;
  	}
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
694
695
696
  static int snd_pcm_oss_period_size(struct snd_pcm_substream *substream, 
  				   struct snd_pcm_hw_params *oss_params,
  				   struct snd_pcm_hw_params *slave_params)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
697
698
699
700
  {
  	size_t s;
  	size_t oss_buffer_size, oss_period_size, oss_periods;
  	size_t min_period_size, max_period_size;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
701
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
702
703
704
705
706
707
708
709
  	size_t oss_frame_size;
  
  	oss_frame_size = snd_pcm_format_physical_width(params_format(oss_params)) *
  			 params_channels(oss_params) / 8;
  
  	oss_buffer_size = snd_pcm_plug_client_size(substream,
  						   snd_pcm_hw_param_value_max(slave_params, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, NULL)) * oss_frame_size;
  	oss_buffer_size = 1 << ld2(oss_buffer_size);
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
710
  	if (atomic_read(&substream->mmap_count)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
711
712
713
  		if (oss_buffer_size > runtime->oss.mmap_bytes)
  			oss_buffer_size = runtime->oss.mmap_bytes;
  	}
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
714
715
  	if (substream->oss.setup.period_size > 16)
  		oss_period_size = substream->oss.setup.period_size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
  	else if (runtime->oss.fragshift) {
  		oss_period_size = 1 << runtime->oss.fragshift;
  		if (oss_period_size > oss_buffer_size / 2)
  			oss_period_size = oss_buffer_size / 2;
  	} else {
  		int sd;
  		size_t bytes_per_sec = params_rate(oss_params) * snd_pcm_format_physical_width(params_format(oss_params)) * params_channels(oss_params) / 8;
  
  		oss_period_size = oss_buffer_size;
  		do {
  			oss_period_size /= 2;
  		} while (oss_period_size > bytes_per_sec);
  		if (runtime->oss.subdivision == 0) {
  			sd = 4;
  			if (oss_period_size / sd > 4096)
  				sd *= 2;
  			if (oss_period_size / sd < 4096)
  				sd = 1;
  		} else
  			sd = runtime->oss.subdivision;
  		oss_period_size /= sd;
  		if (oss_period_size < 16)
  			oss_period_size = 16;
  	}
  
  	min_period_size = snd_pcm_plug_client_size(substream,
  						   snd_pcm_hw_param_value_min(slave_params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, NULL));
  	min_period_size *= oss_frame_size;
  	min_period_size = 1 << (ld2(min_period_size - 1) + 1);
  	if (oss_period_size < min_period_size)
  		oss_period_size = min_period_size;
  
  	max_period_size = snd_pcm_plug_client_size(substream,
  						   snd_pcm_hw_param_value_max(slave_params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, NULL));
  	max_period_size *= oss_frame_size;
  	max_period_size = 1 << ld2(max_period_size);
  	if (oss_period_size > max_period_size)
  		oss_period_size = max_period_size;
  
  	oss_periods = oss_buffer_size / oss_period_size;
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
756
757
  	if (substream->oss.setup.periods > 1)
  		oss_periods = substream->oss.setup.periods;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
  
  	s = snd_pcm_hw_param_value_max(slave_params, SNDRV_PCM_HW_PARAM_PERIODS, NULL);
  	if (runtime->oss.maxfrags && s > runtime->oss.maxfrags)
  		s = runtime->oss.maxfrags;
  	if (oss_periods > s)
  		oss_periods = s;
  
  	s = snd_pcm_hw_param_value_min(slave_params, SNDRV_PCM_HW_PARAM_PERIODS, NULL);
  	if (s < 2)
  		s = 2;
  	if (oss_periods < s)
  		oss_periods = s;
  
  	while (oss_period_size * oss_periods > oss_buffer_size)
  		oss_period_size /= 2;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
773
774
  	if (oss_period_size < 16)
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
775
776
777
778
779
  	runtime->oss.period_bytes = oss_period_size;
  	runtime->oss.period_frames = 1;
  	runtime->oss.periods = oss_periods;
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
780
781
  static int choose_rate(struct snd_pcm_substream *substream,
  		       struct snd_pcm_hw_params *params, unsigned int best_rate)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
782
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
783
784
  	struct snd_interval *it;
  	struct snd_pcm_hw_params *save;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
813
814
815
816
817
818
  	unsigned int rate, prev;
  
  	save = kmalloc(sizeof(*save), GFP_KERNEL);
  	if (save == NULL)
  		return -ENOMEM;
  	*save = *params;
  	it = hw_param_interval(save, SNDRV_PCM_HW_PARAM_RATE);
  
  	/* try multiples of the best rate */
  	rate = best_rate;
  	for (;;) {
  		if (it->max < rate || (it->max == rate && it->openmax))
  			break;
  		if (it->min < rate || (it->min == rate && !it->openmin)) {
  			int ret;
  			ret = snd_pcm_hw_param_set(substream, params,
  						   SNDRV_PCM_HW_PARAM_RATE,
  						   rate, 0);
  			if (ret == (int)rate) {
  				kfree(save);
  				return rate;
  			}
  			*params = *save;
  		}
  		prev = rate;
  		rate += best_rate;
  		if (rate <= prev)
  			break;
  	}
  
  	/* not found, use the nearest rate */
  	kfree(save);
  	return snd_pcm_hw_param_near(substream, params, SNDRV_PCM_HW_PARAM_RATE, best_rate, NULL);
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
819
  static int snd_pcm_oss_change_params(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
820
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
821
822
823
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct snd_pcm_hw_params *params, *sparams;
  	struct snd_pcm_sw_params *sw_params;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
824
825
826
827
  	ssize_t oss_buffer_size, oss_period_size;
  	size_t oss_frame_size;
  	int err;
  	int direct;
fea952e5c   Clemens Ladisch   ALSA: core: spars...
828
829
  	snd_pcm_format_t format, sformat;
  	int n;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
830
831
  	struct snd_mask sformat_mask;
  	struct snd_mask mask;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
832

e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
833
834
  	if (mutex_lock_interruptible(&runtime->oss.params_lock))
  		return -EINTR;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
835
836
837
838
839
840
841
842
843
  	sw_params = kmalloc(sizeof(*sw_params), GFP_KERNEL);
  	params = kmalloc(sizeof(*params), GFP_KERNEL);
  	sparams = kmalloc(sizeof(*sparams), GFP_KERNEL);
  	if (!sw_params || !params || !sparams) {
  		snd_printd("No memory
  ");
  		err = -ENOMEM;
  		goto failure;
  	}
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
844
  	if (atomic_read(&substream->mmap_count))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
845
  		direct = 1;
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
846
847
  	else
  		direct = substream->oss.setup.direct;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
848
849
850
851
852
  
  	_snd_pcm_hw_params_any(sparams);
  	_snd_pcm_hw_param_setinteger(sparams, SNDRV_PCM_HW_PARAM_PERIODS);
  	_snd_pcm_hw_param_min(sparams, SNDRV_PCM_HW_PARAM_PERIODS, 2, 0);
  	snd_mask_none(&mask);
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
853
  	if (atomic_read(&substream->mmap_count))
fea952e5c   Clemens Ladisch   ALSA: core: spars...
854
  		snd_mask_set(&mask, (__force int)SNDRV_PCM_ACCESS_MMAP_INTERLEAVED);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
855
  	else {
fea952e5c   Clemens Ladisch   ALSA: core: spars...
856
  		snd_mask_set(&mask, (__force int)SNDRV_PCM_ACCESS_RW_INTERLEAVED);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
857
  		if (!direct)
fea952e5c   Clemens Ladisch   ALSA: core: spars...
858
  			snd_mask_set(&mask, (__force int)SNDRV_PCM_ACCESS_RW_NONINTERLEAVED);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
  	}
  	err = snd_pcm_hw_param_mask(substream, sparams, SNDRV_PCM_HW_PARAM_ACCESS, &mask);
  	if (err < 0) {
  		snd_printd("No usable accesses
  ");
  		err = -EINVAL;
  		goto failure;
  	}
  	choose_rate(substream, sparams, runtime->oss.rate);
  	snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_CHANNELS, runtime->oss.channels, NULL);
  
  	format = snd_pcm_oss_format_from(runtime->oss.format);
  
  	sformat_mask = *hw_param_mask(sparams, SNDRV_PCM_HW_PARAM_FORMAT);
  	if (direct)
  		sformat = format;
  	else
  		sformat = snd_pcm_plug_slave_format(format, &sformat_mask);
fea952e5c   Clemens Ladisch   ALSA: core: spars...
877
878
879
880
881
882
  	if ((__force int)sformat < 0 ||
  	    !snd_mask_test(&sformat_mask, (__force int)sformat)) {
  		for (sformat = (__force snd_pcm_format_t)0;
  		     (__force int)sformat <= (__force int)SNDRV_PCM_FORMAT_LAST;
  		     sformat = (__force snd_pcm_format_t)((__force int)sformat + 1)) {
  			if (snd_mask_test(&sformat_mask, (__force int)sformat) &&
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
883
884
885
  			    snd_pcm_oss_format_to(sformat) >= 0)
  				break;
  		}
fea952e5c   Clemens Ladisch   ALSA: core: spars...
886
  		if ((__force int)sformat > (__force int)SNDRV_PCM_FORMAT_LAST) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
887
888
889
890
891
892
  			snd_printd("Cannot find a format!!!
  ");
  			err = -EINVAL;
  			goto failure;
  		}
  	}
fea952e5c   Clemens Ladisch   ALSA: core: spars...
893
  	err = _snd_pcm_hw_param_set(sparams, SNDRV_PCM_HW_PARAM_FORMAT, (__force int)sformat, 0);
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
894
895
  	if (err < 0)
  		goto failure;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
896
897
898
899
900
901
  
  	if (direct) {
  		memcpy(params, sparams, sizeof(*params));
  	} else {
  		_snd_pcm_hw_params_any(params);
  		_snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_ACCESS,
fea952e5c   Clemens Ladisch   ALSA: core: spars...
902
  				      (__force int)SNDRV_PCM_ACCESS_RW_INTERLEAVED, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
903
  		_snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_FORMAT,
fea952e5c   Clemens Ladisch   ALSA: core: spars...
904
  				      (__force int)snd_pcm_oss_format_from(runtime->oss.format), 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
  		_snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_CHANNELS,
  				      runtime->oss.channels, 0);
  		_snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_RATE,
  				      runtime->oss.rate, 0);
  		pdprintf("client: access = %i, format = %i, channels = %i, rate = %i
  ",
  			 params_access(params), params_format(params),
  			 params_channels(params), params_rate(params));
  	}
  	pdprintf("slave: access = %i, format = %i, channels = %i, rate = %i
  ",
  		 params_access(sparams), params_format(sparams),
  		 params_channels(sparams), params_rate(sparams));
  
  	oss_frame_size = snd_pcm_format_physical_width(params_format(params)) *
  			 params_channels(params) / 8;
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
921
  #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
922
923
924
925
926
927
928
929
930
931
932
933
934
  	snd_pcm_oss_plugin_clear(substream);
  	if (!direct) {
  		/* add necessary plugins */
  		snd_pcm_oss_plugin_clear(substream);
  		if ((err = snd_pcm_plug_format_plugins(substream,
  						       params, 
  						       sparams)) < 0) {
  			snd_printd("snd_pcm_plug_format_plugins failed: %i
  ", err);
  			snd_pcm_oss_plugin_clear(substream);
  			goto failure;
  		}
  		if (runtime->oss.plugin_first) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
935
  			struct snd_pcm_plugin *plugin;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
  			if ((err = snd_pcm_plugin_build_io(substream, sparams, &plugin)) < 0) {
  				snd_printd("snd_pcm_plugin_build_io failed: %i
  ", err);
  				snd_pcm_oss_plugin_clear(substream);
  				goto failure;
  			}
  			if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  				err = snd_pcm_plugin_append(plugin);
  			} else {
  				err = snd_pcm_plugin_insert(plugin);
  			}
  			if (err < 0) {
  				snd_pcm_oss_plugin_clear(substream);
  				goto failure;
  			}
  		}
  	}
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
953
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
954
955
956
957
958
959
960
  
  	err = snd_pcm_oss_period_size(substream, params, sparams);
  	if (err < 0)
  		goto failure;
  
  	n = snd_pcm_plug_slave_size(substream, runtime->oss.period_bytes / oss_frame_size);
  	err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, n, NULL);
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
961
962
  	if (err < 0)
  		goto failure;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
963
964
965
  
  	err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIODS,
  				     runtime->oss.periods, NULL);
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
966
967
  	if (err < 0)
  		goto failure;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
  
  	snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
  
  	if ((err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_HW_PARAMS, sparams)) < 0) {
  		snd_printd("HW_PARAMS failed: %i
  ", err);
  		goto failure;
  	}
  
  	memset(sw_params, 0, sizeof(*sw_params));
  	if (runtime->oss.trigger) {
  		sw_params->start_threshold = 1;
  	} else {
  		sw_params->start_threshold = runtime->boundary;
  	}
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
983
984
  	if (atomic_read(&substream->mmap_count) ||
  	    substream->stream == SNDRV_PCM_STREAM_CAPTURE)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
985
986
987
988
989
  		sw_params->stop_threshold = runtime->boundary;
  	else
  		sw_params->stop_threshold = runtime->buffer_size;
  	sw_params->tstamp_mode = SNDRV_PCM_TSTAMP_NONE;
  	sw_params->period_step = 1;
004e65389   Takashi Iwai   [ALSA] Fix captur...
990
991
  	sw_params->avail_min = substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
  		1 : runtime->period_size;
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
992
  	if (atomic_read(&substream->mmap_count) ||
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
993
  	    substream->oss.setup.nosilence) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
  		sw_params->silence_threshold = 0;
  		sw_params->silence_size = 0;
  	} else {
  		snd_pcm_uframes_t frames;
  		frames = runtime->period_size + 16;
  		if (frames > runtime->buffer_size)
  			frames = runtime->buffer_size;
  		sw_params->silence_threshold = frames;
  		sw_params->silence_size = frames;
  	}
  
  	if ((err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_SW_PARAMS, sw_params)) < 0) {
  		snd_printd("SW_PARAMS failed: %i
  ", err);
  		goto failure;
  	}
  
  	runtime->oss.periods = params_periods(sparams);
  	oss_period_size = snd_pcm_plug_client_size(substream, params_period_size(sparams));
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
1013
1014
1015
1016
  	if (oss_period_size < 0) {
  		err = -EINVAL;
  		goto failure;
  	}
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
1017
  #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1018
1019
1020
1021
1022
  	if (runtime->oss.plugin_first) {
  		err = snd_pcm_plug_alloc(substream, oss_period_size);
  		if (err < 0)
  			goto failure;
  	}
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
1023
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1024
1025
1026
  	oss_period_size *= oss_frame_size;
  
  	oss_buffer_size = oss_period_size * runtime->oss.periods;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
1027
1028
1029
1030
  	if (oss_buffer_size < 0) {
  		err = -EINVAL;
  		goto failure;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
  
  	runtime->oss.period_bytes = oss_period_size;
  	runtime->oss.buffer_bytes = oss_buffer_size;
  
  	pdprintf("oss: period bytes = %i, buffer bytes = %i
  ",
  		 runtime->oss.period_bytes,
  		 runtime->oss.buffer_bytes);
  	pdprintf("slave: period_size = %i, buffer_size = %i
  ",
  		 params_period_size(sparams),
  		 params_buffer_size(sparams));
  
  	runtime->oss.format = snd_pcm_oss_format_to(params_format(params));
  	runtime->oss.channels = params_channels(params);
  	runtime->oss.rate = params_rate(params);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1047
1048
  	vfree(runtime->oss.buffer);
  	runtime->oss.buffer = vmalloc(runtime->oss.period_bytes);
cbbb05703   Roel Kluin   ALSA: allocation ...
1049
1050
1051
1052
1053
1054
1055
  	if (!runtime->oss.buffer) {
  		err = -ENOMEM;
  		goto failure;
  	}
  
  	runtime->oss.params = 0;
  	runtime->oss.prepare = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
  	runtime->oss.buffer_used = 0;
  	if (runtime->dma_area)
  		snd_pcm_format_set_silence(runtime->format, runtime->dma_area, bytes_to_samples(runtime, runtime->dma_bytes));
  
  	runtime->oss.period_frames = snd_pcm_alsa_frames(substream, oss_period_size);
  
  	err = 0;
  failure:
  	kfree(sw_params);
  	kfree(params);
  	kfree(sparams);
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1067
  	mutex_unlock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1068
1069
  	return err;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1070
  static int snd_pcm_oss_get_active_substream(struct snd_pcm_oss_file *pcm_oss_file, struct snd_pcm_substream **r_substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1071
1072
  {
  	int idx, err;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1073
  	struct snd_pcm_substream *asubstream = NULL, *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
  
  	for (idx = 0; idx < 2; idx++) {
  		substream = pcm_oss_file->streams[idx];
  		if (substream == NULL)
  			continue;
  		if (asubstream == NULL)
  			asubstream = substream;
  		if (substream->runtime->oss.params) {
  			err = snd_pcm_oss_change_params(substream);
  			if (err < 0)
  				return err;
  		}
  	}
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
1087
1088
  	if (!asubstream)
  		return -EIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1089
1090
1091
1092
  	if (r_substream)
  		*r_substream = asubstream;
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1093
  static int snd_pcm_oss_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1094
1095
  {
  	int err;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1096
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1097
1098
1099
1100
1101
1102
1103
1104
  
  	err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_PREPARE, NULL);
  	if (err < 0) {
  		snd_printd("snd_pcm_oss_prepare: SNDRV_PCM_IOCTL_PREPARE failed
  ");
  		return err;
  	}
  	runtime->oss.prepare = 0;
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
1105
  	runtime->oss.prev_hw_ptr_period = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1106
1107
1108
1109
1110
  	runtime->oss.period_ptr = 0;
  	runtime->oss.buffer_used = 0;
  
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1111
  static int snd_pcm_oss_make_ready(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1112
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1113
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
  	int err;
  
  	if (substream == NULL)
  		return 0;
  	runtime = substream->runtime;
  	if (runtime->oss.params) {
  		err = snd_pcm_oss_change_params(substream);
  		if (err < 0)
  			return err;
  	}
  	if (runtime->oss.prepare) {
  		err = snd_pcm_oss_prepare(substream);
  		if (err < 0)
  			return err;
  	}
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1131
  static int snd_pcm_oss_capture_position_fixup(struct snd_pcm_substream *substream, snd_pcm_sframes_t *delay)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1132
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1133
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
  	snd_pcm_uframes_t frames;
  	int err = 0;
  
  	while (1) {
  		err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, delay);
  		if (err < 0)
  			break;
  		runtime = substream->runtime;
  		if (*delay <= (snd_pcm_sframes_t)runtime->buffer_size)
  			break;
  		/* in case of overrun, skip whole periods like OSS/Linux driver does */
  		/* until avail(delay) <= buffer_size */
  		frames = (*delay - runtime->buffer_size) + runtime->period_size - 1;
  		frames /= runtime->period_size;
  		frames *= runtime->period_size;
  		err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_FORWARD, &frames);
  		if (err < 0)
  			break;
  	}
  	return err;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1155
  snd_pcm_sframes_t snd_pcm_oss_write3(struct snd_pcm_substream *substream, const char *ptr, snd_pcm_uframes_t frames, int in_kernel)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1156
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1157
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1158
1159
1160
1161
1162
1163
  	int ret;
  	while (1) {
  		if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
  		    runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
  #ifdef OSS_DEBUG
  			if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
006de2673   Takashi Iwai   ALSA: Add missing...
1164
1165
1166
  				printk(KERN_DEBUG "pcm_oss: write: "
  				       "recovering from XRUN
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1167
  			else
006de2673   Takashi Iwai   ALSA: Add missing...
1168
1169
1170
  				printk(KERN_DEBUG "pcm_oss: write: "
  				       "recovering from SUSPEND
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1171
1172
1173
1174
1175
1176
1177
1178
  #endif
  			ret = snd_pcm_oss_prepare(substream);
  			if (ret < 0)
  				break;
  		}
  		if (in_kernel) {
  			mm_segment_t fs;
  			fs = snd_enter_user();
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1179
  			ret = snd_pcm_lib_write(substream, (void __force __user *)ptr, frames);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1180
1181
  			snd_leave_user(fs);
  		} else {
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1182
  			ret = snd_pcm_lib_write(substream, (void __force __user *)ptr, frames);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
  		}
  		if (ret != -EPIPE && ret != -ESTRPIPE)
  			break;
  		/* test, if we can't store new data, because the stream */
  		/* has not been started */
  		if (runtime->status->state == SNDRV_PCM_STATE_PREPARED)
  			return -EAGAIN;
  	}
  	return ret;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1193
  snd_pcm_sframes_t snd_pcm_oss_read3(struct snd_pcm_substream *substream, char *ptr, snd_pcm_uframes_t frames, int in_kernel)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1194
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1195
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1196
1197
1198
1199
1200
1201
1202
  	snd_pcm_sframes_t delay;
  	int ret;
  	while (1) {
  		if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
  		    runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
  #ifdef OSS_DEBUG
  			if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
006de2673   Takashi Iwai   ALSA: Add missing...
1203
1204
1205
  				printk(KERN_DEBUG "pcm_oss: read: "
  				       "recovering from XRUN
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1206
  			else
006de2673   Takashi Iwai   ALSA: Add missing...
1207
1208
1209
  				printk(KERN_DEBUG "pcm_oss: read: "
  				       "recovering from SUSPEND
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
  #endif
  			ret = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DRAIN, NULL);
  			if (ret < 0)
  				break;
  		} else if (runtime->status->state == SNDRV_PCM_STATE_SETUP) {
  			ret = snd_pcm_oss_prepare(substream);
  			if (ret < 0)
  				break;
  		}
  		ret = snd_pcm_oss_capture_position_fixup(substream, &delay);
  		if (ret < 0)
  			break;
  		if (in_kernel) {
  			mm_segment_t fs;
  			fs = snd_enter_user();
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1225
  			ret = snd_pcm_lib_read(substream, (void __force __user *)ptr, frames);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1226
1227
  			snd_leave_user(fs);
  		} else {
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1228
  			ret = snd_pcm_lib_read(substream, (void __force __user *)ptr, frames);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
  		}
  		if (ret == -EPIPE) {
  			if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
  				ret = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
  				if (ret < 0)
  					break;
  			}
  			continue;
  		}
  		if (ret != -ESTRPIPE)
  			break;
  	}
  	return ret;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1243
  snd_pcm_sframes_t snd_pcm_oss_writev3(struct snd_pcm_substream *substream, void **bufs, snd_pcm_uframes_t frames, int in_kernel)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1244
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1245
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1246
1247
1248
1249
1250
1251
  	int ret;
  	while (1) {
  		if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
  		    runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
  #ifdef OSS_DEBUG
  			if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
006de2673   Takashi Iwai   ALSA: Add missing...
1252
1253
1254
  				printk(KERN_DEBUG "pcm_oss: writev: "
  				       "recovering from XRUN
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1255
  			else
006de2673   Takashi Iwai   ALSA: Add missing...
1256
1257
1258
  				printk(KERN_DEBUG "pcm_oss: writev: "
  				       "recovering from SUSPEND
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
  #endif
  			ret = snd_pcm_oss_prepare(substream);
  			if (ret < 0)
  				break;
  		}
  		if (in_kernel) {
  			mm_segment_t fs;
  			fs = snd_enter_user();
  			ret = snd_pcm_lib_writev(substream, (void __user **)bufs, frames);
  			snd_leave_user(fs);
  		} else {
  			ret = snd_pcm_lib_writev(substream, (void __user **)bufs, frames);
  		}
  		if (ret != -EPIPE && ret != -ESTRPIPE)
  			break;
  
  		/* test, if we can't store new data, because the stream */
  		/* has not been started */
  		if (runtime->status->state == SNDRV_PCM_STATE_PREPARED)
  			return -EAGAIN;
  	}
  	return ret;
  }
  	
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1283
  snd_pcm_sframes_t snd_pcm_oss_readv3(struct snd_pcm_substream *substream, void **bufs, snd_pcm_uframes_t frames, int in_kernel)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1284
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1285
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1286
1287
1288
1289
1290
1291
  	int ret;
  	while (1) {
  		if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
  		    runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
  #ifdef OSS_DEBUG
  			if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
006de2673   Takashi Iwai   ALSA: Add missing...
1292
1293
1294
  				printk(KERN_DEBUG "pcm_oss: readv: "
  				       "recovering from XRUN
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1295
  			else
006de2673   Takashi Iwai   ALSA: Add missing...
1296
1297
1298
  				printk(KERN_DEBUG "pcm_oss: readv: "
  				       "recovering from SUSPEND
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
  #endif
  			ret = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DRAIN, NULL);
  			if (ret < 0)
  				break;
  		} else if (runtime->status->state == SNDRV_PCM_STATE_SETUP) {
  			ret = snd_pcm_oss_prepare(substream);
  			if (ret < 0)
  				break;
  		}
  		if (in_kernel) {
  			mm_segment_t fs;
  			fs = snd_enter_user();
  			ret = snd_pcm_lib_readv(substream, (void __user **)bufs, frames);
  			snd_leave_user(fs);
  		} else {
  			ret = snd_pcm_lib_readv(substream, (void __user **)bufs, frames);
  		}
  		if (ret != -EPIPE && ret != -ESTRPIPE)
  			break;
  	}
  	return ret;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1321
  static ssize_t snd_pcm_oss_write2(struct snd_pcm_substream *substream, const char *buf, size_t bytes, int in_kernel)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1322
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1323
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1324
  	snd_pcm_sframes_t frames, frames1;
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
1325
  #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1326
  	if (runtime->oss.plugin_first) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1327
  		struct snd_pcm_plugin_channel *channels;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1328
1329
  		size_t oss_frame_bytes = (runtime->oss.plugin_first->src_width * runtime->oss.plugin_first->src_format.channels) / 8;
  		if (!in_kernel) {
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1330
  			if (copy_from_user(runtime->oss.buffer, (const char __force __user *)buf, bytes))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
  				return -EFAULT;
  			buf = runtime->oss.buffer;
  		}
  		frames = bytes / oss_frame_bytes;
  		frames1 = snd_pcm_plug_client_channels_buf(substream, (char *)buf, frames, &channels);
  		if (frames1 < 0)
  			return frames1;
  		frames1 = snd_pcm_plug_write_transfer(substream, channels, frames1);
  		if (frames1 <= 0)
  			return frames1;
  		bytes = frames1 * oss_frame_bytes;
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
1342
1343
1344
  	} else
  #endif
  	{
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1345
1346
1347
1348
1349
1350
1351
1352
  		frames = bytes_to_frames(runtime, bytes);
  		frames1 = snd_pcm_oss_write3(substream, buf, frames, in_kernel);
  		if (frames1 <= 0)
  			return frames1;
  		bytes = frames_to_bytes(runtime, frames1);
  	}
  	return bytes;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1353
  static ssize_t snd_pcm_oss_write1(struct snd_pcm_substream *substream, const char __user *buf, size_t bytes)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1354
1355
1356
  {
  	size_t xfer = 0;
  	ssize_t tmp;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1357
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1358

9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
1359
  	if (atomic_read(&substream->mmap_count))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1360
1361
1362
1363
  		return -ENXIO;
  
  	if ((tmp = snd_pcm_oss_make_ready(substream)) < 0)
  		return tmp;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1364
  	mutex_lock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1365
1366
1367
1368
1369
1370
  	while (bytes > 0) {
  		if (bytes < runtime->oss.period_bytes || runtime->oss.buffer_used > 0) {
  			tmp = bytes;
  			if (tmp + runtime->oss.buffer_used > runtime->oss.period_bytes)
  				tmp = runtime->oss.period_bytes - runtime->oss.buffer_used;
  			if (tmp > 0) {
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1371
1372
1373
1374
  				if (copy_from_user(runtime->oss.buffer + runtime->oss.buffer_used, buf, tmp)) {
  					tmp = -EFAULT;
  					goto err;
  				}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1375
1376
1377
1378
1379
  			}
  			runtime->oss.buffer_used += tmp;
  			buf += tmp;
  			bytes -= tmp;
  			xfer += tmp;
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
1380
  			if (substream->oss.setup.partialfrag ||
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1381
1382
1383
1384
  			    runtime->oss.buffer_used == runtime->oss.period_bytes) {
  				tmp = snd_pcm_oss_write2(substream, runtime->oss.buffer + runtime->oss.period_ptr, 
  							 runtime->oss.buffer_used - runtime->oss.period_ptr, 1);
  				if (tmp <= 0)
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1385
  					goto err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1386
1387
1388
1389
1390
1391
  				runtime->oss.bytes += tmp;
  				runtime->oss.period_ptr += tmp;
  				runtime->oss.period_ptr %= runtime->oss.period_bytes;
  				if (runtime->oss.period_ptr == 0 ||
  				    runtime->oss.period_ptr == runtime->oss.buffer_used)
  					runtime->oss.buffer_used = 0;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1392
1393
1394
1395
  				else if ((substream->f_flags & O_NONBLOCK) != 0) {
  					tmp = -EAGAIN;
  					goto err;
  				}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1396
1397
  			}
  		} else {
4d23359b7   Clemens Ladisch   [ALSA] sparse add...
1398
1399
1400
  			tmp = snd_pcm_oss_write2(substream,
  						 (const char __force *)buf,
  						 runtime->oss.period_bytes, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1401
  			if (tmp <= 0)
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1402
  				goto err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1403
1404
1405
1406
  			runtime->oss.bytes += tmp;
  			buf += tmp;
  			bytes -= tmp;
  			xfer += tmp;
0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
1407
  			if ((substream->f_flags & O_NONBLOCK) != 0 &&
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1408
1409
1410
1411
  			    tmp != runtime->oss.period_bytes)
  				break;
  		}
  	}
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1412
  	mutex_unlock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1413
  	return xfer;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1414
1415
1416
1417
  
   err:
  	mutex_unlock(&runtime->oss.params_lock);
  	return xfer > 0 ? (snd_pcm_sframes_t)xfer : tmp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1418
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1419
  static ssize_t snd_pcm_oss_read2(struct snd_pcm_substream *substream, char *buf, size_t bytes, int in_kernel)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1420
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1421
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1422
  	snd_pcm_sframes_t frames, frames1;
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
1423
  #ifdef CONFIG_SND_PCM_OSS_PLUGINS
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1424
  	char __user *final_dst = (char __force __user *)buf;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1425
  	if (runtime->oss.plugin_first) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1426
  		struct snd_pcm_plugin_channel *channels;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
  		size_t oss_frame_bytes = (runtime->oss.plugin_last->dst_width * runtime->oss.plugin_last->dst_format.channels) / 8;
  		if (!in_kernel)
  			buf = runtime->oss.buffer;
  		frames = bytes / oss_frame_bytes;
  		frames1 = snd_pcm_plug_client_channels_buf(substream, buf, frames, &channels);
  		if (frames1 < 0)
  			return frames1;
  		frames1 = snd_pcm_plug_read_transfer(substream, channels, frames1);
  		if (frames1 <= 0)
  			return frames1;
  		bytes = frames1 * oss_frame_bytes;
  		if (!in_kernel && copy_to_user(final_dst, buf, bytes))
  			return -EFAULT;
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
1440
1441
1442
  	} else
  #endif
  	{
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1443
1444
1445
1446
1447
1448
1449
1450
  		frames = bytes_to_frames(runtime, bytes);
  		frames1 = snd_pcm_oss_read3(substream, buf, frames, in_kernel);
  		if (frames1 <= 0)
  			return frames1;
  		bytes = frames_to_bytes(runtime, frames1);
  	}
  	return bytes;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1451
  static ssize_t snd_pcm_oss_read1(struct snd_pcm_substream *substream, char __user *buf, size_t bytes)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1452
1453
1454
  {
  	size_t xfer = 0;
  	ssize_t tmp;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1455
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1456

9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
1457
  	if (atomic_read(&substream->mmap_count))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1458
1459
1460
1461
  		return -ENXIO;
  
  	if ((tmp = snd_pcm_oss_make_ready(substream)) < 0)
  		return tmp;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1462
  	mutex_lock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1463
1464
1465
1466
1467
  	while (bytes > 0) {
  		if (bytes < runtime->oss.period_bytes || runtime->oss.buffer_used > 0) {
  			if (runtime->oss.buffer_used == 0) {
  				tmp = snd_pcm_oss_read2(substream, runtime->oss.buffer, runtime->oss.period_bytes, 1);
  				if (tmp <= 0)
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1468
  					goto err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1469
1470
1471
1472
1473
1474
1475
  				runtime->oss.bytes += tmp;
  				runtime->oss.period_ptr = tmp;
  				runtime->oss.buffer_used = tmp;
  			}
  			tmp = bytes;
  			if ((size_t) tmp > runtime->oss.buffer_used)
  				tmp = runtime->oss.buffer_used;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1476
1477
1478
1479
  			if (copy_to_user(buf, runtime->oss.buffer + (runtime->oss.period_ptr - runtime->oss.buffer_used), tmp)) {
  				tmp = -EFAULT;
  				goto err;
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1480
1481
1482
1483
1484
  			buf += tmp;
  			bytes -= tmp;
  			xfer += tmp;
  			runtime->oss.buffer_used -= tmp;
  		} else {
4d23359b7   Clemens Ladisch   [ALSA] sparse add...
1485
1486
  			tmp = snd_pcm_oss_read2(substream, (char __force *)buf,
  						runtime->oss.period_bytes, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1487
  			if (tmp <= 0)
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1488
  				goto err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1489
1490
1491
1492
1493
1494
  			runtime->oss.bytes += tmp;
  			buf += tmp;
  			bytes -= tmp;
  			xfer += tmp;
  		}
  	}
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1495
  	mutex_unlock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1496
  	return xfer;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1497
1498
1499
1500
  
   err:
  	mutex_unlock(&runtime->oss.params_lock);
  	return xfer > 0 ? (snd_pcm_sframes_t)xfer : tmp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1501
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1502
  static int snd_pcm_oss_reset(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1503
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1504
  	struct snd_pcm_substream *substream;
60686aa00   Takashi Iwai   ALSA: Fix SNDCTL_...
1505
1506
  	struct snd_pcm_runtime *runtime;
  	int i;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1507

60686aa00   Takashi Iwai   ALSA: Fix SNDCTL_...
1508
1509
1510
1511
1512
  	for (i = 0; i < 2; i++) { 
  		substream = pcm_oss_file->streams[i];
  		if (!substream)
  			continue;
  		runtime = substream->runtime;
bf1bbb5a4   Takashi Iwai   [ALSA] Tiny clean...
1513
  		snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
60686aa00   Takashi Iwai   ALSA: Fix SNDCTL_...
1514
1515
1516
1517
  		runtime->oss.prepare = 1;
  		runtime->oss.buffer_used = 0;
  		runtime->oss.prev_hw_ptr_period = 0;
  		runtime->oss.period_ptr = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1518
1519
1520
  	}
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1521
  static int snd_pcm_oss_post(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1522
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1523
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1524
1525
1526
1527
1528
1529
  	int err;
  
  	substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	if (substream != NULL) {
  		if ((err = snd_pcm_oss_make_ready(substream)) < 0)
  			return err;
bf1bbb5a4   Takashi Iwai   [ALSA] Tiny clean...
1530
  		snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_START, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1531
1532
1533
1534
1535
  	}
  	/* note: all errors from the start action are ignored */
  	/* OSS apps do not know, how to handle them */
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1536
  static int snd_pcm_oss_sync1(struct snd_pcm_substream *substream, size_t size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1537
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1538
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1539
  	ssize_t result = 0;
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1540
  	snd_pcm_state_t state;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1541
1542
1543
1544
1545
1546
1547
  	long res;
  	wait_queue_t wait;
  
  	runtime = substream->runtime;
  	init_waitqueue_entry(&wait, current);
  	add_wait_queue(&runtime->sleep, &wait);
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
1548
1549
  	printk(KERN_DEBUG "sync1: size = %li
  ", size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
  #endif
  	while (1) {
  		result = snd_pcm_oss_write2(substream, runtime->oss.buffer, size, 1);
  		if (result > 0) {
  			runtime->oss.buffer_used = 0;
  			result = 0;
  			break;
  		}
  		if (result != 0 && result != -EAGAIN)
  			break;
  		result = 0;
  		set_current_state(TASK_INTERRUPTIBLE);
  		snd_pcm_stream_lock_irq(substream);
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1563
  		state = runtime->status->state;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1564
  		snd_pcm_stream_unlock_irq(substream);
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1565
  		if (state != SNDRV_PCM_STATE_RUNNING) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
  			set_current_state(TASK_RUNNING);
  			break;
  		}
  		res = schedule_timeout(10 * HZ);
  		if (signal_pending(current)) {
  			result = -ERESTARTSYS;
  			break;
  		}
  		if (res == 0) {
  			snd_printk(KERN_ERR "OSS sync error - DMA timeout
  ");
  			result = -EIO;
  			break;
  		}
  	}
  	remove_wait_queue(&runtime->sleep, &wait);
  	return result;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1584
  static int snd_pcm_oss_sync(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1585
1586
1587
  {
  	int err = 0;
  	unsigned int saved_f_flags;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1588
1589
  	struct snd_pcm_substream *substream;
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1590
1591
1592
1593
1594
1595
1596
  	snd_pcm_format_t format;
  	unsigned long width;
  	size_t size;
  
  	substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	if (substream != NULL) {
  		runtime = substream->runtime;
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
1597
  		if (atomic_read(&substream->mmap_count))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1598
1599
1600
1601
1602
  			goto __direct;
  		if ((err = snd_pcm_oss_make_ready(substream)) < 0)
  			return err;
  		format = snd_pcm_oss_format_from(runtime->oss.format);
  		width = snd_pcm_format_physical_width(format);
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1603
  		mutex_lock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1604
1605
  		if (runtime->oss.buffer_used > 0) {
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
1606
1607
  			printk(KERN_DEBUG "sync: buffer_used
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1608
1609
1610
1611
1612
1613
  #endif
  			size = (8 * (runtime->oss.period_bytes - runtime->oss.buffer_used) + 7) / width;
  			snd_pcm_format_set_silence(format,
  						   runtime->oss.buffer + runtime->oss.buffer_used,
  						   size);
  			err = snd_pcm_oss_sync1(substream, runtime->oss.period_bytes);
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1614
1615
  			if (err < 0) {
  				mutex_unlock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1616
  				return err;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1617
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1618
1619
  		} else if (runtime->oss.period_ptr > 0) {
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
1620
1621
  			printk(KERN_DEBUG "sync: period_ptr
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1622
1623
1624
1625
1626
1627
  #endif
  			size = runtime->oss.period_bytes - runtime->oss.period_ptr;
  			snd_pcm_format_set_silence(format,
  						   runtime->oss.buffer,
  						   size * 8 / width);
  			err = snd_pcm_oss_sync1(substream, size);
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1628
1629
  			if (err < 0) {
  				mutex_unlock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1630
  				return err;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1631
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
  		}
  		/*
  		 * The ALSA's period might be a bit large than OSS one.
  		 * Fill the remain portion of ALSA period with zeros.
  		 */
  		size = runtime->control->appl_ptr % runtime->period_size;
  		if (size > 0) {
  			size = runtime->period_size - size;
  			if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) {
  				size = (runtime->frame_bits * size) / 8;
  				while (size > 0) {
  					mm_segment_t fs;
  					size_t size1 = size < runtime->oss.period_bytes ? size : runtime->oss.period_bytes;
  					size -= size1;
  					size1 *= 8;
  					size1 /= runtime->sample_bits;
  					snd_pcm_format_set_silence(runtime->format,
  								   runtime->oss.buffer,
  								   size1);
4939c6603   Takashi Iwai   [ALSA] Fix Oops w...
1651
  					size1 /= runtime->channels; /* frames */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1652
  					fs = snd_enter_user();
fea952e5c   Clemens Ladisch   ALSA: core: spars...
1653
  					snd_pcm_lib_write(substream, (void __force __user *)runtime->oss.buffer, size1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1654
1655
1656
1657
1658
1659
1660
1661
  					snd_leave_user(fs);
  				}
  			} else if (runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED) {
  				void __user *buffers[runtime->channels];
  				memset(buffers, 0, runtime->channels * sizeof(void *));
  				snd_pcm_lib_writev(substream, buffers, size);
  			}
  		}
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
1662
  		mutex_unlock(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1663
1664
1665
1666
  		/*
  		 * finish sync: drain the buffer
  		 */
  	      __direct:
0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
1667
1668
  		saved_f_flags = substream->f_flags;
  		substream->f_flags &= ~O_NONBLOCK;
bf1bbb5a4   Takashi Iwai   [ALSA] Tiny clean...
1669
  		err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DRAIN, NULL);
0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
1670
  		substream->f_flags = saved_f_flags;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
  		if (err < 0)
  			return err;
  		runtime->oss.prepare = 1;
  	}
  
  	substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
  	if (substream != NULL) {
  		if ((err = snd_pcm_oss_make_ready(substream)) < 0)
  			return err;
  		runtime = substream->runtime;
bf1bbb5a4   Takashi Iwai   [ALSA] Tiny clean...
1681
  		err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1682
1683
1684
1685
1686
1687
1688
  		if (err < 0)
  			return err;
  		runtime->oss.buffer_used = 0;
  		runtime->oss.prepare = 1;
  	}
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1689
  static int snd_pcm_oss_set_rate(struct snd_pcm_oss_file *pcm_oss_file, int rate)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1690
1691
1692
1693
  {
  	int idx;
  
  	for (idx = 1; idx >= 0; --idx) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1694
1695
  		struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
  		struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
  		if (substream == NULL)
  			continue;
  		runtime = substream->runtime;
  		if (rate < 1000)
  			rate = 1000;
  		else if (rate > 192000)
  			rate = 192000;
  		if (runtime->oss.rate != rate) {
  			runtime->oss.params = 1;
  			runtime->oss.rate = rate;
  		}
  	}
  	return snd_pcm_oss_get_rate(pcm_oss_file);
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1710
  static int snd_pcm_oss_get_rate(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1711
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1712
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1713
1714
1715
1716
1717
1718
  	int err;
  	
  	if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
  		return err;
  	return substream->runtime->oss.rate;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1719
  static int snd_pcm_oss_set_channels(struct snd_pcm_oss_file *pcm_oss_file, unsigned int channels)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1720
1721
1722
1723
1724
1725
1726
  {
  	int idx;
  	if (channels < 1)
  		channels = 1;
  	if (channels > 128)
  		return -EINVAL;
  	for (idx = 1; idx >= 0; --idx) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1727
1728
  		struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
  		struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
  		if (substream == NULL)
  			continue;
  		runtime = substream->runtime;
  		if (runtime->oss.channels != channels) {
  			runtime->oss.params = 1;
  			runtime->oss.channels = channels;
  		}
  	}
  	return snd_pcm_oss_get_channels(pcm_oss_file);
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1739
  static int snd_pcm_oss_get_channels(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1740
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1741
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1742
1743
1744
1745
1746
1747
  	int err;
  	
  	if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
  		return err;
  	return substream->runtime->oss.channels;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1748
  static int snd_pcm_oss_get_block_size(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1749
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1750
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1751
1752
1753
1754
1755
1756
  	int err;
  	
  	if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
  		return err;
  	return substream->runtime->oss.period_bytes;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1757
  static int snd_pcm_oss_get_formats(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1758
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1759
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1760
1761
  	int err;
  	int direct;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1762
  	struct snd_pcm_hw_params *params;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1763
  	unsigned int formats = 0;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1764
  	struct snd_mask format_mask;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1765
1766
1767
1768
  	int fmt;
  
  	if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
  		return err;
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
1769
  	if (atomic_read(&substream->mmap_count))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1770
  		direct = 1;
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
1771
1772
  	else
  		direct = substream->oss.setup.direct;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1773
1774
1775
1776
  	if (!direct)
  		return AFMT_MU_LAW | AFMT_U8 |
  		       AFMT_S16_LE | AFMT_S16_BE |
  		       AFMT_S8 | AFMT_U16_LE |
24038a25e   Takashi Iwai   [ALSA] Add new AF...
1777
1778
  		       AFMT_U16_BE |
  			AFMT_S32_LE | AFMT_S32_BE |
7924f0cad   Roel Kluin   ALSA: pcm_oss: AF...
1779
  			AFMT_S24_LE | AFMT_S24_BE |
24038a25e   Takashi Iwai   [ALSA] Add new AF...
1780
  			AFMT_S24_PACKED;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1781
1782
1783
1784
1785
1786
1787
  	params = kmalloc(sizeof(*params), GFP_KERNEL);
  	if (!params)
  		return -ENOMEM;
  	_snd_pcm_hw_params_any(params);
  	err = snd_pcm_hw_refine(substream, params);
  	format_mask = *hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT); 
  	kfree(params);
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
1788
1789
  	if (err < 0)
  		return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1790
1791
1792
1793
1794
1795
1796
1797
1798
  	for (fmt = 0; fmt < 32; ++fmt) {
  		if (snd_mask_test(&format_mask, fmt)) {
  			int f = snd_pcm_oss_format_to(fmt);
  			if (f >= 0)
  				formats |= f;
  		}
  	}
  	return formats;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1799
  static int snd_pcm_oss_set_format(struct snd_pcm_oss_file *pcm_oss_file, int format)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1800
1801
1802
1803
1804
  {
  	int formats, idx;
  	
  	if (format != AFMT_QUERY) {
  		formats = snd_pcm_oss_get_formats(pcm_oss_file);
5c59e09d7   Steven Finney   [ALSA] Handle the...
1805
1806
  		if (formats < 0)
  			return formats;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1807
1808
1809
  		if (!(formats & format))
  			format = AFMT_U8;
  		for (idx = 1; idx >= 0; --idx) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1810
1811
  			struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
  			struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
  			if (substream == NULL)
  				continue;
  			runtime = substream->runtime;
  			if (runtime->oss.format != format) {
  				runtime->oss.params = 1;
  				runtime->oss.format = format;
  			}
  		}
  	}
  	return snd_pcm_oss_get_format(pcm_oss_file);
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1823
  static int snd_pcm_oss_get_format(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1824
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1825
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1826
1827
1828
1829
1830
1831
  	int err;
  	
  	if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
  		return err;
  	return substream->runtime->oss.format;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1832
  static int snd_pcm_oss_set_subdivide1(struct snd_pcm_substream *substream, int subdivide)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1833
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1834
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
  
  	if (substream == NULL)
  		return 0;
  	runtime = substream->runtime;
  	if (subdivide == 0) {
  		subdivide = runtime->oss.subdivision;
  		if (subdivide == 0)
  			subdivide = 1;
  		return subdivide;
  	}
  	if (runtime->oss.subdivision || runtime->oss.fragshift)
  		return -EINVAL;
  	if (subdivide != 1 && subdivide != 2 && subdivide != 4 &&
  	    subdivide != 8 && subdivide != 16)
  		return -EINVAL;
  	runtime->oss.subdivision = subdivide;
  	runtime->oss.params = 1;
  	return subdivide;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1854
  static int snd_pcm_oss_set_subdivide(struct snd_pcm_oss_file *pcm_oss_file, int subdivide)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1855
1856
1857
1858
  {
  	int err = -EINVAL, idx;
  
  	for (idx = 1; idx >= 0; --idx) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1859
  		struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1860
1861
1862
1863
1864
1865
1866
  		if (substream == NULL)
  			continue;
  		if ((err = snd_pcm_oss_set_subdivide1(substream, subdivide)) < 0)
  			return err;
  	}
  	return err;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1867
  static int snd_pcm_oss_set_fragment1(struct snd_pcm_substream *substream, unsigned int val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1868
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1869
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
  
  	if (substream == NULL)
  		return 0;
  	runtime = substream->runtime;
  	if (runtime->oss.subdivision || runtime->oss.fragshift)
  		return -EINVAL;
  	runtime->oss.fragshift = val & 0xffff;
  	runtime->oss.maxfrags = (val >> 16) & 0xffff;
  	if (runtime->oss.fragshift < 4)		/* < 16 */
  		runtime->oss.fragshift = 4;
  	if (runtime->oss.maxfrags < 2)
  		runtime->oss.maxfrags = 2;
  	runtime->oss.params = 1;
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1885
  static int snd_pcm_oss_set_fragment(struct snd_pcm_oss_file *pcm_oss_file, unsigned int val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1886
1887
1888
1889
  {
  	int err = -EINVAL, idx;
  
  	for (idx = 1; idx >= 0; --idx) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1890
  		struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
  		if (substream == NULL)
  			continue;
  		if ((err = snd_pcm_oss_set_fragment1(substream, val)) < 0)
  			return err;
  	}
  	return err;
  }
  
  static int snd_pcm_oss_nonblock(struct file * file)
  {
db1dd4d37   Jonathan Corbet   Use f_lock to pro...
1901
  	spin_lock(&file->f_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1902
  	file->f_flags |= O_NONBLOCK;
db1dd4d37   Jonathan Corbet   Use f_lock to pro...
1903
  	spin_unlock(&file->f_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1904
1905
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1906
  static int snd_pcm_oss_get_caps1(struct snd_pcm_substream *substream, int res)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
  {
  
  	if (substream == NULL) {
  		res &= ~DSP_CAP_DUPLEX;
  		return res;
  	}
  #ifdef DSP_CAP_MULTI
  	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  		if (substream->pstr->substream_count > 1)
  			res |= DSP_CAP_MULTI;
  #endif
  	/* DSP_CAP_REALTIME is set all times: */
  	/* all ALSA drivers can return actual pointer in ring buffer */
  #if defined(DSP_CAP_REALTIME) && 0
  	{
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1922
  		struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1923
1924
1925
1926
1927
1928
  		if (runtime->info & (SNDRV_PCM_INFO_BLOCK_TRANSFER|SNDRV_PCM_INFO_BATCH))
  			res &= ~DSP_CAP_REALTIME;
  	}
  #endif
  	return res;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1929
  static int snd_pcm_oss_get_caps(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1930
1931
1932
1933
1934
  {
  	int result, idx;
  	
  	result = DSP_CAP_TRIGGER | DSP_CAP_MMAP	| DSP_CAP_DUPLEX | DSP_CAP_REALTIME;
  	for (idx = 0; idx < 2; idx++) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1935
  		struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1936
1937
1938
1939
1940
  		result = snd_pcm_oss_get_caps1(substream, result);
  	}
  	result |= 0x0001;	/* revision - same as SB AWE 64 */
  	return result;
  }
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
1941
1942
  static void snd_pcm_oss_simulate_fill(struct snd_pcm_substream *substream,
  				      snd_pcm_uframes_t hw_ptr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1943
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1944
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1945
1946
1947
1948
1949
  	snd_pcm_uframes_t appl_ptr;
  	appl_ptr = hw_ptr + runtime->buffer_size;
  	appl_ptr %= runtime->boundary;
  	runtime->control->appl_ptr = appl_ptr;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1950
  static int snd_pcm_oss_set_trigger(struct snd_pcm_oss_file *pcm_oss_file, int trigger)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1951
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
1952
1953
  	struct snd_pcm_runtime *runtime;
  	struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1954
1955
1956
  	int err, cmd;
  
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
1957
1958
  	printk(KERN_DEBUG "pcm_oss: trigger = 0x%x
  ", trigger);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
  #endif
  	
  	psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	csubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
  
  	if (psubstream) {
  		if ((err = snd_pcm_oss_make_ready(psubstream)) < 0)
  			return err;
  	}
  	if (csubstream) {
  		if ((err = snd_pcm_oss_make_ready(csubstream)) < 0)
  			return err;
  	}
        	if (psubstream) {
        		runtime = psubstream->runtime;
  		if (trigger & PCM_ENABLE_OUTPUT) {
  			if (runtime->oss.trigger)
  				goto _skip1;
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
1977
  			if (atomic_read(&psubstream->mmap_count))
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
1978
1979
  				snd_pcm_oss_simulate_fill(psubstream,
  						get_hw_ptr_period(runtime));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
  			runtime->oss.trigger = 1;
  			runtime->start_threshold = 1;
  			cmd = SNDRV_PCM_IOCTL_START;
  		} else {
  			if (!runtime->oss.trigger)
  				goto _skip1;
  			runtime->oss.trigger = 0;
  			runtime->start_threshold = runtime->boundary;
  			cmd = SNDRV_PCM_IOCTL_DROP;
  			runtime->oss.prepare = 1;
  		}
bf1bbb5a4   Takashi Iwai   [ALSA] Tiny clean...
1991
  		err = snd_pcm_kernel_ioctl(psubstream, cmd, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
  		if (err < 0)
  			return err;
  	}
   _skip1:
  	if (csubstream) {
        		runtime = csubstream->runtime;
  		if (trigger & PCM_ENABLE_INPUT) {
  			if (runtime->oss.trigger)
  				goto _skip2;
  			runtime->oss.trigger = 1;
  			runtime->start_threshold = 1;
  			cmd = SNDRV_PCM_IOCTL_START;
  		} else {
  			if (!runtime->oss.trigger)
  				goto _skip2;
  			runtime->oss.trigger = 0;
  			runtime->start_threshold = runtime->boundary;
  			cmd = SNDRV_PCM_IOCTL_DROP;
  			runtime->oss.prepare = 1;
  		}
bf1bbb5a4   Takashi Iwai   [ALSA] Tiny clean...
2012
  		err = snd_pcm_kernel_ioctl(csubstream, cmd, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2013
2014
2015
2016
2017
2018
  		if (err < 0)
  			return err;
  	}
   _skip2:
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2019
  static int snd_pcm_oss_get_trigger(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2020
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2021
  	struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
  	int result = 0;
  
  	psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	csubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
  	if (psubstream && psubstream->runtime && psubstream->runtime->oss.trigger)
  		result |= PCM_ENABLE_OUTPUT;
  	if (csubstream && csubstream->runtime && csubstream->runtime->oss.trigger)
  		result |= PCM_ENABLE_INPUT;
  	return result;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2032
  static int snd_pcm_oss_get_odelay(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2033
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2034
2035
  	struct snd_pcm_substream *substream;
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
  	snd_pcm_sframes_t delay;
  	int err;
  
  	substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	if (substream == NULL)
  		return -EINVAL;
  	if ((err = snd_pcm_oss_make_ready(substream)) < 0)
  		return err;
  	runtime = substream->runtime;
  	if (runtime->oss.params || runtime->oss.prepare)
  		return 0;
bf1bbb5a4   Takashi Iwai   [ALSA] Tiny clean...
2047
  	err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, &delay);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2048
2049
2050
2051
2052
2053
  	if (err == -EPIPE)
  		delay = 0;	/* hack for broken OSS applications */
  	else if (err < 0)
  		return err;
  	return snd_pcm_oss_bytes(substream, delay);
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2054
  static int snd_pcm_oss_get_ptr(struct snd_pcm_oss_file *pcm_oss_file, int stream, struct count_info __user * _info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2055
  {	
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2056
2057
  	struct snd_pcm_substream *substream;
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
  	snd_pcm_sframes_t delay;
  	int fixup;
  	struct count_info info;
  	int err;
  
  	if (_info == NULL)
  		return -EFAULT;
  	substream = pcm_oss_file->streams[stream];
  	if (substream == NULL)
  		return -EINVAL;
  	if ((err = snd_pcm_oss_make_ready(substream)) < 0)
  		return err;
  	runtime = substream->runtime;
  	if (runtime->oss.params || runtime->oss.prepare) {
  		memset(&info, 0, sizeof(info));
  		if (copy_to_user(_info, &info, sizeof(info)))
  			return -EFAULT;
  		return 0;
  	}
  	if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
  		err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, &delay);
  		if (err == -EPIPE || err == -ESTRPIPE || (! err && delay < 0)) {
  			err = 0;
  			delay = 0;
  			fixup = 0;
  		} else {
  			fixup = runtime->oss.buffer_used;
  		}
  	} else {
  		err = snd_pcm_oss_capture_position_fixup(substream, &delay);
  		fixup = -runtime->oss.buffer_used;
  	}
  	if (err < 0)
  		return err;
  	info.ptr = snd_pcm_oss_bytes(substream, runtime->status->hw_ptr % runtime->buffer_size);
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
2093
  	if (atomic_read(&substream->mmap_count)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2094
  		snd_pcm_sframes_t n;
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
2095
2096
  		delay = get_hw_ptr_period(runtime);
  		n = delay - runtime->oss.prev_hw_ptr_period;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2097
2098
2099
  		if (n < 0)
  			n += runtime->boundary;
  		info.blocks = n / runtime->period_size;
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
2100
  		runtime->oss.prev_hw_ptr_period = delay;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2101
2102
2103
2104
  		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  			snd_pcm_oss_simulate_fill(substream, delay);
  		info.bytes = snd_pcm_oss_bytes(substream, runtime->status->hw_ptr) & INT_MAX;
  	} else {
5ac0fab95   Jaroslav Kysela   [ALSA] OSS PCM em...
2105
  		delay = snd_pcm_oss_bytes(substream, delay);
fb4bd0adc   Jaroslav Kysela   [ALSA] OSS PCM em...
2106
  		if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2107
  			if (substream->oss.setup.buggyptr)
10f69f9e4   Takashi Iwai   [ALSA] pcm-oss - ...
2108
2109
2110
  				info.blocks = (runtime->oss.buffer_bytes - delay - fixup) / runtime->oss.period_bytes;
  			else
  				info.blocks = (delay + fixup) / runtime->oss.period_bytes;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2111
  			info.bytes = (runtime->oss.bytes - delay) & INT_MAX;
fb4bd0adc   Jaroslav Kysela   [ALSA] OSS PCM em...
2112
  		} else {
5ac0fab95   Jaroslav Kysela   [ALSA] OSS PCM em...
2113
2114
  			delay += fixup;
  			info.blocks = delay / runtime->oss.period_bytes;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2115
  			info.bytes = (runtime->oss.bytes + delay) & INT_MAX;
fb4bd0adc   Jaroslav Kysela   [ALSA] OSS PCM em...
2116
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2117
2118
2119
2120
2121
  	}
  	if (copy_to_user(_info, &info, sizeof(info)))
  		return -EFAULT;
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2122
  static int snd_pcm_oss_get_space(struct snd_pcm_oss_file *pcm_oss_file, int stream, struct audio_buf_info __user *_info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2123
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2124
2125
  	struct snd_pcm_substream *substream;
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
  	snd_pcm_sframes_t avail;
  	int fixup;
  	struct audio_buf_info info;
  	int err;
  
  	if (_info == NULL)
  		return -EFAULT;
  	substream = pcm_oss_file->streams[stream];
  	if (substream == NULL)
  		return -EINVAL;
  	runtime = substream->runtime;
  
  	if (runtime->oss.params &&
  	    (err = snd_pcm_oss_change_params(substream)) < 0)
  		return err;
  
  	info.fragsize = runtime->oss.period_bytes;
  	info.fragstotal = runtime->periods;
  	if (runtime->oss.prepare) {
  		if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
  			info.bytes = runtime->oss.period_bytes * runtime->oss.periods;
  			info.fragments = runtime->oss.periods;
  		} else {
  			info.bytes = 0;
  			info.fragments = 0;
  		}
  	} else {
  		if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
  			err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, &avail);
  			if (err == -EPIPE || err == -ESTRPIPE || (! err && avail < 0)) {
  				avail = runtime->buffer_size;
  				err = 0;
  				fixup = 0;
  			} else {
  				avail = runtime->buffer_size - avail;
  				fixup = -runtime->oss.buffer_used;
  			}
  		} else {
  			err = snd_pcm_oss_capture_position_fixup(substream, &avail);
  			fixup = runtime->oss.buffer_used;
  		}
  		if (err < 0)
  			return err;
  		info.bytes = snd_pcm_oss_bytes(substream, avail) + fixup;
  		info.fragments = info.bytes / runtime->oss.period_bytes;
  	}
  
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
2174
2175
2176
2177
  	printk(KERN_DEBUG "pcm_oss: space: bytes = %i, fragments = %i, "
  	       "fragstotal = %i, fragsize = %i
  ",
  	       info.bytes, info.fragments, info.fragstotal, info.fragsize);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2178
2179
2180
2181
2182
  #endif
  	if (copy_to_user(_info, &info, sizeof(info)))
  		return -EFAULT;
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2183
  static int snd_pcm_oss_get_mapbuf(struct snd_pcm_oss_file *pcm_oss_file, int stream, struct buffmem_desc __user * _info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2184
2185
2186
2187
2188
2189
  {
  	// it won't be probably implemented
  	// snd_printd("TODO: snd_pcm_oss_get_mapbuf
  ");
  	return -EINVAL;
  }
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2190
  static const char *strip_task_path(const char *path)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2191
  {
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2192
2193
  	const char *ptr, *ptrl = NULL;
  	for (ptr = path; *ptr; ptr++) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2194
2195
  		if (*ptr == '/')
  			ptrl = ptr + 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2196
  	}
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
  	return ptrl;
  }
  
  static void snd_pcm_oss_look_for_setup(struct snd_pcm *pcm, int stream,
  				      const char *task_name,
  				      struct snd_pcm_oss_setup *rsetup)
  {
  	struct snd_pcm_oss_setup *setup;
  
  	mutex_lock(&pcm->streams[stream].oss.setup_mutex);
  	do {
  		for (setup = pcm->streams[stream].oss.setup_list; setup;
  		     setup = setup->next) {
  			if (!strcmp(setup->task_name, task_name))
  				goto out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2212
  		}
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2213
2214
2215
2216
  	} while ((task_name = strip_task_path(task_name)) != NULL);
   out:
  	if (setup)
  		*rsetup = *setup;
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2217
  	mutex_unlock(&pcm->streams[stream].oss.setup_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2218
  }
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
  static void snd_pcm_oss_release_substream(struct snd_pcm_substream *substream)
  {
  	struct snd_pcm_runtime *runtime;
  	runtime = substream->runtime;
  	vfree(runtime->oss.buffer);
  	runtime->oss.buffer = NULL;
  #ifdef CONFIG_SND_PCM_OSS_PLUGINS
  	snd_pcm_oss_plugin_clear(substream);
  #endif
  	substream->oss.oss = 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2230
2231
  static void snd_pcm_oss_init_substream(struct snd_pcm_substream *substream,
  				       struct snd_pcm_oss_setup *setup,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2232
2233
  				       int minor)
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2234
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2235
2236
  
  	substream->oss.oss = 1;
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2237
  	substream->oss.setup = *setup;
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2238
  	if (setup->nonblock)
0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
2239
  		substream->f_flags |= O_NONBLOCK;
1576274d3   Takashi Iwai   [ALSA] Fix Oops o...
2240
  	else if (setup->block)
0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
2241
  		substream->f_flags &= ~O_NONBLOCK;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2242
2243
2244
2245
  	runtime = substream->runtime;
  	runtime->oss.params = 1;
  	runtime->oss.trigger = 1;
  	runtime->oss.rate = 8000;
e3a5d59a1   Takashi Iwai   [ALSA] Fix races ...
2246
  	mutex_init(&runtime->oss.params_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
  	switch (SNDRV_MINOR_OSS_DEVICE(minor)) {
  	case SNDRV_MINOR_OSS_PCM_8:
  		runtime->oss.format = AFMT_U8;
  		break;
  	case SNDRV_MINOR_OSS_PCM_16:
  		runtime->oss.format = AFMT_S16_LE;
  		break;
  	default:
  		runtime->oss.format = AFMT_MU_LAW;
  	}
  	runtime->oss.channels = 1;
  	runtime->oss.fragshift = 0;
  	runtime->oss.maxfrags = 0;
  	runtime->oss.subdivision = 0;
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2261
  	substream->pcm_release = snd_pcm_oss_release_substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2262
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2263
  static int snd_pcm_oss_release_file(struct snd_pcm_oss_file *pcm_oss_file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2264
2265
  {
  	int cidx;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
2266
2267
  	if (!pcm_oss_file)
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2268
  	for (cidx = 0; cidx < 2; ++cidx) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2269
  		struct snd_pcm_substream *substream = pcm_oss_file->streams[cidx];
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2270
2271
  		if (substream)
  			snd_pcm_release_substream(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2272
2273
2274
2275
2276
2277
  	}
  	kfree(pcm_oss_file);
  	return 0;
  }
  
  static int snd_pcm_oss_open_file(struct file *file,
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2278
2279
  				 struct snd_pcm *pcm,
  				 struct snd_pcm_oss_file **rpcm_oss_file,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2280
  				 int minor,
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2281
  				 struct snd_pcm_oss_setup *setup)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2282
  {
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2283
  	int idx, err;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2284
  	struct snd_pcm_oss_file *pcm_oss_file;
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2285
  	struct snd_pcm_substream *substream;
aeb5d7270   Al Viro   [PATCH] introduce...
2286
  	fmode_t f_mode = file->f_mode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2287

7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
2288
2289
  	if (rpcm_oss_file)
  		*rpcm_oss_file = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2290

ca2c09665   Takashi Iwai   [ALSA] Replace wi...
2291
  	pcm_oss_file = kzalloc(sizeof(*pcm_oss_file), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2292
2293
2294
2295
2296
2297
  	if (pcm_oss_file == NULL)
  		return -ENOMEM;
  
  	if ((f_mode & (FMODE_WRITE|FMODE_READ)) == (FMODE_WRITE|FMODE_READ) &&
  	    (pcm->info_flags & SNDRV_PCM_INFO_HALF_DUPLEX))
  		f_mode = FMODE_WRITE;
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2298

0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
2299
  	file->f_flags &= ~O_APPEND;
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2300
  	for (idx = 0; idx < 2; idx++) {
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2301
  		if (setup[idx].disable)
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2302
  			continue;
6cb53e7ed   Takashi Iwai   [ALSA] Don't reje...
2303
2304
  		if (! pcm->streams[idx].substream_count)
  			continue; /* no matching substream */
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2305
2306
2307
2308
2309
2310
2311
2312
2313
  		if (idx == SNDRV_PCM_STREAM_PLAYBACK) {
  			if (! (f_mode & FMODE_WRITE))
  				continue;
  		} else {
  			if (! (f_mode & FMODE_READ))
  				continue;
  		}
  		err = snd_pcm_open_substream(pcm, idx, file, &substream);
  		if (err < 0) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2314
2315
2316
  			snd_pcm_oss_release_file(pcm_oss_file);
  			return err;
  		}
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2317
2318
  
  		pcm_oss_file->streams[idx] = substream;
1576274d3   Takashi Iwai   [ALSA] Fix Oops o...
2319
  		substream->file = pcm_oss_file;
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2320
  		snd_pcm_oss_init_substream(substream, &setup[idx], minor);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2321
2322
  	}
  	
bbdc1b7db   OGAWA Hirofumi   [ALSA] pcm_oss: f...
2323
  	if (!pcm_oss_file->streams[0] && !pcm_oss_file->streams[1]) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2324
2325
2326
  		snd_pcm_oss_release_file(pcm_oss_file);
  		return -EINVAL;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2327
2328
  
  	file->private_data = pcm_oss_file;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
2329
2330
  	if (rpcm_oss_file)
  		*rpcm_oss_file = pcm_oss_file;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2331
2332
  	return 0;
  }
93f2e3784   Takashi Iwai   [ALSA] Make snd_t...
2333
2334
2335
  static int snd_task_name(struct task_struct *task, char *name, size_t size)
  {
  	unsigned int idx;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
2336
2337
  	if (snd_BUG_ON(!task || !name || size < 2))
  		return -EINVAL;
93f2e3784   Takashi Iwai   [ALSA] Make snd_t...
2338
2339
2340
2341
2342
  	for (idx = 0; idx < sizeof(task->comm) && idx + 1 < size; idx++)
  		name[idx] = task->comm[idx];
  	name[idx] = '\0';
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2343
2344
  static int snd_pcm_oss_open(struct inode *inode, struct file *file)
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2345
2346
  	int err;
  	char task_name[32];
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2347
2348
  	struct snd_pcm *pcm;
  	struct snd_pcm_oss_file *pcm_oss_file;
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2349
  	struct snd_pcm_oss_setup setup[2];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2350
2351
  	int nonblock;
  	wait_queue_t wait;
02f4865fa   Takashi Iwai   ALSA: core - Defi...
2352
2353
2354
  	err = nonseekable_open(inode, file);
  	if (err < 0)
  		return err;
f87135f56   Clemens Ladisch   [ALSA] dynamic mi...
2355
2356
  	pcm = snd_lookup_oss_minor_data(iminor(inode),
  					SNDRV_OSS_DEVICE_TYPE_PCM);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
  	if (pcm == NULL) {
  		err = -ENODEV;
  		goto __error1;
  	}
  	err = snd_card_file_add(pcm->card, file);
  	if (err < 0)
  		goto __error1;
  	if (!try_module_get(pcm->card->module)) {
  		err = -EFAULT;
  		goto __error2;
  	}
  	if (snd_task_name(current, task_name, sizeof(task_name)) < 0) {
  		err = -EFAULT;
  		goto __error;
  	}
1576274d3   Takashi Iwai   [ALSA] Fix Oops o...
2372
  	memset(setup, 0, sizeof(setup));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2373
  	if (file->f_mode & FMODE_WRITE)
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2374
2375
  		snd_pcm_oss_look_for_setup(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  					   task_name, &setup[0]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2376
  	if (file->f_mode & FMODE_READ)
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2377
2378
  		snd_pcm_oss_look_for_setup(pcm, SNDRV_PCM_STREAM_CAPTURE,
  					   task_name, &setup[1]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2379
2380
  
  	nonblock = !!(file->f_flags & O_NONBLOCK);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2381
2382
2383
2384
2385
  	if (!nonblock)
  		nonblock = nonblock_open;
  
  	init_waitqueue_entry(&wait, current);
  	add_wait_queue(&pcm->open_wait, &wait);
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2386
  	mutex_lock(&pcm->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2387
2388
  	while (1) {
  		err = snd_pcm_oss_open_file(file, pcm, &pcm_oss_file,
3bf75f9b9   Takashi Iwai   [ALSA] Clean up P...
2389
  					    iminor(inode), setup);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
  		if (err >= 0)
  			break;
  		if (err == -EAGAIN) {
  			if (nonblock) {
  				err = -EBUSY;
  				break;
  			}
  		} else
  			break;
  		set_current_state(TASK_INTERRUPTIBLE);
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2400
  		mutex_unlock(&pcm->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2401
  		schedule();
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2402
  		mutex_lock(&pcm->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2403
2404
2405
2406
2407
2408
  		if (signal_pending(current)) {
  			err = -ERESTARTSYS;
  			break;
  		}
  	}
  	remove_wait_queue(&pcm->open_wait, &wait);
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2409
  	mutex_unlock(&pcm->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
  	if (err < 0)
  		goto __error;
  	return err;
  
        __error:
       	module_put(pcm->card->module);
        __error2:
        	snd_card_file_remove(pcm->card, file);
        __error1:
  	return err;
  }
  
  static int snd_pcm_oss_release(struct inode *inode, struct file *file)
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2424
2425
2426
  	struct snd_pcm *pcm;
  	struct snd_pcm_substream *substream;
  	struct snd_pcm_oss_file *pcm_oss_file;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2427
2428
2429
2430
2431
  
  	pcm_oss_file = file->private_data;
  	substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	if (substream == NULL)
  		substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
2432
2433
  	if (snd_BUG_ON(!substream))
  		return -ENXIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2434
  	pcm = substream->pcm;
de1b8b93a   Takashi Iwai   [ALSA] Fix hang-u...
2435
2436
  	if (!pcm->card->shutdown)
  		snd_pcm_oss_sync(pcm_oss_file);
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2437
  	mutex_lock(&pcm->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2438
  	snd_pcm_oss_release_file(pcm_oss_file);
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2439
  	mutex_unlock(&pcm->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2440
2441
2442
2443
2444
2445
2446
2447
  	wake_up(&pcm->open_wait);
  	module_put(pcm->card->module);
  	snd_card_file_remove(pcm->card, file);
  	return 0;
  }
  
  static long snd_pcm_oss_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2448
  	struct snd_pcm_oss_file *pcm_oss_file;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
  	int __user *p = (int __user *)arg;
  	int res;
  
  	pcm_oss_file = file->private_data;
  	if (cmd == OSS_GETVERSION)
  		return put_user(SNDRV_OSS_VERSION, p);
  	if (cmd == OSS_ALSAEMULVER)
  		return put_user(1, p);
  #if defined(CONFIG_SND_MIXER_OSS) || (defined(MODULE) && defined(CONFIG_SND_MIXER_OSS_MODULE))
  	if (((cmd >> 8) & 0xff) == 'M')	{	/* mixer ioctl - for OSS compatibility */
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2459
  		struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2460
2461
2462
2463
2464
2465
  		int idx;
  		for (idx = 0; idx < 2; ++idx) {
  			substream = pcm_oss_file->streams[idx];
  			if (substream != NULL)
  				break;
  		}
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
2466
2467
  		if (snd_BUG_ON(idx >= 2))
  			return -ENXIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2468
2469
2470
2471
2472
2473
  		return snd_mixer_oss_ioctl_card(substream->pcm->card, cmd, arg);
  	}
  #endif
  	if (((cmd >> 8) & 0xff) != 'P')
  		return -EINVAL;
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
2474
2475
  	printk(KERN_DEBUG "pcm_oss: ioctl = 0x%x
  ", cmd);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
  #endif
  	switch (cmd) {
  	case SNDCTL_DSP_RESET:
  		return snd_pcm_oss_reset(pcm_oss_file);
  	case SNDCTL_DSP_SYNC:
  		return snd_pcm_oss_sync(pcm_oss_file);
  	case SNDCTL_DSP_SPEED:
  		if (get_user(res, p))
  			return -EFAULT;
  		if ((res = snd_pcm_oss_set_rate(pcm_oss_file, res))<0)
  			return res;
  		return put_user(res, p);
  	case SOUND_PCM_READ_RATE:
  		res = snd_pcm_oss_get_rate(pcm_oss_file);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SNDCTL_DSP_STEREO:
  		if (get_user(res, p))
  			return -EFAULT;
  		res = res > 0 ? 2 : 1;
  		if ((res = snd_pcm_oss_set_channels(pcm_oss_file, res)) < 0)
  			return res;
  		return put_user(--res, p);
  	case SNDCTL_DSP_GETBLKSIZE:
  		res = snd_pcm_oss_get_block_size(pcm_oss_file);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SNDCTL_DSP_SETFMT:
  		if (get_user(res, p))
  			return -EFAULT;
  		res = snd_pcm_oss_set_format(pcm_oss_file, res);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SOUND_PCM_READ_BITS:
  		res = snd_pcm_oss_get_format(pcm_oss_file);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SNDCTL_DSP_CHANNELS:
  		if (get_user(res, p))
  			return -EFAULT;
  		res = snd_pcm_oss_set_channels(pcm_oss_file, res);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SOUND_PCM_READ_CHANNELS:
  		res = snd_pcm_oss_get_channels(pcm_oss_file);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SOUND_PCM_WRITE_FILTER:
  	case SOUND_PCM_READ_FILTER:
  		return -EIO;
  	case SNDCTL_DSP_POST:
  		return snd_pcm_oss_post(pcm_oss_file);
  	case SNDCTL_DSP_SUBDIVIDE:
  		if (get_user(res, p))
  			return -EFAULT;
  		res = snd_pcm_oss_set_subdivide(pcm_oss_file, res);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SNDCTL_DSP_SETFRAGMENT:
  		if (get_user(res, p))
  			return -EFAULT;
  		return snd_pcm_oss_set_fragment(pcm_oss_file, res);
  	case SNDCTL_DSP_GETFMTS:
  		res = snd_pcm_oss_get_formats(pcm_oss_file);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SNDCTL_DSP_GETOSPACE:
  	case SNDCTL_DSP_GETISPACE:
  		return snd_pcm_oss_get_space(pcm_oss_file,
  			cmd == SNDCTL_DSP_GETISPACE ?
  				SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK,
  			(struct audio_buf_info __user *) arg);
  	case SNDCTL_DSP_NONBLOCK:
  		return snd_pcm_oss_nonblock(file);
  	case SNDCTL_DSP_GETCAPS:
  		res = snd_pcm_oss_get_caps(pcm_oss_file);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SNDCTL_DSP_GETTRIGGER:
  		res = snd_pcm_oss_get_trigger(pcm_oss_file);
  		if (res < 0)
  			return res;
  		return put_user(res, p);
  	case SNDCTL_DSP_SETTRIGGER:
  		if (get_user(res, p))
  			return -EFAULT;
  		return snd_pcm_oss_set_trigger(pcm_oss_file, res);
  	case SNDCTL_DSP_GETIPTR:
  	case SNDCTL_DSP_GETOPTR:
  		return snd_pcm_oss_get_ptr(pcm_oss_file,
  			cmd == SNDCTL_DSP_GETIPTR ?
  				SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK,
  			(struct count_info __user *) arg);
  	case SNDCTL_DSP_MAPINBUF:
  	case SNDCTL_DSP_MAPOUTBUF:
  		return snd_pcm_oss_get_mapbuf(pcm_oss_file,
  			cmd == SNDCTL_DSP_MAPINBUF ?
  				SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK,
  			(struct buffmem_desc __user *) arg);
  	case SNDCTL_DSP_SETSYNCRO:
  		/* stop DMA now.. */
  		return 0;
  	case SNDCTL_DSP_SETDUPLEX:
  		if (snd_pcm_oss_get_caps(pcm_oss_file) & DSP_CAP_DUPLEX)
  			return 0;
  		return -EIO;
  	case SNDCTL_DSP_GETODELAY:
  		res = snd_pcm_oss_get_odelay(pcm_oss_file);
  		if (res < 0) {
  			/* it's for sure, some broken apps don't check for error codes */
  			put_user(0, p);
  			return res;
  		}
  		return put_user(res, p);
  	case SNDCTL_DSP_PROFILE:
  		return 0;	/* silently ignore */
  	default:
  		snd_printd("pcm_oss: unknown command = 0x%x
  ", cmd);
  	}
  	return -EINVAL;
  }
  
  #ifdef CONFIG_COMPAT
  /* all compatible */
  #define snd_pcm_oss_ioctl_compat	snd_pcm_oss_ioctl
  #else
  #define snd_pcm_oss_ioctl_compat	NULL
  #endif
  
  static ssize_t snd_pcm_oss_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2617
2618
  	struct snd_pcm_oss_file *pcm_oss_file;
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2619
2620
2621
2622
2623
  
  	pcm_oss_file = file->private_data;
  	substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
  	if (substream == NULL)
  		return -ENXIO;
0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
2624
  	substream->f_flags = file->f_flags & O_NONBLOCK;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2625
2626
2627
2628
2629
  #ifndef OSS_DEBUG
  	return snd_pcm_oss_read1(substream, buf, count);
  #else
  	{
  		ssize_t res = snd_pcm_oss_read1(substream, buf, count);
006de2673   Takashi Iwai   ALSA: Add missing...
2630
2631
2632
  		printk(KERN_DEBUG "pcm_oss: read %li bytes "
  		       "(returned %li bytes)
  ", (long)count, (long)res);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2633
2634
2635
2636
2637
2638
2639
  		return res;
  	}
  #endif
  }
  
  static ssize_t snd_pcm_oss_write(struct file *file, const char __user *buf, size_t count, loff_t *offset)
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2640
2641
  	struct snd_pcm_oss_file *pcm_oss_file;
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2642
2643
2644
2645
2646
2647
  	long result;
  
  	pcm_oss_file = file->private_data;
  	substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	if (substream == NULL)
  		return -ENXIO;
0df63e44c   Takashi Iwai   [ALSA] Add O_APPE...
2648
  	substream->f_flags = file->f_flags & O_NONBLOCK;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2649
  	result = snd_pcm_oss_write1(substream, buf, count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2650
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
2651
2652
2653
  	printk(KERN_DEBUG "pcm_oss: write %li bytes (wrote %li bytes)
  ",
  	       (long)count, (long)result);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2654
2655
2656
  #endif
  	return result;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2657
  static int snd_pcm_oss_playback_ready(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2658
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2659
  	struct snd_pcm_runtime *runtime = substream->runtime;
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
2660
  	if (atomic_read(&substream->mmap_count))
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
2661
2662
  		return runtime->oss.prev_hw_ptr_period !=
  						get_hw_ptr_period(runtime);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2663
  	else
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
2664
2665
  		return snd_pcm_playback_avail(runtime) >=
  						runtime->oss.period_frames;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2666
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2667
  static int snd_pcm_oss_capture_ready(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2668
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2669
  	struct snd_pcm_runtime *runtime = substream->runtime;
9c323fcbc   Takashi Iwai   [ALSA] Fix mmap_c...
2670
  	if (atomic_read(&substream->mmap_count))
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
2671
2672
  		return runtime->oss.prev_hw_ptr_period !=
  						get_hw_ptr_period(runtime);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2673
  	else
f240406ba   Jaroslav Kysela   ALSA: pcm_lib - c...
2674
2675
  		return snd_pcm_capture_avail(runtime) >=
  						runtime->oss.period_frames;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2676
2677
2678
2679
  }
  
  static unsigned int snd_pcm_oss_poll(struct file *file, poll_table * wait)
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2680
  	struct snd_pcm_oss_file *pcm_oss_file;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2681
  	unsigned int mask;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2682
  	struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2683
2684
2685
2686
2687
2688
2689
2690
  	
  	pcm_oss_file = file->private_data;
  
  	psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  	csubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
  
  	mask = 0;
  	if (psubstream != NULL) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2691
  		struct snd_pcm_runtime *runtime = psubstream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2692
2693
2694
2695
2696
2697
2698
2699
2700
  		poll_wait(file, &runtime->sleep, wait);
  		snd_pcm_stream_lock_irq(psubstream);
  		if (runtime->status->state != SNDRV_PCM_STATE_DRAINING &&
  		    (runtime->status->state != SNDRV_PCM_STATE_RUNNING ||
  		     snd_pcm_oss_playback_ready(psubstream)))
  			mask |= POLLOUT | POLLWRNORM;
  		snd_pcm_stream_unlock_irq(psubstream);
  	}
  	if (csubstream != NULL) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2701
2702
  		struct snd_pcm_runtime *runtime = csubstream->runtime;
  		snd_pcm_state_t ostate;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2703
2704
2705
2706
2707
2708
2709
  		poll_wait(file, &runtime->sleep, wait);
  		snd_pcm_stream_lock_irq(csubstream);
  		if ((ostate = runtime->status->state) != SNDRV_PCM_STATE_RUNNING ||
  		    snd_pcm_oss_capture_ready(csubstream))
  			mask |= POLLIN | POLLRDNORM;
  		snd_pcm_stream_unlock_irq(csubstream);
  		if (ostate != SNDRV_PCM_STATE_RUNNING && runtime->oss.trigger) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2710
  			struct snd_pcm_oss_file ofile;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
  			memset(&ofile, 0, sizeof(ofile));
  			ofile.streams[SNDRV_PCM_STREAM_CAPTURE] = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
  			runtime->oss.trigger = 0;
  			snd_pcm_oss_set_trigger(&ofile, PCM_ENABLE_INPUT);
  		}
  	}
  
  	return mask;
  }
  
  static int snd_pcm_oss_mmap(struct file *file, struct vm_area_struct *area)
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2723
2724
2725
  	struct snd_pcm_oss_file *pcm_oss_file;
  	struct snd_pcm_substream *substream = NULL;
  	struct snd_pcm_runtime *runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2726
2727
2728
  	int err;
  
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
2729
2730
  	printk(KERN_DEBUG "pcm_oss: mmap begin
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
  #endif
  	pcm_oss_file = file->private_data;
  	switch ((area->vm_flags & (VM_READ | VM_WRITE))) {
  	case VM_READ | VM_WRITE:
  		substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  		if (substream)
  			break;
  		/* Fall through */
  	case VM_READ:
  		substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
  		break;
  	case VM_WRITE:
  		substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
  		break;
  	default:
  		return -EINVAL;
  	}
  	/* set VM_READ access as well to fix memset() routines that do
  	   reads before writes (to improve performance) */
  	area->vm_flags |= VM_READ;
  	if (substream == NULL)
  		return -ENXIO;
  	runtime = substream->runtime;
  	if (!(runtime->info & SNDRV_PCM_INFO_MMAP_VALID))
  		return -EIO;
  	if (runtime->info & SNDRV_PCM_INFO_INTERLEAVED)
  		runtime->access = SNDRV_PCM_ACCESS_MMAP_INTERLEAVED;
  	else
  		return -EIO;
  	
  	if (runtime->oss.params) {
  		if ((err = snd_pcm_oss_change_params(substream)) < 0)
  			return err;
  	}
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
2765
  #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2766
2767
  	if (runtime->oss.plugin_first != NULL)
  		return -EIO;
21a3479a0   Jaroslav Kysela   [ALSA] PCM midlev...
2768
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
  
  	if (area->vm_pgoff != 0)
  		return -EINVAL;
  
  	err = snd_pcm_mmap_data(substream, file, area);
  	if (err < 0)
  		return err;
  	runtime->oss.mmap_bytes = area->vm_end - area->vm_start;
  	runtime->silence_threshold = 0;
  	runtime->silence_size = 0;
  #ifdef OSS_DEBUG
006de2673   Takashi Iwai   ALSA: Add missing...
2780
2781
2782
  	printk(KERN_DEBUG "pcm_oss: mmap ok, bytes = 0x%x
  ",
  	       runtime->oss.mmap_bytes);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2783
2784
2785
2786
2787
2788
  #endif
  	/* In mmap mode we never stop */
  	runtime->stop_threshold = runtime->boundary;
  
  	return 0;
  }
b7d90a356   Takashi Iwai   [ALSA] Fix Oops a...
2789
  #ifdef CONFIG_SND_VERBOSE_PROCFS
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2790
2791
2792
  /*
   *  /proc interface
   */
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2793
2794
  static void snd_pcm_oss_proc_read(struct snd_info_entry *entry,
  				  struct snd_info_buffer *buffer)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2795
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2796
2797
  	struct snd_pcm_str *pstr = entry->private_data;
  	struct snd_pcm_oss_setup *setup = pstr->oss.setup_list;
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2798
  	mutex_lock(&pstr->oss.setup_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
  	while (setup) {
  		snd_iprintf(buffer, "%s %u %u%s%s%s%s%s%s
  ",
  			    setup->task_name,
  			    setup->periods,
  			    setup->period_size,
  			    setup->disable ? " disable" : "",
  			    setup->direct ? " direct" : "",
  			    setup->block ? " block" : "",
  			    setup->nonblock ? " non-block" : "",
  			    setup->partialfrag ? " partial-frag" : "",
  			    setup->nosilence ? " no-silence" : "");
  		setup = setup->next;
  	}
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2813
  	mutex_unlock(&pstr->oss.setup_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2814
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2815
  static void snd_pcm_oss_proc_free_setup_list(struct snd_pcm_str * pstr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2816
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2817
  	struct snd_pcm_oss_setup *setup, *setupn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2818

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2819
2820
2821
2822
2823
2824
2825
2826
  	for (setup = pstr->oss.setup_list, pstr->oss.setup_list = NULL;
  	     setup; setup = setupn) {
  		setupn = setup->next;
  		kfree(setup->task_name);
  		kfree(setup);
  	}
  	pstr->oss.setup_list = NULL;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2827
2828
  static void snd_pcm_oss_proc_write(struct snd_info_entry *entry,
  				   struct snd_info_buffer *buffer)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2829
  {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2830
  	struct snd_pcm_str *pstr = entry->private_data;
4f7454a99   Takashi Iwai   ALSA: Add const p...
2831
2832
  	char line[128], str[32], task_name[32];
  	const char *ptr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2833
  	int idx1;
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2834
  	struct snd_pcm_oss_setup *setup, *setup1, template;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2835
2836
  
  	while (!snd_info_get_line(buffer, line, sizeof(line))) {
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2837
  		mutex_lock(&pstr->oss.setup_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2838
2839
2840
2841
  		memset(&template, 0, sizeof(template));
  		ptr = snd_info_get_str(task_name, line, sizeof(task_name));
  		if (!strcmp(task_name, "clear") || !strcmp(task_name, "erase")) {
  			snd_pcm_oss_proc_free_setup_list(pstr);
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2842
  			mutex_unlock(&pstr->oss.setup_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
  			continue;
  		}
  		for (setup = pstr->oss.setup_list; setup; setup = setup->next) {
  			if (!strcmp(setup->task_name, task_name)) {
  				template = *setup;
  				break;
  			}
  		}
  		ptr = snd_info_get_str(str, ptr, sizeof(str));
  		template.periods = simple_strtoul(str, NULL, 10);
  		ptr = snd_info_get_str(str, ptr, sizeof(str));
  		template.period_size = simple_strtoul(str, NULL, 10);
  		for (idx1 = 31; idx1 >= 0; idx1--)
  			if (template.period_size & (1 << idx1))
  				break;
  		for (idx1--; idx1 >= 0; idx1--)
  			template.period_size &= ~(1 << idx1);
  		do {
  			ptr = snd_info_get_str(str, ptr, sizeof(str));
  			if (!strcmp(str, "disable")) {
  				template.disable = 1;
  			} else if (!strcmp(str, "direct")) {
  				template.direct = 1;
  			} else if (!strcmp(str, "block")) {
  				template.block = 1;
  			} else if (!strcmp(str, "non-block")) {
  				template.nonblock = 1;
  			} else if (!strcmp(str, "partial-frag")) {
  				template.partialfrag = 1;
  			} else if (!strcmp(str, "no-silence")) {
  				template.nosilence = 1;
10f69f9e4   Takashi Iwai   [ALSA] pcm-oss - ...
2874
2875
  			} else if (!strcmp(str, "buggy-ptr")) {
  				template.buggyptr = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2876
2877
2878
  			}
  		} while (*str);
  		if (setup == NULL) {
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2879
2880
2881
  			setup = kmalloc(sizeof(*setup), GFP_KERNEL);
  			if (! setup) {
  				buffer->error = -ENOMEM;
91054598f   Jiri Slaby   ALSA: pcm_oss, fi...
2882
  				mutex_unlock(&pstr->oss.setup_mutex);
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
  				return;
  			}
  			if (pstr->oss.setup_list == NULL)
  				pstr->oss.setup_list = setup;
  			else {
  				for (setup1 = pstr->oss.setup_list;
  				     setup1->next; setup1 = setup1->next);
  				setup1->next = setup;
  			}
  			template.task_name = kstrdup(task_name, GFP_KERNEL);
  			if (! template.task_name) {
  				kfree(setup);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2895
  				buffer->error = -ENOMEM;
91054598f   Jiri Slaby   ALSA: pcm_oss, fi...
2896
  				mutex_unlock(&pstr->oss.setup_mutex);
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2897
  				return;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2898
2899
  			}
  		}
060d77b9c   Takashi Iwai   [ALSA] Fix / clea...
2900
  		*setup = template;
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
2901
  		mutex_unlock(&pstr->oss.setup_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2902
2903
  	}
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2904
  static void snd_pcm_oss_proc_init(struct snd_pcm *pcm)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2905
2906
2907
  {
  	int stream;
  	for (stream = 0; stream < 2; ++stream) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2908
2909
  		struct snd_info_entry *entry;
  		struct snd_pcm_str *pstr = &pcm->streams[stream];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2910
2911
2912
2913
2914
  		if (pstr->substream_count == 0)
  			continue;
  		if ((entry = snd_info_create_card_entry(pcm->card, "oss", pstr->proc_root)) != NULL) {
  			entry->content = SNDRV_INFO_CONTENT_TEXT;
  			entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2915
  			entry->c.text.read = snd_pcm_oss_proc_read;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
  			entry->c.text.write = snd_pcm_oss_proc_write;
  			entry->private_data = pstr;
  			if (snd_info_register(entry) < 0) {
  				snd_info_free_entry(entry);
  				entry = NULL;
  			}
  		}
  		pstr->oss.proc_entry = entry;
  	}
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2926
  static void snd_pcm_oss_proc_done(struct snd_pcm *pcm)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2927
2928
2929
  {
  	int stream;
  	for (stream = 0; stream < 2; ++stream) {
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2930
  		struct snd_pcm_str *pstr = &pcm->streams[stream];
746d4a02e   Takashi Iwai   [ALSA] Fix discon...
2931
2932
2933
  		snd_info_free_entry(pstr->oss.proc_entry);
  		pstr->oss.proc_entry = NULL;
  		snd_pcm_oss_proc_free_setup_list(pstr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2934
2935
  	}
  }
b7d90a356   Takashi Iwai   [ALSA] Fix Oops a...
2936
  #else /* !CONFIG_SND_VERBOSE_PROCFS */
04f141a88   Takashi Iwai   [ALSA] Optimize f...
2937
2938
  #define snd_pcm_oss_proc_init(pcm)
  #define snd_pcm_oss_proc_done(pcm)
b7d90a356   Takashi Iwai   [ALSA] Fix Oops a...
2939
  #endif /* CONFIG_SND_VERBOSE_PROCFS */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2940
2941
2942
2943
  
  /*
   *  ENTRY functions
   */
9c2e08c59   Arjan van de Ven   [PATCH] mark stru...
2944
  static const struct file_operations snd_pcm_oss_f_reg =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2945
2946
2947
2948
2949
2950
  {
  	.owner =	THIS_MODULE,
  	.read =		snd_pcm_oss_read,
  	.write =	snd_pcm_oss_write,
  	.open =		snd_pcm_oss_open,
  	.release =	snd_pcm_oss_release,
02f4865fa   Takashi Iwai   ALSA: core - Defi...
2951
  	.llseek =	no_llseek,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2952
2953
2954
2955
2956
  	.poll =		snd_pcm_oss_poll,
  	.unlocked_ioctl =	snd_pcm_oss_ioctl,
  	.compat_ioctl =	snd_pcm_oss_ioctl_compat,
  	.mmap =		snd_pcm_oss_mmap,
  };
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2957
  static void register_oss_dsp(struct snd_pcm *pcm, int index)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2958
2959
2960
2961
  {
  	char name[128];
  	sprintf(name, "dsp%i%i", pcm->card->number, pcm->device);
  	if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM,
2af677fc8   Clemens Ladisch   [ALSA] dynamic mi...
2962
  				    pcm->card, index, &snd_pcm_oss_f_reg,
f87135f56   Clemens Ladisch   [ALSA] dynamic mi...
2963
  				    pcm, name) < 0) {
d3d579f84   Takashi Iwai   [ALSA] Add missin...
2964
2965
2966
  		snd_printk(KERN_ERR "unable to register OSS PCM device %i:%i
  ",
  			   pcm->card->number, pcm->device);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2967
2968
  	}
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2969
  static int snd_pcm_oss_register_minor(struct snd_pcm *pcm)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2970
2971
  {
  	pcm->oss.reg = 0;
896e6cc20   Jaroslav Kysela   sound: Revert "AL...
2972
  	if (dsp_map[pcm->card->number] == (int)pcm->device) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
  		char name[128];
  		int duplex;
  		register_oss_dsp(pcm, 0);
  		duplex = (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream_count > 0 && 
  			      pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream_count && 
  			      !(pcm->info_flags & SNDRV_PCM_INFO_HALF_DUPLEX));
  		sprintf(name, "%s%s", pcm->name, duplex ? " (DUPLEX)" : "");
  #ifdef SNDRV_OSS_INFO_DEV_AUDIO
  		snd_oss_info_register(SNDRV_OSS_INFO_DEV_AUDIO,
  				      pcm->card->number,
  				      name);
  #endif
  		pcm->oss.reg++;
  		pcm->oss.reg_mask |= 1;
  	}
896e6cc20   Jaroslav Kysela   sound: Revert "AL...
2988
  	if (adsp_map[pcm->card->number] == (int)pcm->device) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
  		register_oss_dsp(pcm, 1);
  		pcm->oss.reg++;
  		pcm->oss.reg_mask |= 2;
  	}
  
  	if (pcm->oss.reg)
  		snd_pcm_oss_proc_init(pcm);
  
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
2999
  static int snd_pcm_oss_disconnect_minor(struct snd_pcm *pcm)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
  {
  	if (pcm->oss.reg) {
  		if (pcm->oss.reg_mask & 1) {
  			pcm->oss.reg_mask &= ~1;
  			snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM,
  						  pcm->card, 0);
  		}
  		if (pcm->oss.reg_mask & 2) {
  			pcm->oss.reg_mask &= ~2;
  			snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM,
  						  pcm->card, 1);
  		}
896e6cc20   Jaroslav Kysela   sound: Revert "AL...
3012
  		if (dsp_map[pcm->card->number] == (int)pcm->device) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3013
3014
3015
3016
3017
  #ifdef SNDRV_OSS_INFO_DEV_AUDIO
  			snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_AUDIO, pcm->card->number);
  #endif
  		}
  		pcm->oss.reg = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3018
3019
3020
  	}
  	return 0;
  }
c461482c8   Takashi Iwai   [ALSA] Unregister...
3021
3022
3023
3024
3025
3026
  static int snd_pcm_oss_unregister_minor(struct snd_pcm *pcm)
  {
  	snd_pcm_oss_disconnect_minor(pcm);
  	snd_pcm_oss_proc_done(pcm);
  	return 0;
  }
6ac77bc18   Takashi Iwai   [ALSA] Remove xxx...
3027
  static struct snd_pcm_notify snd_pcm_oss_notify =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
  {
  	.n_register =	snd_pcm_oss_register_minor,
  	.n_disconnect = snd_pcm_oss_disconnect_minor,
  	.n_unregister =	snd_pcm_oss_unregister_minor,
  };
  
  static int __init alsa_pcm_oss_init(void)
  {
  	int i;
  	int err;
  
  	/* check device map table */
  	for (i = 0; i < SNDRV_CARDS; i++) {
896e6cc20   Jaroslav Kysela   sound: Revert "AL...
3041
  		if (dsp_map[i] < 0 || dsp_map[i] >= SNDRV_PCM_DEVICES) {
d3d579f84   Takashi Iwai   [ALSA] Add missin...
3042
3043
3044
  			snd_printk(KERN_ERR "invalid dsp_map[%d] = %d
  ",
  				   i, dsp_map[i]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3045
3046
  			dsp_map[i] = 0;
  		}
896e6cc20   Jaroslav Kysela   sound: Revert "AL...
3047
  		if (adsp_map[i] < 0 || adsp_map[i] >= SNDRV_PCM_DEVICES) {
d3d579f84   Takashi Iwai   [ALSA] Add missin...
3048
3049
3050
  			snd_printk(KERN_ERR "invalid adsp_map[%d] = %d
  ",
  				   i, adsp_map[i]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
  			adsp_map[i] = 1;
  		}
  	}
  	if ((err = snd_pcm_notify(&snd_pcm_oss_notify, 0)) < 0)
  		return err;
  	return 0;
  }
  
  static void __exit alsa_pcm_oss_exit(void)
  {
  	snd_pcm_notify(&snd_pcm_oss_notify, 1);
  }
  
  module_init(alsa_pcm_oss_init)
  module_exit(alsa_pcm_oss_exit)