1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * OSS emulation layer for the mixer interface
7 #include <linux/init.h>
8 #include <linux/slab.h>
9 #include <linux/time.h>
10 #include <linux/string.h>
11 #include <linux/module.h>
12 #include <linux/compat.h>
13 #include <sound/core.h>
14 #include <sound/minors.h>
15 #include <sound/control.h>
16 #include <sound/info.h>
17 #include <sound/mixer_oss.h>
18 #include <linux/soundcard.h>
20 #define OSS_ALSAEMULVER _SIOR ('M', 249, int)
23 MODULE_DESCRIPTION("Mixer OSS emulation for ALSA.");
24 MODULE_LICENSE("GPL");
25 MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_MIXER);
27 static int snd_mixer_oss_open(struct inode *inode, struct file *file)
29 struct snd_card *card;
30 struct snd_mixer_oss_file *fmixer;
33 err = nonseekable_open(inode, file);
37 card = snd_lookup_oss_minor_data(iminor(inode),
38 SNDRV_OSS_DEVICE_TYPE_MIXER);
41 if (card->mixer_oss == NULL) {
45 err = snd_card_file_add(card, file);
50 fmixer = kzalloc(sizeof(*fmixer), GFP_KERNEL);
52 snd_card_file_remove(card, file);
57 fmixer->mixer = card->mixer_oss;
58 file->private_data = fmixer;
59 if (!try_module_get(card->module)) {
61 snd_card_file_remove(card, file);
69 static int snd_mixer_oss_release(struct inode *inode, struct file *file)
71 struct snd_mixer_oss_file *fmixer;
73 if (file->private_data) {
74 fmixer = file->private_data;
75 module_put(fmixer->card->module);
76 snd_card_file_remove(fmixer->card, file);
82 static int snd_mixer_oss_info(struct snd_mixer_oss_file *fmixer,
83 mixer_info __user *_info)
85 struct snd_card *card = fmixer->card;
86 struct snd_mixer_oss *mixer = fmixer->mixer;
87 struct mixer_info info;
89 memset(&info, 0, sizeof(info));
90 strscpy(info.id, mixer && mixer->id[0] ? mixer->id : card->driver, sizeof(info.id));
91 strscpy(info.name, mixer && mixer->name[0] ? mixer->name : card->mixername, sizeof(info.name));
92 info.modify_counter = card->mixer_oss_change_count;
93 if (copy_to_user(_info, &info, sizeof(info)))
98 static int snd_mixer_oss_info_obsolete(struct snd_mixer_oss_file *fmixer,
99 _old_mixer_info __user *_info)
101 struct snd_card *card = fmixer->card;
102 struct snd_mixer_oss *mixer = fmixer->mixer;
103 _old_mixer_info info;
105 memset(&info, 0, sizeof(info));
106 strscpy(info.id, mixer && mixer->id[0] ? mixer->id : card->driver, sizeof(info.id));
107 strscpy(info.name, mixer && mixer->name[0] ? mixer->name : card->mixername, sizeof(info.name));
108 if (copy_to_user(_info, &info, sizeof(info)))
113 static int snd_mixer_oss_caps(struct snd_mixer_oss_file *fmixer)
115 struct snd_mixer_oss *mixer = fmixer->mixer;
120 if (mixer->get_recsrc && mixer->put_recsrc)
121 result |= SOUND_CAP_EXCL_INPUT;
125 static int snd_mixer_oss_devmask(struct snd_mixer_oss_file *fmixer)
127 struct snd_mixer_oss *mixer = fmixer->mixer;
128 struct snd_mixer_oss_slot *pslot;
133 mutex_lock(&mixer->reg_mutex);
134 for (chn = 0; chn < 31; chn++) {
135 pslot = &mixer->slots[chn];
136 if (pslot->put_volume || pslot->put_recsrc)
139 mutex_unlock(&mixer->reg_mutex);
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 mutex_lock(&mixer->reg_mutex);
152 for (chn = 0; chn < 31; chn++) {
153 pslot = &mixer->slots[chn];
154 if (pslot->put_volume && pslot->stereo)
157 mutex_unlock(&mixer->reg_mutex);
161 static int snd_mixer_oss_recmask(struct snd_mixer_oss_file *fmixer)
163 struct snd_mixer_oss *mixer = fmixer->mixer;
168 mutex_lock(&mixer->reg_mutex);
169 if (mixer->put_recsrc && mixer->get_recsrc) { /* exclusive */
170 result = mixer->mask_recsrc;
172 struct snd_mixer_oss_slot *pslot;
174 for (chn = 0; chn < 31; chn++) {
175 pslot = &mixer->slots[chn];
176 if (pslot->put_recsrc)
180 mutex_unlock(&mixer->reg_mutex);
184 static int snd_mixer_oss_get_recsrc(struct snd_mixer_oss_file *fmixer)
186 struct snd_mixer_oss *mixer = fmixer->mixer;
191 mutex_lock(&mixer->reg_mutex);
192 if (mixer->put_recsrc && mixer->get_recsrc) { /* exclusive */
194 result = mixer->get_recsrc(fmixer, &index);
199 struct snd_mixer_oss_slot *pslot;
201 for (chn = 0; chn < 31; chn++) {
202 pslot = &mixer->slots[chn];
203 if (pslot->get_recsrc) {
205 pslot->get_recsrc(fmixer, pslot, &active);
211 mixer->oss_recsrc = result;
213 mutex_unlock(&mixer->reg_mutex);
217 static int snd_mixer_oss_set_recsrc(struct snd_mixer_oss_file *fmixer, int recsrc)
219 struct snd_mixer_oss *mixer = fmixer->mixer;
220 struct snd_mixer_oss_slot *pslot;
227 mutex_lock(&mixer->reg_mutex);
228 if (mixer->get_recsrc && mixer->put_recsrc) { /* exclusive input */
229 if (recsrc & ~mixer->oss_recsrc)
230 recsrc &= ~mixer->oss_recsrc;
231 mixer->put_recsrc(fmixer, ffz(~recsrc));
232 mixer->get_recsrc(fmixer, &index);
235 for (chn = 0; chn < 31; chn++) {
236 pslot = &mixer->slots[chn];
237 if (pslot->put_recsrc) {
238 active = (recsrc & (1 << chn)) ? 1 : 0;
239 pslot->put_recsrc(fmixer, pslot, active);
243 for (chn = 0; chn < 31; chn++) {
244 pslot = &mixer->slots[chn];
245 if (pslot->get_recsrc) {
247 pslot->get_recsrc(fmixer, pslot, &active);
253 mutex_unlock(&mixer->reg_mutex);
257 static int snd_mixer_oss_get_volume(struct snd_mixer_oss_file *fmixer, int slot)
259 struct snd_mixer_oss *mixer = fmixer->mixer;
260 struct snd_mixer_oss_slot *pslot;
261 int result = 0, left, right;
263 if (mixer == NULL || slot > 30)
265 mutex_lock(&mixer->reg_mutex);
266 pslot = &mixer->slots[slot];
267 left = pslot->volume[0];
268 right = pslot->volume[1];
269 if (pslot->get_volume)
270 result = pslot->get_volume(fmixer, pslot, &left, &right);
273 if (snd_BUG_ON(left < 0 || left > 100)) {
277 if (snd_BUG_ON(right < 0 || right > 100)) {
282 pslot->volume[0] = left;
283 pslot->volume[1] = right;
284 result = (left & 0xff) | ((right & 0xff) << 8);
287 mutex_unlock(&mixer->reg_mutex);
291 static int snd_mixer_oss_set_volume(struct snd_mixer_oss_file *fmixer,
292 int slot, int volume)
294 struct snd_mixer_oss *mixer = fmixer->mixer;
295 struct snd_mixer_oss_slot *pslot;
296 int result = 0, left = volume & 0xff, right = (volume >> 8) & 0xff;
298 if (mixer == NULL || slot > 30)
300 mutex_lock(&mixer->reg_mutex);
301 pslot = &mixer->slots[slot];
308 if (pslot->put_volume)
309 result = pslot->put_volume(fmixer, pslot, left, right);
312 pslot->volume[0] = left;
313 pslot->volume[1] = right;
314 result = (left & 0xff) | ((right & 0xff) << 8);
316 mutex_unlock(&mixer->reg_mutex);
320 static int snd_mixer_oss_ioctl1(struct snd_mixer_oss_file *fmixer, unsigned int cmd, unsigned long arg)
322 void __user *argp = (void __user *)arg;
323 int __user *p = argp;
326 if (snd_BUG_ON(!fmixer))
328 if (((cmd >> 8) & 0xff) == 'M') {
330 case SOUND_MIXER_INFO:
331 return snd_mixer_oss_info(fmixer, argp);
332 case SOUND_OLD_MIXER_INFO:
333 return snd_mixer_oss_info_obsolete(fmixer, argp);
334 case SOUND_MIXER_WRITE_RECSRC:
335 if (get_user(tmp, p))
337 tmp = snd_mixer_oss_set_recsrc(fmixer, tmp);
340 return put_user(tmp, p);
342 return put_user(SNDRV_OSS_VERSION, p);
343 case OSS_ALSAEMULVER:
344 return put_user(1, p);
345 case SOUND_MIXER_READ_DEVMASK:
346 tmp = snd_mixer_oss_devmask(fmixer);
349 return put_user(tmp, p);
350 case SOUND_MIXER_READ_STEREODEVS:
351 tmp = snd_mixer_oss_stereodevs(fmixer);
354 return put_user(tmp, p);
355 case SOUND_MIXER_READ_RECMASK:
356 tmp = snd_mixer_oss_recmask(fmixer);
359 return put_user(tmp, p);
360 case SOUND_MIXER_READ_CAPS:
361 tmp = snd_mixer_oss_caps(fmixer);
364 return put_user(tmp, p);
365 case SOUND_MIXER_READ_RECSRC:
366 tmp = snd_mixer_oss_get_recsrc(fmixer);
369 return put_user(tmp, p);
373 if (get_user(tmp, p))
375 tmp = snd_mixer_oss_set_volume(fmixer, cmd & 0xff, tmp);
378 return put_user(tmp, p);
379 } else if (cmd & SIOC_OUT) {
380 tmp = snd_mixer_oss_get_volume(fmixer, cmd & 0xff);
383 return put_user(tmp, p);
388 static long snd_mixer_oss_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
390 return snd_mixer_oss_ioctl1(file->private_data, cmd, arg);
393 int snd_mixer_oss_ioctl_card(struct snd_card *card, unsigned int cmd, unsigned long arg)
395 struct snd_mixer_oss_file fmixer;
397 if (snd_BUG_ON(!card))
399 if (card->mixer_oss == NULL)
401 memset(&fmixer, 0, sizeof(fmixer));
403 fmixer.mixer = card->mixer_oss;
404 return snd_mixer_oss_ioctl1(&fmixer, cmd, arg);
406 EXPORT_SYMBOL(snd_mixer_oss_ioctl_card);
410 static long snd_mixer_oss_ioctl_compat(struct file *file, unsigned int cmd,
413 return snd_mixer_oss_ioctl1(file->private_data, cmd,
414 (unsigned long)compat_ptr(arg));
417 #define snd_mixer_oss_ioctl_compat NULL
424 static const struct file_operations snd_mixer_oss_f_ops =
426 .owner = THIS_MODULE,
427 .open = snd_mixer_oss_open,
428 .release = snd_mixer_oss_release,
430 .unlocked_ioctl = snd_mixer_oss_ioctl,
431 .compat_ioctl = snd_mixer_oss_ioctl_compat,
438 static long snd_mixer_oss_conv(long val, long omin, long omax, long nmin, long nmax)
440 long orange = omax - omin, nrange = nmax - nmin;
444 return DIV_ROUND_CLOSEST(nrange * (val - omin), orange) + nmin;
447 /* convert from alsa native to oss values (0-100) */
448 static long snd_mixer_oss_conv1(long val, long min, long max, int *old)
450 if (val == snd_mixer_oss_conv(*old, 0, 100, min, max))
452 return snd_mixer_oss_conv(val, min, max, 0, 100);
455 /* convert from oss to alsa native values */
456 static long snd_mixer_oss_conv2(long val, long min, long max)
458 return snd_mixer_oss_conv(val, 0, 100, min, max);
462 static void snd_mixer_oss_recsrce_set(struct snd_card *card, int slot)
464 struct snd_mixer_oss *mixer = card->mixer_oss;
466 mixer->mask_recsrc |= 1 << slot;
469 static int snd_mixer_oss_recsrce_get(struct snd_card *card, int slot)
471 struct snd_mixer_oss *mixer = card->mixer_oss;
472 if (mixer && (mixer->mask_recsrc & (1 << slot)))
478 #define SNDRV_MIXER_OSS_SIGNATURE 0x65999250
480 #define SNDRV_MIXER_OSS_ITEM_GLOBAL 0
481 #define SNDRV_MIXER_OSS_ITEM_GSWITCH 1
482 #define SNDRV_MIXER_OSS_ITEM_GROUTE 2
483 #define SNDRV_MIXER_OSS_ITEM_GVOLUME 3
484 #define SNDRV_MIXER_OSS_ITEM_PSWITCH 4
485 #define SNDRV_MIXER_OSS_ITEM_PROUTE 5
486 #define SNDRV_MIXER_OSS_ITEM_PVOLUME 6
487 #define SNDRV_MIXER_OSS_ITEM_CSWITCH 7
488 #define SNDRV_MIXER_OSS_ITEM_CROUTE 8
489 #define SNDRV_MIXER_OSS_ITEM_CVOLUME 9
490 #define SNDRV_MIXER_OSS_ITEM_CAPTURE 10
492 #define SNDRV_MIXER_OSS_ITEM_COUNT 11
494 #define SNDRV_MIXER_OSS_PRESENT_GLOBAL (1<<0)
495 #define SNDRV_MIXER_OSS_PRESENT_GSWITCH (1<<1)
496 #define SNDRV_MIXER_OSS_PRESENT_GROUTE (1<<2)
497 #define SNDRV_MIXER_OSS_PRESENT_GVOLUME (1<<3)
498 #define SNDRV_MIXER_OSS_PRESENT_PSWITCH (1<<4)
499 #define SNDRV_MIXER_OSS_PRESENT_PROUTE (1<<5)
500 #define SNDRV_MIXER_OSS_PRESENT_PVOLUME (1<<6)
501 #define SNDRV_MIXER_OSS_PRESENT_CSWITCH (1<<7)
502 #define SNDRV_MIXER_OSS_PRESENT_CROUTE (1<<8)
503 #define SNDRV_MIXER_OSS_PRESENT_CVOLUME (1<<9)
504 #define SNDRV_MIXER_OSS_PRESENT_CAPTURE (1<<10)
507 unsigned int signature;
508 unsigned int present;
509 unsigned int channels;
510 unsigned int numid[SNDRV_MIXER_OSS_ITEM_COUNT];
511 unsigned int capture_item;
512 const struct snd_mixer_oss_assign_table *assigned;
513 unsigned int allocated: 1;
516 #define ID_UNKNOWN ((unsigned int)-1)
518 static struct snd_kcontrol *snd_mixer_oss_test_id(struct snd_mixer_oss *mixer, const char *name, int index)
520 struct snd_card *card = mixer->card;
521 struct snd_ctl_elem_id id;
523 memset(&id, 0, sizeof(id));
524 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
525 strscpy(id.name, name, sizeof(id.name));
527 return snd_ctl_find_id_locked(card, &id);
530 static void snd_mixer_oss_get_volume1_vol(struct snd_mixer_oss_file *fmixer,
531 struct snd_mixer_oss_slot *pslot,
533 int *left, int *right)
535 struct snd_ctl_elem_info *uinfo;
536 struct snd_ctl_elem_value *uctl;
537 struct snd_kcontrol *kctl;
538 struct snd_card *card = fmixer->card;
540 if (numid == ID_UNKNOWN)
542 down_read(&card->controls_rwsem);
543 kctl = snd_ctl_find_numid_locked(card, numid);
545 up_read(&card->controls_rwsem);
548 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
549 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
550 if (uinfo == NULL || uctl == NULL)
552 if (kctl->info(kctl, uinfo))
554 if (kctl->get(kctl, uctl))
556 if (uinfo->type == SNDRV_CTL_ELEM_TYPE_BOOLEAN &&
557 uinfo->value.integer.min == 0 && uinfo->value.integer.max == 1)
559 *left = snd_mixer_oss_conv1(uctl->value.integer.value[0], uinfo->value.integer.min, uinfo->value.integer.max, &pslot->volume[0]);
560 if (uinfo->count > 1)
561 *right = snd_mixer_oss_conv1(uctl->value.integer.value[1], uinfo->value.integer.min, uinfo->value.integer.max, &pslot->volume[1]);
563 up_read(&card->controls_rwsem);
568 static void snd_mixer_oss_get_volume1_sw(struct snd_mixer_oss_file *fmixer,
569 struct snd_mixer_oss_slot *pslot,
571 int *left, int *right,
574 struct snd_ctl_elem_info *uinfo;
575 struct snd_ctl_elem_value *uctl;
576 struct snd_kcontrol *kctl;
577 struct snd_card *card = fmixer->card;
579 if (numid == ID_UNKNOWN)
581 down_read(&card->controls_rwsem);
582 kctl = snd_ctl_find_numid_locked(card, numid);
584 up_read(&card->controls_rwsem);
587 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
588 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
589 if (uinfo == NULL || uctl == NULL)
591 if (kctl->info(kctl, uinfo))
593 if (kctl->get(kctl, uctl))
595 if (!uctl->value.integer.value[0]) {
597 if (uinfo->count == 1)
600 if (uinfo->count > 1 && !uctl->value.integer.value[route ? 3 : 1])
603 up_read(&card->controls_rwsem);
608 static int snd_mixer_oss_get_volume1(struct snd_mixer_oss_file *fmixer,
609 struct snd_mixer_oss_slot *pslot,
610 int *left, int *right)
612 struct slot *slot = pslot->private_data;
614 *left = *right = 100;
615 if (slot->present & SNDRV_MIXER_OSS_PRESENT_PVOLUME) {
616 snd_mixer_oss_get_volume1_vol(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PVOLUME], left, right);
617 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GVOLUME) {
618 snd_mixer_oss_get_volume1_vol(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GVOLUME], left, right);
619 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GLOBAL) {
620 snd_mixer_oss_get_volume1_vol(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GLOBAL], left, right);
622 if (slot->present & SNDRV_MIXER_OSS_PRESENT_PSWITCH) {
623 snd_mixer_oss_get_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PSWITCH], left, right, 0);
624 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GSWITCH) {
625 snd_mixer_oss_get_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GSWITCH], left, right, 0);
626 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_PROUTE) {
627 snd_mixer_oss_get_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PROUTE], left, right, 1);
628 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GROUTE) {
629 snd_mixer_oss_get_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GROUTE], left, right, 1);
634 static void snd_mixer_oss_put_volume1_vol(struct snd_mixer_oss_file *fmixer,
635 struct snd_mixer_oss_slot *pslot,
639 struct snd_ctl_elem_info *uinfo;
640 struct snd_ctl_elem_value *uctl;
641 struct snd_kcontrol *kctl;
642 struct snd_card *card = fmixer->card;
645 if (numid == ID_UNKNOWN)
647 down_read(&card->controls_rwsem);
648 kctl = snd_ctl_find_numid_locked(card, numid);
650 up_read(&card->controls_rwsem);
653 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
654 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
655 if (uinfo == NULL || uctl == NULL)
657 if (kctl->info(kctl, uinfo))
659 if (uinfo->type == SNDRV_CTL_ELEM_TYPE_BOOLEAN &&
660 uinfo->value.integer.min == 0 && uinfo->value.integer.max == 1)
662 uctl->value.integer.value[0] = snd_mixer_oss_conv2(left, uinfo->value.integer.min, uinfo->value.integer.max);
663 if (uinfo->count > 1)
664 uctl->value.integer.value[1] = snd_mixer_oss_conv2(right, uinfo->value.integer.min, uinfo->value.integer.max);
665 res = kctl->put(kctl, uctl);
669 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id);
671 up_read(&card->controls_rwsem);
676 static void snd_mixer_oss_put_volume1_sw(struct snd_mixer_oss_file *fmixer,
677 struct snd_mixer_oss_slot *pslot,
682 struct snd_ctl_elem_info *uinfo;
683 struct snd_ctl_elem_value *uctl;
684 struct snd_kcontrol *kctl;
685 struct snd_card *card = fmixer->card;
688 if (numid == ID_UNKNOWN)
690 down_read(&card->controls_rwsem);
691 kctl = snd_ctl_find_numid_locked(card, numid);
693 up_read(&card->controls_rwsem);
696 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
697 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
698 if (uinfo == NULL || uctl == NULL)
700 if (kctl->info(kctl, uinfo))
702 if (uinfo->count > 1) {
703 uctl->value.integer.value[0] = left > 0 ? 1 : 0;
704 uctl->value.integer.value[route ? 3 : 1] = right > 0 ? 1 : 0;
706 uctl->value.integer.value[1] =
707 uctl->value.integer.value[2] = 0;
710 uctl->value.integer.value[0] = (left > 0 || right > 0) ? 1 : 0;
712 res = kctl->put(kctl, uctl);
716 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id);
718 up_read(&card->controls_rwsem);
723 static int snd_mixer_oss_put_volume1(struct snd_mixer_oss_file *fmixer,
724 struct snd_mixer_oss_slot *pslot,
727 struct slot *slot = pslot->private_data;
729 if (slot->present & SNDRV_MIXER_OSS_PRESENT_PVOLUME) {
730 snd_mixer_oss_put_volume1_vol(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PVOLUME], left, right);
731 if (slot->present & SNDRV_MIXER_OSS_PRESENT_CVOLUME)
732 snd_mixer_oss_put_volume1_vol(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CVOLUME], left, right);
733 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_CVOLUME) {
734 snd_mixer_oss_put_volume1_vol(fmixer, pslot,
735 slot->numid[SNDRV_MIXER_OSS_ITEM_CVOLUME], left, right);
736 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GVOLUME) {
737 snd_mixer_oss_put_volume1_vol(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GVOLUME], left, right);
738 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GLOBAL) {
739 snd_mixer_oss_put_volume1_vol(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GLOBAL], left, right);
742 if (slot->present & SNDRV_MIXER_OSS_PRESENT_PSWITCH)
743 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PSWITCH], left, right, 0);
744 if (slot->present & SNDRV_MIXER_OSS_PRESENT_CSWITCH)
745 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CSWITCH], left, right, 0);
746 if (slot->present & SNDRV_MIXER_OSS_PRESENT_GSWITCH)
747 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GSWITCH], left, right, 0);
748 if (slot->present & SNDRV_MIXER_OSS_PRESENT_PROUTE)
749 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PROUTE], left, right, 1);
750 if (slot->present & SNDRV_MIXER_OSS_PRESENT_CROUTE)
751 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CROUTE], left, right, 1);
752 if (slot->present & SNDRV_MIXER_OSS_PRESENT_GROUTE)
753 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GROUTE], left, right, 1);
755 if (slot->present & SNDRV_MIXER_OSS_PRESENT_PSWITCH) {
756 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PSWITCH], left, right, 0);
757 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_CSWITCH) {
758 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CSWITCH], left, right, 0);
759 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GSWITCH) {
760 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GSWITCH], left, right, 0);
761 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_PROUTE) {
762 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_PROUTE], left, right, 1);
763 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_CROUTE) {
764 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CROUTE], left, right, 1);
765 } else if (slot->present & SNDRV_MIXER_OSS_PRESENT_GROUTE) {
766 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_GROUTE], left, right, 1);
772 static int snd_mixer_oss_get_recsrc1_sw(struct snd_mixer_oss_file *fmixer,
773 struct snd_mixer_oss_slot *pslot,
776 struct slot *slot = pslot->private_data;
780 snd_mixer_oss_get_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CSWITCH], &left, &right, 0);
781 *active = (left || right) ? 1 : 0;
785 static int snd_mixer_oss_get_recsrc1_route(struct snd_mixer_oss_file *fmixer,
786 struct snd_mixer_oss_slot *pslot,
789 struct slot *slot = pslot->private_data;
793 snd_mixer_oss_get_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CROUTE], &left, &right, 1);
794 *active = (left || right) ? 1 : 0;
798 static int snd_mixer_oss_put_recsrc1_sw(struct snd_mixer_oss_file *fmixer,
799 struct snd_mixer_oss_slot *pslot,
802 struct slot *slot = pslot->private_data;
804 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CSWITCH], active, active, 0);
808 static int snd_mixer_oss_put_recsrc1_route(struct snd_mixer_oss_file *fmixer,
809 struct snd_mixer_oss_slot *pslot,
812 struct slot *slot = pslot->private_data;
814 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CROUTE], active, active, 1);
818 static int snd_mixer_oss_get_recsrc2(struct snd_mixer_oss_file *fmixer, unsigned int *active_index)
820 struct snd_card *card = fmixer->card;
821 struct snd_mixer_oss *mixer = fmixer->mixer;
822 struct snd_kcontrol *kctl;
823 struct snd_mixer_oss_slot *pslot;
825 struct snd_ctl_elem_info *uinfo;
826 struct snd_ctl_elem_value *uctl;
829 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
830 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
831 if (uinfo == NULL || uctl == NULL) {
835 down_read(&card->controls_rwsem);
836 kctl = snd_mixer_oss_test_id(mixer, "Capture Source", 0);
841 err = kctl->info(kctl, uinfo);
844 err = kctl->get(kctl, uctl);
847 for (idx = 0; idx < 32; idx++) {
848 if (!(mixer->mask_recsrc & (1 << idx)))
850 pslot = &mixer->slots[idx];
851 slot = pslot->private_data;
852 if (slot->signature != SNDRV_MIXER_OSS_SIGNATURE)
854 if (!(slot->present & SNDRV_MIXER_OSS_PRESENT_CAPTURE))
856 if (slot->capture_item == uctl->value.enumerated.item[0]) {
863 up_read(&card->controls_rwsem);
870 static int snd_mixer_oss_put_recsrc2(struct snd_mixer_oss_file *fmixer, unsigned int active_index)
872 struct snd_card *card = fmixer->card;
873 struct snd_mixer_oss *mixer = fmixer->mixer;
874 struct snd_kcontrol *kctl;
875 struct snd_mixer_oss_slot *pslot;
876 struct slot *slot = NULL;
877 struct snd_ctl_elem_info *uinfo;
878 struct snd_ctl_elem_value *uctl;
882 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
883 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
884 if (uinfo == NULL || uctl == NULL) {
888 down_read(&card->controls_rwsem);
889 kctl = snd_mixer_oss_test_id(mixer, "Capture Source", 0);
894 err = kctl->info(kctl, uinfo);
897 for (idx = 0; idx < 32; idx++) {
898 if (!(mixer->mask_recsrc & (1 << idx)))
900 pslot = &mixer->slots[idx];
901 slot = pslot->private_data;
902 if (slot->signature != SNDRV_MIXER_OSS_SIGNATURE)
904 if (!(slot->present & SNDRV_MIXER_OSS_PRESENT_CAPTURE))
906 if (idx == active_index)
912 for (idx = 0; idx < uinfo->count; idx++)
913 uctl->value.enumerated.item[idx] = slot->capture_item;
914 err = kctl->put(kctl, uctl);
916 snd_ctl_notify(fmixer->card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id);
919 up_read(&card->controls_rwsem);
926 struct snd_mixer_oss_assign_table {
932 static int snd_mixer_oss_build_test(struct snd_mixer_oss *mixer, struct slot *slot, const char *name, int index, int item)
934 struct snd_ctl_elem_info *info;
935 struct snd_kcontrol *kcontrol;
936 struct snd_card *card = mixer->card;
939 down_read(&card->controls_rwsem);
940 kcontrol = snd_mixer_oss_test_id(mixer, name, index);
941 if (kcontrol == NULL) {
942 up_read(&card->controls_rwsem);
945 info = kmalloc(sizeof(*info), GFP_KERNEL);
947 up_read(&card->controls_rwsem);
950 err = kcontrol->info(kcontrol, info);
952 up_read(&card->controls_rwsem);
956 slot->numid[item] = kcontrol->id.numid;
957 up_read(&card->controls_rwsem);
958 if (info->count > slot->channels)
959 slot->channels = info->count;
960 slot->present |= 1 << item;
965 static void snd_mixer_oss_slot_free(struct snd_mixer_oss_slot *chn)
967 struct slot *p = chn->private_data;
969 if (p->allocated && p->assigned) {
970 kfree_const(p->assigned->name);
971 kfree_const(p->assigned);
977 static void mixer_slot_clear(struct snd_mixer_oss_slot *rslot)
979 int idx = rslot->number; /* remember this */
980 if (rslot->private_free)
981 rslot->private_free(rslot);
982 memset(rslot, 0, sizeof(*rslot));
986 /* In a separate function to keep gcc 3.2 happy - do NOT merge this in
987 snd_mixer_oss_build_input! */
988 static int snd_mixer_oss_build_test_all(struct snd_mixer_oss *mixer,
989 const struct snd_mixer_oss_assign_table *ptr,
995 err = snd_mixer_oss_build_test(mixer, slot, ptr->name, ptr->index,
996 SNDRV_MIXER_OSS_ITEM_GLOBAL);
999 sprintf(str, "%s Switch", ptr->name);
1000 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1001 SNDRV_MIXER_OSS_ITEM_GSWITCH);
1004 sprintf(str, "%s Route", ptr->name);
1005 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1006 SNDRV_MIXER_OSS_ITEM_GROUTE);
1009 sprintf(str, "%s Volume", ptr->name);
1010 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1011 SNDRV_MIXER_OSS_ITEM_GVOLUME);
1014 sprintf(str, "%s Playback Switch", ptr->name);
1015 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1016 SNDRV_MIXER_OSS_ITEM_PSWITCH);
1019 sprintf(str, "%s Playback Route", ptr->name);
1020 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1021 SNDRV_MIXER_OSS_ITEM_PROUTE);
1024 sprintf(str, "%s Playback Volume", ptr->name);
1025 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1026 SNDRV_MIXER_OSS_ITEM_PVOLUME);
1029 sprintf(str, "%s Capture Switch", ptr->name);
1030 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1031 SNDRV_MIXER_OSS_ITEM_CSWITCH);
1034 sprintf(str, "%s Capture Route", ptr->name);
1035 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1036 SNDRV_MIXER_OSS_ITEM_CROUTE);
1039 sprintf(str, "%s Capture Volume", ptr->name);
1040 err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
1041 SNDRV_MIXER_OSS_ITEM_CVOLUME);
1049 * build an OSS mixer element.
1050 * ptr_allocated means the entry is dynamically allocated (change via proc file).
1051 * when replace_old = 1, the old entry is replaced with the new one.
1053 static int snd_mixer_oss_build_input(struct snd_mixer_oss *mixer,
1054 const struct snd_mixer_oss_assign_table *ptr,
1055 int ptr_allocated, int replace_old)
1059 struct snd_kcontrol *kctl;
1060 struct snd_mixer_oss_slot *rslot;
1063 /* check if already assigned */
1064 if (mixer->slots[ptr->oss_id].get_volume && ! replace_old)
1067 memset(&slot, 0, sizeof(slot));
1068 memset(slot.numid, 0xff, sizeof(slot.numid)); /* ID_UNKNOWN */
1069 if (snd_mixer_oss_build_test_all(mixer, ptr, &slot))
1071 down_read(&mixer->card->controls_rwsem);
1074 kctl = snd_mixer_oss_test_id(mixer, "Capture Source", 0);
1076 struct snd_ctl_elem_info *uinfo;
1078 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
1080 up_read(&mixer->card->controls_rwsem);
1084 if (kctl->info(kctl, uinfo)) {
1085 up_read(&mixer->card->controls_rwsem);
1089 strcpy(str, ptr->name);
1090 if (!strcmp(str, "Master"))
1092 if (!strcmp(str, "Master Mono"))
1093 strcpy(str, "Mix Mono");
1094 slot.capture_item = 0;
1095 if (!strcmp(uinfo->value.enumerated.name, str)) {
1096 slot.present |= SNDRV_MIXER_OSS_PRESENT_CAPTURE;
1098 for (slot.capture_item = 1; slot.capture_item < uinfo->value.enumerated.items; slot.capture_item++) {
1099 uinfo->value.enumerated.item = slot.capture_item;
1100 if (kctl->info(kctl, uinfo)) {
1101 up_read(&mixer->card->controls_rwsem);
1105 if (!strcmp(uinfo->value.enumerated.name, str)) {
1106 slot.present |= SNDRV_MIXER_OSS_PRESENT_CAPTURE;
1113 up_read(&mixer->card->controls_rwsem);
1114 if (slot.present != 0) {
1115 pslot = kmalloc(sizeof(slot), GFP_KERNEL);
1119 pslot->signature = SNDRV_MIXER_OSS_SIGNATURE;
1120 pslot->assigned = ptr;
1121 pslot->allocated = ptr_allocated;
1122 rslot = &mixer->slots[ptr->oss_id];
1123 mixer_slot_clear(rslot);
1124 rslot->stereo = slot.channels > 1 ? 1 : 0;
1125 rslot->get_volume = snd_mixer_oss_get_volume1;
1126 rslot->put_volume = snd_mixer_oss_put_volume1;
1127 /* note: ES18xx have both Capture Source and XX Capture Volume !!! */
1128 if (slot.present & SNDRV_MIXER_OSS_PRESENT_CSWITCH) {
1129 rslot->get_recsrc = snd_mixer_oss_get_recsrc1_sw;
1130 rslot->put_recsrc = snd_mixer_oss_put_recsrc1_sw;
1131 } else if (slot.present & SNDRV_MIXER_OSS_PRESENT_CROUTE) {
1132 rslot->get_recsrc = snd_mixer_oss_get_recsrc1_route;
1133 rslot->put_recsrc = snd_mixer_oss_put_recsrc1_route;
1134 } else if (slot.present & SNDRV_MIXER_OSS_PRESENT_CAPTURE) {
1135 mixer->mask_recsrc |= 1 << ptr->oss_id;
1137 rslot->private_data = pslot;
1138 rslot->private_free = snd_mixer_oss_slot_free;
1144 #ifdef CONFIG_SND_PROC_FS
1147 #define MIXER_VOL(name) [SOUND_MIXER_##name] = #name
1148 static const char * const oss_mixer_names[SNDRV_OSS_MAX_MIXERS] = {
1166 MIXER_VOL(DIGITAL1),
1167 MIXER_VOL(DIGITAL2),
1168 MIXER_VOL(DIGITAL3),
1170 MIXER_VOL(PHONEOUT),
1180 static void snd_mixer_oss_proc_read(struct snd_info_entry *entry,
1181 struct snd_info_buffer *buffer)
1183 struct snd_mixer_oss *mixer = entry->private_data;
1186 mutex_lock(&mixer->reg_mutex);
1187 for (i = 0; i < SNDRV_OSS_MAX_MIXERS; i++) {
1190 if (! oss_mixer_names[i])
1192 p = (struct slot *)mixer->slots[i].private_data;
1193 snd_iprintf(buffer, "%s ", oss_mixer_names[i]);
1194 if (p && p->assigned)
1195 snd_iprintf(buffer, "\"%s\" %d\n",
1197 p->assigned->index);
1199 snd_iprintf(buffer, "\"\" 0\n");
1201 mutex_unlock(&mixer->reg_mutex);
1204 static void snd_mixer_oss_proc_write(struct snd_info_entry *entry,
1205 struct snd_info_buffer *buffer)
1207 struct snd_mixer_oss *mixer = entry->private_data;
1208 char line[128], str[32], idxstr[16];
1212 struct snd_mixer_oss_assign_table *tbl;
1215 while (!snd_info_get_line(buffer, line, sizeof(line))) {
1216 cptr = snd_info_get_str(str, line, sizeof(str));
1217 for (ch = 0; ch < SNDRV_OSS_MAX_MIXERS; ch++)
1218 if (oss_mixer_names[ch] && strcmp(oss_mixer_names[ch], str) == 0)
1220 if (ch >= SNDRV_OSS_MAX_MIXERS) {
1221 pr_err("ALSA: mixer_oss: invalid OSS volume '%s'\n",
1225 cptr = snd_info_get_str(str, cptr, sizeof(str));
1227 /* remove the entry */
1228 mutex_lock(&mixer->reg_mutex);
1229 mixer_slot_clear(&mixer->slots[ch]);
1230 mutex_unlock(&mixer->reg_mutex);
1233 snd_info_get_str(idxstr, cptr, sizeof(idxstr));
1234 idx = simple_strtoul(idxstr, NULL, 10);
1235 if (idx >= 0x4000) { /* too big */
1236 pr_err("ALSA: mixer_oss: invalid index %d\n", idx);
1239 mutex_lock(&mixer->reg_mutex);
1240 slot = (struct slot *)mixer->slots[ch].private_data;
1241 if (slot && slot->assigned &&
1242 slot->assigned->index == idx && ! strcmp(slot->assigned->name, str))
1245 tbl = kmalloc(sizeof(*tbl), GFP_KERNEL);
1249 tbl->name = kstrdup(str, GFP_KERNEL);
1255 if (snd_mixer_oss_build_input(mixer, tbl, 1, 1) <= 0) {
1260 mutex_unlock(&mixer->reg_mutex);
1264 static void snd_mixer_oss_proc_init(struct snd_mixer_oss *mixer)
1266 struct snd_info_entry *entry;
1268 entry = snd_info_create_card_entry(mixer->card, "oss_mixer",
1269 mixer->card->proc_root);
1272 entry->content = SNDRV_INFO_CONTENT_TEXT;
1273 entry->mode = S_IFREG | 0644;
1274 entry->c.text.read = snd_mixer_oss_proc_read;
1275 entry->c.text.write = snd_mixer_oss_proc_write;
1276 entry->private_data = mixer;
1277 if (snd_info_register(entry) < 0) {
1278 snd_info_free_entry(entry);
1281 mixer->proc_entry = entry;
1284 static void snd_mixer_oss_proc_done(struct snd_mixer_oss *mixer)
1286 snd_info_free_entry(mixer->proc_entry);
1287 mixer->proc_entry = NULL;
1289 #else /* !CONFIG_SND_PROC_FS */
1290 #define snd_mixer_oss_proc_init(mix)
1291 #define snd_mixer_oss_proc_done(mix)
1292 #endif /* CONFIG_SND_PROC_FS */
1294 static void snd_mixer_oss_build(struct snd_mixer_oss *mixer)
1296 static const struct snd_mixer_oss_assign_table table[] = {
1297 { SOUND_MIXER_VOLUME, "Master", 0 },
1298 { SOUND_MIXER_VOLUME, "Front", 0 }, /* fallback */
1299 { SOUND_MIXER_BASS, "Tone Control - Bass", 0 },
1300 { SOUND_MIXER_TREBLE, "Tone Control - Treble", 0 },
1301 { SOUND_MIXER_SYNTH, "Synth", 0 },
1302 { SOUND_MIXER_SYNTH, "FM", 0 }, /* fallback */
1303 { SOUND_MIXER_SYNTH, "Music", 0 }, /* fallback */
1304 { SOUND_MIXER_PCM, "PCM", 0 },
1305 { SOUND_MIXER_SPEAKER, "Beep", 0 },
1306 { SOUND_MIXER_SPEAKER, "PC Speaker", 0 }, /* fallback */
1307 { SOUND_MIXER_SPEAKER, "Speaker", 0 }, /* fallback */
1308 { SOUND_MIXER_LINE, "Line", 0 },
1309 { SOUND_MIXER_MIC, "Mic", 0 },
1310 { SOUND_MIXER_CD, "CD", 0 },
1311 { SOUND_MIXER_IMIX, "Monitor Mix", 0 },
1312 { SOUND_MIXER_ALTPCM, "PCM", 1 },
1313 { SOUND_MIXER_ALTPCM, "Headphone", 0 }, /* fallback */
1314 { SOUND_MIXER_ALTPCM, "Wave", 0 }, /* fallback */
1315 { SOUND_MIXER_RECLEV, "-- nothing --", 0 },
1316 { SOUND_MIXER_IGAIN, "Capture", 0 },
1317 { SOUND_MIXER_OGAIN, "Playback", 0 },
1318 { SOUND_MIXER_LINE1, "Aux", 0 },
1319 { SOUND_MIXER_LINE2, "Aux", 1 },
1320 { SOUND_MIXER_LINE3, "Aux", 2 },
1321 { SOUND_MIXER_DIGITAL1, "Digital", 0 },
1322 { SOUND_MIXER_DIGITAL1, "IEC958", 0 }, /* fallback */
1323 { SOUND_MIXER_DIGITAL1, "IEC958 Optical", 0 }, /* fallback */
1324 { SOUND_MIXER_DIGITAL1, "IEC958 Coaxial", 0 }, /* fallback */
1325 { SOUND_MIXER_DIGITAL2, "Digital", 1 },
1326 { SOUND_MIXER_DIGITAL3, "Digital", 2 },
1327 { SOUND_MIXER_PHONEIN, "Phone", 0 },
1328 { SOUND_MIXER_PHONEOUT, "Master Mono", 0 },
1329 { SOUND_MIXER_PHONEOUT, "Speaker", 0 }, /*fallback*/
1330 { SOUND_MIXER_PHONEOUT, "Mono", 0 }, /*fallback*/
1331 { SOUND_MIXER_PHONEOUT, "Phone", 0 }, /* fallback */
1332 { SOUND_MIXER_VIDEO, "Video", 0 },
1333 { SOUND_MIXER_RADIO, "Radio", 0 },
1334 { SOUND_MIXER_MONITOR, "Monitor", 0 }
1338 for (idx = 0; idx < ARRAY_SIZE(table); idx++)
1339 snd_mixer_oss_build_input(mixer, &table[idx], 0, 0);
1340 if (mixer->mask_recsrc) {
1341 mixer->get_recsrc = snd_mixer_oss_get_recsrc2;
1342 mixer->put_recsrc = snd_mixer_oss_put_recsrc2;
1350 static int snd_mixer_oss_free1(void *private)
1352 struct snd_mixer_oss *mixer = private;
1353 struct snd_card *card;
1359 if (snd_BUG_ON(mixer != card->mixer_oss))
1361 card->mixer_oss = NULL;
1362 for (idx = 0; idx < SNDRV_OSS_MAX_MIXERS; idx++) {
1363 struct snd_mixer_oss_slot *chn = &mixer->slots[idx];
1364 if (chn->private_free)
1365 chn->private_free(chn);
1371 static int snd_mixer_oss_notify_handler(struct snd_card *card, int cmd)
1373 struct snd_mixer_oss *mixer;
1375 if (cmd == SND_MIXER_OSS_NOTIFY_REGISTER) {
1378 mixer = kcalloc(2, sizeof(*mixer), GFP_KERNEL);
1381 mutex_init(&mixer->reg_mutex);
1382 err = snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIXER,
1384 &snd_mixer_oss_f_ops, card);
1387 "unable to register OSS mixer device %i:%i\n",
1392 mixer->oss_dev_alloc = 1;
1394 if (*card->mixername)
1395 strscpy(mixer->name, card->mixername, sizeof(mixer->name));
1397 snprintf(mixer->name, sizeof(mixer->name),
1398 "mixer%i", card->number);
1399 #ifdef SNDRV_OSS_INFO_DEV_MIXERS
1400 snd_oss_info_register(SNDRV_OSS_INFO_DEV_MIXERS,
1404 for (idx = 0; idx < SNDRV_OSS_MAX_MIXERS; idx++)
1405 mixer->slots[idx].number = idx;
1406 card->mixer_oss = mixer;
1407 snd_mixer_oss_build(mixer);
1408 snd_mixer_oss_proc_init(mixer);
1410 mixer = card->mixer_oss;
1413 if (mixer->oss_dev_alloc) {
1414 #ifdef SNDRV_OSS_INFO_DEV_MIXERS
1415 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_MIXERS, mixer->card->number);
1417 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIXER, mixer->card, 0);
1418 mixer->oss_dev_alloc = 0;
1420 if (cmd == SND_MIXER_OSS_NOTIFY_DISCONNECT)
1422 snd_mixer_oss_proc_done(mixer);
1423 return snd_mixer_oss_free1(mixer);
1428 static int __init alsa_mixer_oss_init(void)
1430 struct snd_card *card;
1433 snd_mixer_oss_notify_callback = snd_mixer_oss_notify_handler;
1434 for (idx = 0; idx < SNDRV_CARDS; idx++) {
1435 card = snd_card_ref(idx);
1437 snd_mixer_oss_notify_handler(card, SND_MIXER_OSS_NOTIFY_REGISTER);
1438 snd_card_unref(card);
1444 static void __exit alsa_mixer_oss_exit(void)
1446 struct snd_card *card;
1449 snd_mixer_oss_notify_callback = NULL;
1450 for (idx = 0; idx < SNDRV_CARDS; idx++) {
1451 card = snd_card_ref(idx);
1453 snd_mixer_oss_notify_handler(card, SND_MIXER_OSS_NOTIFY_FREE);
1454 snd_card_unref(card);
1459 module_init(alsa_mixer_oss_init)
1460 module_exit(alsa_mixer_oss_exit)