mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
1a59d1b8e0
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it 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 program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 59 temple place suite 330 boston ma 02111 1307 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 1334 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070033.113240726@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
106 lines
2.4 KiB
C
106 lines
2.4 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
|
|
*
|
|
* Routines for control of EMU10K1 WaveTable synth
|
|
*/
|
|
|
|
#include "emu10k1_synth_local.h"
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
|
|
MODULE_AUTHOR("Takashi Iwai");
|
|
MODULE_DESCRIPTION("Routines for control of EMU10K1 WaveTable synth");
|
|
MODULE_LICENSE("GPL");
|
|
|
|
/*
|
|
* create a new hardware dependent device for Emu10k1
|
|
*/
|
|
static int snd_emu10k1_synth_probe(struct device *_dev)
|
|
{
|
|
struct snd_seq_device *dev = to_seq_dev(_dev);
|
|
struct snd_emux *emux;
|
|
struct snd_emu10k1 *hw;
|
|
struct snd_emu10k1_synth_arg *arg;
|
|
unsigned long flags;
|
|
|
|
arg = SNDRV_SEQ_DEVICE_ARGPTR(dev);
|
|
if (arg == NULL)
|
|
return -EINVAL;
|
|
|
|
if (arg->seq_ports <= 0)
|
|
return 0; /* nothing */
|
|
if (arg->max_voices < 1)
|
|
arg->max_voices = 1;
|
|
else if (arg->max_voices > 64)
|
|
arg->max_voices = 64;
|
|
|
|
if (snd_emux_new(&emux) < 0)
|
|
return -ENOMEM;
|
|
|
|
snd_emu10k1_ops_setup(emux);
|
|
hw = arg->hwptr;
|
|
emux->hw = hw;
|
|
emux->max_voices = arg->max_voices;
|
|
emux->num_ports = arg->seq_ports;
|
|
emux->pitch_shift = -501;
|
|
emux->memhdr = hw->memhdr;
|
|
/* maximum two ports */
|
|
emux->midi_ports = arg->seq_ports < 2 ? arg->seq_ports : 2;
|
|
/* audigy has two external midis */
|
|
emux->midi_devidx = hw->audigy ? 2 : 1;
|
|
emux->linear_panning = 0;
|
|
emux->hwdep_idx = 2; /* FIXED */
|
|
|
|
if (snd_emux_register(emux, dev->card, arg->index, "Emu10k1") < 0) {
|
|
snd_emux_free(emux);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
spin_lock_irqsave(&hw->voice_lock, flags);
|
|
hw->synth = emux;
|
|
hw->get_synth_voice = snd_emu10k1_synth_get_voice;
|
|
spin_unlock_irqrestore(&hw->voice_lock, flags);
|
|
|
|
dev->driver_data = emux;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int snd_emu10k1_synth_remove(struct device *_dev)
|
|
{
|
|
struct snd_seq_device *dev = to_seq_dev(_dev);
|
|
struct snd_emux *emux;
|
|
struct snd_emu10k1 *hw;
|
|
unsigned long flags;
|
|
|
|
if (dev->driver_data == NULL)
|
|
return 0; /* not registered actually */
|
|
|
|
emux = dev->driver_data;
|
|
|
|
hw = emux->hw;
|
|
spin_lock_irqsave(&hw->voice_lock, flags);
|
|
hw->synth = NULL;
|
|
hw->get_synth_voice = NULL;
|
|
spin_unlock_irqrestore(&hw->voice_lock, flags);
|
|
|
|
snd_emux_free(emux);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* INIT part
|
|
*/
|
|
|
|
static struct snd_seq_driver emu10k1_synth_driver = {
|
|
.driver = {
|
|
.name = KBUILD_MODNAME,
|
|
.probe = snd_emu10k1_synth_probe,
|
|
.remove = snd_emu10k1_synth_remove,
|
|
},
|
|
.id = SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH,
|
|
.argsize = sizeof(struct snd_emu10k1_synth_arg),
|
|
};
|
|
|
|
module_snd_seq_driver(emu10k1_synth_driver);
|