415d4cb37a
This corresponds to Voxware 3.5-alpha-<something> and Amancio's guspnp21. There was a bit of a FUBAR during the commmit, so not all files are mentioned in this commit's mail. X-rant: I have just started to _*HATE*_ CVS...
206 lines
5.6 KiB
C
206 lines
5.6 KiB
C
/* sound_config.h
|
|
*
|
|
* A driver for Soundcards, misc configuration parameters.
|
|
*
|
|
* Copyright by Hannu Savolainen 1995
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* many variables should be reduced to a range. Here define a macro
|
|
*/
|
|
|
|
#define RANGE(var, low, high) (var) = \
|
|
((var)<(low)?(low) : (var)>(high)?(high) : (var))
|
|
|
|
#undef CONFIGURE_SOUNDCARD
|
|
#undef DYNAMIC_BUFFER
|
|
|
|
#include <i386/isa/sound/local.h>
|
|
|
|
#define CONFIGURE_SOUNDCARD
|
|
#define DYNAMIC_BUFFER
|
|
#undef LOADABLE_SOUNDCARD
|
|
|
|
#include <i386/isa/sound/os.h>
|
|
#include <i386/isa/sound/soundvers.h>
|
|
|
|
#if defined(ISC) || defined(SCO) || defined(SVR42)
|
|
#define GENERIC_SYSV
|
|
#endif
|
|
|
|
#ifndef SND_DEFAULT_ENABLE
|
|
#define SND_DEFAULT_ENABLE 1
|
|
#endif
|
|
|
|
#ifdef CONFIGURE_SOUNDCARD
|
|
|
|
#ifndef MAX_REALTIME_FACTOR
|
|
#define MAX_REALTIME_FACTOR 4
|
|
#endif
|
|
|
|
/************* PCM DMA buffer sizes *******************/
|
|
|
|
/* If you are using high playback or recording speeds, the default buffersize
|
|
is too small. DSP_BUFFSIZE must be 64k or less.
|
|
|
|
A rule of thumb is 64k for PAS16, 32k for PAS+, 16k for SB Pro and
|
|
4k for SB.
|
|
|
|
If you change the DSP_BUFFSIZE, don't modify this file.
|
|
Use the make config command instead. Seems to allow only 4K, 16K,
|
|
32K, 64K.
|
|
*/
|
|
|
|
#ifndef DSP_BUFFSIZE
|
|
#define DSP_BUFFSIZE (32760)
|
|
#endif
|
|
|
|
#ifndef DSP_BUFFCOUNT
|
|
#define DSP_BUFFCOUNT 1 /* 1 is recommended. */
|
|
#endif
|
|
|
|
#define DMA_AUTOINIT 0x10 /* XXX never used */
|
|
|
|
#define FM_MONO 0x388 /* This is the I/O address used by AdLib */
|
|
|
|
#ifndef AWE32_BASE
|
|
#define AWE32_BASE 0x620 /* Default = 0x620-3, 0xA20-3, 0xE20-3 */
|
|
#endif
|
|
|
|
#ifndef PAS_BASE
|
|
#define PAS_BASE 0x388
|
|
#endif
|
|
|
|
#ifdef JAZZ16
|
|
#ifndef JAZZ_DMA16
|
|
#define JAZZ_DMA16 5
|
|
#endif
|
|
#endif
|
|
|
|
/* SEQ_MAX_QUEUE is the maximum number of sequencer events buffered by the
|
|
driver. (There is no need to alter this) */
|
|
#define SEQ_MAX_QUEUE 1024
|
|
|
|
#define SBFM_MAXINSTR (256) /* Size of the FM Instrument bank */
|
|
/* 128 instruments for general MIDI setup and 16 unassigned */
|
|
|
|
/*
|
|
* Minor numbers for the sound driver.
|
|
*
|
|
* Unfortunately Creative called the codec chip of SB as a DSP. For this
|
|
* reason the /dev/dsp is reserved for digitized audio use. There is a
|
|
* device for true DSP processors but it will be called something else.
|
|
* In v3.0 it's /dev/sndproc but this could be a temporary solution.
|
|
*/
|
|
|
|
#define SND_NDEVS 256 /* Number of supported devices */
|
|
|
|
#define SND_DEV_CTL 0 /* Control port /dev/mixer */
|
|
#define SND_DEV_SEQ 1 /* Sequencer output /dev/sequencer (FM
|
|
synthesizer and MIDI output) */
|
|
#define SND_DEV_MIDIN 2 /* Raw midi access */
|
|
#define SND_DEV_DSP 3 /* Digitized voice /dev/dsp */
|
|
#define SND_DEV_AUDIO 4 /* Sparc compatible /dev/audio */
|
|
#define SND_DEV_DSP16 5 /* Like /dev/dsp but 16 bits/sample */
|
|
#define SND_DEV_STATUS 6 /* /dev/sndstat */
|
|
/* #7 not in use now. Was in 2.4. Free for use after v3.0. */
|
|
#define SND_DEV_SEQ2 8 /* /dev/sequencer, level 2 interface */
|
|
#define SND_DEV_SNDPROC 9 /* /dev/sndproc for programmable devices */
|
|
#define SND_DEV_PSS SND_DEV_SNDPROC
|
|
|
|
#define DSP_DEFAULT_SPEED 8000
|
|
|
|
#define ON 1
|
|
#define OFF 0
|
|
|
|
#define MAX_AUDIO_DEV 5
|
|
#define MAX_MIXER_DEV 5
|
|
#define MAX_SYNTH_DEV 3
|
|
#define MAX_MIDI_DEV 6
|
|
#define MAX_TIMER_DEV 3
|
|
|
|
struct fileinfo {
|
|
int mode; /* Open mode */
|
|
int flags;
|
|
int dummy; /* Reference to file-flags. OS-dependent. */
|
|
};
|
|
|
|
struct address_info {
|
|
int io_base;
|
|
int irq;
|
|
int dma;
|
|
int dma2;
|
|
int always_detect; /* 1=Trust me, it's there */
|
|
char *name;
|
|
sound_os_info *osp; /* OS specific info */
|
|
int card_subtype; /* Driver specific. Usually 0 */
|
|
};
|
|
|
|
#define SYNTH_MAX_VOICES 32
|
|
|
|
struct voice_alloc_info {
|
|
int max_voice;
|
|
int used_voices;
|
|
int ptr; /* For device specific use */
|
|
unsigned short map[SYNTH_MAX_VOICES]; /* (ch << 8) | (note+1) */
|
|
int timestamp;
|
|
int alloc_times[SYNTH_MAX_VOICES];
|
|
};
|
|
|
|
struct channel_info {
|
|
int pgm_num;
|
|
int bender_value;
|
|
unsigned char controllers[128];
|
|
};
|
|
|
|
/*
|
|
* Process wakeup reasons
|
|
*/
|
|
#define WK_NONE 0x00
|
|
#define WK_WAKEUP 0x01
|
|
#define WK_TIMEOUT 0x02
|
|
#define WK_SIGNAL 0x04
|
|
#define WK_SLEEP 0x08
|
|
|
|
#define OPEN_READ PCM_ENABLE_INPUT
|
|
#define OPEN_WRITE PCM_ENABLE_OUTPUT
|
|
#define OPEN_READWRITE (OPEN_READ|OPEN_WRITE)
|
|
|
|
#include <i386/isa/sound/sound_calls.h>
|
|
#include <i386/isa/sound/dev_table.h>
|
|
|
|
#ifndef DEB
|
|
#define DEB(x)
|
|
#endif
|
|
#ifndef DDB
|
|
/* #define DDB(x) x XXX */
|
|
#define DDB(x)
|
|
#endif
|
|
|
|
#define TIMER_ARMED 121234
|
|
#define TIMER_NOT_ARMED 1
|
|
|
|
#endif
|