blob: 49195325fdf6c6f7fe74ac50e3e4c3466c4ff60d [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
Paulo Marques543537b2005-06-23 00:09:02 -070023#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <sound/core.h>
25#include <sound/emux_synth.h>
26#include <linux/init.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040027#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "emux_voice.h"
29
30MODULE_AUTHOR("Takashi Iwai");
31MODULE_DESCRIPTION("Routines for control of EMU WaveTable chip");
32MODULE_LICENSE("GPL");
33
34/*
35 * create a new hardware dependent device for Emu8000/Emu10k1
36 */
Takashi Iwai03da3122005-11-17 14:24:47 +010037int snd_emux_new(struct snd_emux **remu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Takashi Iwai03da3122005-11-17 14:24:47 +010039 struct snd_emux *emu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41 *remu = NULL;
Takashi Iwai561b2202005-09-09 14:22:34 +020042 emu = kzalloc(sizeof(*emu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (emu == NULL)
44 return -ENOMEM;
45
46 spin_lock_init(&emu->voice_lock);
Ingo Molnaref9f0a42006-01-16 16:31:42 +010047 mutex_init(&emu->register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 emu->client = -1;
50#ifdef CONFIG_SND_SEQUENCER_OSS
51 emu->oss_synth = NULL;
52#endif
53 emu->max_voices = 0;
54 emu->use_time = 0;
55
Takashi Iwaiabd08352015-01-19 11:41:13 +010056 setup_timer(&emu->tlist, snd_emux_timer_callback, (unsigned long)emu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 emu->timer_active = 0;
58
59 *remu = emu;
60 return 0;
61}
62
Takashi Iwai95ff17562006-04-28 15:13:40 +020063EXPORT_SYMBOL(snd_emux_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/*
66 */
Takashi Iwai03da3122005-11-17 14:24:47 +010067static int sf_sample_new(void *private_data, struct snd_sf_sample *sp,
68 struct snd_util_memhdr *hdr,
69 const void __user *buf, long count)
Takashi Iwaia57d1512005-11-17 10:50:13 +010070{
Takashi Iwai03da3122005-11-17 14:24:47 +010071 struct snd_emux *emu = private_data;
Takashi Iwaia57d1512005-11-17 10:50:13 +010072 return emu->ops.sample_new(emu, sp, hdr, buf, count);
73
74}
75
Takashi Iwai03da3122005-11-17 14:24:47 +010076static int sf_sample_free(void *private_data, struct snd_sf_sample *sp,
77 struct snd_util_memhdr *hdr)
Takashi Iwaia57d1512005-11-17 10:50:13 +010078{
Takashi Iwai03da3122005-11-17 14:24:47 +010079 struct snd_emux *emu = private_data;
Takashi Iwaia57d1512005-11-17 10:50:13 +010080 return emu->ops.sample_free(emu, sp, hdr);
81
82}
83
84static void sf_sample_reset(void *private_data)
85{
Takashi Iwai03da3122005-11-17 14:24:47 +010086 struct snd_emux *emu = private_data;
Takashi Iwaia57d1512005-11-17 10:50:13 +010087 emu->ops.sample_reset(emu);
88}
89
Takashi Iwai03da3122005-11-17 14:24:47 +010090int snd_emux_register(struct snd_emux *emu, struct snd_card *card, int index, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 int err;
Takashi Iwai03da3122005-11-17 14:24:47 +010093 struct snd_sf_callback sf_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Takashi Iwai5e246b82008-08-08 17:12:47 +020095 if (snd_BUG_ON(!emu->hw || emu->max_voices <= 0))
96 return -EINVAL;
97 if (snd_BUG_ON(!card || !name))
98 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 emu->card = card;
Paulo Marques543537b2005-06-23 00:09:02 -0700101 emu->name = kstrdup(name, GFP_KERNEL);
Takashi Iwai03da3122005-11-17 14:24:47 +0100102 emu->voices = kcalloc(emu->max_voices, sizeof(struct snd_emux_voice),
103 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (emu->voices == NULL)
105 return -ENOMEM;
106
107 /* create soundfont list */
108 memset(&sf_cb, 0, sizeof(sf_cb));
109 sf_cb.private_data = emu;
Takashi Iwaia57d1512005-11-17 10:50:13 +0100110 if (emu->ops.sample_new)
111 sf_cb.sample_new = sf_sample_new;
112 if (emu->ops.sample_free)
113 sf_cb.sample_free = sf_sample_free;
114 if (emu->ops.sample_reset)
115 sf_cb.sample_reset = sf_sample_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 emu->sflist = snd_sf_new(&sf_cb, emu->memhdr);
117 if (emu->sflist == NULL)
118 return -ENOMEM;
119
120 if ((err = snd_emux_init_hwdep(emu)) < 0)
121 return err;
122
123 snd_emux_init_voices(emu);
124
125 snd_emux_init_seq(emu, card, index);
126#ifdef CONFIG_SND_SEQUENCER_OSS
127 snd_emux_init_seq_oss(emu);
128#endif
129 snd_emux_init_virmidi(emu, card);
130
131#ifdef CONFIG_PROC_FS
132 snd_emux_proc_init(emu, card, index);
133#endif
134 return 0;
135}
136
Takashi Iwai95ff17562006-04-28 15:13:40 +0200137EXPORT_SYMBOL(snd_emux_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139/*
140 */
Takashi Iwai03da3122005-11-17 14:24:47 +0100141int snd_emux_free(struct snd_emux *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 unsigned long flags;
144
145 if (! emu)
146 return -EINVAL;
147
148 spin_lock_irqsave(&emu->voice_lock, flags);
149 if (emu->timer_active)
150 del_timer(&emu->tlist);
151 spin_unlock_irqrestore(&emu->voice_lock, flags);
152
153#ifdef CONFIG_PROC_FS
154 snd_emux_proc_free(emu);
155#endif
156 snd_emux_delete_virmidi(emu);
157#ifdef CONFIG_SND_SEQUENCER_OSS
158 snd_emux_detach_seq_oss(emu);
159#endif
160 snd_emux_detach_seq(emu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 snd_emux_delete_hwdep(emu);
Markus Elfringb172e0a2015-01-03 18:28:21 +0100162 snd_sf_free(emu->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 kfree(emu->voices);
164 kfree(emu->name);
165 kfree(emu);
166 return 0;
167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169EXPORT_SYMBOL(snd_emux_free);
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/*
173 * INIT part
174 */
175
176static int __init alsa_emux_init(void)
177{
178 return 0;
179}
180
181static void __exit alsa_emux_exit(void)
182{
183}
184
185module_init(alsa_emux_init)
186module_exit(alsa_emux_exit)