2009-05-02 23:03:37 +02:00
|
|
|
/*
|
2009-05-02 23:35:44 +02:00
|
|
|
* Copyright (C) 2002-2003 The DOSBox Team
|
2009-05-02 23:03:37 +02:00
|
|
|
*
|
|
|
|
* 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 Library 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "dosbox.h"
|
|
|
|
#include "inout.h"
|
|
|
|
#include "mixer.h"
|
|
|
|
#include "dma.h"
|
|
|
|
#include "pic.h"
|
|
|
|
#include "hardware.h"
|
2009-05-02 23:20:05 +02:00
|
|
|
#include "setup.h"
|
|
|
|
#include "programs.h"
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
|
|
|
|
#define SB_PIC_EVENTS 0
|
|
|
|
|
|
|
|
#define DSP_MAJOR 2
|
|
|
|
#define DSP_MINOR 0
|
|
|
|
|
|
|
|
#define MIXER_INDEX 0x04
|
|
|
|
#define MIXER_DATA 0x05
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
#define DSP_RESET 0x06
|
|
|
|
#define DSP_READ_DATA 0x0A
|
|
|
|
#define DSP_WRITE_DATA 0x0C
|
|
|
|
#define DSP_WRITE_STATUS 0x0C
|
|
|
|
#define DSP_READ_STATUS 0x0E
|
|
|
|
|
|
|
|
#define DSP_NO_COMMAND 0
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
#define DMA_BUFSIZE 4096
|
2009-05-02 23:03:37 +02:00
|
|
|
#define DSP_BUFSIZE 64
|
|
|
|
#define DSP_DACSIZE 4096
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
//Should be enough for sound generated in millisecond blocks
|
|
|
|
#define SB_BUF_SIZE 8096
|
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
enum {DSP_S_RESET,DSP_S_NORMAL,DSP_S_HIGHSPEED};
|
2009-05-02 23:35:44 +02:00
|
|
|
|
|
|
|
enum DSP_MODES {
|
|
|
|
MODE_NONE,MODE_DAC,
|
|
|
|
MODE_SILENCE,
|
|
|
|
MODE_DMA,MODE_DMA_PAUSE,MODE_DMA_WAIT,
|
2009-05-02 23:03:37 +02:00
|
|
|
};
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
enum DMA_MODES {
|
|
|
|
DMA_NONE,
|
|
|
|
DMA_8_SILENCE,
|
|
|
|
DMA_4_SINGLE,
|
|
|
|
DMA_8_SINGLE,DMA_8_AUTO,
|
|
|
|
};
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
enum {
|
|
|
|
PLAY_MONO,PLAY_STEREO,
|
|
|
|
};
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
struct SB_INFO {
|
|
|
|
Bit16u freq;
|
2009-05-02 23:35:44 +02:00
|
|
|
struct {
|
|
|
|
bool active,stereo;
|
|
|
|
DMA_MODES mode;
|
|
|
|
Bitu total,left;
|
|
|
|
Bitu rate,rate_mul;
|
|
|
|
Bitu index,add_index;
|
|
|
|
Bit64u start;
|
|
|
|
union {
|
|
|
|
Bit8u b8[DMA_BUFSIZE];
|
|
|
|
Bit16s b16[DMA_BUFSIZE];
|
|
|
|
} buf;
|
|
|
|
} dma;
|
2009-05-02 23:03:37 +02:00
|
|
|
bool speaker;
|
|
|
|
Bit8u time_constant;
|
|
|
|
bool use_time_constant;
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_MODES mode;
|
2009-05-02 23:12:18 +02:00
|
|
|
struct {
|
2009-05-02 23:35:44 +02:00
|
|
|
Bit8u state;
|
|
|
|
Bit8u cmd;
|
|
|
|
Bit8u cmd_len;
|
|
|
|
Bit8u cmd_in_pos;
|
|
|
|
Bit8u cmd_in[DSP_BUFSIZE];
|
|
|
|
struct {
|
|
|
|
Bit8u data[DSP_BUFSIZE];
|
|
|
|
Bitu pos,used;
|
|
|
|
} in,out;
|
|
|
|
Bit8u test_register;
|
|
|
|
Bitu write_busy;
|
|
|
|
} dsp;
|
|
|
|
struct {
|
|
|
|
Bit16s data[DSP_DACSIZE];
|
2009-05-02 23:12:18 +02:00
|
|
|
Bitu used;
|
2009-05-02 23:35:44 +02:00
|
|
|
Bit16s last;
|
2009-05-02 23:12:18 +02:00
|
|
|
} dac;
|
2009-05-02 23:35:44 +02:00
|
|
|
struct {
|
|
|
|
Bit8u index;
|
|
|
|
Bit8u master;
|
|
|
|
Bit8u mic,voice,fm;
|
|
|
|
} mixer;
|
|
|
|
struct {
|
|
|
|
Bits reference,scale;
|
|
|
|
} adpcm;
|
|
|
|
struct {
|
|
|
|
Bitu base;
|
|
|
|
Bit8u irq;
|
|
|
|
Bit8u dma8;
|
|
|
|
Bitu rate;
|
|
|
|
Bitu rate_conv;
|
|
|
|
} hw;
|
|
|
|
struct {
|
|
|
|
Bit16s buf[SB_BUF_SIZE][2];
|
|
|
|
Bitu pos;
|
|
|
|
} out;
|
|
|
|
struct {
|
|
|
|
union {
|
|
|
|
Bit16s m[DMA_BUFSIZE];
|
|
|
|
Bit16s s[DMA_BUFSIZE][2];
|
|
|
|
} buf;
|
|
|
|
Bitu index,add_index;
|
|
|
|
} tmp;
|
|
|
|
struct {
|
|
|
|
Bits value;
|
|
|
|
Bitu count;
|
|
|
|
} e2;
|
2009-05-02 23:03:37 +02:00
|
|
|
MIXER_Channel * chan;
|
|
|
|
};
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
|
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
static SB_INFO sb;
|
|
|
|
|
|
|
|
static char * copyright_string="COPYRIGHT (C) CREATIVE TECHNOLOGY LTD, 1992.";
|
|
|
|
|
|
|
|
static Bit8u DSP_cmd_len[256] = {
|
|
|
|
0,0,0,0, 0,2,0,0, 0,0,0,0, 0,0,0,0, // 0x00
|
|
|
|
1,0,0,0, 2,0,2,2, 0,0,0,0, 0,0,0,0, // 0x10
|
|
|
|
0,0,0,0, 2,0,0,0, 0,0,0,0, 0,0,0,0, // 0x20
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 0x30
|
|
|
|
|
|
|
|
1,2,2,0, 0,0,0,0, 2,0,0,0, 0,0,0,0, // 0x40
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 0x50
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 0x60
|
|
|
|
0,0,0,0, 2,2,2,2, 0,0,0,0, 0,0,0,0, // 0x70
|
|
|
|
|
|
|
|
2,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 0x80
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 0x90
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 0xa0
|
|
|
|
3,3,3,3, 3,3,3,3, 3,3,3,3, 3,3,3,3, // 0xb0
|
|
|
|
|
|
|
|
3,3,3,3, 3,3,3,3, 3,3,3,3, 3,3,3,3, // 0xc0
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 0xd0
|
|
|
|
1,0,1,0, 1,0,0,0, 0,0,0,0, 0,0,0,0, // 0xe0
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 // 0xf0
|
|
|
|
};
|
|
|
|
|
|
|
|
static int E2_incr_table[4][9] = {
|
|
|
|
{ 0x01, -0x02, -0x04, 0x08, -0x10, 0x20, 0x40, -0x80, -106 },
|
|
|
|
{ -0x01, 0x02, -0x04, 0x08, 0x10, -0x20, 0x40, -0x80, 165 },
|
|
|
|
{ -0x01, 0x02, 0x04, -0x08, 0x10, -0x20, -0x40, 0x80, -151 },
|
|
|
|
{ 0x01, -0x02, 0x04, -0x08, -0x10, 0x20, -0x40, 0x80, 90 }
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef max
|
|
|
|
#define max(a,b) ((a)>(b)?(a):(b))
|
|
|
|
#endif
|
|
|
|
#ifndef min
|
|
|
|
#define min(a,b) ((a)<(b)?(a):(b))
|
|
|
|
#endif
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
static void DSP_ChangeMode(DSP_MODES mode);
|
|
|
|
static void CheckDMAEnd(void);
|
|
|
|
static void END_DMA_Event(void);
|
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
static void DSP_SetSpeaker(bool how) {
|
|
|
|
MIXER_Enable(sb.chan,how);
|
|
|
|
sb.speaker=how;
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void DSP_FlushData(void) {
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.out.used=0;
|
|
|
|
sb.dsp.out.pos=0;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void DSP_StopDMA(void) {
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_ChangeMode(MODE_NONE);
|
|
|
|
sb.dma.left=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DMA_Enable(bool enable) {
|
|
|
|
sb.dma.active=enable;
|
|
|
|
if (sb.mode==MODE_DMA_WAIT && enable) {
|
|
|
|
DSP_ChangeMode(MODE_DMA);
|
|
|
|
CheckDMAEnd();
|
|
|
|
}
|
|
|
|
if (sb.mode==MODE_DMA && !enable) {
|
|
|
|
DSP_ChangeMode(MODE_DMA_WAIT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
INLINE Bit8u decode_ADPCM_4_sample(Bit8u sample,Bits& reference,Bits& scale) {
|
|
|
|
static Bits scaleMap[8] = { -2, -1, 0, 0, 1, 1, 1, 1 };
|
|
|
|
|
|
|
|
if (sample & 0x08) {
|
|
|
|
reference = max(0x00, reference - ((sample & 0x07) << scale));
|
|
|
|
} else {
|
|
|
|
reference = min(0xff, reference + ((sample & 0x07) << scale));
|
|
|
|
}
|
|
|
|
scale = max(2, min(6, scaleMap[sample & 0x07]));
|
|
|
|
return (Bit8u)reference;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
static void GenerateDMASound(Bitu size) {
|
|
|
|
//TODO For stereo make sure it's multiple of 2
|
|
|
|
if (!size) return;
|
|
|
|
Bitu read,i;
|
|
|
|
switch (sb.dma.mode) {
|
|
|
|
case DMA_4_SINGLE:
|
|
|
|
if (sb.adpcm.reference<0 && sb.dma.left) {
|
|
|
|
Bit8u ref;
|
|
|
|
read=DMA_8_Read(sb.hw.dma8,&ref,1);
|
|
|
|
if (!read) { sb.mode=MODE_NONE;return; } //TODO warnings?
|
|
|
|
sb.dma.left--;
|
|
|
|
sb.adpcm.reference=ref;
|
|
|
|
}
|
|
|
|
if (sb.dma.left<size) size=sb.dma.left;
|
|
|
|
read=DMA_8_Read(sb.hw.dma8,sb.dma.buf.b8,size);
|
|
|
|
sb.dma.left-=read;
|
|
|
|
if (sb.dma.left==0 || !read) {
|
|
|
|
sb.mode=MODE_NONE;
|
|
|
|
PIC_AddIRQ(sb.hw.irq,0);
|
|
|
|
#if SB_PIC_EVENTS
|
|
|
|
PIC_RemoveEvents(END_DMA_Event);
|
|
|
|
#endif
|
|
|
|
} else CheckDMAEnd();
|
|
|
|
for (i=0;i<read;i++) {
|
|
|
|
sb.tmp.buf.m[i*2+0]=((Bit8s)(decode_ADPCM_4_sample(sb.dma.buf.b8[i] >> 4,sb.adpcm.reference,sb.adpcm.scale)^0x80))<<8;
|
|
|
|
sb.tmp.buf.m[i*2+1]=((Bit8s)(decode_ADPCM_4_sample(sb.dma.buf.b8[i] & 0xf,sb.adpcm.reference,sb.adpcm.scale)^0x80))<<8;
|
|
|
|
}
|
|
|
|
read*=2;
|
|
|
|
break;
|
|
|
|
case DMA_8_SINGLE:
|
|
|
|
if (sb.dma.left<size) size=sb.dma.left;
|
|
|
|
read=DMA_8_Read(sb.hw.dma8,sb.dma.buf.b8,size);
|
|
|
|
sb.dma.left-=read;
|
|
|
|
if (sb.dma.left==0 || !read) {
|
|
|
|
sb.mode=MODE_NONE;
|
|
|
|
PIC_AddIRQ(sb.hw.irq,0);
|
|
|
|
#if SB_PIC_EVENTS
|
|
|
|
PIC_RemoveEvents(END_DMA_Event);
|
|
|
|
#endif
|
|
|
|
} else CheckDMAEnd();
|
|
|
|
for (i=0;i<read;i++) sb.tmp.buf.m[i]=((Bit8s)(sb.dma.buf.b8[i]^0x80))<<8;
|
|
|
|
break;
|
|
|
|
case DMA_8_AUTO:
|
|
|
|
read=DMA_8_Read(sb.hw.dma8,sb.dma.buf.b8,size);
|
|
|
|
if (sb.dma.left>read) {
|
|
|
|
sb.dma.left-=read;
|
|
|
|
} else {
|
|
|
|
sb.dma.left=(sb.dma.total+sb.dma.left)-read;
|
|
|
|
PIC_AddIRQ(sb.hw.irq,0);
|
|
|
|
}
|
|
|
|
for (i=0;i<read;i++) sb.tmp.buf.m[i]=((Bit8s)(sb.dma.buf.b8[i]^0x80))<<8;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!read) return;
|
|
|
|
Bit16s * stream=&sb.out.buf[sb.out.pos][0];
|
|
|
|
if (!sb.dma.stereo) {
|
|
|
|
Bitu pos;
|
|
|
|
while (read>(pos=sb.tmp.index>>16)) {
|
|
|
|
(*stream++)=sb.tmp.buf.m[pos];
|
|
|
|
(*stream++)=sb.tmp.buf.m[pos];
|
|
|
|
sb.tmp.index+=sb.tmp.add_index;
|
|
|
|
sb.out.pos++;
|
|
|
|
}
|
|
|
|
sb.tmp.index&=0xffff;
|
|
|
|
} else {
|
|
|
|
Bitu pos;read<<=1;
|
|
|
|
while (read>(pos=sb.tmp.index>>16)) {
|
|
|
|
(*stream++)=sb.tmp.buf.s[pos][0];
|
|
|
|
(*stream++)=sb.tmp.buf.s[pos][1];
|
|
|
|
sb.tmp.index+=sb.tmp.add_index;
|
|
|
|
sb.out.pos++;
|
|
|
|
}
|
|
|
|
sb.tmp.index&=0xffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void GenerateSound(Bitu size) {
|
|
|
|
while (sb.out.pos<size) {
|
|
|
|
Bitu samples=size-sb.out.pos;
|
|
|
|
switch (sb.mode) {
|
|
|
|
case MODE_DMA_WAIT:
|
|
|
|
case MODE_DMA_PAUSE:
|
|
|
|
case MODE_NONE:
|
|
|
|
memset(&sb.out.buf[sb.out.pos],0,samples*4);
|
|
|
|
sb.out.pos+=samples;
|
|
|
|
break;
|
|
|
|
case MODE_DAC:
|
|
|
|
/* Stretch the inputted dac data over len samples */
|
|
|
|
{
|
|
|
|
|
|
|
|
Bit16s * stream=&sb.out.buf[sb.out.pos][0];
|
|
|
|
if (sb.dac.used) {
|
|
|
|
Bitu dac_add=(sb.dac.used<<16)/samples;
|
|
|
|
Bitu dac_pos=0;
|
|
|
|
Bitu len=samples;
|
|
|
|
while (len-->0) {
|
|
|
|
*(stream++)=sb.dac.data[dac_pos>>16];
|
|
|
|
*(stream++)=sb.dac.data[dac_pos>>16];
|
|
|
|
dac_pos+=dac_add;
|
|
|
|
}
|
|
|
|
dac_pos-=dac_add;
|
|
|
|
sb.dac.last=sb.dac.data[dac_pos>>16];
|
|
|
|
sb.dac.used=0;
|
|
|
|
} else {
|
|
|
|
memset(stream,sb.dac.last,samples);
|
|
|
|
sb.mode=MODE_NONE;
|
|
|
|
}
|
|
|
|
sb.out.pos+=samples;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MODE_DMA:
|
|
|
|
{
|
|
|
|
Bitu len=size*sb.dma.rate_mul;
|
|
|
|
if (len & 0xffff) len=1+(len>>16);
|
|
|
|
else len>>=16;
|
|
|
|
GenerateDMASound(len);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sb.out.pos>SB_BUF_SIZE) {
|
|
|
|
LOG(LOG_ERROR|LOG_SB,"Generation Buffer Full!!!!");
|
|
|
|
sb.out.pos=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void END_DMA_Event(void) {
|
|
|
|
GenerateDMASound(sb.dma.left);
|
|
|
|
sb.dma.left=0;
|
|
|
|
DSP_ChangeMode(MODE_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void CheckDMAEnd(void) {
|
|
|
|
if (!sb.dma.rate) return;
|
|
|
|
Bitu index=(Bitu)(((float)sb.dma.left*(float)1000000)/(float)sb.dma.rate);
|
|
|
|
if (index<(1000-PIC_Index())) {
|
|
|
|
#if SB_PIC_EVENTS
|
|
|
|
PIC_AddEvent(END_DMA_Event,index);
|
|
|
|
#else
|
|
|
|
GenerateDMASound(sb.dma.left);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DSP_ChangeMode(DSP_MODES mode) {
|
|
|
|
if (!sb.speaker) DSP_SetSpeaker(true);
|
|
|
|
if (mode==sb.mode) return;
|
|
|
|
/* Generate sound until now */
|
|
|
|
Bitu index=PIC_Index();
|
|
|
|
GenerateSound((sb.hw.rate_conv*index)>>16);
|
|
|
|
sb.mode=mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DSP_StartDMATranfser(DMA_MODES mode) {
|
|
|
|
char * type;
|
|
|
|
/* First fill with current whatever is playing */
|
|
|
|
DSP_ChangeMode(MODE_NONE);
|
|
|
|
sb.dma.total=1+sb.dsp.in.data[0]+(sb.dsp.in.data[1] << 8);
|
|
|
|
sb.dma.left=sb.dma.total;
|
2009-05-02 23:03:37 +02:00
|
|
|
if (sb.use_time_constant) {
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dma.rate=(1000000 / (256 - sb.time_constant));
|
2009-05-02 23:03:37 +02:00
|
|
|
};
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dma.rate_mul=(sb.dma.rate<<16)/sb.hw.rate;
|
|
|
|
|
|
|
|
sb.dma.mode=mode;
|
|
|
|
sb.tmp.index=0;
|
2009-05-02 23:03:37 +02:00
|
|
|
switch (mode) {
|
2009-05-02 23:35:44 +02:00
|
|
|
case DMA_8_SILENCE:
|
|
|
|
PIC_AddIRQ(sb.hw.irq,((1000000*sb.dma.left)/sb.dma.rate));
|
|
|
|
sb.dma.mode=DMA_NONE;
|
|
|
|
return;
|
2009-05-02 23:20:05 +02:00
|
|
|
break;
|
2009-05-02 23:35:44 +02:00
|
|
|
case DMA_8_SINGLE:
|
|
|
|
type="8-Bit Single Cycle";
|
|
|
|
sb.tmp.add_index=(sb.dma.rate<<16)/sb.hw.rate;
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
2009-05-02 23:35:44 +02:00
|
|
|
case DMA_8_AUTO:
|
|
|
|
type="8-Bit Auto Init";
|
|
|
|
sb.tmp.add_index=(sb.dma.rate<<16)/sb.hw.rate;
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
2009-05-02 23:35:44 +02:00
|
|
|
case DMA_4_SINGLE:
|
|
|
|
type="4-Bit ADPCM Single Cycle";
|
|
|
|
sb.tmp.add_index=(sb.dma.rate<<16)/sb.hw.rate;
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
default:
|
2009-05-02 23:35:44 +02:00
|
|
|
LOG(LOG_ERROR|LOG_SB,"DSP:Illegal transfer mode %d",mode);
|
2009-05-02 23:03:37 +02:00
|
|
|
return;
|
|
|
|
}
|
2009-05-02 23:35:44 +02:00
|
|
|
//TODO Use the 16-bit dma for 16-bit transfers
|
|
|
|
DSP_ChangeMode(MODE_DMA_WAIT);
|
|
|
|
sb.dma.mode=mode;
|
|
|
|
DMA_SetEnableCallBack(sb.hw.dma8,DMA_Enable);
|
|
|
|
//TODO with stereo divide add_index
|
|
|
|
LOG(LOG_SB,"DMA Transfer:%s rate %d size %d",type,sb.dma.rate,sb.dma.total);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void DSP_AddData(Bit8u val) {
|
2009-05-02 23:35:44 +02:00
|
|
|
if (sb.dsp.out.used<DSP_BUFSIZE) {
|
|
|
|
Bitu start=sb.dsp.out.used+sb.dsp.out.pos;
|
2009-05-02 23:03:37 +02:00
|
|
|
if (start>=DSP_BUFSIZE) start-=DSP_BUFSIZE;
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.out.data[start]=val;
|
|
|
|
sb.dsp.out.used++;
|
2009-05-02 23:03:37 +02:00
|
|
|
} else {
|
2009-05-02 23:35:44 +02:00
|
|
|
LOG(LOG_ERROR|LOG_SB,"DSP:Data Output buffer full");
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
static void DSP_Reset(void) {
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_ChangeMode(MODE_NONE);
|
|
|
|
sb.dsp.cmd_len=0;
|
|
|
|
sb.dsp.in.pos=0;
|
|
|
|
sb.dsp.write_busy=0;
|
|
|
|
sb.dma.left=0;
|
|
|
|
sb.dma.total=0;
|
2009-05-02 23:20:05 +02:00
|
|
|
sb.freq=22050;
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.use_time_constant=true;
|
|
|
|
sb.time_constant=45;
|
2009-05-02 23:12:18 +02:00
|
|
|
sb.dac.used=0;
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dac.last=0;
|
|
|
|
sb.e2.value=0xaa;
|
|
|
|
sb.e2.count=0;
|
2009-05-02 23:03:37 +02:00
|
|
|
DSP_SetSpeaker(false);
|
|
|
|
}
|
2009-05-02 23:35:44 +02:00
|
|
|
|
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
static void DSP_DoReset(Bit8u val) {
|
|
|
|
if (val&1!=0) {
|
|
|
|
//TODO Get out of highspeed mode
|
|
|
|
DSP_Reset();
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.state=DSP_S_RESET;
|
2009-05-02 23:03:37 +02:00
|
|
|
} else {
|
|
|
|
DSP_FlushData();
|
|
|
|
DSP_AddData(0xaa);
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.state=DSP_S_NORMAL;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:35:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void DMA_E2_Enable(bool enable) {
|
|
|
|
if (enable) {
|
|
|
|
Bit8u val=sb.e2.value;
|
|
|
|
DMA_8_Write(sb.hw.dma8,&val,1);
|
|
|
|
DMA_SetEnableCallBack(sb.hw.dma8,0);
|
|
|
|
// PIC_AddIRQ(sb.hw.irq,0);
|
|
|
|
}
|
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
static void DSP_DoCommand(void) {
|
2009-05-02 23:35:44 +02:00
|
|
|
switch (sb.dsp.cmd) {
|
2009-05-02 23:03:37 +02:00
|
|
|
case 0x10: /* Direct DAC */
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_ChangeMode(MODE_DAC);
|
2009-05-02 23:12:18 +02:00
|
|
|
if (sb.dac.used<DSP_DACSIZE) {
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dac.data[sb.dac.used++]=(Bit8s(sb.dsp.in.data[0] ^ 0x80)) << 8;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
break;
|
2009-05-02 23:35:44 +02:00
|
|
|
case 0x24: /* Singe Cycle 8-Bit DMA ADC */
|
|
|
|
case 0x14: /* Singe Cycle 8-Bit DMA DAC */
|
|
|
|
case 0x91: /* Singe Cycle 8-Bit DMA High speed DAC */
|
|
|
|
DSP_StartDMATranfser(DMA_8_SINGLE);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
2009-05-02 23:35:44 +02:00
|
|
|
case 0x90: /* Auto Init 8-bit DMA High Speed */
|
2009-05-02 23:03:37 +02:00
|
|
|
case 0x1c: /* Auto Init 8-bit DMA */
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_StartDMATranfser(DMA_8_AUTO);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
case 0x40: /* Set Timeconstant */
|
|
|
|
sb.use_time_constant=true;
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.time_constant=sb.dsp.in.data[0];
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
case 0x48: /* Set DMA Block Size */
|
2009-05-02 23:35:44 +02:00
|
|
|
//TODO Maybe check limit for new irq?
|
|
|
|
sb.dma.total=1+sb.dsp.in.data[0]+(sb.dsp.in.data[1] << 8);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
case 0x75: /* 075h : Single Cycle 4-bit ADPCM Reference */
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.adpcm.scale=0;
|
|
|
|
sb.adpcm.reference=-1;
|
2009-05-02 23:03:37 +02:00
|
|
|
case 0x74: /* 074h : Single Cycle 4-bit ADPCM */
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_StartDMATranfser(DMA_4_SINGLE);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
2009-05-02 23:20:05 +02:00
|
|
|
case 0x80: /* Silence DAC */
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_StartDMATranfser(DMA_8_SILENCE);
|
2009-05-02 23:20:05 +02:00
|
|
|
break;
|
2009-05-02 23:03:37 +02:00
|
|
|
case 0xd0: /* Halt 8-bit DMA */
|
2009-05-02 23:35:44 +02:00
|
|
|
if (sb.dma.left) {
|
|
|
|
DSP_ChangeMode(MODE_DMA_PAUSE);
|
|
|
|
#if SB_PIC_EVENTS
|
|
|
|
PIC_RemoveEvents(END_DMA_Event);
|
|
|
|
#endif
|
|
|
|
} else DSP_ChangeMode(MODE_NONE);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
case 0xd1: /* Enable Speaker */
|
|
|
|
DSP_SetSpeaker(true);
|
|
|
|
break;
|
|
|
|
case 0xd3: /* Disable Speaker */
|
|
|
|
DSP_SetSpeaker(false);
|
|
|
|
break;
|
2009-05-02 23:35:44 +02:00
|
|
|
case 0xd4:
|
|
|
|
DSP_ChangeMode(MODE_DMA_WAIT);
|
|
|
|
DMA_SetEnableCallBack(sb.hw.dma8,DMA_Enable);
|
|
|
|
break;
|
|
|
|
case 0xda: /* Exit Autoinitialize 8-bit */
|
|
|
|
/* Set mode to single transfer so it ends with current block */
|
|
|
|
if (sb.dma.mode==DMA_8_AUTO) sb.dma.mode=DMA_8_SINGLE;
|
|
|
|
break;
|
2009-05-02 23:03:37 +02:00
|
|
|
case 0xe0: /* DSP Identification - SB2.0+ */
|
|
|
|
DSP_FlushData();
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_AddData(~sb.dsp.in.data[0]);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
case 0xe1: /* Get DSP Version */
|
|
|
|
DSP_FlushData();
|
|
|
|
DSP_AddData(DSP_MAJOR);
|
|
|
|
DSP_AddData(DSP_MINOR);
|
|
|
|
break;
|
|
|
|
case 0xe2: /* Weird DMA identification write routine */
|
|
|
|
{
|
2009-05-02 23:35:44 +02:00
|
|
|
LOG(LOG_SB,"DSP Function 0xe2");
|
|
|
|
for (Bitu i = 0; i < 8; i++)
|
|
|
|
if ((sb.dsp.in.data[0] >> i) & 0x01) sb.e2.value += E2_incr_table[sb.e2.count % 4][i];
|
|
|
|
sb.e2.value += E2_incr_table[sb.e2.count % 4][8];
|
|
|
|
sb.e2.count++;
|
|
|
|
DMA_SetEnableCallBack(sb.hw.dma8,DMA_E2_Enable);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0xe3: /* DSP Copyright */
|
|
|
|
{
|
|
|
|
DSP_FlushData();
|
|
|
|
for (Bit32u i=0;i<=strlen(copyright_string);i++) {
|
|
|
|
DSP_AddData(copyright_string[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0xe4: /* Write Test Register */
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.test_register=sb.dsp.in.data[0];
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
case 0xe8: /* Read Test Register */
|
|
|
|
DSP_FlushData();
|
2009-05-02 23:35:44 +02:00
|
|
|
DSP_AddData(sb.dsp.test_register);;
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
case 0xf2: /* Trigger 8bit IRQ */
|
|
|
|
DSP_FlushData();
|
|
|
|
DSP_AddData(0xaa);
|
2009-05-02 23:35:44 +02:00
|
|
|
PIC_AddIRQ(sb.hw.irq,0);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
default:
|
2009-05-02 23:35:44 +02:00
|
|
|
LOG(LOG_ERROR|LOG_SB,"DSP:Unhandled command %2X",sb.dsp.cmd);
|
|
|
|
break;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.cmd=DSP_NO_COMMAND;
|
|
|
|
sb.dsp.cmd_len=0;
|
|
|
|
sb.dsp.in.pos=0;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void DSP_DoWrite(Bit8u val) {
|
2009-05-02 23:35:44 +02:00
|
|
|
switch (sb.dsp.cmd) {
|
2009-05-02 23:03:37 +02:00
|
|
|
case DSP_NO_COMMAND:
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.cmd=val;
|
|
|
|
sb.dsp.cmd_len=DSP_cmd_len[val];
|
|
|
|
sb.dsp.in.pos=0;
|
|
|
|
if (!sb.dsp.cmd_len) DSP_DoCommand();
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
default:
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.in.data[sb.dsp.in.pos]=val;
|
|
|
|
sb.dsp.in.pos++;
|
|
|
|
if (sb.dsp.in.pos>=sb.dsp.cmd_len) DSP_DoCommand();
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bit8u DSP_ReadData(void) {
|
|
|
|
Bit8u data=0;
|
2009-05-02 23:35:44 +02:00
|
|
|
if (sb.dsp.out.used) {
|
|
|
|
data=sb.dsp.out.data[sb.dsp.out.pos];
|
|
|
|
sb.dsp.out.pos++;
|
|
|
|
if (sb.dsp.out.pos>=DSP_BUFSIZE) sb.dsp.out.pos-=DSP_BUFSIZE;
|
|
|
|
sb.dsp.out.used--;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
static void MIXER_Write(Bit8u val) {
|
|
|
|
switch (sb.mixer.index) {
|
|
|
|
case 0x0a: /* Mic Level */
|
|
|
|
sb.mixer.mic=val;
|
|
|
|
break;
|
|
|
|
case 0x22: /* Master Volume */
|
|
|
|
sb.mixer.master=val;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG(LOG_ERROR|LOG_SB,"MIXER:Write to unhandled index %X",sb.mixer.index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bit8u MIXER_Read(void) {
|
|
|
|
Bit8u ret;
|
|
|
|
switch (sb.mixer.index) {
|
|
|
|
case 0x0a: /* Mic Level */
|
|
|
|
ret=sb.mixer.mic;
|
|
|
|
case 0x22: /* Master Volume */
|
|
|
|
ret=sb.mixer.master;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG(LOG_ERROR|LOG_SB,"MIXER:Read from unhandled index %X",sb.mixer.index);
|
|
|
|
ret=0xff;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
static Bit8u read_sb(Bit32u port) {
|
2009-05-02 23:35:44 +02:00
|
|
|
switch (port-sb.hw.base) {
|
|
|
|
case MIXER_INDEX:
|
|
|
|
return sb.mixer.index;
|
|
|
|
case MIXER_DATA:
|
|
|
|
return MIXER_Read();
|
2009-05-02 23:03:37 +02:00
|
|
|
case DSP_READ_DATA:
|
|
|
|
return DSP_ReadData();
|
|
|
|
case DSP_READ_STATUS:
|
|
|
|
//TODO Acknowledge 8bit irq
|
|
|
|
//TODO See for high speed dma :)
|
2009-05-02 23:35:44 +02:00
|
|
|
if (sb.dsp.out.used) return 0xff;
|
2009-05-02 23:03:37 +02:00
|
|
|
else return 0x7f;
|
|
|
|
case DSP_WRITE_STATUS:
|
2009-05-02 23:35:44 +02:00
|
|
|
switch (sb.dsp.state) {
|
2009-05-02 23:03:37 +02:00
|
|
|
case DSP_S_NORMAL:
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.write_busy++;
|
|
|
|
if (sb.dsp.write_busy & 8) return 0xff;
|
2009-05-02 23:03:37 +02:00
|
|
|
return 0x7f;
|
|
|
|
case DSP_S_RESET:
|
|
|
|
return 0xff;
|
|
|
|
}
|
|
|
|
return 0xff;
|
|
|
|
/* For now loop FM Stuff to 0x388 */
|
|
|
|
case 0x00: case 0x02: case 0x08:
|
|
|
|
return IO_Read(0x388);
|
|
|
|
case DSP_RESET:
|
|
|
|
return 0xff;
|
|
|
|
default:
|
2009-05-02 23:35:44 +02:00
|
|
|
LOG(LOG_SB,"Unhandled read from SB Port %4X",port);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_sb(Bit32u port,Bit8u val) {
|
2009-05-02 23:35:44 +02:00
|
|
|
switch (port-sb.hw.base) {
|
2009-05-02 23:03:37 +02:00
|
|
|
case DSP_RESET:
|
|
|
|
DSP_DoReset(val);
|
|
|
|
break;
|
|
|
|
case DSP_WRITE_DATA:
|
|
|
|
DSP_DoWrite(val);
|
|
|
|
break;
|
2009-05-02 23:35:44 +02:00
|
|
|
case MIXER_INDEX:
|
|
|
|
sb.mixer.index=val;
|
|
|
|
break;
|
|
|
|
case MIXER_DATA:
|
|
|
|
MIXER_Write(val);
|
|
|
|
break;
|
2009-05-02 23:03:37 +02:00
|
|
|
/* For now loop FM Stuff to 0x388 */
|
|
|
|
case 0x00: case 0x02: case 0x08:
|
|
|
|
IO_Write(0x388,val);
|
|
|
|
break;
|
|
|
|
case 0x01: case 0x03: case 0x09:
|
|
|
|
IO_Write(0x389,val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2009-05-02 23:35:44 +02:00
|
|
|
LOG(LOG_SB,"Unhandled write to SB Port %4X",port);
|
2009-05-02 23:03:37 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SBLASTER_CallBack(Bit8u * stream,Bit32u len) {
|
|
|
|
if (!len) return;
|
2009-05-02 23:35:44 +02:00
|
|
|
GenerateSound(len);
|
|
|
|
memcpy(stream,sb.out.buf,len*4);
|
|
|
|
if (sb.out.pos>=len) {
|
|
|
|
memcpy(sb.out.buf,&sb.out.buf[len],(sb.out.pos-len)*4);
|
|
|
|
sb.out.pos-=len;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:35:44 +02:00
|
|
|
else sb.out.pos=0;
|
|
|
|
if (sb.mode==MODE_NONE) DSP_SetSpeaker(false);
|
|
|
|
return;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void SBLASTER_Init(Section* sec) {
|
2009-05-02 23:35:44 +02:00
|
|
|
Bitu i;
|
2009-05-02 23:20:05 +02:00
|
|
|
MSG_Add("SBLASTER_CONFIGFILE_HELP","Sound Blaster related options.\n");
|
|
|
|
Section_prop * section=static_cast<Section_prop *>(sec);
|
|
|
|
if(!section->Get_bool("enabled")) return;
|
2009-05-02 23:03:37 +02:00
|
|
|
sb.chan=MIXER_AddChannel(&SBLASTER_CallBack,22050,"SBLASTER");
|
|
|
|
MIXER_Enable(sb.chan,false);
|
2009-05-02 23:35:44 +02:00
|
|
|
sb.dsp.state=DSP_S_NORMAL;
|
|
|
|
sb.hw.base=section->Get_hex("base");
|
|
|
|
sb.hw.irq=section->Get_int("irq");
|
|
|
|
sb.hw.dma8=section->Get_int("dma");
|
|
|
|
sb.hw.rate=section->Get_int("sbrate");
|
|
|
|
sb.hw.rate_conv=(sb.hw.rate<<16)/1000000;
|
|
|
|
MIXER_SetFreq(sb.chan,sb.hw.rate);
|
|
|
|
MIXER_SetMode(sb.chan,MIXER_16STEREO);
|
|
|
|
|
|
|
|
for (i=sb.hw.base+4;i<sb.hw.base+0xf;i++) {
|
|
|
|
IO_RegisterReadHandler(i,read_sb,"SB");
|
|
|
|
IO_RegisterWriteHandler(i,write_sb,"SB");
|
|
|
|
}
|
|
|
|
PIC_RegisterIRQ(sb.hw.irq,0,"SB");
|
|
|
|
DSP_Reset();
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
SHELL_AddAutoexec("SET BLASTER=A%3X I%d D%d T3",sb.hw.base,sb.hw.irq,sb.hw.dma8);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|