2 * Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
4 * Routines for control of EMU WaveTable chip
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
21 #include <linux/wait.h>
22 #include <linux/slab.h>
23 #include <linux/string.h>
24 #include <sound/core.h>
25 #include <sound/emux_synth.h>
26 #include <linux/init.h>
27 #include "emux_voice.h"
29 MODULE_AUTHOR("Takashi Iwai");
30 MODULE_DESCRIPTION("Routines for control of EMU WaveTable chip");
31 MODULE_LICENSE("GPL");
34 * create a new hardware dependent device for Emu8000/Emu10k1
36 int snd_emux_new(struct snd_emux
**remu
)
41 emu
= kzalloc(sizeof(*emu
), GFP_KERNEL
);
45 spin_lock_init(&emu
->voice_lock
);
46 mutex_init(&emu
->register_mutex
);
49 #ifdef CONFIG_SND_SEQUENCER_OSS
50 emu
->oss_synth
= NULL
;
55 init_timer(&emu
->tlist
);
56 emu
->tlist
.function
= snd_emux_timer_callback
;
57 emu
->tlist
.data
= (unsigned long)emu
;
58 emu
->timer_active
= 0;
64 EXPORT_SYMBOL(snd_emux_new
);
68 static int sf_sample_new(void *private_data
, struct snd_sf_sample
*sp
,
69 struct snd_util_memhdr
*hdr
,
70 const void __user
*buf
, long count
)
72 struct snd_emux
*emu
= private_data
;
73 return emu
->ops
.sample_new(emu
, sp
, hdr
, buf
, count
);
77 static int sf_sample_free(void *private_data
, struct snd_sf_sample
*sp
,
78 struct snd_util_memhdr
*hdr
)
80 struct snd_emux
*emu
= private_data
;
81 return emu
->ops
.sample_free(emu
, sp
, hdr
);
85 static void sf_sample_reset(void *private_data
)
87 struct snd_emux
*emu
= private_data
;
88 emu
->ops
.sample_reset(emu
);
91 int snd_emux_register(struct snd_emux
*emu
, struct snd_card
*card
, int index
, char *name
)
94 struct snd_sf_callback sf_cb
;
96 if (snd_BUG_ON(!emu
->hw
|| emu
->max_voices
<= 0))
98 if (snd_BUG_ON(!card
|| !name
))
102 emu
->name
= kstrdup(name
, GFP_KERNEL
);
103 emu
->voices
= kcalloc(emu
->max_voices
, sizeof(struct snd_emux_voice
),
105 if (emu
->voices
== NULL
)
108 /* create soundfont list */
109 memset(&sf_cb
, 0, sizeof(sf_cb
));
110 sf_cb
.private_data
= emu
;
111 if (emu
->ops
.sample_new
)
112 sf_cb
.sample_new
= sf_sample_new
;
113 if (emu
->ops
.sample_free
)
114 sf_cb
.sample_free
= sf_sample_free
;
115 if (emu
->ops
.sample_reset
)
116 sf_cb
.sample_reset
= sf_sample_reset
;
117 emu
->sflist
= snd_sf_new(&sf_cb
, emu
->memhdr
);
118 if (emu
->sflist
== NULL
)
121 if ((err
= snd_emux_init_hwdep(emu
)) < 0)
124 snd_emux_init_voices(emu
);
126 snd_emux_init_seq(emu
, card
, index
);
127 #ifdef CONFIG_SND_SEQUENCER_OSS
128 snd_emux_init_seq_oss(emu
);
130 snd_emux_init_virmidi(emu
, card
);
132 #ifdef CONFIG_PROC_FS
133 snd_emux_proc_init(emu
, card
, index
);
138 EXPORT_SYMBOL(snd_emux_register
);
142 int snd_emux_free(struct snd_emux
*emu
)
149 spin_lock_irqsave(&emu
->voice_lock
, flags
);
150 if (emu
->timer_active
)
151 del_timer(&emu
->tlist
);
152 spin_unlock_irqrestore(&emu
->voice_lock
, flags
);
154 #ifdef CONFIG_PROC_FS
155 snd_emux_proc_free(emu
);
157 snd_emux_delete_virmidi(emu
);
158 #ifdef CONFIG_SND_SEQUENCER_OSS
159 snd_emux_detach_seq_oss(emu
);
161 snd_emux_detach_seq(emu
);
163 snd_emux_delete_hwdep(emu
);
166 snd_sf_free(emu
->sflist
);
174 EXPORT_SYMBOL(snd_emux_free
);
181 static int __init
alsa_emux_init(void)
186 static void __exit
alsa_emux_exit(void)
190 module_init(alsa_emux_init
)
191 module_exit(alsa_emux_exit
)