opl4_seq.c 5.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/*
 * OPL4 sequencer functions
 *
 * Copyright (c) 2003 by Clemens Ladisch <clemens@ladisch.de>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed and/or modified under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option) any later
 * version.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include "opl4_local.h"
#include <linux/init.h>
#include <linux/moduleparam.h>
37
#include <linux/module.h>
L
Linus Torvalds 已提交
38 39 40 41 42 43 44 45 46 47 48
#include <sound/initval.h>

MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
MODULE_DESCRIPTION("OPL4 wavetable synth driver");
MODULE_LICENSE("Dual BSD/GPL");

int volume_boost = 8;

module_param(volume_boost, int, 0644);
MODULE_PARM_DESC(volume_boost, "Additional volume for OPL4 wavetable sounds.");

49
static int snd_opl4_seq_use_inc(struct snd_opl4 *opl4)
L
Linus Torvalds 已提交
50 51 52 53 54 55
{
	if (!try_module_get(opl4->card->module))
		return -EFAULT;
	return 0;
}

56
static void snd_opl4_seq_use_dec(struct snd_opl4 *opl4)
L
Linus Torvalds 已提交
57 58 59 60
{
	module_put(opl4->card->module);
}

61
static int snd_opl4_seq_use(void *private_data, struct snd_seq_port_subscribe *info)
L
Linus Torvalds 已提交
62
{
63
	struct snd_opl4 *opl4 = private_data;
L
Linus Torvalds 已提交
64 65
	int err;

66
	mutex_lock(&opl4->access_mutex);
L
Linus Torvalds 已提交
67 68

	if (opl4->used) {
69
		mutex_unlock(&opl4->access_mutex);
L
Linus Torvalds 已提交
70 71 72 73 74 75 76
		return -EBUSY;
	}
	opl4->used++;

	if (info->sender.client != SNDRV_SEQ_CLIENT_SYSTEM) {
		err = snd_opl4_seq_use_inc(opl4);
		if (err < 0) {
77
			mutex_unlock(&opl4->access_mutex);
L
Linus Torvalds 已提交
78 79 80 81
			return err;
		}
	}

82
	mutex_unlock(&opl4->access_mutex);
L
Linus Torvalds 已提交
83 84 85 86 87

	snd_opl4_synth_reset(opl4);
	return 0;
}

88
static int snd_opl4_seq_unuse(void *private_data, struct snd_seq_port_subscribe *info)
L
Linus Torvalds 已提交
89
{
90
	struct snd_opl4 *opl4 = private_data;
L
Linus Torvalds 已提交
91 92 93

	snd_opl4_synth_shutdown(opl4);

94
	mutex_lock(&opl4->access_mutex);
L
Linus Torvalds 已提交
95
	opl4->used--;
96
	mutex_unlock(&opl4->access_mutex);
L
Linus Torvalds 已提交
97 98 99 100 101 102

	if (info->sender.client != SNDRV_SEQ_CLIENT_SYSTEM)
		snd_opl4_seq_use_dec(opl4);
	return 0;
}

103
static struct snd_midi_op opl4_ops = {
L
Linus Torvalds 已提交
104 105 106 107 108 109 110
	.note_on =		snd_opl4_note_on,
	.note_off =		snd_opl4_note_off,
	.note_terminate =	snd_opl4_terminate_note,
	.control =		snd_opl4_control,
	.sysex =		snd_opl4_sysex,
};

111
static int snd_opl4_seq_event_input(struct snd_seq_event *ev, int direct,
L
Linus Torvalds 已提交
112 113
				    void *private_data, int atomic, int hop)
{
114
	struct snd_opl4 *opl4 = private_data;
L
Linus Torvalds 已提交
115 116 117 118 119 120 121

	snd_midi_process_event(&opl4_ops, ev, opl4->chset);
	return 0;
}

static void snd_opl4_seq_free_port(void *private_data)
{
122
	struct snd_opl4 *opl4 = private_data;
L
Linus Torvalds 已提交
123 124 125 126

	snd_midi_channel_free_set(opl4->chset);
}

127
static int snd_opl4_seq_probe(struct device *_dev)
L
Linus Torvalds 已提交
128
{
129
	struct snd_seq_device *dev = to_seq_dev(_dev);
130
	struct snd_opl4 *opl4;
L
Linus Torvalds 已提交
131
	int client;
132
	struct snd_seq_port_callback pcallbacks;
L
Linus Torvalds 已提交
133

134
	opl4 = *(struct snd_opl4 **)SNDRV_SEQ_DEVICE_ARGPTR(dev);
L
Linus Torvalds 已提交
135 136 137 138 139 140 141 142 143 144 145 146
	if (!opl4)
		return -EINVAL;

	if (snd_yrw801_detect(opl4) < 0)
		return -ENODEV;

	opl4->chset = snd_midi_channel_alloc_set(16);
	if (!opl4->chset)
		return -ENOMEM;
	opl4->chset->private_data = opl4;

	/* allocate new client */
147 148
	client = snd_seq_create_kernel_client(opl4->card, opl4->seq_dev_num,
					      "OPL4 Wavetable");
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	if (client < 0) {
		snd_midi_channel_free_set(opl4->chset);
		return client;
	}
	opl4->seq_client = client;
	opl4->chset->client = client;

	/* create new port */
	memset(&pcallbacks, 0, sizeof(pcallbacks));
	pcallbacks.owner = THIS_MODULE;
	pcallbacks.use = snd_opl4_seq_use;
	pcallbacks.unuse = snd_opl4_seq_unuse;
	pcallbacks.event_input = snd_opl4_seq_event_input;
	pcallbacks.private_free = snd_opl4_seq_free_port;
	pcallbacks.private_data = opl4;

	opl4->chset->port = snd_seq_event_port_attach(client, &pcallbacks,
						      SNDRV_SEQ_PORT_CAP_WRITE |
						      SNDRV_SEQ_PORT_CAP_SUBS_WRITE,
						      SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC |
169 170 171
						      SNDRV_SEQ_PORT_TYPE_MIDI_GM |
						      SNDRV_SEQ_PORT_TYPE_HARDWARE |
						      SNDRV_SEQ_PORT_TYPE_SYNTHESIZER,
L
Linus Torvalds 已提交
172 173 174 175 176 177 178 179 180 181 182 183
						      16, 24,
						      "OPL4 Wavetable Port");
	if (opl4->chset->port < 0) {
		int err = opl4->chset->port;
		snd_midi_channel_free_set(opl4->chset);
		snd_seq_delete_kernel_client(client);
		opl4->seq_client = -1;
		return err;
	}
	return 0;
}

184
static int snd_opl4_seq_remove(struct device *_dev)
L
Linus Torvalds 已提交
185
{
186
	struct snd_seq_device *dev = to_seq_dev(_dev);
187
	struct snd_opl4 *opl4;
L
Linus Torvalds 已提交
188

189
	opl4 = *(struct snd_opl4 **)SNDRV_SEQ_DEVICE_ARGPTR(dev);
L
Linus Torvalds 已提交
190 191 192 193 194 195 196 197 198 199
	if (!opl4)
		return -EINVAL;

	if (opl4->seq_client >= 0) {
		snd_seq_delete_kernel_client(opl4->seq_client);
		opl4->seq_client = -1;
	}
	return 0;
}

200 201 202 203 204 205 206 207 208
static struct snd_seq_driver opl4_seq_driver = {
	.driver = {
		.name = KBUILD_MODNAME,
		.probe = snd_opl4_seq_probe,
		.remove = snd_opl4_seq_remove,
	},
	.id = SNDRV_SEQ_DEV_ID_OPL4,
	.argsize = sizeof(struct snd_opl4 *),
};
L
Linus Torvalds 已提交
209

210
module_snd_seq_driver(opl4_seq_driver);