AWEDRV PROGRAMMING NOTES

ver.1.05.

written by
Takashi Iwai (iwai@dragon.mm.t.u-tokyo.ac.jp)


0. Preface

This document describes the basic methods to access and control the AWE32 sound driver (ver.0.3) by Takashi Iwai. The AWE32 sound driver provides full capability of Emu8000 chip in the AWE32/SB32 sound card. Please refer to AWE32 Developer's Information Package (ADIP) distributed by CreativeLabs for details about AWE32.

1. Preparation of a message buffer

Most of macros employ a certain write buffer to access to the sound driver. At beginning, this buffer must be defined. The method to define, or declare this buffer is prepared in soundcard.h.
  1. Define a buffer for enough sizes (for example 2048 bytes)
    SEQ_DEFINEBUF(2048);
    
  2. Define the file descriptor for /dev/sequencer.
    int seqfd;
    
  3. Define seqbuf_dump function.
    void seqbuf_dump()
    {
    	if (_seqbufptr)
    		if (write(seqfd, _seqbuf, _seqbufptr) == -1) {
    			perror("write /dev/sequencer");
    			exit(-1);
    		}
    	_seqbufptr = 0;
    }
    

Most of SEQ_* macros write the data packet on this buffer. The buffer is occaionally flushed when it's almost filled. To force to send data to the driver, call seqbuf_dump (or identically SEQ_DUMPBUF) explicitly.


2. Opening a sound device

Then, open the sound driver device /dev/sequencer, and find out the AWE32 device number from synthesizer devices in it. Both the file descriptor and the device number must be specified for accessing to AWE32 driver later. Also, you should know other information of AWE32 driver, for example, allowed voices, etc from synth_info structure.
struct synth_info card_info;
int device;

void seq_init()
{
	int nrsynths;

	if ((seqfd = open("/dev/sequencer", O_WRONLY, 0)) < 0) {
		perror("open /dev/sequencer");
		exit(-1);
	}

	if (ioctl(seqfd, SNDCTL_SEQ_NRSYNTHS, &nrsynths) == -1) {
		perror("there is no soundcard");
		exit(-1);
	}
	device = -1;
	for (i = 0; i < nrsynths; i++) {
		card_info.device = i;
		if (ioctl(seqfd, SNDCTL_SYNTH_INFO, &card_info) == -1) {
			perror("cannot get info on soundcard");
			exit(-1);
		}
		if (card_info.synth_type == SYNTH_TYPE_SAMPLE
		    && card_info.synth_subtype == SAMPLE_TYPE_AWE32) {
			device = i;
			break;
		}
	}

	if (device < 0) {
		perror("No AWE synth device is found");
		exit(-1);
	}
}


3. Loading a sample

The awedrv has different two ways of sample loading. One uses its own format, and another is the GUS compatible format. In any cases, the patch data is loaded by SEQ_WRPATCH macro.
SEQ_WRPATCH(patch ptr, patchlen);
where patch is the pointer to the patch data, and patchlen is the total length of the patch data.

3.1. AWE32 specific patches

Many of SoundFont files are designed to share the sample data with different envelopes, or other effect parameters. Then, awedrv accepts two separate data: the sample data, and the voice information data. The former contains the sample offsets and sizes, loop position, type of sample data, a check sum value for validating, and the sample data itself. The latter contains the basic information to play a sample, for example, root key note, acceptable MIDI key and velocity ranges, envelopes, LFO's and cutoff parameters, and so on. All the AWE patch structures are defined in awe_voice.h.

3.1.1. AWE Patch Header

Both types are loaded as a patch data with the same patch header of 16 bytes, awe_patch_info
typedef struct awe_patch_info {
	short key;			/* use AWE_PATCH here */
	short device_no;		/* synthesizer number */
	unsigned short sf_id;		/* file id */
	short sf_version;		/* patch version (not referred) */
	long len;			/* data length (without this header) */
	short type;			/* following data type */
	short reserved;			/* word alignment data */
} awe_patch_info;
where key must be AWE_PATCH value, and device_no is the above device number of AWE driver. sf_id and sf_version are ignored. len has the length of the following data (not including this patch header itself). type classifies the type of the patch data, sample data or voice information. The corresponding patch data follows after this header, which size is defined by AWE_PATCH_INFO_SIZE.

3.1.2. AWE Sample Information

The sample data has 32 bytes of preceding patch record described below.
typedef struct awe_sample_info {
	unsigned short sf_id;		/* file id */
	unsigned short sample;		/* sample id */
	long start, end;		/* start & end offset */
	long loopstart, loopend;	/* loop start & end offset */
	long size;			/* size (0 = ROM) */
	short checksum_flag;		/* use check sum = 1 */
	unsigned short mode_flags;	/* mode flags */
	unsigned long checksum;		/* check sum */
} awe_sample_info;
where sf_id is the file id used internally and normally zero, sample is the sample id of this sample which is referred by voice information records. start and end denote the sample start and end offset positions, loopstart and loopend denote the loop start and end positions, and size has the data length. The offsets and size are word length if the data is 16bit. Otherwise for 8bit data, they are defined as byte size. The zero size parameter means a ROM sample starting from start offset. When size has larger than zero, the sample is loaded on DRAM, and the offsets will be shifted.

checksum_flag is a flag to test and compare with the given checksum to the sample data after loading on DRAM. Occasionally awedrv fails sample loading on DRAM, and lack some data. The checksum is useful for checking of this failure.

mode_flags is 16bit flags of the sample data.

#define AWE_SAMPLE_8BITS	1	/* wave data is 8bits */
#define AWE_SAMPLE_UNSIGNED	2	/* wave data is unsigned */
#define AWE_SAMPLE_NO_BLANK	4	/* no blank loop is attached */
#define AWE_SAMPLE_SINGLESHOT	8	/* single-shot w/o loop */
#define AWE_SAMPLE_BIDIR_LOOP	16	/* bidirectional looping */
#define AWE_SAMPLE_STEREO_LEFT	32	/* stereo left sound */
#define AWE_SAMPLE_STEREO_RIGHT	64	/* stereo right sound */
#define AWE_SAMPLE_REVERSE_LOOP 128	/* reverse loop */
The 8bit or unsigned data is converted inside the awedrv to 16bit signed data. When AWE_SAMPLE_NO_BLANK is on, 48 words of blank loop is appended after the sample automatically. When AWE_SAMPLE_SINGLESHOT is on, the loop points are set on this blank loop. AWE_SAMPLE_BIDIR_LOOP indicates that the loop is bidirectional (pingpong), and the samples in this loop is extended as mirror image inside. AWE_SAMPLE_REVERSE_LOOP means the reverse loop. The loop sample is duplicated on mirror image inside the driver. Other STEREO flags show that the voice is a streo sound.

The driver doesn't care about these stereo flags, but checks only the key note and velocity range. If two or more voices are suitable on the given note and velocity pair, all they should be played simultaneously. The multiple instruments are featured only in channel playing mode, but in normal mode, only the first matching voice is played.

The sample data follows after this header which size is AWE_SAMPLE_INFO_SIZE. Thus, the len parameter of the first patch header becomes
(AWE_SAMPLE_INFO_SIZE) + data byte size).
If the sample data doesn't contain any blank loop, AWE_SAMPLE_NO_BLANK flag should be set. Also, if the sample data is a single-shot, AWE_SAMPLE_SINGLESHOT flag should be set. Otherwise, you must add a blank loop after the sample, and direct the loop pointers on it by yourself.

After preparing these records above, and sample data, load this patch data on the driver.

SEQ_WRPATCH(patch, sizeof(*patch) + patch->len);

3.1.3. AWE Voice Information

The voice information has 4 bytes of preceding data including
typedef struct _awe_voice_rec {
	unsigned char bank;		/* midi bank number */
	unsigned char instr;		/* midi preset number */
	short nvoices;			/* number of voices */
	awe_voice_info info[1];		/* voice information follows here */
} awe_voice_rec;
where bank and instr specify the bank and program number of this instrument, and nvoices denotes the number of voices (samples) used in this instrument. If any voices with the same bank and program number exist already, the new voices are prepended before the list of older voices. nvoices must be larger than zero. Thus, len in patch header has the value
(AWE_VOICE_REC_SIZE + nvoices * AWE_VOICE_INFO_SIZE).
Note: do NOT use sizeof(awe_voice_rec) for calculation of the header size. From ver.0.3.1, the info item is changed to contain one entry (not zero) to avoid compile errors in some non-ANSI compilers. Due to this change, sizeof(awe_voice_rec) becomes different from older version. Please use the constant AWE_VOICE_REC_SIZE instead of sizeof macro.

After this 4bytes record, nvoices of 92bytes of voice information for each sample are appended.

typedef struct _awe_voice_info {
	unsigned short sf_id;		/* file id */
	unsigned short sample;		/* sample id */
	long start, end;		/* sample offset correction */
	long loopstart, loopend;	/* loop offset correction */
	short rate_offset;		/* sample rate pitch offset */
	unsigned short mode;		/* sample mode */
	short root;			/* midi root key */
	short tune;			/* pitch tuning (in cents) */
	char low, high;			/* key note range */
	char vellow, velhigh;		/* velocity range */
	char fixkey, fixvel;		/* fixed key and velocity */
	char pan, fixpan;		/* panning, fixed panning */
	short exclusiveClass;		/* exclusive class (0 = none) */
	unsigned char amplitude;	/* sample volume (127 max) */
	unsigned char attenuation;	/* attenuation (0.375dB) */
	short scaleTuning;		/* pitch scale tuning(%), normally 100 */
	awe_voice_parm parm;		/* voice envelope parameters */
	short index;			/* internal index (set by driver) */
} awe_voice_info;

where sf_id is an internal file id and normally zero,
sample is the referring sample id of this voice.
start, end, loopstart, and
loopend are the offset correction of this voices.
For example, a value of start 30 means that
this voice starts 30 points after the original start points.

rate_offset holds the pitch offset of this voice according to its sample rate. This value is an AWE specific logarithmic rate, that each 4096 is one octave shift. For example, a value of -2048 indicates the sample is played 6 semitones flat. The value can be calculated by the following equation.

rate_offset = log(Hz / 44100) / log(2) * 4096

mode is 16bit flags indicating the kind of this voice.

#define AWE_MODE_ROMSOUND		0x8000
#define AWE_MODE_STEREO			1
#define AWE_MODE_LOOPING		2
#define AWE_MODE_NORELEASE		4	/* obsolete */
#define AWE_MODE_INIT_PARM		8
AWE_MODE_STEREO and AWE_MODE_NORELEASE are ignored in the current version. AWE_MODE_INIT_PARM means that parm members are initialized at loading automatically.

root and tune contain the root key note and fine tune of this voice. The key is supplied by MIDI key value, from 0 to 127, and fine tune is a cents order. A positive fine tune value indicates the sound is played at a higher pitch, and a negative value means a lower pitch.

low and high define the key note range of this voice. If the key is out of this range, the driver skips this voice, and searches the next voice from voice list. To accepts all keys, low be 0, and high 127.

Similarly, vellow and velhigh define the velocity range of this voice. As well as in key note range, the voice is accepted only when the velocity is within this range.

fixkey, and fixvel indicate the fixed key and velocity of this voice. If the value is not -1, the key or velocity is fixed on this value.

pan has a panning position of the "dry" sound, from 0(left) to 127(right), or -1 for not specified. fixpan also contains the fixed panning position. If valid fixpan is given, the panning position is fixed to that value.

exclusiveClass is the exclusive class of this voice. If the value is zero, no exclusive system activates. Otherwise, the voices with the sample exclusive class are turned off before playing a new voice with this class. This feature is used for some drum instruments like hi-hat.

amplitude and attenuation define the volume of this voice. amplitude is a linear volume from 0 to 127, and amplitude means the attenuation from full level in 0.375dB order. For example, a voice with attenuation 40 is reproduced 15dB lower from full scale.

scaleTuning is a pitch scale tuning ratio, and normally is 100.

index is an internal sample index, and ignored at loading.

parm contains the modulation/volume envelopes, LFO's and other raw parameters of emu8000 chip.

typedef struct _awe_voice_parm {
	unsigned short moddelay;	/* modulation delay (ENVVAL) */
	unsigned short modatkhld;	/* modulation attack & hold time (ATKHLD) */
	unsigned short moddcysus;	/* modulation decay & sustain (DCYSUS) */
	unsigned short modrelease;	/* modulation release time (DCYSUS) */
	short modkeyhold, modkeydecay;	/* envelope change per key (not used) */
	unsigned short voldelay;	/* volume delay (ENVVOL) */
	unsigned short volatkhld;	/* volume attack & hold time (ATKHLDV) */
	unsigned short voldcysus;	/* volume decay & sustain (DCYSUSV) */
	unsigned short volrelease;	/* volume release time (DCYSUSV) */
	short volkeyhold, volkeydecay;	/* envelope change per key (not used) */
	unsigned short lfo1delay;	/* LFO1 delay (LFO1VAL) */
	unsigned short lfo2delay;	/* LFO2 delay (LFO2VAL) */
	unsigned short pefe;		/* modulation pitch & cutoff (PEFE) */
	unsigned short fmmod;		/* LFO1 pitch & cutoff (FMMOD) */
	unsigned short tremfrq;		/* LFO1 volume & freq (TREMFRQ) */
	unsigned short fm2frq2;		/* LFO2 pitch & freq (FM2FRQ2) */
	unsigned char cutoff;		/* initial cutoff (upper of IFATN) */
	unsigned char filterQ;		/* initial filter Q [0-15] (upper of CCCA) */
	unsigned char chorus;		/* chorus send */
	unsigned char reverb;		/* reverb send */
	unsigned short reserved[4];	/* not used */
} awe_voice_parm;
The values correspond to the register values of emu8000 described in AWE32 Developer's Information Package (ADIP) by CreativeLabs. This record can be initialized internally in the driver by setting AWE_MODE_INIT_PARM flag in voice_info record.

After setting these parameters for each voice, load this patch data on the driver.

SEQ_WRPATCH(patch, sizeof(*patch) + patch->len);

3.2. GUS compatible patches

From ver.0.2.0, awedrv can receive GUS style patch records. The GUS patch structure is defined in soundcard.h. Unlikely to AWE patch, one sample is associated with one voice information in GUS patch.
struct patch_info {
	unsigned short key;		/* Use GUS_PATCH here */
	short device_no;	/* Synthesizer number */
	short instr_no;		/* Midi pgm# */
	unsigned int mode;
	int len;	/* Size of the wave data in bytes */
	int loop_start, loop_end; /* Byte offsets from the beginning */
	unsigned int base_freq;
	unsigned int base_note;
	unsigned int high_note;
	unsigned int low_note;
	int panning;	/* 0 to 15? */
	int detuning;
	unsigned char	env_rate[ 6 ];	 /* GUS HW ramping rate */
	unsigned char	env_offset[ 6 ]; /* 255 == 100% */
	unsigned char	tremolo_sweep;
	unsigned char	tremolo_rate;
	unsigned char	tremolo_depth;
	unsigned char	vibrato_sweep;
	unsigned char	vibrato_rate;
	unsigned char	vibrato_depth;
	int		scale_frequency;
	unsigned int	scale_factor;		/* from 0 to 2048 or 0 to 2 */
        int		volume;
	int		fractions;
        int		spare[3];
	char data[1];	/* The waveform data starts here */
};
key must be GUS_PATCH value, and device_no is the device number of AWE driver.

instr_no defines the program number of this sample. The bank number can be defined using the extended control AWE_SET_GUS_BANK function before loading the samples. As default, the bank is set to zero.

mode indicates the flags of this sample. Backward looping, scaling and fractions are not implemented yet. len has the length of the sample data in bytes order. Note that AWE patch holds in words order for 16bit samples, but GUS patch is always in bytes order. Similarly, loop position by loop_start and loop_end is in byte offset.

base_freq, base_note, high_note, and low_note are converted in the driver to corresponding key note and fine tunes.

panning parameter is passed as the initial position of dry sounds.

The 6 points volume envelope, tremolo, and vibrato parameters are converted to the AWE32 specific values in the driver.

Other parameters, detuning, scale_frequency, scale_factor, volume, and fractions are ignored.

The sample data follows after this is converted according to the flags specified automatically.

After setting these parameters and copying the sample data from data pointer, load this patch data on the driver.

SEQ_WRPATCH(device, patch, sizeof(patch) + data byte size - 1);


4. Playing a voice

4.1. Playing modes

The AWE driver has several playing modes depending on its usage. One is the normal mode, and another is the channel mode. The former mode is as same as in the other sound driver like GUS and FM. The driver outputs one sample per one voice. On the contrast, the latter mode has capability to output two or more samples simultaneously as one voice. Many SoundFont files define presets including multiple instruments, instruments including multiple samples, and stereo sounds. In such a file, two or more samples are designed to be played at the same time. To enable this feature, in the channel mode users must specify the MIDI channel instead of the voice number. The driver decides the required number of voices, and allocates and assigns the voices automatically just like sequecer2 controls.

To change the current playing mode, call AWE_CHANNEL_MODE macro.

AWE_SET_CHANNEL_MODE(device, mode);
where mode is a digit number to specify the playing mode, 0 is the normal mode, and 1 is the channel mode. Note that the playing mode is reset at each time the device is closed to the normal mode.

4.1. Selecting a program

The voice program is selected by SEQ_SET_PROGRAM macro.
SEQ_SET_PROGRAM(device, voice, program);
where voice is the voice or channel number depending on the current playing mode. In the normal playing mode, the voice number usually has a value from 0 to 29. program is the program number to be played. AWE32 has 32 individual channels, but when playing samples on DRAM, the last two channels cannot be used due to DRAM refresh. Thus, in awedrv, only 30 channels are available.

In channel playing mode, voice becomes a MIDI channel number (usually from 0 to 15). The voices are allocated internally by the driver. Likewise, in all other sequencer controls, voice becomes the corresponding MIDI channel number.

The drum voices are assigned to individual programs with (key number + 128) by traditional reason. The awedrv itself has a capability to deal with the drumset as one program. In such a case, users must specify the preset number as the drumset number and the fixed bank number 128. You can also set the drum channels by extension control AWE_DRUM_CHANNELS with a bit-blt parameter, calculated by (1 << drum number), where drum number starts from 0. In these channels, the voices are assumed as a drum set.

AWE_DRUM_CHANNELS(device, channels);
As default, only channel 10 is assumed as a drum channel, then the channels value is 0x200. Some MIDI files use also the channel 16 as a drum. In such a case, channels becomes 0x8200.

The awedrv has a bank selection mechanism. The bank selection can be done through MIDI control message #0, so is realized by SEQ_CONTROL macro like

SEQ_CONTROL(device, voice, CTL_BANK_SELECT, bank);
where bank is the bank number of the sample. For drum voices (set by AWE_DRUM_CHANNELS, this number corresponds to drumset number.

4.2. Setting various effects

4.2.1. Pitch control

To control the sample pitch or frequency, the pitch wheel control is used ordinally. The pitch change is calculated from two parameters, pitch bender range and pitch bending degree. The former, the pitch wheel, is controlled by SEQ_BENDER macro, or obsolete SEQ_PITCHBEND macro.
SEQ_BENDER(device, voice, value);
Be careful that the parameter values are different between them. SEQ_BENDER has a value from 0 to 16384, and the center (no pitch shift) is 8192, just as same as in MIDI sequences. On the other hand, SEQ_PITCHBEND has a value from -8192 to 8192, and the center is 0. In both cases, the smaller than the center means lower pitch shift, and the larger means upper pitch shift, respectively. For example, when the bender range (see below) is 200, a value of -4096 indicates one octave flat from the normal pitch.

The latter control, the bender range, is done by SEQ_BENDER_RANGE macro. This function defines the bender range in (octave * 100). For example, a value of 400 indicates that the maximum wheel change to be four octave shift from the normal pitch. The default value is 200.

SEQ_BENDER_RANGE(device, voice, value);

Both of these controls can be changed at real time during playing the sample.

4.2.2. Volume control

The volume of each voice can be controlled by three parameters: main volume, expression volume, and velocity. The total volume is calculated from the product of these three values as (main_volume * expression * velocity). While the last velocity parameters is specified at starting the sample, the other two parameters are given usually before playing it though they can be changed at real time during playing the sample.

The main volume is set via SEQ_CONTROL with the proper control code (CTL_MAIN_VOLUE and CTRL_MAIN_VOLUME), or obsolete SEQ_MAIN_VOLUME macro.

SEQ_CONTROL(device, voice, CTL_MAIN_VOLUME, value);
The value for SEQ_MAIN_VOLUME is identical with MIDI value, from 0 to 127. When the playing mode is the normal mode, the control CTL_MAIN_VOLUME has a value from 0 to 20806 (= 16383 * 127 / 100). In the channel mode, it has the same value as MIDI, from 0 to 127. The CTRL_MAIN_VOLUME always has the same value as MIDI.

The expression volume is set via SEQ_CONTROL with the proper control code (CTL_EXPRESSION and CTRL_EXPRESSION), or obsolete SEQ_EXPRESSION macro.

SEQ_CONTROL(device, voice, CTL_EXPRESSION, value);
The value for SEQ_EXPRESSION is identical with MIDI value, from 0 to 127. Similarly, when the playing mode is the normal mode, the control codeCTL_EXPRESSION has a value from 0 to 16256 (= 127 * 128). In the channel mode, it has the same value as MIDI, from 0 to 127. The CTRL_EXPRESSION has the same value as MIDI, from 0 to 127.

Additionally, the awedrv has a total volume attenuation parameter. Users can change this initial attenuation using AWE_INITIAL_ATTEN control (identical with AWE_INITIAL_VOLUME).

AWE_INITIAL_ATTEN(device, atten);
This value atten is the attenuation volume from full scale in 0.375 dB order. For example, a value of 10 means that 3.75 dB lower from full scale. The initial value is 32, 12dB below from full scale.

4.2.3. Panning position

The panning position is also set via control command, SEQ_CONTROL with the proper control code (CTL_PAN), or obsolete SEQ_PANNING macro.
SEQ_CONTROL(device, voice, CTL_PAN, value);
The value for SEQ_PANNING is from -128(left) to 128(right), and different from MIDI value unlike volume controls above. But the value of CTL_PAN is identical with MIDI value, from 0(left) to 127(right).

The panning position can be changed during playing, but may cause a small clicking noise due to restriction of emu8000 chip.

4.2.4. Chorus and reverb effects

The AWE32 has chorus and reverb effects for each voice. In awedrv, these effects are controlled via SEQ_CONTROL with two control commands, CTL_CHORUS_DEPTH and CTL_EXT_EFF_DEPTH, for chorus and reverb, respectively.
SEQ_CONTROL(device, voice, CTL_CHORUS_DEPTH, value);
SEQ_CONTROL(device, voice, CTL_EXT_EFF_DEPTH, value);
In both cases, the value range is from 0 to 127, where 127 means 100% of output is send to the corresponding effect processor. These values cannot be changed during playing the sample.

Also, AWE32 has eight modes for both chorus and reverb effects. They can be changed by extended control by AWE_CHORUS_MODE and AWE_REVERB_MODE, respectively.

AWE_CHORUS_MODE(device, mode);
AWE_REVERB_MODE(device, mode);
In both cases, the range of the parameter value is from 0 to 7. The corresponding mode to each value is defined in awe_voice.h, that is, Chorus 1 - 4, Feedback, Flanger, Short Delay, and Short Delay 2 for chorus modes, and Room 1 - 3, Hall 1/2, Plate, Delay, Panning Delay for reverb modes. See AWE32 FAQ by CreativeLabs for meaning of each mode.

4.2.5. Other effects

The awedrv has several extended controls to write raw register values for emu8000 parameters. Through this function, users can control any function of AWE32 sound effects, although the parameter value itself is not generic.

The extended controls are passed through AWE_SEND_EFFECT macro with specified commands and values.

AWE_SEND_EFFECT(device, voice, command, value);
The commands are defined in awe_voice.h, that is,
/* 0*/	AWE_FX_ENV1_DELAY,	/* WORD: ENVVAL */
/* 1*/	AWE_FX_ENV1_ATTACK,	/* BYTE: up ATKHLD */
/* 2*/	AWE_FX_ENV1_HOLD,	/* BYTE: lw ATKHLD */
/* 3*/	AWE_FX_ENV1_DECAY,	/* BYTE: lw DCYSUS */
/* 4*/	AWE_FX_ENV1_RELEASE,	/* BYTE: lw DCYSUS */
/* 5*/	AWE_FX_ENV1_SUSTAIN,	/* BYTE: up DCYSUS */
/* 6*/	AWE_FX_ENV1_PITCH,	/* BYTE: up PEFE */
/* 7*/	AWE_FX_ENV1_CUTOFF,	/* BYTE: lw PEFE */

/* 8*/	AWE_FX_ENV2_DELAY,	/* WORD: ENVVOL */
/* 9*/	AWE_FX_ENV2_ATTACK,	/* BYTE: up ATKHLDV */
/*10*/	AWE_FX_ENV2_HOLD,	/* BYTE: lw ATKHLDV */
/*11*/	AWE_FX_ENV2_DECAY,	/* BYTE: lw DCYSUSV */
/*12*/	AWE_FX_ENV2_RELEASE,	/* BYTE: lw DCYSUSV */
/*13*/	AWE_FX_ENV2_SUSTAIN,	/* BYTE: up DCYSUSV */
	
/*14*/	AWE_FX_LFO1_DELAY,	/* WORD: LFO1VAL */
/*15*/	AWE_FX_LFO1_FREQ,	/* BYTE: lo TREMFRQ */
/*16*/	AWE_FX_LFO1_VOLUME,	/* BYTE: up TREMFRQ */
/*17*/	AWE_FX_LFO1_PITCH,	/* BYTE: up FMMOD */
/*18*/	AWE_FX_LFO1_CUTOFF,	/* BYTE: lo FMMOD */

/*19*/	AWE_FX_LFO2_DELAY,	/* WORD: LFO2VAL */
/*20*/	AWE_FX_LFO2_FREQ,	/* BYTE: lo FM2FRQ2 */
/*21*/	AWE_FX_LFO2_PITCH,	/* BYTE: up FM2FRQ2 */

/*22*/	AWE_FX_INIT_PITCH,	/* SHORT: pitch offset */
/*23*/	AWE_FX_CHORUS,		/* BYTE: chorus effects send (0-255) */
/*24*/	AWE_FX_REVERB,		/* BYTE: reverb effects send (0-255) */
/*25*/	AWE_FX_CUTOFF,		/* BYTE: up IFATN */
/*26*/	AWE_FX_FILTERQ,		/* BYTE: up CCCA */

/*27*/	AWE_FX_SAMPLE_START,	/* SHORT: offset */
/*28*/	AWE_FX_LOOP_START,	/* SHORT: offset */
/*29*/	AWE_FX_LOOP_END,	/* SHORT: offset */
/*30*/	AWE_FX_COARSE_SAMPLE_START,	/* SHORT: upper word offset */
/*31*/	AWE_FX_COARSE_LOOP_START,	/* SHORT: upper word offset */
/*32*/	AWE_FX_COARSE_LOOP_END,		/* SHORT: upper word offset */
The commands 0 - 7 define parameters of the modulation envelope, 8 - 13 of the volume envelope, 14 - 18 of LFO1, 19 - 21 of LFO2, 22 - 26 of other effect parameters for total voice, and the later provides sample start position, and loop offset. See ADIP for the parameter values of envelopes and LFO's.

GUS compatible extended controls are partly implemented. GUS_VOICE_POS is interpreted inside as an extension control 27(AWE_FX_SAMPLE_START) and 30(AWE_FX_COARSE_SAMPLE_START).

4.3. Starting a note

There are two ways to start a voice. The standard method is to call SEQ_START_NOTE macro.
SEQ_START_NOTE(device, voice, note, velocity);
where note and velocity are the MIDI key and velocity to be played, respectively. A sample including the specified note in its key range is searched from all samples with given bank and program numbers. Then, the volume and pitch parameters are computed here from specified note and velocity. If this sample is an exclusive voice like drum hi-hat sounds, turn off other voices with the same exclusive key, that is the other hi-hat sounds which is being played. After that, start this voice.

In the normal playing mode, the note 255 has a special meaning. When this function is called with the note 255, only volume is changed according its velocity, and never affects the envelope change, and so on. This can be used for dynamic volume control without using other SEQ_CONTROL functions. Note that this feature is ignored in the channel playing mode.

If the velocity is specified as zero, then one channel is allocated, but the sound is not started. It starts when volume change control is received later.

The another way for start is to call a GUS specific control

GUS_VOICEON(device, voice, mode);
where mode is a voice mode, but ignored in awedrv. This simply starts a sound on the channel, so voice parameters like program, pitch and volume must be set before calling this function.


5. Modulating a voice

5.1. Changing volume

Many methods are provided to change the volume of the sample. One is to use SEQ_KEY_PRESSURE macro, or AWE_KEY_PRESSURE macro, depending on its playing mode. Also, you can change all the volume assigned to a certain channel using SEQ_CHN_PRESSURE or AWE_CHN_PRESSURE macros. In the channel playing mode, the former macro SEQ_KEY_PRESSURE and SEQ_CHN_PRESSURE are ignored due to compatibility problems. Use the latter AWE_KEY_PRESSURE and AWE_CHN_PRESSURE macros instead. The parameter value is as same as MIDI pressure value, from 0 to 127.
AWE_KEY_PRESSURE(device, voice, note, velocity);
AWE_CHN_PRESSURE(device, voice, velocity);

The second way is updating main or expression volume on each channel by SEQ_CONTROL or other macros (see 4.2.2). Also, using SEQ_START_NOTE with a special note 255 is available for changing volume as explained above.

5.2. Changing pitch

You can change pitch of the sound by using the pitch wheel, or by AWE_SEND_EFFECT with AWE_FX_INIT_PITCH command (see 4.2.1).

5.3. Changing panning position

The panning position is able to be changed at real time, but it may cause a noise as explained above (see 4.2.3).

5.4. Changing chorus and reverb

The chorus and reverb effects can NOT be changed at real time. However, the chorus and reverb modes are possible to be changed.

5.5. Changing other effects

The LFO1 parameters except delay (frequency, volume, pitch shift, and cutoff shift), and LFO2 parameters (frequency, and pitch shift) can be changed at real time. Also, total cutoff frequency can be changed. The values are passed through the extended controls (see 4.2.5).


6. Timer control

The awedrv itself doesn't provide any timer control functions. Use the standard timer macros, SEQ_START_TIMER, SEQ_WAIT_TIME or SEQ_DELTA_TIME, and SEQ_STOP_TIMER.


7. Ending a voice

To end a sound, call SEQ_STOP_NOTE macro. This releases the sound from the sustain level to silence according to the volume envelope. The note and velocity parameters are ignored.
SEQ_STOP_NOTE(device, voice, note, velocity);

Or, you can terminate the voice completely by extended control, AWE_TERMINATE_CHANNEL. This stops the sound without any releasing echo.

AWE_TERMINATE_CHANNEL(device, voice);
To terminate all voices, the extended control AWE_TERMINATE_ALL is available.
AWE_TERMINATE_ALL(device);
Alternatively, to turn off the all channels similary as SEQ_STOP_NOTE, use AWE_NOTEOFF_ALL.
AWE_NOTEOFF_ALL(device);


8. Miscellaneous features

The debug message is toggled on/off by the extended control AWE_DEBUG_MODE.
AWE_DEBUG_MODE(device, mode);
The value zero means to turn off debugging messages, and values larger then zero means to output debugging messages on syslog, usually /var/adm/syslog or /var/adm/message (depending on the setting of /etc/syslog.conf).

The emu8000 chip can be initialized by the extended control AWE_INITIALIZE_CHIP. This only re-initializes the AWE32, and doesn't affect other driver-internal parameters or effects.

AWE_INITIALIZE_CHIP(device);

AWE_GET_CURRENT_MODE macro is used to obtain the current status of the AWE driver.

awe_mode_rec rec;
AWE_GET_CURRENT_MODE(device, &rec);
The parameter rec is a record of awe_mode_rec type where the current data is stored in return. This macro employs the direct write call to the driver without buffering.


Takashi Iwai
iwai@dragon.mm.t.u-tokyo.ac.jp
http://bahamut.mm.t.u-tokyo.ac.jp/~iwai