2006-07-15 19:36:28 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999 Seigo Tanimura
|
|
|
|
* (c) 2003 Mathew Kanner
|
|
|
|
* Copyright (c) 2003-2006 Yuriy Tsibizov <yuriy.tsibizov@gfk.ru>
|
|
|
|
* 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.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/sbuf.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
|
|
|
|
#include <dev/sound/chip.h>
|
|
|
|
#include <dev/sound/pcm/sound.h>
|
|
|
|
|
|
|
|
#include <dev/sound/midi/midi.h>
|
|
|
|
#include <dev/sound/midi/mpu401.h>
|
|
|
|
#include "mpufoi_if.h"
|
|
|
|
|
|
|
|
#include "opt_emu10kx.h"
|
|
|
|
#include <dev/sound/pci/emu10kx.h>
|
|
|
|
#include "emu10k1-alsa%diked.h"
|
|
|
|
|
|
|
|
struct emu_midi_softc {
|
|
|
|
struct mtx mtx;
|
|
|
|
device_t dev;
|
|
|
|
struct mpu401 *mpu;
|
|
|
|
mpu401_intr_t *mpu_intr;
|
|
|
|
struct emu_sc_info *card;
|
|
|
|
int port; /* I/O port or I/O ptr reg */
|
|
|
|
int is_emu10k1;
|
|
|
|
int fflags; /* File flags */
|
|
|
|
int ihandle; /* interrupt manager handle */
|
|
|
|
};
|
|
|
|
|
|
|
|
static uint32_t emu_midi_card_intr(void *p, uint32_t arg);
|
|
|
|
static devclass_t emu_midi_devclass;
|
|
|
|
|
|
|
|
static unsigned char
|
|
|
|
emu_mread(void *arg __unused, struct emu_midi_softc *sc, int reg)
|
|
|
|
{
|
|
|
|
unsigned int d;
|
|
|
|
|
|
|
|
d = 0;
|
|
|
|
if (sc->is_emu10k1)
|
|
|
|
d = emu_rd(sc->card, 0x18 + reg, 1);
|
|
|
|
else
|
|
|
|
d = emu_rdptr(sc->card, 0, sc->port + reg);
|
|
|
|
|
|
|
|
return (d);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emu_mwrite(void *arg __unused, struct emu_midi_softc *sc, int reg, unsigned char b)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (sc->is_emu10k1)
|
|
|
|
emu_wr(sc->card, 0x18 + reg, b, 1);
|
|
|
|
else
|
|
|
|
emu_wrptr(sc->card, 0, sc->port + reg, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
emu_muninit(void *arg __unused, struct emu_midi_softc *sc)
|
|
|
|
{
|
|
|
|
|
|
|
|
mtx_lock(&sc->mtx);
|
|
|
|
sc->mpu_intr = NULL;
|
|
|
|
mtx_unlock(&sc->mtx);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static kobj_method_t emu_mpu_methods[] = {
|
|
|
|
KOBJMETHOD(mpufoi_read, emu_mread),
|
|
|
|
KOBJMETHOD(mpufoi_write, emu_mwrite),
|
|
|
|
KOBJMETHOD(mpufoi_uninit, emu_muninit),
|
|
|
|
{0, 0}
|
|
|
|
};
|
2006-07-15 20:08:32 +00:00
|
|
|
static DEFINE_CLASS(emu_mpu, emu_mpu_methods, 0);
|
2006-07-15 19:36:28 +00:00
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
emu_midi_card_intr(void *p, uint32_t intr_status)
|
|
|
|
{
|
|
|
|
struct emu_midi_softc *sc = (struct emu_midi_softc *)p;
|
|
|
|
if (sc->mpu_intr)
|
|
|
|
(sc->mpu_intr) (sc->mpu);
|
|
|
|
if (sc->mpu_intr == NULL) {
|
|
|
|
/* We should read MIDI event to unlock card after
|
|
|
|
* interrupt. XXX - check, why this happens. */
|
|
|
|
#ifdef SND_EMU10KX_DEBUG
|
|
|
|
device_printf(sc->dev, "midi interrupt %08x without interrupt handler, force mread!\n", intr_status);
|
|
|
|
#endif
|
|
|
|
(void)emu_mread((void *)(NULL), sc, 0);
|
|
|
|
}
|
|
|
|
return (intr_status); /* Acknowledge everything */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emu_midi_intr(void *p)
|
|
|
|
{
|
|
|
|
(void)emu_midi_card_intr(p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
emu_midi_probe(device_t dev)
|
|
|
|
{
|
|
|
|
struct emu_midi_softc *scp;
|
2006-07-16 20:10:08 +00:00
|
|
|
uintptr_t func, r, is_emu10k1;
|
2006-07-15 19:36:28 +00:00
|
|
|
|
|
|
|
r = BUS_READ_IVAR(device_get_parent(dev), dev, 0, &func);
|
|
|
|
if (func != SCF_MIDI)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
scp = device_get_softc(dev);
|
|
|
|
bzero(scp, sizeof(*scp));
|
2006-07-16 20:10:08 +00:00
|
|
|
r = BUS_READ_IVAR(device_get_parent(dev), dev, EMU_VAR_ISEMU10K1, &is_emu10k1);
|
|
|
|
scp->is_emu10k1 = is_emu10k1 ? 1 : 0;
|
2006-07-15 19:36:28 +00:00
|
|
|
|
|
|
|
device_set_desc(dev, "EMU10Kx MIDI Interface");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
emu_midi_attach(device_t dev)
|
|
|
|
{
|
|
|
|
struct emu_midi_softc * scp;
|
|
|
|
struct sndcard_func *func;
|
|
|
|
struct emu_midiinfo *midiinfo;
|
|
|
|
uint32_t inte_val, ipr_val;
|
|
|
|
|
|
|
|
scp = device_get_softc(dev);
|
|
|
|
func = device_get_ivars(dev);
|
|
|
|
|
|
|
|
scp->dev = dev;
|
|
|
|
midiinfo = (struct emu_midiinfo *)func->varinfo;
|
|
|
|
scp->port = midiinfo->port;
|
|
|
|
scp->card = midiinfo->card;
|
|
|
|
|
|
|
|
mtx_init(&scp->mtx, "emu10kx_midi", NULL, MTX_DEF);
|
|
|
|
|
|
|
|
if (scp->is_emu10k1) {
|
|
|
|
/* SB Live! - only one MIDI device here */
|
|
|
|
inte_val = 0;
|
|
|
|
/* inte_val |= INTE_MIDITXENABLE;*/
|
|
|
|
inte_val |= INTE_MIDIRXENABLE;
|
|
|
|
ipr_val = IPR_MIDITRANSBUFEMPTY;
|
|
|
|
ipr_val |= IPR_MIDIRECVBUFEMPTY;
|
|
|
|
} else {
|
|
|
|
if (scp->port == A_MUDATA1) {
|
|
|
|
/* EXTERNAL MIDI (AudigyDrive) */
|
|
|
|
inte_val = 0;
|
|
|
|
/* inte_val |= A_INTE_MIDITXENABLE1;*/
|
|
|
|
inte_val |= INTE_MIDIRXENABLE;
|
|
|
|
ipr_val = IPR_MIDITRANSBUFEMPTY;
|
|
|
|
ipr_val |= IPR_MIDIRECVBUFEMPTY;
|
|
|
|
} else {
|
|
|
|
/* MIDI hw config port 2 */
|
|
|
|
inte_val = 0;
|
|
|
|
/* inte_val |= A_INTE_MIDITXENABLE2;*/
|
|
|
|
inte_val |= INTE_A_MIDIRXENABLE2;
|
|
|
|
ipr_val = IPR_A_MIDITRANSBUFEMPTY2;
|
|
|
|
ipr_val |= IPR_A_MIDIRECVBUFEMPTY2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (inte_val == 0)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
scp->ihandle = emu_intr_register(scp->card, inte_val, ipr_val, &emu_midi_card_intr, scp);
|
|
|
|
/* Init the interface. */
|
|
|
|
scp->mpu = mpu401_init(&emu_mpu_class, scp, emu_midi_intr, &scp->mpu_intr);
|
|
|
|
if (scp->mpu == NULL) {
|
|
|
|
emu_intr_unregister(scp->card, scp->ihandle);
|
|
|
|
mtx_destroy(&scp->mtx);
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* XXX I don't know how to check for Live!Drive / AudigyDrive
|
|
|
|
* presence. Let's hope that IR enabling code will not harm if
|
|
|
|
* it is not present.
|
|
|
|
*/
|
|
|
|
if (scp->is_emu10k1)
|
|
|
|
emu_enable_ir(scp->card);
|
|
|
|
else {
|
|
|
|
if (scp->port == A_MUDATA1)
|
|
|
|
emu_enable_ir(scp->card);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
emu_midi_detach(device_t dev)
|
|
|
|
{
|
|
|
|
struct emu_midi_softc *scp;
|
|
|
|
|
|
|
|
scp = device_get_softc(dev);
|
|
|
|
mpu401_uninit(scp->mpu);
|
|
|
|
emu_intr_unregister(scp->card, scp->ihandle);
|
|
|
|
mtx_destroy(&scp->mtx);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static device_method_t emu_midi_methods[] = {
|
|
|
|
DEVMETHOD(device_probe, emu_midi_probe),
|
|
|
|
DEVMETHOD(device_attach, emu_midi_attach),
|
|
|
|
DEVMETHOD(device_detach, emu_midi_detach),
|
|
|
|
|
|
|
|
{0, 0},
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t emu_midi_driver = {
|
|
|
|
"midi",
|
|
|
|
emu_midi_methods,
|
|
|
|
sizeof(struct emu_midi_softc),
|
|
|
|
};
|
|
|
|
DRIVER_MODULE(snd_emu10kx_midi, emu10kx, emu_midi_driver, emu_midi_devclass, 0, 0);
|
|
|
|
MODULE_DEPEND(snd_emu10kx_midi, snd_emu10kx, SND_EMU10KX_MINVER, SND_EMU10KX_PREFVER, SND_EMU10KX_MAXVER);
|
|
|
|
MODULE_DEPEND(snd_emu10kx_midi, sound, SOUND_MINVER, SOUND_PREFVER, SOUND_MAXVER);
|
|
|
|
MODULE_VERSION(snd_emu10kx_midi, SND_EMU10KX_PREFVER);
|