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 <linux/module.h>
27 #include <linux/compat.h>
28 #include <sound/core.h>
29 #include <sound/minors.h>
30 #include <sound/control.h>
31 #include <sound/info.h>
32 #include <sound/mixer_oss.h>
33 #include <linux/soundcard.h>
35 #define OSS_ALSAEMULVER _SIOR ('M', 249, int)
37 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
38 MODULE_DESCRIPTION("Mixer OSS emulation for ALSA.");
39 MODULE_LICENSE("GPL");
40 MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_MIXER
);
42 static int snd_mixer_oss_open(struct inode
*inode
, struct file
*file
)
44 struct snd_card
*card
;
45 struct snd_mixer_oss_file
*fmixer
;
48 err
= nonseekable_open(inode
, file
);
52 card
= snd_lookup_oss_minor_data(iminor(inode
),
53 SNDRV_OSS_DEVICE_TYPE_MIXER
);
56 if (card
->mixer_oss
== NULL
) {
60 err
= snd_card_file_add(card
, file
);
65 fmixer
= kzalloc(sizeof(*fmixer
), GFP_KERNEL
);
67 snd_card_file_remove(card
, file
);
72 fmixer
->mixer
= card
->mixer_oss
;
73 file
->private_data
= fmixer
;
74 if (!try_module_get(card
->module
)) {
76 snd_card_file_remove(card
, file
);
84 static int snd_mixer_oss_release(struct inode
*inode
, struct file
*file
)
86 struct snd_mixer_oss_file
*fmixer
;
88 if (file
->private_data
) {
89 fmixer
= file
->private_data
;
90 module_put(fmixer
->card
->module
);
91 snd_card_file_remove(fmixer
->card
, file
);
97 static int snd_mixer_oss_info(struct snd_mixer_oss_file
*fmixer
,
98 mixer_info __user
*_info
)
100 struct snd_card
*card
= fmixer
->card
;
101 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
102 struct mixer_info info
;
104 memset(&info
, 0, sizeof(info
));
105 strlcpy(info
.id
, mixer
&& mixer
->id
[0] ? mixer
->id
: card
->driver
, sizeof(info
.id
));
106 strlcpy(info
.name
, mixer
&& mixer
->name
[0] ? mixer
->name
: card
->mixername
, sizeof(info
.name
));
107 info
.modify_counter
= card
->mixer_oss_change_count
;
108 if (copy_to_user(_info
, &info
, sizeof(info
)))
113 static int snd_mixer_oss_info_obsolete(struct snd_mixer_oss_file
*fmixer
,
114 _old_mixer_info __user
*_info
)
116 struct snd_card
*card
= fmixer
->card
;
117 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
118 _old_mixer_info info
;
120 memset(&info
, 0, sizeof(info
));
121 strlcpy(info
.id
, mixer
&& mixer
->id
[0] ? mixer
->id
: card
->driver
, sizeof(info
.id
));
122 strlcpy(info
.name
, mixer
&& mixer
->name
[0] ? mixer
->name
: card
->mixername
, sizeof(info
.name
));
123 if (copy_to_user(_info
, &info
, sizeof(info
)))
128 static int snd_mixer_oss_caps(struct snd_mixer_oss_file
*fmixer
)
130 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
135 if (mixer
->get_recsrc
&& mixer
->put_recsrc
)
136 result
|= SOUND_CAP_EXCL_INPUT
;
140 static int snd_mixer_oss_devmask(struct snd_mixer_oss_file
*fmixer
)
142 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
143 struct snd_mixer_oss_slot
*pslot
;
148 for (chn
= 0; chn
< 31; chn
++) {
149 pslot
= &mixer
->slots
[chn
];
150 if (pslot
->put_volume
|| pslot
->put_recsrc
)
156 static int snd_mixer_oss_stereodevs(struct snd_mixer_oss_file
*fmixer
)
158 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
159 struct snd_mixer_oss_slot
*pslot
;
164 for (chn
= 0; chn
< 31; chn
++) {
165 pslot
= &mixer
->slots
[chn
];
166 if (pslot
->put_volume
&& pslot
->stereo
)
172 static int snd_mixer_oss_recmask(struct snd_mixer_oss_file
*fmixer
)
174 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
179 if (mixer
->put_recsrc
&& mixer
->get_recsrc
) { /* exclusive */
180 result
= mixer
->mask_recsrc
;
182 struct snd_mixer_oss_slot
*pslot
;
184 for (chn
= 0; chn
< 31; chn
++) {
185 pslot
= &mixer
->slots
[chn
];
186 if (pslot
->put_recsrc
)
193 static int snd_mixer_oss_get_recsrc(struct snd_mixer_oss_file
*fmixer
)
195 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
200 if (mixer
->put_recsrc
&& mixer
->get_recsrc
) { /* exclusive */
203 if ((err
= mixer
->get_recsrc(fmixer
, &index
)) < 0)
207 struct snd_mixer_oss_slot
*pslot
;
209 for (chn
= 0; chn
< 31; chn
++) {
210 pslot
= &mixer
->slots
[chn
];
211 if (pslot
->get_recsrc
) {
213 pslot
->get_recsrc(fmixer
, pslot
, &active
);
219 return mixer
->oss_recsrc
= result
;
222 static int snd_mixer_oss_set_recsrc(struct snd_mixer_oss_file
*fmixer
, int recsrc
)
224 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
225 struct snd_mixer_oss_slot
*pslot
;
232 if (mixer
->get_recsrc
&& mixer
->put_recsrc
) { /* exclusive input */
233 if (recsrc
& ~mixer
->oss_recsrc
)
234 recsrc
&= ~mixer
->oss_recsrc
;
235 mixer
->put_recsrc(fmixer
, ffz(~recsrc
));
236 mixer
->get_recsrc(fmixer
, &index
);
239 for (chn
= 0; chn
< 31; chn
++) {
240 pslot
= &mixer
->slots
[chn
];
241 if (pslot
->put_recsrc
) {
242 active
= (recsrc
& (1 << chn
)) ? 1 : 0;
243 pslot
->put_recsrc(fmixer
, pslot
, active
);
247 for (chn
= 0; chn
< 31; chn
++) {
248 pslot
= &mixer
->slots
[chn
];
249 if (pslot
->get_recsrc
) {
251 pslot
->get_recsrc(fmixer
, pslot
, &active
);
260 static int snd_mixer_oss_get_volume(struct snd_mixer_oss_file
*fmixer
, int slot
)
262 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
263 struct snd_mixer_oss_slot
*pslot
;
264 int result
= 0, left
, right
;
266 if (mixer
== NULL
|| slot
> 30)
268 pslot
= &mixer
->slots
[slot
];
269 left
= pslot
->volume
[0];
270 right
= pslot
->volume
[1];
271 if (pslot
->get_volume
)
272 result
= pslot
->get_volume(fmixer
, pslot
, &left
, &right
);
275 if (snd_BUG_ON(left
< 0 || left
> 100))
277 if (snd_BUG_ON(right
< 0 || right
> 100))
280 pslot
->volume
[0] = left
;
281 pslot
->volume
[1] = right
;
282 result
= (left
& 0xff) | ((right
& 0xff) << 8);
287 static int snd_mixer_oss_set_volume(struct snd_mixer_oss_file
*fmixer
,
288 int slot
, int volume
)
290 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
291 struct snd_mixer_oss_slot
*pslot
;
292 int result
= 0, left
= volume
& 0xff, right
= (volume
>> 8) & 0xff;
294 if (mixer
== NULL
|| slot
> 30)
296 pslot
= &mixer
->slots
[slot
];
303 if (pslot
->put_volume
)
304 result
= pslot
->put_volume(fmixer
, pslot
, left
, right
);
307 pslot
->volume
[0] = left
;
308 pslot
->volume
[1] = right
;
309 return (left
& 0xff) | ((right
& 0xff) << 8);
312 static int snd_mixer_oss_ioctl1(struct snd_mixer_oss_file
*fmixer
, unsigned int cmd
, unsigned long arg
)
314 void __user
*argp
= (void __user
*)arg
;
315 int __user
*p
= argp
;
318 if (snd_BUG_ON(!fmixer
))
320 if (((cmd
>> 8) & 0xff) == 'M') {
322 case SOUND_MIXER_INFO
:
323 return snd_mixer_oss_info(fmixer
, argp
);
324 case SOUND_OLD_MIXER_INFO
:
325 return snd_mixer_oss_info_obsolete(fmixer
, argp
);
326 case SOUND_MIXER_WRITE_RECSRC
:
327 if (get_user(tmp
, p
))
329 tmp
= snd_mixer_oss_set_recsrc(fmixer
, tmp
);
332 return put_user(tmp
, p
);
334 return put_user(SNDRV_OSS_VERSION
, p
);
335 case OSS_ALSAEMULVER
:
336 return put_user(1, p
);
337 case SOUND_MIXER_READ_DEVMASK
:
338 tmp
= snd_mixer_oss_devmask(fmixer
);
341 return put_user(tmp
, p
);
342 case SOUND_MIXER_READ_STEREODEVS
:
343 tmp
= snd_mixer_oss_stereodevs(fmixer
);
346 return put_user(tmp
, p
);
347 case SOUND_MIXER_READ_RECMASK
:
348 tmp
= snd_mixer_oss_recmask(fmixer
);
351 return put_user(tmp
, p
);
352 case SOUND_MIXER_READ_CAPS
:
353 tmp
= snd_mixer_oss_caps(fmixer
);
356 return put_user(tmp
, p
);
357 case SOUND_MIXER_READ_RECSRC
:
358 tmp
= snd_mixer_oss_get_recsrc(fmixer
);
361 return put_user(tmp
, p
);
365 if (get_user(tmp
, p
))
367 tmp
= snd_mixer_oss_set_volume(fmixer
, cmd
& 0xff, tmp
);
370 return put_user(tmp
, p
);
371 } else if (cmd
& SIOC_OUT
) {
372 tmp
= snd_mixer_oss_get_volume(fmixer
, cmd
& 0xff);
375 return put_user(tmp
, p
);
380 static long snd_mixer_oss_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
382 return snd_mixer_oss_ioctl1(file
->private_data
, cmd
, arg
);
385 int snd_mixer_oss_ioctl_card(struct snd_card
*card
, unsigned int cmd
, unsigned long arg
)
387 struct snd_mixer_oss_file fmixer
;
389 if (snd_BUG_ON(!card
))
391 if (card
->mixer_oss
== NULL
)
393 memset(&fmixer
, 0, sizeof(fmixer
));
395 fmixer
.mixer
= card
->mixer_oss
;
396 return snd_mixer_oss_ioctl1(&fmixer
, cmd
, arg
);
401 static long snd_mixer_oss_ioctl_compat(struct file
*file
, unsigned int cmd
,
404 return snd_mixer_oss_ioctl1(file
->private_data
, cmd
,
405 (unsigned long)compat_ptr(arg
));
408 #define snd_mixer_oss_ioctl_compat NULL
415 static const struct file_operations snd_mixer_oss_f_ops
=
417 .owner
= THIS_MODULE
,
418 .open
= snd_mixer_oss_open
,
419 .release
= snd_mixer_oss_release
,
421 .unlocked_ioctl
= snd_mixer_oss_ioctl
,
422 .compat_ioctl
= snd_mixer_oss_ioctl_compat
,
429 static long snd_mixer_oss_conv(long val
, long omin
, long omax
, long nmin
, long nmax
)
431 long orange
= omax
- omin
, nrange
= nmax
- nmin
;
435 return ((nrange
* (val
- omin
)) + (orange
/ 2)) / orange
+ nmin
;
438 /* convert from alsa native to oss values (0-100) */
439 static long snd_mixer_oss_conv1(long val
, long min
, long max
, int *old
)
441 if (val
== snd_mixer_oss_conv(*old
, 0, 100, min
, max
))
443 return snd_mixer_oss_conv(val
, min
, max
, 0, 100);
446 /* convert from oss to alsa native values */
447 static long snd_mixer_oss_conv2(long val
, long min
, long max
)
449 return snd_mixer_oss_conv(val
, 0, 100, min
, max
);
453 static void snd_mixer_oss_recsrce_set(struct snd_card
*card
, int slot
)
455 struct snd_mixer_oss
*mixer
= card
->mixer_oss
;
457 mixer
->mask_recsrc
|= 1 << slot
;
460 static int snd_mixer_oss_recsrce_get(struct snd_card
*card
, int slot
)
462 struct snd_mixer_oss
*mixer
= card
->mixer_oss
;
463 if (mixer
&& (mixer
->mask_recsrc
& (1 << slot
)))
469 #define SNDRV_MIXER_OSS_SIGNATURE 0x65999250
471 #define SNDRV_MIXER_OSS_ITEM_GLOBAL 0
472 #define SNDRV_MIXER_OSS_ITEM_GSWITCH 1
473 #define SNDRV_MIXER_OSS_ITEM_GROUTE 2
474 #define SNDRV_MIXER_OSS_ITEM_GVOLUME 3
475 #define SNDRV_MIXER_OSS_ITEM_PSWITCH 4
476 #define SNDRV_MIXER_OSS_ITEM_PROUTE 5
477 #define SNDRV_MIXER_OSS_ITEM_PVOLUME 6
478 #define SNDRV_MIXER_OSS_ITEM_CSWITCH 7
479 #define SNDRV_MIXER_OSS_ITEM_CROUTE 8
480 #define SNDRV_MIXER_OSS_ITEM_CVOLUME 9
481 #define SNDRV_MIXER_OSS_ITEM_CAPTURE 10
483 #define SNDRV_MIXER_OSS_ITEM_COUNT 11
485 #define SNDRV_MIXER_OSS_PRESENT_GLOBAL (1<<0)
486 #define SNDRV_MIXER_OSS_PRESENT_GSWITCH (1<<1)
487 #define SNDRV_MIXER_OSS_PRESENT_GROUTE (1<<2)
488 #define SNDRV_MIXER_OSS_PRESENT_GVOLUME (1<<3)
489 #define SNDRV_MIXER_OSS_PRESENT_PSWITCH (1<<4)
490 #define SNDRV_MIXER_OSS_PRESENT_PROUTE (1<<5)
491 #define SNDRV_MIXER_OSS_PRESENT_PVOLUME (1<<6)
492 #define SNDRV_MIXER_OSS_PRESENT_CSWITCH (1<<7)
493 #define SNDRV_MIXER_OSS_PRESENT_CROUTE (1<<8)
494 #define SNDRV_MIXER_OSS_PRESENT_CVOLUME (1<<9)
495 #define SNDRV_MIXER_OSS_PRESENT_CAPTURE (1<<10)
498 unsigned int signature
;
499 unsigned int present
;
500 unsigned int channels
;
501 unsigned int numid
[SNDRV_MIXER_OSS_ITEM_COUNT
];
502 unsigned int capture_item
;
503 struct snd_mixer_oss_assign_table
*assigned
;
504 unsigned int allocated
: 1;
507 #define ID_UNKNOWN ((unsigned int)-1)
509 static struct snd_kcontrol
*snd_mixer_oss_test_id(struct snd_mixer_oss
*mixer
, const char *name
, int index
)
511 struct snd_card
*card
= mixer
->card
;
512 struct snd_ctl_elem_id id
;
514 memset(&id
, 0, sizeof(id
));
515 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
516 strlcpy(id
.name
, name
, sizeof(id
.name
));
518 return snd_ctl_find_id(card
, &id
);
521 static void snd_mixer_oss_get_volume1_vol(struct snd_mixer_oss_file
*fmixer
,
522 struct snd_mixer_oss_slot
*pslot
,
524 int *left
, int *right
)
526 struct snd_ctl_elem_info
*uinfo
;
527 struct snd_ctl_elem_value
*uctl
;
528 struct snd_kcontrol
*kctl
;
529 struct snd_card
*card
= fmixer
->card
;
531 if (numid
== ID_UNKNOWN
)
533 down_read(&card
->controls_rwsem
);
534 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
) {
535 up_read(&card
->controls_rwsem
);
538 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
539 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
540 if (uinfo
== NULL
|| uctl
== NULL
)
542 if (kctl
->info(kctl
, uinfo
))
544 if (kctl
->get(kctl
, uctl
))
546 if (uinfo
->type
== SNDRV_CTL_ELEM_TYPE_BOOLEAN
&&
547 uinfo
->value
.integer
.min
== 0 && uinfo
->value
.integer
.max
== 1)
549 *left
= snd_mixer_oss_conv1(uctl
->value
.integer
.value
[0], uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
, &pslot
->volume
[0]);
550 if (uinfo
->count
> 1)
551 *right
= snd_mixer_oss_conv1(uctl
->value
.integer
.value
[1], uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
, &pslot
->volume
[1]);
553 up_read(&card
->controls_rwsem
);
558 static void snd_mixer_oss_get_volume1_sw(struct snd_mixer_oss_file
*fmixer
,
559 struct snd_mixer_oss_slot
*pslot
,
561 int *left
, int *right
,
564 struct snd_ctl_elem_info
*uinfo
;
565 struct snd_ctl_elem_value
*uctl
;
566 struct snd_kcontrol
*kctl
;
567 struct snd_card
*card
= fmixer
->card
;
569 if (numid
== ID_UNKNOWN
)
571 down_read(&card
->controls_rwsem
);
572 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
) {
573 up_read(&card
->controls_rwsem
);
576 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
577 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
578 if (uinfo
== NULL
|| uctl
== NULL
)
580 if (kctl
->info(kctl
, uinfo
))
582 if (kctl
->get(kctl
, uctl
))
584 if (!uctl
->value
.integer
.value
[0]) {
586 if (uinfo
->count
== 1)
589 if (uinfo
->count
> 1 && !uctl
->value
.integer
.value
[route
? 3 : 1])
592 up_read(&card
->controls_rwsem
);
597 static int snd_mixer_oss_get_volume1(struct snd_mixer_oss_file
*fmixer
,
598 struct snd_mixer_oss_slot
*pslot
,
599 int *left
, int *right
)
601 struct slot
*slot
= pslot
->private_data
;
603 *left
= *right
= 100;
604 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PVOLUME
) {
605 snd_mixer_oss_get_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PVOLUME
], left
, right
);
606 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GVOLUME
) {
607 snd_mixer_oss_get_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GVOLUME
], left
, right
);
608 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GLOBAL
) {
609 snd_mixer_oss_get_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GLOBAL
], left
, right
);
611 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PSWITCH
) {
612 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PSWITCH
], left
, right
, 0);
613 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GSWITCH
) {
614 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GSWITCH
], left
, right
, 0);
615 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PROUTE
) {
616 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PROUTE
], left
, right
, 1);
617 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GROUTE
) {
618 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GROUTE
], left
, right
, 1);
623 static void snd_mixer_oss_put_volume1_vol(struct snd_mixer_oss_file
*fmixer
,
624 struct snd_mixer_oss_slot
*pslot
,
628 struct snd_ctl_elem_info
*uinfo
;
629 struct snd_ctl_elem_value
*uctl
;
630 struct snd_kcontrol
*kctl
;
631 struct snd_card
*card
= fmixer
->card
;
634 if (numid
== ID_UNKNOWN
)
636 down_read(&card
->controls_rwsem
);
637 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
) {
638 up_read(&card
->controls_rwsem
);
641 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
642 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
643 if (uinfo
== NULL
|| uctl
== NULL
)
645 if (kctl
->info(kctl
, uinfo
))
647 if (uinfo
->type
== SNDRV_CTL_ELEM_TYPE_BOOLEAN
&&
648 uinfo
->value
.integer
.min
== 0 && uinfo
->value
.integer
.max
== 1)
650 uctl
->value
.integer
.value
[0] = snd_mixer_oss_conv2(left
, uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
);
651 if (uinfo
->count
> 1)
652 uctl
->value
.integer
.value
[1] = snd_mixer_oss_conv2(right
, uinfo
->value
.integer
.min
, uinfo
->value
.integer
.max
);
653 if ((res
= kctl
->put(kctl
, uctl
)) < 0)
656 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &kctl
->id
);
658 up_read(&card
->controls_rwsem
);
663 static void snd_mixer_oss_put_volume1_sw(struct snd_mixer_oss_file
*fmixer
,
664 struct snd_mixer_oss_slot
*pslot
,
669 struct snd_ctl_elem_info
*uinfo
;
670 struct snd_ctl_elem_value
*uctl
;
671 struct snd_kcontrol
*kctl
;
672 struct snd_card
*card
= fmixer
->card
;
675 if (numid
== ID_UNKNOWN
)
677 down_read(&card
->controls_rwsem
);
678 if ((kctl
= snd_ctl_find_numid(card
, numid
)) == NULL
) {
679 up_read(&card
->controls_rwsem
);
682 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
683 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
684 if (uinfo
== NULL
|| uctl
== NULL
)
686 if (kctl
->info(kctl
, uinfo
))
688 if (uinfo
->count
> 1) {
689 uctl
->value
.integer
.value
[0] = left
> 0 ? 1 : 0;
690 uctl
->value
.integer
.value
[route
? 3 : 1] = right
> 0 ? 1 : 0;
692 uctl
->value
.integer
.value
[1] =
693 uctl
->value
.integer
.value
[2] = 0;
696 uctl
->value
.integer
.value
[0] = (left
> 0 || right
> 0) ? 1 : 0;
698 if ((res
= kctl
->put(kctl
, uctl
)) < 0)
701 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &kctl
->id
);
703 up_read(&card
->controls_rwsem
);
708 static int snd_mixer_oss_put_volume1(struct snd_mixer_oss_file
*fmixer
,
709 struct snd_mixer_oss_slot
*pslot
,
712 struct slot
*slot
= pslot
->private_data
;
714 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PVOLUME
) {
715 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PVOLUME
], left
, right
);
716 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CVOLUME
)
717 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CVOLUME
], left
, right
);
718 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CVOLUME
) {
719 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
,
720 slot
->numid
[SNDRV_MIXER_OSS_ITEM_CVOLUME
], left
, right
);
721 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GVOLUME
) {
722 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GVOLUME
], left
, right
);
723 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GLOBAL
) {
724 snd_mixer_oss_put_volume1_vol(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GLOBAL
], left
, right
);
727 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PSWITCH
)
728 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PSWITCH
], left
, right
, 0);
729 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CSWITCH
)
730 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], left
, right
, 0);
731 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GSWITCH
)
732 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GSWITCH
], left
, right
, 0);
733 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PROUTE
)
734 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PROUTE
], left
, right
, 1);
735 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CROUTE
)
736 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], left
, right
, 1);
737 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GROUTE
)
738 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GROUTE
], left
, right
, 1);
740 if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PSWITCH
) {
741 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PSWITCH
], left
, right
, 0);
742 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CSWITCH
) {
743 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], left
, right
, 0);
744 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GSWITCH
) {
745 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GSWITCH
], left
, right
, 0);
746 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_PROUTE
) {
747 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_PROUTE
], left
, right
, 1);
748 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_CROUTE
) {
749 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], left
, right
, 1);
750 } else if (slot
->present
& SNDRV_MIXER_OSS_PRESENT_GROUTE
) {
751 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_GROUTE
], left
, right
, 1);
757 static int snd_mixer_oss_get_recsrc1_sw(struct snd_mixer_oss_file
*fmixer
,
758 struct snd_mixer_oss_slot
*pslot
,
761 struct slot
*slot
= pslot
->private_data
;
765 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], &left
, &right
, 0);
766 *active
= (left
|| right
) ? 1 : 0;
770 static int snd_mixer_oss_get_recsrc1_route(struct snd_mixer_oss_file
*fmixer
,
771 struct snd_mixer_oss_slot
*pslot
,
774 struct slot
*slot
= pslot
->private_data
;
778 snd_mixer_oss_get_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], &left
, &right
, 1);
779 *active
= (left
|| right
) ? 1 : 0;
783 static int snd_mixer_oss_put_recsrc1_sw(struct snd_mixer_oss_file
*fmixer
,
784 struct snd_mixer_oss_slot
*pslot
,
787 struct slot
*slot
= pslot
->private_data
;
789 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CSWITCH
], active
, active
, 0);
793 static int snd_mixer_oss_put_recsrc1_route(struct snd_mixer_oss_file
*fmixer
,
794 struct snd_mixer_oss_slot
*pslot
,
797 struct slot
*slot
= pslot
->private_data
;
799 snd_mixer_oss_put_volume1_sw(fmixer
, pslot
, slot
->numid
[SNDRV_MIXER_OSS_ITEM_CROUTE
], active
, active
, 1);
803 static int snd_mixer_oss_get_recsrc2(struct snd_mixer_oss_file
*fmixer
, unsigned int *active_index
)
805 struct snd_card
*card
= fmixer
->card
;
806 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
807 struct snd_kcontrol
*kctl
;
808 struct snd_mixer_oss_slot
*pslot
;
810 struct snd_ctl_elem_info
*uinfo
;
811 struct snd_ctl_elem_value
*uctl
;
814 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
815 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
816 if (uinfo
== NULL
|| uctl
== NULL
) {
820 down_read(&card
->controls_rwsem
);
821 kctl
= snd_mixer_oss_test_id(mixer
, "Capture Source", 0);
826 if ((err
= kctl
->info(kctl
, uinfo
)) < 0)
828 if ((err
= kctl
->get(kctl
, uctl
)) < 0)
830 for (idx
= 0; idx
< 32; idx
++) {
831 if (!(mixer
->mask_recsrc
& (1 << idx
)))
833 pslot
= &mixer
->slots
[idx
];
834 slot
= pslot
->private_data
;
835 if (slot
->signature
!= SNDRV_MIXER_OSS_SIGNATURE
)
837 if (!(slot
->present
& SNDRV_MIXER_OSS_PRESENT_CAPTURE
))
839 if (slot
->capture_item
== uctl
->value
.enumerated
.item
[0]) {
846 up_read(&card
->controls_rwsem
);
853 static int snd_mixer_oss_put_recsrc2(struct snd_mixer_oss_file
*fmixer
, unsigned int active_index
)
855 struct snd_card
*card
= fmixer
->card
;
856 struct snd_mixer_oss
*mixer
= fmixer
->mixer
;
857 struct snd_kcontrol
*kctl
;
858 struct snd_mixer_oss_slot
*pslot
;
859 struct slot
*slot
= NULL
;
860 struct snd_ctl_elem_info
*uinfo
;
861 struct snd_ctl_elem_value
*uctl
;
865 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
866 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
867 if (uinfo
== NULL
|| uctl
== NULL
) {
871 down_read(&card
->controls_rwsem
);
872 kctl
= snd_mixer_oss_test_id(mixer
, "Capture Source", 0);
877 if ((err
= kctl
->info(kctl
, uinfo
)) < 0)
879 for (idx
= 0; idx
< 32; idx
++) {
880 if (!(mixer
->mask_recsrc
& (1 << idx
)))
882 pslot
= &mixer
->slots
[idx
];
883 slot
= pslot
->private_data
;
884 if (slot
->signature
!= SNDRV_MIXER_OSS_SIGNATURE
)
886 if (!(slot
->present
& SNDRV_MIXER_OSS_PRESENT_CAPTURE
))
888 if (idx
== active_index
)
894 for (idx
= 0; idx
< uinfo
->count
; idx
++)
895 uctl
->value
.enumerated
.item
[idx
] = slot
->capture_item
;
896 err
= kctl
->put(kctl
, uctl
);
898 snd_ctl_notify(fmixer
->card
, SNDRV_CTL_EVENT_MASK_VALUE
, &kctl
->id
);
901 up_read(&card
->controls_rwsem
);
908 struct snd_mixer_oss_assign_table
{
914 static int snd_mixer_oss_build_test(struct snd_mixer_oss
*mixer
, struct slot
*slot
, const char *name
, int index
, int item
)
916 struct snd_ctl_elem_info
*info
;
917 struct snd_kcontrol
*kcontrol
;
918 struct snd_card
*card
= mixer
->card
;
921 down_read(&card
->controls_rwsem
);
922 kcontrol
= snd_mixer_oss_test_id(mixer
, name
, index
);
923 if (kcontrol
== NULL
) {
924 up_read(&card
->controls_rwsem
);
927 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
929 up_read(&card
->controls_rwsem
);
932 if ((err
= kcontrol
->info(kcontrol
, info
)) < 0) {
933 up_read(&card
->controls_rwsem
);
937 slot
->numid
[item
] = kcontrol
->id
.numid
;
938 up_read(&card
->controls_rwsem
);
939 if (info
->count
> slot
->channels
)
940 slot
->channels
= info
->count
;
941 slot
->present
|= 1 << item
;
946 static void snd_mixer_oss_slot_free(struct snd_mixer_oss_slot
*chn
)
948 struct slot
*p
= chn
->private_data
;
950 if (p
->allocated
&& p
->assigned
) {
951 kfree(p
->assigned
->name
);
958 static void mixer_slot_clear(struct snd_mixer_oss_slot
*rslot
)
960 int idx
= rslot
->number
; /* remember this */
961 if (rslot
->private_free
)
962 rslot
->private_free(rslot
);
963 memset(rslot
, 0, sizeof(*rslot
));
967 /* In a separate function to keep gcc 3.2 happy - do NOT merge this in
968 snd_mixer_oss_build_input! */
969 static int snd_mixer_oss_build_test_all(struct snd_mixer_oss
*mixer
,
970 struct snd_mixer_oss_assign_table
*ptr
,
976 err
= snd_mixer_oss_build_test(mixer
, slot
, ptr
->name
, ptr
->index
,
977 SNDRV_MIXER_OSS_ITEM_GLOBAL
);
980 sprintf(str
, "%s Switch", ptr
->name
);
981 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
982 SNDRV_MIXER_OSS_ITEM_GSWITCH
);
985 sprintf(str
, "%s Route", ptr
->name
);
986 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
987 SNDRV_MIXER_OSS_ITEM_GROUTE
);
990 sprintf(str
, "%s Volume", ptr
->name
);
991 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
992 SNDRV_MIXER_OSS_ITEM_GVOLUME
);
995 sprintf(str
, "%s Playback Switch", ptr
->name
);
996 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
997 SNDRV_MIXER_OSS_ITEM_PSWITCH
);
1000 sprintf(str
, "%s Playback Route", ptr
->name
);
1001 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
1002 SNDRV_MIXER_OSS_ITEM_PROUTE
);
1005 sprintf(str
, "%s Playback Volume", ptr
->name
);
1006 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
1007 SNDRV_MIXER_OSS_ITEM_PVOLUME
);
1010 sprintf(str
, "%s Capture Switch", ptr
->name
);
1011 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
1012 SNDRV_MIXER_OSS_ITEM_CSWITCH
);
1015 sprintf(str
, "%s Capture Route", ptr
->name
);
1016 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
1017 SNDRV_MIXER_OSS_ITEM_CROUTE
);
1020 sprintf(str
, "%s Capture Volume", ptr
->name
);
1021 err
= snd_mixer_oss_build_test(mixer
, slot
, str
, ptr
->index
,
1022 SNDRV_MIXER_OSS_ITEM_CVOLUME
);
1030 * build an OSS mixer element.
1031 * ptr_allocated means the entry is dynamically allocated (change via proc file).
1032 * when replace_old = 1, the old entry is replaced with the new one.
1034 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
)
1038 struct snd_kcontrol
*kctl
;
1039 struct snd_mixer_oss_slot
*rslot
;
1042 /* check if already assigned */
1043 if (mixer
->slots
[ptr
->oss_id
].get_volume
&& ! replace_old
)
1046 memset(&slot
, 0, sizeof(slot
));
1047 memset(slot
.numid
, 0xff, sizeof(slot
.numid
)); /* ID_UNKNOWN */
1048 if (snd_mixer_oss_build_test_all(mixer
, ptr
, &slot
))
1050 down_read(&mixer
->card
->controls_rwsem
);
1051 if (ptr
->index
== 0 && (kctl
= snd_mixer_oss_test_id(mixer
, "Capture Source", 0)) != NULL
) {
1052 struct snd_ctl_elem_info
*uinfo
;
1054 uinfo
= kzalloc(sizeof(*uinfo
), GFP_KERNEL
);
1056 up_read(&mixer
->card
->controls_rwsem
);
1060 if (kctl
->info(kctl
, uinfo
)) {
1061 up_read(&mixer
->card
->controls_rwsem
);
1065 strcpy(str
, ptr
->name
);
1066 if (!strcmp(str
, "Master"))
1068 if (!strcmp(str
, "Master Mono"))
1069 strcpy(str
, "Mix Mono");
1070 slot
.capture_item
= 0;
1071 if (!strcmp(uinfo
->value
.enumerated
.name
, str
)) {
1072 slot
.present
|= SNDRV_MIXER_OSS_PRESENT_CAPTURE
;
1074 for (slot
.capture_item
= 1; slot
.capture_item
< uinfo
->value
.enumerated
.items
; slot
.capture_item
++) {
1075 uinfo
->value
.enumerated
.item
= slot
.capture_item
;
1076 if (kctl
->info(kctl
, uinfo
)) {
1077 up_read(&mixer
->card
->controls_rwsem
);
1081 if (!strcmp(uinfo
->value
.enumerated
.name
, str
)) {
1082 slot
.present
|= SNDRV_MIXER_OSS_PRESENT_CAPTURE
;
1089 up_read(&mixer
->card
->controls_rwsem
);
1090 if (slot
.present
!= 0) {
1091 pslot
= kmalloc(sizeof(slot
), GFP_KERNEL
);
1095 pslot
->signature
= SNDRV_MIXER_OSS_SIGNATURE
;
1096 pslot
->assigned
= ptr
;
1097 pslot
->allocated
= ptr_allocated
;
1098 rslot
= &mixer
->slots
[ptr
->oss_id
];
1099 mixer_slot_clear(rslot
);
1100 rslot
->stereo
= slot
.channels
> 1 ? 1 : 0;
1101 rslot
->get_volume
= snd_mixer_oss_get_volume1
;
1102 rslot
->put_volume
= snd_mixer_oss_put_volume1
;
1103 /* note: ES18xx have both Capture Source and XX Capture Volume !!! */
1104 if (slot
.present
& SNDRV_MIXER_OSS_PRESENT_CSWITCH
) {
1105 rslot
->get_recsrc
= snd_mixer_oss_get_recsrc1_sw
;
1106 rslot
->put_recsrc
= snd_mixer_oss_put_recsrc1_sw
;
1107 } else if (slot
.present
& SNDRV_MIXER_OSS_PRESENT_CROUTE
) {
1108 rslot
->get_recsrc
= snd_mixer_oss_get_recsrc1_route
;
1109 rslot
->put_recsrc
= snd_mixer_oss_put_recsrc1_route
;
1110 } else if (slot
.present
& SNDRV_MIXER_OSS_PRESENT_CAPTURE
) {
1111 mixer
->mask_recsrc
|= 1 << ptr
->oss_id
;
1113 rslot
->private_data
= pslot
;
1114 rslot
->private_free
= snd_mixer_oss_slot_free
;
1120 #ifdef CONFIG_SND_PROC_FS
1123 #define MIXER_VOL(name) [SOUND_MIXER_##name] = #name
1124 static char *oss_mixer_names
[SNDRV_OSS_MAX_MIXERS
] = {
1142 MIXER_VOL(DIGITAL1
),
1143 MIXER_VOL(DIGITAL2
),
1144 MIXER_VOL(DIGITAL3
),
1146 MIXER_VOL(PHONEOUT
),
1156 static void snd_mixer_oss_proc_read(struct snd_info_entry
*entry
,
1157 struct snd_info_buffer
*buffer
)
1159 struct snd_mixer_oss
*mixer
= entry
->private_data
;
1162 mutex_lock(&mixer
->reg_mutex
);
1163 for (i
= 0; i
< SNDRV_OSS_MAX_MIXERS
; i
++) {
1166 if (! oss_mixer_names
[i
])
1168 p
= (struct slot
*)mixer
->slots
[i
].private_data
;
1169 snd_iprintf(buffer
, "%s ", oss_mixer_names
[i
]);
1170 if (p
&& p
->assigned
)
1171 snd_iprintf(buffer
, "\"%s\" %d\n",
1173 p
->assigned
->index
);
1175 snd_iprintf(buffer
, "\"\" 0\n");
1177 mutex_unlock(&mixer
->reg_mutex
);
1180 static void snd_mixer_oss_proc_write(struct snd_info_entry
*entry
,
1181 struct snd_info_buffer
*buffer
)
1183 struct snd_mixer_oss
*mixer
= entry
->private_data
;
1184 char line
[128], str
[32], idxstr
[16];
1188 struct snd_mixer_oss_assign_table
*tbl
;
1191 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
1192 cptr
= snd_info_get_str(str
, line
, sizeof(str
));
1193 for (ch
= 0; ch
< SNDRV_OSS_MAX_MIXERS
; ch
++)
1194 if (oss_mixer_names
[ch
] && strcmp(oss_mixer_names
[ch
], str
) == 0)
1196 if (ch
>= SNDRV_OSS_MAX_MIXERS
) {
1197 pr_err("ALSA: mixer_oss: invalid OSS volume '%s'\n",
1201 cptr
= snd_info_get_str(str
, cptr
, sizeof(str
));
1203 /* remove the entry */
1204 mutex_lock(&mixer
->reg_mutex
);
1205 mixer_slot_clear(&mixer
->slots
[ch
]);
1206 mutex_unlock(&mixer
->reg_mutex
);
1209 snd_info_get_str(idxstr
, cptr
, sizeof(idxstr
));
1210 idx
= simple_strtoul(idxstr
, NULL
, 10);
1211 if (idx
>= 0x4000) { /* too big */
1212 pr_err("ALSA: mixer_oss: invalid index %d\n", idx
);
1215 mutex_lock(&mixer
->reg_mutex
);
1216 slot
= (struct slot
*)mixer
->slots
[ch
].private_data
;
1217 if (slot
&& slot
->assigned
&&
1218 slot
->assigned
->index
== idx
&& ! strcmp(slot
->assigned
->name
, str
))
1221 tbl
= kmalloc(sizeof(*tbl
), GFP_KERNEL
);
1225 tbl
->name
= kstrdup(str
, GFP_KERNEL
);
1231 if (snd_mixer_oss_build_input(mixer
, tbl
, 1, 1) <= 0) {
1236 mutex_unlock(&mixer
->reg_mutex
);
1240 static void snd_mixer_oss_proc_init(struct snd_mixer_oss
*mixer
)
1242 struct snd_info_entry
*entry
;
1244 entry
= snd_info_create_card_entry(mixer
->card
, "oss_mixer",
1245 mixer
->card
->proc_root
);
1248 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
1249 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
1250 entry
->c
.text
.read
= snd_mixer_oss_proc_read
;
1251 entry
->c
.text
.write
= snd_mixer_oss_proc_write
;
1252 entry
->private_data
= mixer
;
1253 if (snd_info_register(entry
) < 0) {
1254 snd_info_free_entry(entry
);
1257 mixer
->proc_entry
= entry
;
1260 static void snd_mixer_oss_proc_done(struct snd_mixer_oss
*mixer
)
1262 snd_info_free_entry(mixer
->proc_entry
);
1263 mixer
->proc_entry
= NULL
;
1265 #else /* !CONFIG_SND_PROC_FS */
1266 #define snd_mixer_oss_proc_init(mix)
1267 #define snd_mixer_oss_proc_done(mix)
1268 #endif /* CONFIG_SND_PROC_FS */
1270 static void snd_mixer_oss_build(struct snd_mixer_oss
*mixer
)
1272 static struct snd_mixer_oss_assign_table table
[] = {
1273 { SOUND_MIXER_VOLUME
, "Master", 0 },
1274 { SOUND_MIXER_VOLUME
, "Front", 0 }, /* fallback */
1275 { SOUND_MIXER_BASS
, "Tone Control - Bass", 0 },
1276 { SOUND_MIXER_TREBLE
, "Tone Control - Treble", 0 },
1277 { SOUND_MIXER_SYNTH
, "Synth", 0 },
1278 { SOUND_MIXER_SYNTH
, "FM", 0 }, /* fallback */
1279 { SOUND_MIXER_SYNTH
, "Music", 0 }, /* fallback */
1280 { SOUND_MIXER_PCM
, "PCM", 0 },
1281 { SOUND_MIXER_SPEAKER
, "Beep", 0 },
1282 { SOUND_MIXER_SPEAKER
, "PC Speaker", 0 }, /* fallback */
1283 { SOUND_MIXER_SPEAKER
, "Speaker", 0 }, /* fallback */
1284 { SOUND_MIXER_LINE
, "Line", 0 },
1285 { SOUND_MIXER_MIC
, "Mic", 0 },
1286 { SOUND_MIXER_CD
, "CD", 0 },
1287 { SOUND_MIXER_IMIX
, "Monitor Mix", 0 },
1288 { SOUND_MIXER_ALTPCM
, "PCM", 1 },
1289 { SOUND_MIXER_ALTPCM
, "Headphone", 0 }, /* fallback */
1290 { SOUND_MIXER_ALTPCM
, "Wave", 0 }, /* fallback */
1291 { SOUND_MIXER_RECLEV
, "-- nothing --", 0 },
1292 { SOUND_MIXER_IGAIN
, "Capture", 0 },
1293 { SOUND_MIXER_OGAIN
, "Playback", 0 },
1294 { SOUND_MIXER_LINE1
, "Aux", 0 },
1295 { SOUND_MIXER_LINE2
, "Aux", 1 },
1296 { SOUND_MIXER_LINE3
, "Aux", 2 },
1297 { SOUND_MIXER_DIGITAL1
, "Digital", 0 },
1298 { SOUND_MIXER_DIGITAL1
, "IEC958", 0 }, /* fallback */
1299 { SOUND_MIXER_DIGITAL1
, "IEC958 Optical", 0 }, /* fallback */
1300 { SOUND_MIXER_DIGITAL1
, "IEC958 Coaxial", 0 }, /* fallback */
1301 { SOUND_MIXER_DIGITAL2
, "Digital", 1 },
1302 { SOUND_MIXER_DIGITAL3
, "Digital", 2 },
1303 { SOUND_MIXER_PHONEIN
, "Phone", 0 },
1304 { SOUND_MIXER_PHONEOUT
, "Master Mono", 0 },
1305 { SOUND_MIXER_PHONEOUT
, "Speaker", 0 }, /*fallback*/
1306 { SOUND_MIXER_PHONEOUT
, "Mono", 0 }, /*fallback*/
1307 { SOUND_MIXER_PHONEOUT
, "Phone", 0 }, /* fallback */
1308 { SOUND_MIXER_VIDEO
, "Video", 0 },
1309 { SOUND_MIXER_RADIO
, "Radio", 0 },
1310 { SOUND_MIXER_MONITOR
, "Monitor", 0 }
1314 for (idx
= 0; idx
< ARRAY_SIZE(table
); idx
++)
1315 snd_mixer_oss_build_input(mixer
, &table
[idx
], 0, 0);
1316 if (mixer
->mask_recsrc
) {
1317 mixer
->get_recsrc
= snd_mixer_oss_get_recsrc2
;
1318 mixer
->put_recsrc
= snd_mixer_oss_put_recsrc2
;
1326 static int snd_mixer_oss_free1(void *private)
1328 struct snd_mixer_oss
*mixer
= private;
1329 struct snd_card
*card
;
1335 if (snd_BUG_ON(mixer
!= card
->mixer_oss
))
1337 card
->mixer_oss
= NULL
;
1338 for (idx
= 0; idx
< SNDRV_OSS_MAX_MIXERS
; idx
++) {
1339 struct snd_mixer_oss_slot
*chn
= &mixer
->slots
[idx
];
1340 if (chn
->private_free
)
1341 chn
->private_free(chn
);
1347 static int snd_mixer_oss_notify_handler(struct snd_card
*card
, int cmd
)
1349 struct snd_mixer_oss
*mixer
;
1351 if (cmd
== SND_MIXER_OSS_NOTIFY_REGISTER
) {
1354 mixer
= kcalloc(2, sizeof(*mixer
), GFP_KERNEL
);
1357 mutex_init(&mixer
->reg_mutex
);
1358 if ((err
= snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIXER
,
1360 &snd_mixer_oss_f_ops
, card
)) < 0) {
1362 "unable to register OSS mixer device %i:%i\n",
1367 mixer
->oss_dev_alloc
= 1;
1369 if (*card
->mixername
)
1370 strlcpy(mixer
->name
, card
->mixername
, sizeof(mixer
->name
));
1372 snprintf(mixer
->name
, sizeof(mixer
->name
),
1373 "mixer%i", card
->number
);
1374 #ifdef SNDRV_OSS_INFO_DEV_MIXERS
1375 snd_oss_info_register(SNDRV_OSS_INFO_DEV_MIXERS
,
1379 for (idx
= 0; idx
< SNDRV_OSS_MAX_MIXERS
; idx
++)
1380 mixer
->slots
[idx
].number
= idx
;
1381 card
->mixer_oss
= mixer
;
1382 snd_mixer_oss_build(mixer
);
1383 snd_mixer_oss_proc_init(mixer
);
1385 mixer
= card
->mixer_oss
;
1388 if (mixer
->oss_dev_alloc
) {
1389 #ifdef SNDRV_OSS_INFO_DEV_MIXERS
1390 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_MIXERS
, mixer
->card
->number
);
1392 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIXER
, mixer
->card
, 0);
1393 mixer
->oss_dev_alloc
= 0;
1395 if (cmd
== SND_MIXER_OSS_NOTIFY_DISCONNECT
)
1397 snd_mixer_oss_proc_done(mixer
);
1398 return snd_mixer_oss_free1(mixer
);
1403 static int __init
alsa_mixer_oss_init(void)
1407 snd_mixer_oss_notify_callback
= snd_mixer_oss_notify_handler
;
1408 for (idx
= 0; idx
< SNDRV_CARDS
; idx
++) {
1410 snd_mixer_oss_notify_handler(snd_cards
[idx
], SND_MIXER_OSS_NOTIFY_REGISTER
);
1415 static void __exit
alsa_mixer_oss_exit(void)
1419 snd_mixer_oss_notify_callback
= NULL
;
1420 for (idx
= 0; idx
< SNDRV_CARDS
; idx
++) {
1422 snd_mixer_oss_notify_handler(snd_cards
[idx
], SND_MIXER_OSS_NOTIFY_FREE
);
1426 module_init(alsa_mixer_oss_init
)
1427 module_exit(alsa_mixer_oss_exit
)
1429 EXPORT_SYMBOL(snd_mixer_oss_ioctl_card
);