2 * OSS emulation layer for the mixer interface
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/time.h>
25 #include <linux/string.h>
26 #include <sound/core.h>
27 #include <sound/minors.h>
28 #include <sound/control.h>
29 #include <sound/info.h>
30 #include <sound/mixer_oss.h>
31 #include <linux/soundcard.h>
33 #define OSS_ALSAEMULVER _SIOR ('M', 249, int)
35 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
36 MODULE_DESCRIPTION("Mixer OSS emulation for ALSA.");
37 MODULE_LICENSE("GPL");
38 MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_MIXER
);
40 static int snd_mixer_oss_open(struct inode
*inode
, struct file
*file
)
42 struct snd_card
*card
;
43 struct snd_mixer_oss_file
*fmixer
;
46 card
= snd_lookup_oss_minor_data(iminor(inode
),
47 SNDRV_OSS_DEVICE_TYPE_MIXER
);
50 if (card
->mixer_oss
== NULL
)
52 err
= snd_card_file_add(card
, file
);
55 fmixer
= kzalloc(sizeof(*fmixer
), GFP_KERNEL
);
57 snd_card_file_remove(card
, file
);
61 fmixer
->mixer
= card
->mixer_oss
;
62 file
->private_data
= fmixer
;
63 if (!try_module_get(card
->module
)) {
65 snd_card_file_remove(card
, file
);
71 static int snd_mixer_oss_release(struct inode
*inode
, struct file
*file
)
73 struct snd_mixer_oss_file
*fmixer
;
75 if (file
->private_data
) {
76 fmixer
= (struct snd_mixer_oss_file
*) file
->private_data
;
77 module_put(fmixer
->card
->module
);
78 snd_card_file_remove(fmixer
->card
, file
);
84 static int snd_mixer_oss_info(struct snd_mixer_oss_file
*fmixer
,
85 mixer_info __user
*_info
)
87 struct snd_card
*card
= fmixer
->card
;
88 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
89 struct mixer_info info
;
91 memset(&info
, 0, sizeof(info
));
92 strlcpy(info
.id
, mixer
&& mixer
->id
[0] ? mixer
->id
: card
->driver
, sizeof(info
.id
));
93 strlcpy(info
.name
, mixer
&& mixer
->name
[0] ? mixer
->name
: card
->mixername
, sizeof(info
.name
));
94 info
.modify_counter
= card
->mixer_oss_change_count
;
95 if (copy_to_user(_info
, &info
, sizeof(info
)))
100 static int snd_mixer_oss_info_obsolete(struct snd_mixer_oss_file
*fmixer
,
101 _old_mixer_info __user
*_info
)
103 struct snd_card
*card
= fmixer
->card
;
104 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
105 _old_mixer_info info
;
107 memset(&info
, 0, sizeof(info
));
108 strlcpy(info
.id
, mixer
&& mixer
->id
[0] ? mixer
->id
: card
->driver
, sizeof(info
.id
));
109 strlcpy(info
.name
, mixer
&& mixer
->name
[0] ? mixer
->name
: card
->mixername
, sizeof(info
.name
));
110 if (copy_to_user(_info
, &info
, sizeof(info
)))
115 static int snd_mixer_oss_caps(struct snd_mixer_oss_file
*fmixer
)
117 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
122 if (mixer
->get_recsrc
&& mixer
->put_recsrc
)
123 result
|= SOUND_CAP_EXCL_INPUT
;
127 static int snd_mixer_oss_devmask(struct snd_mixer_oss_file
*fmixer
)
129 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
130 struct snd_mixer_oss_slot
*pslot
;
135 for (chn
= 0; chn
< 31; chn
++) {
136 pslot
= &mixer
->slots
[chn
];
137 if (pslot
->put_volume
|| pslot
->put_recsrc
)
143 static int snd_mixer_oss_stereodevs(struct snd_mixer_oss_file
*fmixer
)
145 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
146 struct snd_mixer_oss_slot
*pslot
;
151 for (chn
= 0; chn
< 31; chn
++) {
152 pslot
= &mixer
->slots
[chn
];
153 if (pslot
->put_volume
&& pslot
->stereo
)
159 static int snd_mixer_oss_recmask(struct snd_mixer_oss_file
*fmixer
)
161 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
166 if (mixer
->put_recsrc
&& mixer
->get_recsrc
) { /* exclusive */
167 result
= mixer
->mask_recsrc
;
169 struct snd_mixer_oss_slot
*pslot
;
171 for (chn
= 0; chn
< 31; chn
++) {
172 pslot
= &mixer
->slots
[chn
];
173 if (pslot
->put_recsrc
)
180 static int snd_mixer_oss_get_recsrc(struct snd_mixer_oss_file
*fmixer
)
182 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
187 if (mixer
->put_recsrc
&& mixer
->get_recsrc
) { /* exclusive */
189 if ((err
= mixer
->get_recsrc(fmixer
, &result
)) < 0)
191 result
= 1 << result
;
193 struct snd_mixer_oss_slot
*pslot
;
195 for (chn
= 0; chn
< 31; chn
++) {
196 pslot
= &mixer
->slots
[chn
];
197 if (pslot
->get_recsrc
) {
199 pslot
->get_recsrc(fmixer
, pslot
, &active
);
205 return mixer
->oss_recsrc
= result
;
208 static int snd_mixer_oss_set_recsrc(struct snd_mixer_oss_file
*fmixer
, int recsrc
)
210 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
211 struct snd_mixer_oss_slot
*pslot
;
217 if (mixer
->get_recsrc
&& mixer
->put_recsrc
) { /* exclusive input */
218 if (recsrc
& ~mixer
->oss_recsrc
)
219 recsrc
&= ~mixer
->oss_recsrc
;
220 mixer
->put_recsrc(fmixer
, ffz(~recsrc
));
221 mixer
->get_recsrc(fmixer
, &result
);
222 result
= 1 << result
;
224 for (chn
= 0; chn
< 31; chn
++) {
225 pslot
= &mixer
->slots
[chn
];
226 if (pslot
->put_recsrc
) {
227 active
= (recsrc
& (1 << chn
)) ? 1 : 0;
228 pslot
->put_recsrc(fmixer
, pslot
, active
);
232 for (chn
= 0; chn
< 31; chn
++) {
233 pslot
= &mixer
->slots
[chn
];
234 if (pslot
->get_recsrc
) {
236 pslot
->get_recsrc(fmixer
, pslot
, &active
);
245 static int snd_mixer_oss_get_volume(struct snd_mixer_oss_file
*fmixer
, int slot
)
247 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
248 struct snd_mixer_oss_slot
*pslot
;
249 int result
= 0, left
, right
;
251 if (mixer
== NULL
|| slot
> 30)
253 pslot
= &mixer
->slots
[slot
];
254 left
= pslot
->volume
[0];
255 right
= pslot
->volume
[1];
256 if (pslot
->get_volume
)
257 result
= pslot
->get_volume(fmixer
, pslot
, &left
, &right
);
260 if (snd_BUG_ON(left
< 0 || left
> 100))
262 if (snd_BUG_ON(right
< 0 || right
> 100))
265 pslot
->volume
[0] = left
;
266 pslot
->volume
[1] = right
;
267 result
= (left
& 0xff) | ((right
& 0xff) << 8);
272 static int snd_mixer_oss_set_volume(struct snd_mixer_oss_file
*fmixer
,
273 int slot
, int volume
)
275 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
276 struct snd_mixer_oss_slot
*pslot
;
277 int result
= 0, left
= volume
& 0xff, right
= (volume
>> 8) & 0xff;
279 if (mixer
== NULL
|| slot
> 30)
281 pslot
= &mixer
->slots
[slot
];
288 if (pslot
->put_volume
)
289 result
= pslot
->put_volume(fmixer
, pslot
, left
, right
);
292 pslot
->volume
[0] = left
;
293 pslot
->volume
[1] = right
;
294 return (left
& 0xff) | ((right
& 0xff) << 8);
297 static int snd_mixer_oss_ioctl1(struct snd_mixer_oss_file
*fmixer
, unsigned int cmd
, unsigned long arg
)
299 void __user
*argp
= (void __user
*)arg
;
300 int __user
*p
= argp
;
303 if (snd_BUG_ON(!fmixer
))
305 if (((cmd
>> 8) & 0xff) == 'M') {
307 case SOUND_MIXER_INFO
:
308 return snd_mixer_oss_info(fmixer
, argp
);
309 case SOUND_OLD_MIXER_INFO
:
310 return snd_mixer_oss_info_obsolete(fmixer
, argp
);
311 case SOUND_MIXER_WRITE_RECSRC
:
312 if (get_user(tmp
, p
))
314 tmp
= snd_mixer_oss_set_recsrc(fmixer
, tmp
);
317 return put_user(tmp
, p
);
319 return put_user(SNDRV_OSS_VERSION
, p
);
320 case OSS_ALSAEMULVER
:
321 return put_user(1, p
);
322 case SOUND_MIXER_READ_DEVMASK
:
323 tmp
= snd_mixer_oss_devmask(fmixer
);
326 return put_user(tmp
, p
);
327 case SOUND_MIXER_READ_STEREODEVS
:
328 tmp
= snd_mixer_oss_stereodevs(fmixer
);
331 return put_user(tmp
, p
);
332 case SOUND_MIXER_READ_RECMASK
:
333 tmp
= snd_mixer_oss_recmask(fmixer
);
336 return put_user(tmp
, p
);
337 case SOUND_MIXER_READ_CAPS
:
338 tmp
= snd_mixer_oss_caps(fmixer
);
341 return put_user(tmp
, p
);
342 case SOUND_MIXER_READ_RECSRC
:
343 tmp
= snd_mixer_oss_get_recsrc(fmixer
);
346 return put_user(tmp
, p
);
350 if (get_user(tmp
, p
))
352 tmp
= snd_mixer_oss_set_volume(fmixer
, cmd
& 0xff, tmp
);
355 return put_user(tmp
, p
);
356 } else if (cmd
& SIOC_OUT
) {
357 tmp
= snd_mixer_oss_get_volume(fmixer
, cmd
& 0xff);
360 return put_user(tmp
, p
);
365 static long snd_mixer_oss_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
367 return snd_mixer_oss_ioctl1((struct snd_mixer_oss_file
*) file
->private_data
, cmd
, arg
);
370 int snd_mixer_oss_ioctl_card(struct snd_card
*card
, unsigned int cmd
, unsigned long arg
)
372 struct snd_mixer_oss_file fmixer
;
374 if (snd_BUG_ON(!card
))
376 if (card
->mixer_oss
== NULL
)
378 memset(&fmixer
, 0, sizeof(fmixer
));
380 fmixer
.mixer
= card
->mixer_oss
;
381 return snd_mixer_oss_ioctl1(&fmixer
, cmd
, arg
);
386 #define snd_mixer_oss_ioctl_compat snd_mixer_oss_ioctl
388 #define snd_mixer_oss_ioctl_compat NULL
395 static const struct file_operations snd_mixer_oss_f_ops
=
397 .owner
= THIS_MODULE
,
398 .open
= snd_mixer_oss_open
,
399 .release
= snd_mixer_oss_release
,
400 .unlocked_ioctl
= snd_mixer_oss_ioctl
,
401 .compat_ioctl
= snd_mixer_oss_ioctl_compat
,
408 static long snd_mixer_oss_conv(long val
, long omin
, long omax
, long nmin
, long nmax
)
410 long orange
= omax
- omin
, nrange
= nmax
- nmin
;
414 return ((nrange
* (val
- omin
)) + (orange
/ 2)) / orange
+ nmin
;
417 /* convert from alsa native to oss values (0-100) */
418 static long snd_mixer_oss_conv1(long val
, long min
, long max
, int *old
)
420 if (val
== snd_mixer_oss_conv(*old
, 0, 100, min
, max
))
422 return snd_mixer_oss_conv(val
, min
, max
, 0, 100);
425 /* convert from oss to alsa native values */
426 static long snd_mixer_oss_conv2(long val
, long min
, long max
)
428 return snd_mixer_oss_conv(val
, 0, 100, min
, max
);
432 static void snd_mixer_oss_recsrce_set(struct snd_card
*card
, int slot
)
434 struct snd_mixer_oss
*mixer
= card
->mixer_oss
;
436 mixer
->mask_recsrc
|= 1 << slot
;
439 static int snd_mixer_oss_recsrce_get(struct snd_card
*card
, int slot
)
441 struct snd_mixer_oss
*mixer
= card
->mixer_oss
;
442 if (mixer
&& (mixer
->mask_recsrc
& (1 << slot
)))
448 #define SNDRV_MIXER_OSS_SIGNATURE 0x65999250
450 #define SNDRV_MIXER_OSS_ITEM_GLOBAL 0
451 #define SNDRV_MIXER_OSS_ITEM_GSWITCH 1
452 #define SNDRV_MIXER_OSS_ITEM_GROUTE 2
453 #define SNDRV_MIXER_OSS_ITEM_GVOLUME 3
454 #define SNDRV_MIXER_OSS_ITEM_PSWITCH 4
455 #define SNDRV_MIXER_OSS_ITEM_PROUTE 5
456 #define SNDRV_MIXER_OSS_ITEM_PVOLUME 6
457 #define SNDRV_MIXER_OSS_ITEM_CSWITCH 7
458 #define SNDRV_MIXER_OSS_ITEM_CROUTE 8
459 #define SNDRV_MIXER_OSS_ITEM_CVOLUME 9
460 #define SNDRV_MIXER_OSS_ITEM_CAPTURE 10
462 #define SNDRV_MIXER_OSS_ITEM_COUNT 11
464 #define SNDRV_MIXER_OSS_PRESENT_GLOBAL (1<<0)
465 #define SNDRV_MIXER_OSS_PRESENT_GSWITCH (1<<1)
466 #define SNDRV_MIXER_OSS_PRESENT_GROUTE (1<<2)
467 #define SNDRV_MIXER_OSS_PRESENT_GVOLUME (1<<3)
468 #define SNDRV_MIXER_OSS_PRESENT_PSWITCH (1<<4)
469 #define SNDRV_MIXER_OSS_PRESENT_PROUTE (1<<5)
470 #define SNDRV_MIXER_OSS_PRESENT_PVOLUME (1<<6)
471 #define SNDRV_MIXER_OSS_PRESENT_CSWITCH (1<<7)
472 #define SNDRV_MIXER_OSS_PRESENT_CROUTE (1<<8)
473 #define SNDRV_MIXER_OSS_PRESENT_CVOLUME (1<<9)
474 #define SNDRV_MIXER_OSS_PRESENT_CAPTURE (1<<10)
477 unsigned int signature
;
478 unsigned int present
;
479 unsigned int channels
;
480 unsigned int numid
[SNDRV_MIXER_OSS_ITEM_COUNT
];
481 unsigned int capture_item
;
482 struct snd_mixer_oss_assign_table
*assigned
;
483 unsigned int allocated
: 1;
486 #define ID_UNKNOWN ((unsigned int)-1)
488 static struct snd_kcontrol
*snd_mixer_oss_test_id(struct snd_mixer_oss
*mixer
, const char *name
, int index
)
490 struct snd_card
*card
= mixer
->card
;
491 struct snd_ctl_elem_id id
;
493 memset(&id
, 0, sizeof(id
));
494 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
495 strcpy(id
.name
, name
);
497 return snd_ctl_find_id(card
, &id
);
500 static void snd_mixer_oss_get_volume1_vol(struct snd_mixer_oss_file
*fmixer
,
501 struct snd_mixer_oss_slot
*pslot
,
503 int *left
, int *right
)
505 struct snd_ctl_elem_info
*uinfo
;
506 struct snd_ctl_elem_value
*uctl
;
507 struct snd_kcontrol
*kctl
;
508 struct snd_card
*card
= fmixer
->card
;
510 if (numid
== ID_UNKNOWN
)
512 down_read(&card
->controls_rwsem
);
513 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
) {
514 up_read(&card
->controls_rwsem
);
517 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
518 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
519 if (uinfo
== NULL
|| uctl
== NULL
)
521 if (kctl
->info(kctl
, uinfo
))
523 if (kctl
->get(kctl
, uctl
))
525 if (uinfo
->type
== SNDRV_CTL_ELEM_TYPE_BOOLEAN
&&
526 uinfo
->value
.integer
.min
== 0 && uinfo
->value
.integer
.max
== 1)
528 *left
= snd_mixer_oss_conv1(uctl
->value
.integer
.value
[0], uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
, &pslot
->volume
[0]);
529 if (uinfo
->count
> 1)
530 *right
= snd_mixer_oss_conv1(uctl
->value
.integer
.value
[1], uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
, &pslot
->volume
[1]);
532 up_read(&card
->controls_rwsem
);
537 static void snd_mixer_oss_get_volume1_sw(struct snd_mixer_oss_file
*fmixer
,
538 struct snd_mixer_oss_slot
*pslot
,
540 int *left
, int *right
,
543 struct snd_ctl_elem_info
*uinfo
;
544 struct snd_ctl_elem_value
*uctl
;
545 struct snd_kcontrol
*kctl
;
546 struct snd_card
*card
= fmixer
->card
;
548 if (numid
== ID_UNKNOWN
)
550 down_read(&card
->controls_rwsem
);
551 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
) {
552 up_read(&card
->controls_rwsem
);
555 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
556 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
557 if (uinfo
== NULL
|| uctl
== NULL
)
559 if (kctl
->info(kctl
, uinfo
))
561 if (kctl
->get(kctl
, uctl
))
563 if (!uctl
->value
.integer
.value
[0]) {
565 if (uinfo
->count
== 1)
568 if (uinfo
->count
> 1 && !uctl
->value
.integer
.value
[route
? 3 : 1])
571 up_read(&card
->controls_rwsem
);
576 static int snd_mixer_oss_get_volume1(struct snd_mixer_oss_file
*fmixer
,
577 struct snd_mixer_oss_slot
*pslot
,
578 int *left
, int *right
)
580 struct slot
*slot
= (struct slot
*)pslot
->private_data
;
582 *left
= *right
= 100;
583 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PVOLUME
) {
584 snd_mixer_oss_get_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PVOLUME
], left
, right
);
585 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GVOLUME
) {
586 snd_mixer_oss_get_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GVOLUME
], left
, right
);
587 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GLOBAL
) {
588 snd_mixer_oss_get_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GLOBAL
], left
, right
);
590 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PSWITCH
) {
591 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PSWITCH
], left
, right
, 0);
592 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GSWITCH
) {
593 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GSWITCH
], left
, right
, 0);
594 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PROUTE
) {
595 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PROUTE
], left
, right
, 1);
596 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GROUTE
) {
597 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GROUTE
], left
, right
, 1);
602 static void snd_mixer_oss_put_volume1_vol(struct snd_mixer_oss_file
*fmixer
,
603 struct snd_mixer_oss_slot
*pslot
,
607 struct snd_ctl_elem_info
*uinfo
;
608 struct snd_ctl_elem_value
*uctl
;
609 struct snd_kcontrol
*kctl
;
610 struct snd_card
*card
= fmixer
->card
;
613 if (numid
== ID_UNKNOWN
)
615 down_read(&card
->controls_rwsem
);
616 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
)
618 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
619 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
620 if (uinfo
== NULL
|| uctl
== NULL
)
622 if (kctl
->info(kctl
, uinfo
))
624 if (uinfo
->type
== SNDRV_CTL_ELEM_TYPE_BOOLEAN
&&
625 uinfo
->value
.integer
.min
== 0 && uinfo
->value
.integer
.max
== 1)
627 uctl
->value
.integer
.value
[0] = snd_mixer_oss_conv2(left
, uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
);
628 if (uinfo
->count
> 1)
629 uctl
->value
.integer
.value
[1] = snd_mixer_oss_conv2(right
, uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
);
630 if ((res
= kctl
->put(kctl
, uctl
)) < 0)
633 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &kctl
->id
);
635 up_read(&card
->controls_rwsem
);
640 static void snd_mixer_oss_put_volume1_sw(struct snd_mixer_oss_file
*fmixer
,
641 struct snd_mixer_oss_slot
*pslot
,
646 struct snd_ctl_elem_info
*uinfo
;
647 struct snd_ctl_elem_value
*uctl
;
648 struct snd_kcontrol
*kctl
;
649 struct snd_card
*card
= fmixer
->card
;
652 if (numid
== ID_UNKNOWN
)
654 down_read(&card
->controls_rwsem
);
655 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
) {
656 up_read(&fmixer
->card
->controls_rwsem
);
659 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
660 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
661 if (uinfo
== NULL
|| uctl
== NULL
)
663 if (kctl
->info(kctl
, uinfo
))
665 if (uinfo
->count
> 1) {
666 uctl
->value
.integer
.value
[0] = left
> 0 ? 1 : 0;
667 uctl
->value
.integer
.value
[route
? 3 : 1] = right
> 0 ? 1 : 0;
669 uctl
->value
.integer
.value
[1] =
670 uctl
->value
.integer
.value
[2] = 0;
673 uctl
->value
.integer
.value
[0] = (left
> 0 || right
> 0) ? 1 : 0;
675 if ((res
= kctl
->put(kctl
, uctl
)) < 0)
678 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &kctl
->id
);
680 up_read(&card
->controls_rwsem
);
685 static int snd_mixer_oss_put_volume1(struct snd_mixer_oss_file
*fmixer
,
686 struct snd_mixer_oss_slot
*pslot
,
689 struct slot
*slot
= (struct slot
*)pslot
->private_data
;
691 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PVOLUME
) {
692 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PVOLUME
], left
, right
);
693 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CVOLUME
)
694 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CVOLUME
], left
, right
);
695 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CVOLUME
) {
696 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
,
697 slot
->numid
[SNDRV_MIXER_OSS_ITEM_CVOLUME
], left
, right
);
698 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GVOLUME
) {
699 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GVOLUME
], left
, right
);
700 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GLOBAL
) {
701 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GLOBAL
], left
, right
);
704 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PSWITCH
)
705 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PSWITCH
], left
, right
, 0);
706 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CSWITCH
)
707 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], left
, right
, 0);
708 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GSWITCH
)
709 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GSWITCH
], left
, right
, 0);
710 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PROUTE
)
711 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PROUTE
], left
, right
, 1);
712 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CROUTE
)
713 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], left
, right
, 1);
714 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GROUTE
)
715 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GROUTE
], left
, right
, 1);
717 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PSWITCH
) {
718 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PSWITCH
], left
, right
, 0);
719 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CSWITCH
) {
720 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], left
, right
, 0);
721 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GSWITCH
) {
722 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GSWITCH
], left
, right
, 0);
723 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PROUTE
) {
724 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PROUTE
], left
, right
, 1);
725 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CROUTE
) {
726 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], left
, right
, 1);
727 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GROUTE
) {
728 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GROUTE
], left
, right
, 1);
734 static int snd_mixer_oss_get_recsrc1_sw(struct snd_mixer_oss_file
*fmixer
,
735 struct snd_mixer_oss_slot
*pslot
,
738 struct slot
*slot
= (struct slot
*)pslot
->private_data
;
742 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], &left
, &right
, 0);
743 *active
= (left
|| right
) ? 1 : 0;
747 static int snd_mixer_oss_get_recsrc1_route(struct snd_mixer_oss_file
*fmixer
,
748 struct snd_mixer_oss_slot
*pslot
,
751 struct slot
*slot
= (struct slot
*)pslot
->private_data
;
755 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], &left
, &right
, 1);
756 *active
= (left
|| right
) ? 1 : 0;
760 static int snd_mixer_oss_put_recsrc1_sw(struct snd_mixer_oss_file
*fmixer
,
761 struct snd_mixer_oss_slot
*pslot
,
764 struct slot
*slot
= (struct slot
*)pslot
->private_data
;
766 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], active
, active
, 0);
770 static int snd_mixer_oss_put_recsrc1_route(struct snd_mixer_oss_file
*fmixer
,
771 struct snd_mixer_oss_slot
*pslot
,
774 struct slot
*slot
= (struct slot
*)pslot
->private_data
;
776 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], active
, active
, 1);
780 static int snd_mixer_oss_get_recsrc2(struct snd_mixer_oss_file
*fmixer
, unsigned int *active_index
)
782 struct snd_card
*card
= fmixer
->card
;
783 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
784 struct snd_kcontrol
*kctl
;
785 struct snd_mixer_oss_slot
*pslot
;
787 struct snd_ctl_elem_info
*uinfo
;
788 struct snd_ctl_elem_value
*uctl
;
791 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
792 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
793 if (uinfo
== NULL
|| uctl
== NULL
) {
797 down_read(&card
->controls_rwsem
);
798 kctl
= snd_mixer_oss_test_id(mixer
, "Capture Source", 0);
803 if ((err
= kctl
->info(kctl
, uinfo
)) < 0)
805 if ((err
= kctl
->get(kctl
, uctl
)) < 0)
807 for (idx
= 0; idx
< 32; idx
++) {
808 if (!(mixer
->mask_recsrc
& (1 << idx
)))
810 pslot
= &mixer
->slots
[idx
];
811 slot
= (struct slot
*)pslot
->private_data
;
812 if (slot
->signature
!= SNDRV_MIXER_OSS_SIGNATURE
)
814 if (!(slot
->present
& SNDRV_MIXER_OSS_PRESENT_CAPTURE
))
816 if (slot
->capture_item
== uctl
->value
.enumerated
.item
[0]) {
823 up_read(&card
->controls_rwsem
);
829 static int snd_mixer_oss_put_recsrc2(struct snd_mixer_oss_file
*fmixer
, unsigned int active_index
)
831 struct snd_card
*card
= fmixer
->card
;
832 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
833 struct snd_kcontrol
*kctl
;
834 struct snd_mixer_oss_slot
*pslot
;
835 struct slot
*slot
= NULL
;
836 struct snd_ctl_elem_info
*uinfo
;
837 struct snd_ctl_elem_value
*uctl
;
841 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
842 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
843 if (uinfo
== NULL
|| uctl
== NULL
) {
847 down_read(&card
->controls_rwsem
);
848 kctl
= snd_mixer_oss_test_id(mixer
, "Capture Source", 0);
853 if ((err
= kctl
->info(kctl
, uinfo
)) < 0)
855 for (idx
= 0; idx
< 32; idx
++) {
856 if (!(mixer
->mask_recsrc
& (1 << idx
)))
858 pslot
= &mixer
->slots
[idx
];
859 slot
= (struct slot
*)pslot
->private_data
;
860 if (slot
->signature
!= SNDRV_MIXER_OSS_SIGNATURE
)
862 if (!(slot
->present
& SNDRV_MIXER_OSS_PRESENT_CAPTURE
))
864 if (idx
== active_index
)
870 for (idx
= 0; idx
< uinfo
->count
; idx
++)
871 uctl
->value
.enumerated
.item
[idx
] = slot
->capture_item
;
872 err
= kctl
->put(kctl
, uctl
);
874 snd_ctl_notify(fmixer
->card
, SNDRV_CTL_EVENT_MASK_VALUE
, &kctl
->id
);
877 up_read(&card
->controls_rwsem
);
883 struct snd_mixer_oss_assign_table
{
889 static int snd_mixer_oss_build_test(struct snd_mixer_oss
*mixer
, struct slot
*slot
, const char *name
, int index
, int item
)
891 struct snd_ctl_elem_info
*info
;
892 struct snd_kcontrol
*kcontrol
;
893 struct snd_card
*card
= mixer
->card
;
896 down_read(&card
->controls_rwsem
);
897 kcontrol
= snd_mixer_oss_test_id(mixer
, name
, index
);
898 if (kcontrol
== NULL
) {
899 up_read(&card
->controls_rwsem
);
902 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
904 up_read(&card
->controls_rwsem
);
907 if ((err
= kcontrol
->info(kcontrol
, info
)) < 0) {
908 up_read(&card
->controls_rwsem
);
912 slot
->numid
[item
] = kcontrol
->id
.numid
;
913 up_read(&card
->controls_rwsem
);
914 if (info
->count
> slot
->channels
)
915 slot
->channels
= info
->count
;
916 slot
->present
|= 1 << item
;
921 static void snd_mixer_oss_slot_free(struct snd_mixer_oss_slot
*chn
)
923 struct slot
*p
= (struct slot
*)chn
->private_data
;
925 if (p
->allocated
&& p
->assigned
) {
926 kfree(p
->assigned
->name
);
933 static void mixer_slot_clear(struct snd_mixer_oss_slot
*rslot
)
935 int idx
= rslot
->number
; /* remember this */
936 if (rslot
->private_free
)
937 rslot
->private_free(rslot
);
938 memset(rslot
, 0, sizeof(*rslot
));
942 /* In a separate function to keep gcc 3.2 happy - do NOT merge this in
943 snd_mixer_oss_build_input! */
944 static int snd_mixer_oss_build_test_all(struct snd_mixer_oss
*mixer
,
945 struct snd_mixer_oss_assign_table
*ptr
,
951 err
= snd_mixer_oss_build_test(mixer
, slot
, ptr
->name
, ptr
->index
,
952 SNDRV_MIXER_OSS_ITEM_GLOBAL
);
955 sprintf(str
, "%s Switch", ptr
->name
);
956 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
957 SNDRV_MIXER_OSS_ITEM_GSWITCH
);
960 sprintf(str
, "%s Route", ptr
->name
);
961 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
962 SNDRV_MIXER_OSS_ITEM_GROUTE
);
965 sprintf(str
, "%s Volume", ptr
->name
);
966 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
967 SNDRV_MIXER_OSS_ITEM_GVOLUME
);
970 sprintf(str
, "%s Playback Switch", ptr
->name
);
971 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
972 SNDRV_MIXER_OSS_ITEM_PSWITCH
);
975 sprintf(str
, "%s Playback Route", ptr
->name
);
976 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
977 SNDRV_MIXER_OSS_ITEM_PROUTE
);
980 sprintf(str
, "%s Playback Volume", ptr
->name
);
981 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
982 SNDRV_MIXER_OSS_ITEM_PVOLUME
);
985 sprintf(str
, "%s Capture Switch", ptr
->name
);
986 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
987 SNDRV_MIXER_OSS_ITEM_CSWITCH
);
990 sprintf(str
, "%s Capture Route", ptr
->name
);
991 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
992 SNDRV_MIXER_OSS_ITEM_CROUTE
);
995 sprintf(str
, "%s Capture Volume", ptr
->name
);
996 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
997 SNDRV_MIXER_OSS_ITEM_CVOLUME
);
1005 * build an OSS mixer element.
1006 * ptr_allocated means the entry is dynamically allocated (change via proc file).
1007 * when replace_old = 1, the old entry is replaced with the new one.
1009 static int snd_mixer_oss_build_input(struct snd_mixer_oss
*mixer
, struct snd_mixer_oss_assign_table
*ptr
, int ptr_allocated
, int replace_old
)
1013 struct snd_kcontrol
*kctl
;
1014 struct snd_mixer_oss_slot
*rslot
;
1017 /* check if already assigned */
1018 if (mixer
->slots
[ptr
->oss_id
].get_volume
&& ! replace_old
)
1021 memset(&slot
, 0, sizeof(slot
));
1022 memset(slot
.numid
, 0xff, sizeof(slot
.numid
)); /* ID_UNKNOWN */
1023 if (snd_mixer_oss_build_test_all(mixer
, ptr
, &slot
))
1025 down_read(&mixer
->card
->controls_rwsem
);
1026 if (ptr
->index
== 0 && (kctl
= snd_mixer_oss_test_id(mixer
, "Capture Source", 0)) != NULL
) {
1027 struct snd_ctl_elem_info
*uinfo
;
1029 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
1031 up_read(&mixer
->card
->controls_rwsem
);
1035 if (kctl
->info(kctl
, uinfo
)) {
1036 up_read(&mixer
->card
->controls_rwsem
);
1039 strcpy(str
, ptr
->name
);
1040 if (!strcmp(str
, "Master"))
1042 if (!strcmp(str
, "Master Mono"))
1043 strcpy(str
, "Mix Mono");
1044 slot
.capture_item
= 0;
1045 if (!strcmp(uinfo
->value
.enumerated
.name
, str
)) {
1046 slot
.present
|= SNDRV_MIXER_OSS_PRESENT_CAPTURE
;
1048 for (slot
.capture_item
= 1; slot
.capture_item
< uinfo
->value
.enumerated
.items
; slot
.capture_item
++) {
1049 uinfo
->value
.enumerated
.item
= slot
.capture_item
;
1050 if (kctl
->info(kctl
, uinfo
)) {
1051 up_read(&mixer
->card
->controls_rwsem
);
1054 if (!strcmp(uinfo
->value
.enumerated
.name
, str
)) {
1055 slot
.present
|= SNDRV_MIXER_OSS_PRESENT_CAPTURE
;
1062 up_read(&mixer
->card
->controls_rwsem
);
1063 if (slot
.present
!= 0) {
1064 pslot
= kmalloc(sizeof(slot
), GFP_KERNEL
);
1068 pslot
->signature
= SNDRV_MIXER_OSS_SIGNATURE
;
1069 pslot
->assigned
= ptr
;
1070 pslot
->allocated
= ptr_allocated
;
1071 rslot
= &mixer
->slots
[ptr
->oss_id
];
1072 mixer_slot_clear(rslot
);
1073 rslot
->stereo
= slot
.channels
> 1 ? 1 : 0;
1074 rslot
->get_volume
= snd_mixer_oss_get_volume1
;
1075 rslot
->put_volume
= snd_mixer_oss_put_volume1
;
1076 /* note: ES18xx have both Capture Source and XX Capture Volume !!! */
1077 if (slot
.present
& SNDRV_MIXER_OSS_PRESENT_CSWITCH
) {
1078 rslot
->get_recsrc
= snd_mixer_oss_get_recsrc1_sw
;
1079 rslot
->put_recsrc
= snd_mixer_oss_put_recsrc1_sw
;
1080 } else if (slot
.present
& SNDRV_MIXER_OSS_PRESENT_CROUTE
) {
1081 rslot
->get_recsrc
= snd_mixer_oss_get_recsrc1_route
;
1082 rslot
->put_recsrc
= snd_mixer_oss_put_recsrc1_route
;
1083 } else if (slot
.present
& SNDRV_MIXER_OSS_PRESENT_CAPTURE
) {
1084 mixer
->mask_recsrc
|= 1 << ptr
->oss_id
;
1086 rslot
->private_data
= pslot
;
1087 rslot
->private_free
= snd_mixer_oss_slot_free
;
1093 #ifdef CONFIG_PROC_FS
1096 #define MIXER_VOL(name) [SOUND_MIXER_##name] = #name
1097 static char *oss_mixer_names
[SNDRV_OSS_MAX_MIXERS
] = {
1115 MIXER_VOL(DIGITAL1
),
1116 MIXER_VOL(DIGITAL2
),
1117 MIXER_VOL(DIGITAL3
),
1119 MIXER_VOL(PHONEOUT
),
1129 static void snd_mixer_oss_proc_read(struct snd_info_entry
*entry
,
1130 struct snd_info_buffer
*buffer
)
1132 struct snd_mixer_oss
*mixer
= entry
->private_data
;
1135 mutex_lock(&mixer
->reg_mutex
);
1136 for (i
= 0; i
< SNDRV_OSS_MAX_MIXERS
; i
++) {
1139 if (! oss_mixer_names
[i
])
1141 p
= (struct slot
*)mixer
->slots
[i
].private_data
;
1142 snd_iprintf(buffer
, "%s ", oss_mixer_names
[i
]);
1143 if (p
&& p
->assigned
)
1144 snd_iprintf(buffer
, "\"%s\" %d\n",
1146 p
->assigned
->index
);
1148 snd_iprintf(buffer
, "\"\" 0\n");
1150 mutex_unlock(&mixer
->reg_mutex
);
1153 static void snd_mixer_oss_proc_write(struct snd_info_entry
*entry
,
1154 struct snd_info_buffer
*buffer
)
1156 struct snd_mixer_oss
*mixer
= entry
->private_data
;
1157 char line
[128], str
[32], idxstr
[16];
1160 struct snd_mixer_oss_assign_table
*tbl
;
1163 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
1164 cptr
= snd_info_get_str(str
, line
, sizeof(str
));
1165 for (ch
= 0; ch
< SNDRV_OSS_MAX_MIXERS
; ch
++)
1166 if (oss_mixer_names
[ch
] && strcmp(oss_mixer_names
[ch
], str
) == 0)
1168 if (ch
>= SNDRV_OSS_MAX_MIXERS
) {
1169 snd_printk(KERN_ERR
"mixer_oss: invalid OSS volume '%s'\n", str
);
1172 cptr
= snd_info_get_str(str
, cptr
, sizeof(str
));
1174 /* remove the entry */
1175 mutex_lock(&mixer
->reg_mutex
);
1176 mixer_slot_clear(&mixer
->slots
[ch
]);
1177 mutex_unlock(&mixer
->reg_mutex
);
1180 snd_info_get_str(idxstr
, cptr
, sizeof(idxstr
));
1181 idx
= simple_strtoul(idxstr
, NULL
, 10);
1182 if (idx
>= 0x4000) { /* too big */
1183 snd_printk(KERN_ERR
"mixer_oss: invalid index %d\n", idx
);
1186 mutex_lock(&mixer
->reg_mutex
);
1187 slot
= (struct slot
*)mixer
->slots
[ch
].private_data
;
1188 if (slot
&& slot
->assigned
&&
1189 slot
->assigned
->index
== idx
&& ! strcmp(slot
->assigned
->name
, str
))
1192 tbl
= kmalloc(sizeof(*tbl
), GFP_KERNEL
);
1194 snd_printk(KERN_ERR
"mixer_oss: no memory\n");
1198 tbl
->name
= kstrdup(str
, GFP_KERNEL
);
1204 if (snd_mixer_oss_build_input(mixer
, tbl
, 1, 1) <= 0) {
1209 mutex_unlock(&mixer
->reg_mutex
);
1213 static void snd_mixer_oss_proc_init(struct snd_mixer_oss
*mixer
)
1215 struct snd_info_entry
*entry
;
1217 entry
= snd_info_create_card_entry(mixer
->card
, "oss_mixer",
1218 mixer
->card
->proc_root
);
1221 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
1222 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
1223 entry
->c
.text
.read
= snd_mixer_oss_proc_read
;
1224 entry
->c
.text
.write
= snd_mixer_oss_proc_write
;
1225 entry
->private_data
= mixer
;
1226 if (snd_info_register(entry
) < 0) {
1227 snd_info_free_entry(entry
);
1230 mixer
->proc_entry
= entry
;
1233 static void snd_mixer_oss_proc_done(struct snd_mixer_oss
*mixer
)
1235 snd_info_free_entry(mixer
->proc_entry
);
1236 mixer
->proc_entry
= NULL
;
1238 #else /* !CONFIG_PROC_FS */
1239 #define snd_mixer_oss_proc_init(mix)
1240 #define snd_mixer_oss_proc_done(mix)
1241 #endif /* CONFIG_PROC_FS */
1243 static void snd_mixer_oss_build(struct snd_mixer_oss
*mixer
)
1245 static struct snd_mixer_oss_assign_table table
[] = {
1246 { SOUND_MIXER_VOLUME
, "Master", 0 },
1247 { SOUND_MIXER_VOLUME
, "Front", 0 }, /* fallback */
1248 { SOUND_MIXER_BASS
, "Tone Control - Bass", 0 },
1249 { SOUND_MIXER_TREBLE
, "Tone Control - Treble", 0 },
1250 { SOUND_MIXER_SYNTH
, "Synth", 0 },
1251 { SOUND_MIXER_SYNTH
, "FM", 0 }, /* fallback */
1252 { SOUND_MIXER_SYNTH
, "Music", 0 }, /* fallback */
1253 { SOUND_MIXER_PCM
, "PCM", 0 },
1254 { SOUND_MIXER_SPEAKER
, "PC Speaker", 0 },
1255 { SOUND_MIXER_LINE
, "Line", 0 },
1256 { SOUND_MIXER_MIC
, "Mic", 0 },
1257 { SOUND_MIXER_CD
, "CD", 0 },
1258 { SOUND_MIXER_IMIX
, "Monitor Mix", 0 },
1259 { SOUND_MIXER_ALTPCM
, "PCM", 1 },
1260 { SOUND_MIXER_ALTPCM
, "Headphone", 0 }, /* fallback */
1261 { SOUND_MIXER_ALTPCM
, "Wave", 0 }, /* fallback */
1262 { SOUND_MIXER_RECLEV
, "-- nothing --", 0 },
1263 { SOUND_MIXER_IGAIN
, "Capture", 0 },
1264 { SOUND_MIXER_OGAIN
, "Playback", 0 },
1265 { SOUND_MIXER_LINE1
, "Aux", 0 },
1266 { SOUND_MIXER_LINE2
, "Aux", 1 },
1267 { SOUND_MIXER_LINE3
, "Aux", 2 },
1268 { SOUND_MIXER_DIGITAL1
, "Digital", 0 },
1269 { SOUND_MIXER_DIGITAL1
, "IEC958", 0 }, /* fallback */
1270 { SOUND_MIXER_DIGITAL1
, "IEC958 Optical", 0 }, /* fallback */
1271 { SOUND_MIXER_DIGITAL1
, "IEC958 Coaxial", 0 }, /* fallback */
1272 { SOUND_MIXER_DIGITAL2
, "Digital", 1 },
1273 { SOUND_MIXER_DIGITAL3
, "Digital", 2 },
1274 { SOUND_MIXER_PHONEIN
, "Phone", 0 },
1275 { SOUND_MIXER_PHONEOUT
, "Master Mono", 0 },
1276 { SOUND_MIXER_PHONEOUT
, "Speaker", 0 }, /*fallback*/
1277 { SOUND_MIXER_PHONEOUT
, "Mono", 0 }, /*fallback*/
1278 { SOUND_MIXER_PHONEOUT
, "Phone", 0 }, /* fallback */
1279 { SOUND_MIXER_VIDEO
, "Video", 0 },
1280 { SOUND_MIXER_RADIO
, "Radio", 0 },
1281 { SOUND_MIXER_MONITOR
, "Monitor", 0 }
1285 for (idx
= 0; idx
< ARRAY_SIZE(table
); idx
++)
1286 snd_mixer_oss_build_input(mixer
, &table
[idx
], 0, 0);
1287 if (mixer
->mask_recsrc
) {
1288 mixer
->get_recsrc
= snd_mixer_oss_get_recsrc2
;
1289 mixer
->put_recsrc
= snd_mixer_oss_put_recsrc2
;
1297 static int snd_mixer_oss_free1(void *private)
1299 struct snd_mixer_oss
*mixer
= private;
1300 struct snd_card
*card
;
1306 if (snd_BUG_ON(mixer
!= card
->mixer_oss
))
1308 card
->mixer_oss
= NULL
;
1309 for (idx
= 0; idx
< SNDRV_OSS_MAX_MIXERS
; idx
++) {
1310 struct snd_mixer_oss_slot
*chn
= &mixer
->slots
[idx
];
1311 if (chn
->private_free
)
1312 chn
->private_free(chn
);
1318 static int snd_mixer_oss_notify_handler(struct snd_card
*card
, int cmd
)
1320 struct snd_mixer_oss
*mixer
;
1322 if (cmd
== SND_MIXER_OSS_NOTIFY_REGISTER
) {
1326 mixer
= kcalloc(2, sizeof(*mixer
), GFP_KERNEL
);
1329 mutex_init(&mixer
->reg_mutex
);
1330 sprintf(name
, "mixer%i%i", card
->number
, 0);
1331 if ((err
= snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIXER
,
1333 &snd_mixer_oss_f_ops
, card
,
1335 snd_printk(KERN_ERR
"unable to register OSS mixer device %i:%i\n",
1340 mixer
->oss_dev_alloc
= 1;
1342 if (*card
->mixername
)
1343 strlcpy(mixer
->name
, card
->mixername
, sizeof(mixer
->name
));
1345 strlcpy(mixer
->name
, name
, sizeof(mixer
->name
));
1346 #ifdef SNDRV_OSS_INFO_DEV_MIXERS
1347 snd_oss_info_register(SNDRV_OSS_INFO_DEV_MIXERS
,
1351 for (idx
= 0; idx
< SNDRV_OSS_MAX_MIXERS
; idx
++)
1352 mixer
->slots
[idx
].number
= idx
;
1353 card
->mixer_oss
= mixer
;
1354 snd_mixer_oss_build(mixer
);
1355 snd_mixer_oss_proc_init(mixer
);
1357 mixer
= card
->mixer_oss
;
1360 if (mixer
->oss_dev_alloc
) {
1361 #ifdef SNDRV_OSS_INFO_DEV_MIXERS
1362 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_MIXERS
, mixer
->card
->number
);
1364 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIXER
, mixer
->card
, 0);
1365 mixer
->oss_dev_alloc
= 0;
1367 if (cmd
== SND_MIXER_OSS_NOTIFY_DISCONNECT
)
1369 snd_mixer_oss_proc_done(mixer
);
1370 return snd_mixer_oss_free1(mixer
);
1375 static int __init
alsa_mixer_oss_init(void)
1379 snd_mixer_oss_notify_callback
= snd_mixer_oss_notify_handler
;
1380 for (idx
= 0; idx
< SNDRV_CARDS
; idx
++) {
1382 snd_mixer_oss_notify_handler(snd_cards
[idx
], SND_MIXER_OSS_NOTIFY_REGISTER
);
1387 static void __exit
alsa_mixer_oss_exit(void)
1391 snd_mixer_oss_notify_callback
= NULL
;
1392 for (idx
= 0; idx
< SNDRV_CARDS
; idx
++) {
1394 snd_mixer_oss_notify_handler(snd_cards
[idx
], SND_MIXER_OSS_NOTIFY_FREE
);
1398 module_init(alsa_mixer_oss_init
)
1399 module_exit(alsa_mixer_oss_exit
)
1401 EXPORT_SYMBOL(snd_mixer_oss_ioctl_card
);