blob: 573e3701c14f02f526bac8777d86fa922e36d2a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
3 *
4 * Routines for control of EMU WaveTable chip
5 *
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.
10 *
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.
15 *
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
19 */
20
21#include <sound/driver.h>
22#include <linux/wait.h>
23#include <linux/sched.h>
24#include <linux/slab.h>
Paulo Marques543537b2005-06-23 00:09:02 -070025#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <sound/core.h>
27#include <sound/emux_synth.h>
28#include <linux/init.h>
29#include "emux_voice.h"
30
31MODULE_AUTHOR("Takashi Iwai");
32MODULE_DESCRIPTION("Routines for control of EMU WaveTable chip");
33MODULE_LICENSE("GPL");
34
35/*
36 * create a new hardware dependent device for Emu8000/Emu10k1
37 */
Takashi Iwai03da3122005-11-17 14:24:47 +010038int snd_emux_new(struct snd_emux **remu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Takashi Iwai03da3122005-11-17 14:24:47 +010040 struct snd_emux *emu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42 *remu = NULL;
Takashi Iwai561b2202005-09-09 14:22:34 +020043 emu = kzalloc(sizeof(*emu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 if (emu == NULL)
45 return -ENOMEM;
46
47 spin_lock_init(&emu->voice_lock);
Ingo Molnaref9f0a42006-01-16 16:31:42 +010048 mutex_init(&emu->register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 emu->client = -1;
51#ifdef CONFIG_SND_SEQUENCER_OSS
52 emu->oss_synth = NULL;
53#endif
54 emu->max_voices = 0;
55 emu->use_time = 0;
56
57 init_timer(&emu->tlist);
58 emu->tlist.function = snd_emux_timer_callback;
59 emu->tlist.data = (unsigned long)emu;
60 emu->timer_active = 0;
61
62 *remu = emu;
63 return 0;
64}
65
Takashi Iwai95ff17562006-04-28 15:13:40 +020066EXPORT_SYMBOL(snd_emux_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 */
Takashi Iwai03da3122005-11-17 14:24:47 +010070static int sf_sample_new(void *private_data, struct snd_sf_sample *sp,
71 struct snd_util_memhdr *hdr,
72 const void __user *buf, long count)
Takashi Iwaia57d1512005-11-17 10:50:13 +010073{
Takashi Iwai03da3122005-11-17 14:24:47 +010074 struct snd_emux *emu = private_data;
Takashi Iwaia57d1512005-11-17 10:50:13 +010075 return emu->ops.sample_new(emu, sp, hdr, buf, count);
76
77}
78
Takashi Iwai03da3122005-11-17 14:24:47 +010079static int sf_sample_free(void *private_data, struct snd_sf_sample *sp,
80 struct snd_util_memhdr *hdr)
Takashi Iwaia57d1512005-11-17 10:50:13 +010081{
Takashi Iwai03da3122005-11-17 14:24:47 +010082 struct snd_emux *emu = private_data;
Takashi Iwaia57d1512005-11-17 10:50:13 +010083 return emu->ops.sample_free(emu, sp, hdr);
84
85}
86
87static void sf_sample_reset(void *private_data)
88{
Takashi Iwai03da3122005-11-17 14:24:47 +010089 struct snd_emux *emu = private_data;
Takashi Iwaia57d1512005-11-17 10:50:13 +010090 emu->ops.sample_reset(emu);
91}
92
Takashi Iwai03da3122005-11-17 14:24:47 +010093int snd_emux_register(struct snd_emux *emu, struct snd_card *card, int index, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 int err;
Takashi Iwai03da3122005-11-17 14:24:47 +010096 struct snd_sf_callback sf_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 snd_assert(emu->hw != NULL, return -EINVAL);
99 snd_assert(emu->max_voices > 0, return -EINVAL);
100 snd_assert(card != NULL, return -EINVAL);
101 snd_assert(name != NULL, return -EINVAL);
102
103 emu->card = card;
Paulo Marques543537b2005-06-23 00:09:02 -0700104 emu->name = kstrdup(name, GFP_KERNEL);
Takashi Iwai03da3122005-11-17 14:24:47 +0100105 emu->voices = kcalloc(emu->max_voices, sizeof(struct snd_emux_voice),
106 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (emu->voices == NULL)
108 return -ENOMEM;
109
110 /* create soundfont list */
111 memset(&sf_cb, 0, sizeof(sf_cb));
112 sf_cb.private_data = emu;
Takashi Iwaia57d1512005-11-17 10:50:13 +0100113 if (emu->ops.sample_new)
114 sf_cb.sample_new = sf_sample_new;
115 if (emu->ops.sample_free)
116 sf_cb.sample_free = sf_sample_free;
117 if (emu->ops.sample_reset)
118 sf_cb.sample_reset = sf_sample_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 emu->sflist = snd_sf_new(&sf_cb, emu->memhdr);
120 if (emu->sflist == NULL)
121 return -ENOMEM;
122
123 if ((err = snd_emux_init_hwdep(emu)) < 0)
124 return err;
125
126 snd_emux_init_voices(emu);
127
128 snd_emux_init_seq(emu, card, index);
129#ifdef CONFIG_SND_SEQUENCER_OSS
130 snd_emux_init_seq_oss(emu);
131#endif
132 snd_emux_init_virmidi(emu, card);
133
134#ifdef CONFIG_PROC_FS
135 snd_emux_proc_init(emu, card, index);
136#endif
137 return 0;
138}
139
Takashi Iwai95ff17562006-04-28 15:13:40 +0200140EXPORT_SYMBOL(snd_emux_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142/*
143 */
Takashi Iwai03da3122005-11-17 14:24:47 +0100144int snd_emux_free(struct snd_emux *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 unsigned long flags;
147
148 if (! emu)
149 return -EINVAL;
150
151 spin_lock_irqsave(&emu->voice_lock, flags);
152 if (emu->timer_active)
153 del_timer(&emu->tlist);
154 spin_unlock_irqrestore(&emu->voice_lock, flags);
155
156#ifdef CONFIG_PROC_FS
157 snd_emux_proc_free(emu);
158#endif
159 snd_emux_delete_virmidi(emu);
160#ifdef CONFIG_SND_SEQUENCER_OSS
161 snd_emux_detach_seq_oss(emu);
162#endif
163 snd_emux_detach_seq(emu);
164
165 snd_emux_delete_hwdep(emu);
166
167 if (emu->sflist)
168 snd_sf_free(emu->sflist);
169
170 kfree(emu->voices);
171 kfree(emu->name);
172 kfree(emu);
173 return 0;
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176EXPORT_SYMBOL(snd_emux_free);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/*
180 * INIT part
181 */
182
183static int __init alsa_emux_init(void)
184{
185 return 0;
186}
187
188static void __exit alsa_emux_exit(void)
189{
190}
191
192module_init(alsa_emux_init)
193module_exit(alsa_emux_exit)