mirror of https://github.com/xemu-project/xemu.git
kill dsp_core
This commit is contained in:
parent
8d029a7c2e
commit
35e0ab7e69
|
@ -1 +1 @@
|
|||
obj-y += dsp.o dsp_core.o dsp_cpu.o dsp_disasm.o
|
||||
obj-y += dsp.o dsp_cpu.o dsp_disasm.o
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "dsp_cpu.h"
|
||||
#include "dsp_disasm.h"
|
||||
#include "dsp_core.h"
|
||||
#include "dsp_int.h"
|
||||
|
||||
#include "dsp.h"
|
||||
|
||||
|
@ -34,12 +34,7 @@
|
|||
#define BITMASK(x) ((1<<(x))-1)
|
||||
#define ARRAYSIZE(x) (int)(sizeof(x)/sizeof(x[0]))
|
||||
|
||||
#define DEBUG 0
|
||||
#if DEBUG
|
||||
#define DPRINTF(a) printf a
|
||||
#else
|
||||
#define DPRINTF(a)
|
||||
#endif
|
||||
#define DPRINTF(s, ...) fprintf(stderr, s, ## __VA_ARGS__)
|
||||
|
||||
static int32_t save_cycles;
|
||||
|
||||
|
@ -80,9 +75,9 @@ void dsp_reset(void)
|
|||
/**
|
||||
* Run DSP for certain cycles
|
||||
*/
|
||||
void dsp_run(int nHostCycles)
|
||||
void dsp_run(int cycles)
|
||||
{
|
||||
save_cycles += nHostCycles * 2;
|
||||
save_cycles += cycles;
|
||||
|
||||
if (dsp_core.running == 0) return;
|
||||
|
||||
|
@ -455,3 +450,82 @@ bool dsp_disasm_set_register(const char *arg, uint32_t value)
|
|||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*--- the DSP core itself ---*/
|
||||
dsp_core_t dsp_core;
|
||||
|
||||
static void (*dsp_host_interrupt)(void); /* Function to trigger host interrupt */
|
||||
|
||||
/* Init DSP emulation */
|
||||
void dsp_core_init(void (*host_interrupt)(void))
|
||||
{
|
||||
DPRINTF("Dsp: core init\n");
|
||||
|
||||
dsp_host_interrupt = host_interrupt;
|
||||
memset(&dsp_core, 0, sizeof(dsp_core_t));
|
||||
}
|
||||
|
||||
/* Shutdown DSP emulation */
|
||||
void dsp_core_shutdown(void)
|
||||
{
|
||||
dsp_core.running = 0;
|
||||
DPRINTF("Dsp: core shutdown\n");
|
||||
}
|
||||
|
||||
/* Reset */
|
||||
void dsp_core_reset(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
DPRINTF("Dsp: core reset\n");
|
||||
dsp_core_shutdown();
|
||||
|
||||
/* Memory */
|
||||
memset(dsp_core.periph, 0, sizeof(dsp_core.periph));
|
||||
memset(dsp_core.stack, 0, sizeof(dsp_core.stack));
|
||||
memset(dsp_core.registers, 0, sizeof(dsp_core.registers));
|
||||
// dsp_core.dsp_host_rtx = 0;
|
||||
// dsp_core.dsp_host_htx = 0;
|
||||
|
||||
/* Registers */
|
||||
dsp_core.pc = 0x0000;
|
||||
dsp_core.registers[DSP_REG_OMR]=0x02;
|
||||
for (i=0;i<8;i++) {
|
||||
dsp_core.registers[DSP_REG_M0+i]=0x00ffff;
|
||||
}
|
||||
|
||||
/* Interruptions */
|
||||
memset((void*)dsp_core.interrupt_isPending, 0, sizeof(dsp_core.interrupt_isPending));
|
||||
dsp_core.interrupt_state = DSP_INTERRUPT_NONE;
|
||||
dsp_core.interrupt_instr_fetch = -1;
|
||||
dsp_core.interrupt_save_pc = -1;
|
||||
dsp_core.interrupt_counter = 0;
|
||||
dsp_core.interrupt_pipeline_count = 0;
|
||||
for (i=0;i<5;i++) {
|
||||
dsp_core.interrupt_ipl[i] = 3;
|
||||
}
|
||||
for (i=5;i<12;i++) {
|
||||
dsp_core.interrupt_ipl[i] = -1;
|
||||
}
|
||||
|
||||
/* Other hardware registers */
|
||||
// dsp_core.periph[DSP_SPACE_X][DSP_IPR]=0;
|
||||
// dsp_core.periph[DSP_SPACE_X][DSP_BCR]=0xffff;
|
||||
|
||||
/* Misc */
|
||||
dsp_core.loop_rep = 0;
|
||||
|
||||
DPRINTF("Dsp: reset done\n");
|
||||
dsp56k_init_cpu();
|
||||
}
|
|
@ -33,6 +33,12 @@ void dsp_uninit(void);
|
|||
void dsp_reset(void);
|
||||
void dsp_run(int nHostCycles);
|
||||
|
||||
/* Emulator call these to init/stop/reset DSP emulation */
|
||||
void dsp_core_init(void (*host_interrupt)(void));
|
||||
void dsp_core_shutdown(void);
|
||||
void dsp_core_reset(void);
|
||||
|
||||
|
||||
/* Dsp Debugger commands */
|
||||
uint32_t dsp_get_pc(void);
|
||||
uint32_t dsp_get_next_pc(uint32_t pc);
|
||||
|
|
|
@ -1,101 +0,0 @@
|
|||
/*
|
||||
DSP56300 emulation
|
||||
|
||||
Based on Hatari DSP M56001 emulation
|
||||
(C) 2003-2008 ARAnyM developer team
|
||||
|
||||
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
|
||||
*/
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "dsp.h"
|
||||
#include "dsp_cpu.h"
|
||||
|
||||
#include "dsp_core.h"
|
||||
|
||||
/*--- the DSP core itself ---*/
|
||||
dsp_core_t dsp_core;
|
||||
|
||||
static void (*dsp_host_interrupt)(void); /* Function to trigger host interrupt */
|
||||
|
||||
#define DPRINTF(s, ...) fprintf(stderr, s, ## __VA_ARGS__)
|
||||
|
||||
/* Init DSP emulation */
|
||||
void dsp_core_init(void (*host_interrupt)(void))
|
||||
{
|
||||
DPRINTF("Dsp: core init\n");
|
||||
|
||||
dsp_host_interrupt = host_interrupt;
|
||||
memset(&dsp_core, 0, sizeof(dsp_core_t));
|
||||
}
|
||||
|
||||
/* Shutdown DSP emulation */
|
||||
void dsp_core_shutdown(void)
|
||||
{
|
||||
dsp_core.running = 0;
|
||||
DPRINTF("Dsp: core shutdown\n");
|
||||
}
|
||||
|
||||
/* Reset */
|
||||
void dsp_core_reset(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
DPRINTF("Dsp: core reset\n");
|
||||
dsp_core_shutdown();
|
||||
|
||||
/* Memory */
|
||||
memset(dsp_core.periph, 0, sizeof(dsp_core.periph));
|
||||
memset(dsp_core.stack, 0, sizeof(dsp_core.stack));
|
||||
memset(dsp_core.registers, 0, sizeof(dsp_core.registers));
|
||||
// dsp_core.dsp_host_rtx = 0;
|
||||
// dsp_core.dsp_host_htx = 0;
|
||||
|
||||
/* Registers */
|
||||
dsp_core.pc = 0x0000;
|
||||
dsp_core.registers[DSP_REG_OMR]=0x02;
|
||||
for (i=0;i<8;i++) {
|
||||
dsp_core.registers[DSP_REG_M0+i]=0x00ffff;
|
||||
}
|
||||
|
||||
/* Interruptions */
|
||||
memset((void*)dsp_core.interrupt_isPending, 0, sizeof(dsp_core.interrupt_isPending));
|
||||
dsp_core.interrupt_state = DSP_INTERRUPT_NONE;
|
||||
dsp_core.interrupt_instr_fetch = -1;
|
||||
dsp_core.interrupt_save_pc = -1;
|
||||
dsp_core.interrupt_counter = 0;
|
||||
dsp_core.interrupt_pipeline_count = 0;
|
||||
for (i=0;i<5;i++) {
|
||||
dsp_core.interrupt_ipl[i] = 3;
|
||||
}
|
||||
for (i=5;i<12;i++) {
|
||||
dsp_core.interrupt_ipl[i] = -1;
|
||||
}
|
||||
|
||||
/* Other hardware registers */
|
||||
// dsp_core.periph[DSP_SPACE_X][DSP_IPR]=0;
|
||||
// dsp_core.periph[DSP_SPACE_X][DSP_BCR]=0xffff;
|
||||
|
||||
/* Misc */
|
||||
dsp_core.loop_rep = 0;
|
||||
|
||||
DPRINTF("Dsp: reset done\n");
|
||||
dsp56k_init_cpu();
|
||||
}
|
||||
|
|
@ -1,103 +0,0 @@
|
|||
/*
|
||||
DSP56300 emulation
|
||||
|
||||
Based on Hatari DSP M56001 emulation
|
||||
(C) 2003-2008 ARAnyM developer team
|
||||
|
||||
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
|
||||
*/
|
||||
|
||||
#ifndef DSP_CORE_H
|
||||
#define DSP_CORE_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "dsp_cpu.h"
|
||||
|
||||
#define DSP_INTERRUPT_NONE 0x0
|
||||
#define DSP_INTERRUPT_DISABLED 0x1
|
||||
#define DSP_INTERRUPT_LONG 0x2
|
||||
|
||||
#define DSP_INTER_RESET 0x0
|
||||
#define DSP_INTER_ILLEGAL 0x1
|
||||
#define DSP_INTER_STACK_ERROR 0x2
|
||||
#define DSP_INTER_TRACE 0x3
|
||||
#define DSP_INTER_SWI 0x4
|
||||
#define DSP_INTER_HOST_COMMAND 0x5
|
||||
#define DSP_INTER_HOST_RCV_DATA 0x6
|
||||
#define DSP_INTER_HOST_TRX_DATA 0x7
|
||||
#define DSP_INTER_SSI_RCV_DATA_E 0x8
|
||||
#define DSP_INTER_SSI_RCV_DATA 0x9
|
||||
#define DSP_INTER_SSI_TRX_DATA_E 0xa
|
||||
#define DSP_INTER_SSI_TRX_DATA 0xb
|
||||
|
||||
|
||||
typedef struct dsp_core_s dsp_core_t;
|
||||
typedef struct dsp_interrupt_s dsp_interrupt_t;
|
||||
|
||||
struct dsp_interrupt_s {
|
||||
const uint16_t inter;
|
||||
const uint16_t vectorAddr;
|
||||
const uint16_t periph;
|
||||
const char *name;
|
||||
};
|
||||
|
||||
struct dsp_core_s {
|
||||
|
||||
/* DSP executing instructions ? */
|
||||
int running;
|
||||
|
||||
/* DSP instruction Cycle counter */
|
||||
uint16_t instr_cycle;
|
||||
|
||||
/* Registers */
|
||||
uint32_t pc;
|
||||
uint32_t registers[DSP_REG_MAX];
|
||||
|
||||
/* stack[0=ssh], stack[1=ssl] */
|
||||
uint32_t stack[2][16];
|
||||
|
||||
uint32_t xram[DSP_XRAM_SIZE];
|
||||
uint32_t yram[DSP_YRAM_SIZE];
|
||||
uint32_t pram[DSP_PRAM_SIZE];
|
||||
|
||||
/* peripheral space, x:0xffff80-0xffffff */
|
||||
uint32_t periph[DSP_PERIPH_SIZE];
|
||||
|
||||
/* Misc */
|
||||
uint32_t loop_rep; /* executing rep ? */
|
||||
uint32_t pc_on_rep; /* True if PC is on REP instruction */
|
||||
|
||||
/* Interruptions */
|
||||
uint16_t interrupt_state; /* NONE, FAST or LONG interrupt */
|
||||
uint16_t interrupt_instr_fetch; /* vector of the current interrupt */
|
||||
uint16_t interrupt_save_pc; /* save next pc value before interrupt */
|
||||
uint16_t interrupt_counter; /* count number of pending interrupts */
|
||||
uint16_t interrupt_IplToRaise; /* save the IPL level to save in the SR register */
|
||||
uint16_t interrupt_pipeline_count; /* used to prefetch correctly the 2 inter instructions */
|
||||
int16_t interrupt_ipl[12]; /* store the current IPL for each interrupt */
|
||||
uint16_t interrupt_isPending[12]; /* store if interrupt is pending for each interrupt */
|
||||
};
|
||||
|
||||
|
||||
/* DSP */
|
||||
extern dsp_core_t dsp_core;
|
||||
|
||||
/* Emulator call these to init/stop/reset DSP emulation */
|
||||
void dsp_core_init(void (*host_interrupt)(void));
|
||||
void dsp_core_shutdown(void);
|
||||
void dsp_core_reset(void);
|
||||
|
||||
#endif /* DSP_CORE_H */
|
|
@ -23,9 +23,10 @@
|
|||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include "dsp_core.h"
|
||||
#include "dsp_cpu.h"
|
||||
#include "dsp_disasm.h"
|
||||
#include "dsp_int.h"
|
||||
|
||||
#include "dsp_cpu.h"
|
||||
|
||||
#define TRACE_DSP_DISASM 1
|
||||
#define TRACE_DSP_DISASM_REG 1
|
||||
|
|
|
@ -25,96 +25,6 @@
|
|||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define DSP_OMR_MA 0x00
|
||||
#define DSP_OMR_MB 0x01
|
||||
#define DSP_OMR_DE 0x02
|
||||
#define DSP_OMR_SD 0x06
|
||||
#define DSP_OMR_EA 0x07
|
||||
|
||||
#define DSP_SR_C 0x00
|
||||
#define DSP_SR_V 0x01
|
||||
#define DSP_SR_Z 0x02
|
||||
#define DSP_SR_N 0x03
|
||||
#define DSP_SR_U 0x04
|
||||
#define DSP_SR_E 0x05
|
||||
#define DSP_SR_L 0x06
|
||||
|
||||
#define DSP_SR_I0 0x08
|
||||
#define DSP_SR_I1 0x09
|
||||
#define DSP_SR_S0 0x0a
|
||||
#define DSP_SR_S1 0x0b
|
||||
#define DSP_SR_T 0x0d
|
||||
#define DSP_SR_LF 0x0f
|
||||
|
||||
#define DSP_SP_SE 0x04
|
||||
#define DSP_SP_UF 0x05
|
||||
|
||||
/* Registers numbers in dsp.registers[] */
|
||||
#define DSP_REG_X0 0x04
|
||||
#define DSP_REG_X1 0x05
|
||||
#define DSP_REG_Y0 0x06
|
||||
#define DSP_REG_Y1 0x07
|
||||
#define DSP_REG_A0 0x08
|
||||
#define DSP_REG_B0 0x09
|
||||
#define DSP_REG_A2 0x0a
|
||||
#define DSP_REG_B2 0x0b
|
||||
#define DSP_REG_A1 0x0c
|
||||
#define DSP_REG_B1 0x0d
|
||||
#define DSP_REG_A 0x0e
|
||||
#define DSP_REG_B 0x0f
|
||||
|
||||
#define DSP_REG_R0 0x10
|
||||
#define DSP_REG_R1 0x11
|
||||
#define DSP_REG_R2 0x12
|
||||
#define DSP_REG_R3 0x13
|
||||
#define DSP_REG_R4 0x14
|
||||
#define DSP_REG_R5 0x15
|
||||
#define DSP_REG_R6 0x16
|
||||
#define DSP_REG_R7 0x17
|
||||
|
||||
#define DSP_REG_N0 0x18
|
||||
#define DSP_REG_N1 0x19
|
||||
#define DSP_REG_N2 0x1a
|
||||
#define DSP_REG_N3 0x1b
|
||||
#define DSP_REG_N4 0x1c
|
||||
#define DSP_REG_N5 0x1d
|
||||
#define DSP_REG_N6 0x1e
|
||||
#define DSP_REG_N7 0x1f
|
||||
|
||||
#define DSP_REG_M0 0x20
|
||||
#define DSP_REG_M1 0x21
|
||||
#define DSP_REG_M2 0x22
|
||||
#define DSP_REG_M3 0x23
|
||||
#define DSP_REG_M4 0x24
|
||||
#define DSP_REG_M5 0x25
|
||||
#define DSP_REG_M6 0x26
|
||||
#define DSP_REG_M7 0x27
|
||||
|
||||
#define DSP_REG_SR 0x39
|
||||
#define DSP_REG_OMR 0x3a
|
||||
#define DSP_REG_SP 0x3b
|
||||
#define DSP_REG_SSH 0x3c
|
||||
#define DSP_REG_SSL 0x3d
|
||||
#define DSP_REG_LA 0x3e
|
||||
#define DSP_REG_LC 0x3f
|
||||
|
||||
#define DSP_REG_NULL 0x00
|
||||
#define DSP_REG_LCSAVE 0x30
|
||||
|
||||
#define DSP_REG_MAX 0x40
|
||||
|
||||
/* Memory spaces for dsp.ram[], dsp.rom[] */
|
||||
#define DSP_SPACE_X 0x00
|
||||
#define DSP_SPACE_Y 0x01
|
||||
#define DSP_SPACE_P 0x02
|
||||
|
||||
#define DSP_XRAM_SIZE 4096
|
||||
#define DSP_YRAM_SIZE 2048
|
||||
#define DSP_PRAM_SIZE 4096
|
||||
|
||||
#define DSP_PERIPH_BASE 0xFFFF80
|
||||
#define DSP_PERIPH_SIZE 128
|
||||
|
||||
/* Functions */
|
||||
void dsp56k_init_cpu(void); /* Set dsp_core to use */
|
||||
void dsp56k_execute_instruction(void); /* Execute 1 instruction */
|
||||
|
|
|
@ -24,11 +24,10 @@
|
|||
#include <string.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "dsp_core.h"
|
||||
#include "dsp_cpu.h"
|
||||
#include "dsp_int.h"
|
||||
#include "dsp_disasm.h"
|
||||
|
||||
|
||||
/* More disasm infos, if wanted */
|
||||
#define DSP_DISASM_REG_PC 0
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
#ifndef DSP_DISASM_H
|
||||
#define DSP_DISASM_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
typedef enum {
|
||||
DSP_TRACE_MODE,
|
||||
DSP_DISASM_MODE
|
||||
|
|
|
@ -0,0 +1,164 @@
|
|||
#ifndef DSP_INT_H
|
||||
#define DSP_INT_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#define DSP_OMR_MA 0x00
|
||||
#define DSP_OMR_MB 0x01
|
||||
#define DSP_OMR_DE 0x02
|
||||
#define DSP_OMR_SD 0x06
|
||||
#define DSP_OMR_EA 0x07
|
||||
|
||||
#define DSP_SR_C 0x00
|
||||
#define DSP_SR_V 0x01
|
||||
#define DSP_SR_Z 0x02
|
||||
#define DSP_SR_N 0x03
|
||||
#define DSP_SR_U 0x04
|
||||
#define DSP_SR_E 0x05
|
||||
#define DSP_SR_L 0x06
|
||||
|
||||
#define DSP_SR_I0 0x08
|
||||
#define DSP_SR_I1 0x09
|
||||
#define DSP_SR_S0 0x0a
|
||||
#define DSP_SR_S1 0x0b
|
||||
#define DSP_SR_T 0x0d
|
||||
#define DSP_SR_LF 0x0f
|
||||
|
||||
#define DSP_SP_SE 0x04
|
||||
#define DSP_SP_UF 0x05
|
||||
|
||||
/* Registers numbers in dsp.registers[] */
|
||||
#define DSP_REG_X0 0x04
|
||||
#define DSP_REG_X1 0x05
|
||||
#define DSP_REG_Y0 0x06
|
||||
#define DSP_REG_Y1 0x07
|
||||
#define DSP_REG_A0 0x08
|
||||
#define DSP_REG_B0 0x09
|
||||
#define DSP_REG_A2 0x0a
|
||||
#define DSP_REG_B2 0x0b
|
||||
#define DSP_REG_A1 0x0c
|
||||
#define DSP_REG_B1 0x0d
|
||||
#define DSP_REG_A 0x0e
|
||||
#define DSP_REG_B 0x0f
|
||||
|
||||
#define DSP_REG_R0 0x10
|
||||
#define DSP_REG_R1 0x11
|
||||
#define DSP_REG_R2 0x12
|
||||
#define DSP_REG_R3 0x13
|
||||
#define DSP_REG_R4 0x14
|
||||
#define DSP_REG_R5 0x15
|
||||
#define DSP_REG_R6 0x16
|
||||
#define DSP_REG_R7 0x17
|
||||
|
||||
#define DSP_REG_N0 0x18
|
||||
#define DSP_REG_N1 0x19
|
||||
#define DSP_REG_N2 0x1a
|
||||
#define DSP_REG_N3 0x1b
|
||||
#define DSP_REG_N4 0x1c
|
||||
#define DSP_REG_N5 0x1d
|
||||
#define DSP_REG_N6 0x1e
|
||||
#define DSP_REG_N7 0x1f
|
||||
|
||||
#define DSP_REG_M0 0x20
|
||||
#define DSP_REG_M1 0x21
|
||||
#define DSP_REG_M2 0x22
|
||||
#define DSP_REG_M3 0x23
|
||||
#define DSP_REG_M4 0x24
|
||||
#define DSP_REG_M5 0x25
|
||||
#define DSP_REG_M6 0x26
|
||||
#define DSP_REG_M7 0x27
|
||||
|
||||
#define DSP_REG_SR 0x39
|
||||
#define DSP_REG_OMR 0x3a
|
||||
#define DSP_REG_SP 0x3b
|
||||
#define DSP_REG_SSH 0x3c
|
||||
#define DSP_REG_SSL 0x3d
|
||||
#define DSP_REG_LA 0x3e
|
||||
#define DSP_REG_LC 0x3f
|
||||
|
||||
#define DSP_REG_NULL 0x00
|
||||
#define DSP_REG_LCSAVE 0x30
|
||||
|
||||
#define DSP_REG_MAX 0x40
|
||||
|
||||
/* Memory spaces for dsp.ram[], dsp.rom[] */
|
||||
#define DSP_SPACE_X 0x00
|
||||
#define DSP_SPACE_Y 0x01
|
||||
#define DSP_SPACE_P 0x02
|
||||
|
||||
#define DSP_XRAM_SIZE 4096
|
||||
#define DSP_YRAM_SIZE 2048
|
||||
#define DSP_PRAM_SIZE 4096
|
||||
|
||||
#define DSP_PERIPH_BASE 0xFFFF80
|
||||
#define DSP_PERIPH_SIZE 128
|
||||
|
||||
|
||||
|
||||
|
||||
#define DSP_INTERRUPT_NONE 0x0
|
||||
#define DSP_INTERRUPT_DISABLED 0x1
|
||||
#define DSP_INTERRUPT_LONG 0x2
|
||||
|
||||
#define DSP_INTER_RESET 0x0
|
||||
#define DSP_INTER_ILLEGAL 0x1
|
||||
#define DSP_INTER_STACK_ERROR 0x2
|
||||
#define DSP_INTER_TRACE 0x3
|
||||
#define DSP_INTER_SWI 0x4
|
||||
#define DSP_INTER_HOST_COMMAND 0x5
|
||||
#define DSP_INTER_HOST_RCV_DATA 0x6
|
||||
#define DSP_INTER_HOST_TRX_DATA 0x7
|
||||
#define DSP_INTER_SSI_RCV_DATA_E 0x8
|
||||
#define DSP_INTER_SSI_RCV_DATA 0x9
|
||||
#define DSP_INTER_SSI_TRX_DATA_E 0xa
|
||||
#define DSP_INTER_SSI_TRX_DATA 0xb
|
||||
|
||||
|
||||
typedef struct dsp_interrupt_s {
|
||||
const uint16_t inter;
|
||||
const uint16_t vectorAddr;
|
||||
const uint16_t periph;
|
||||
const char *name;
|
||||
} dsp_interrupt_t;
|
||||
|
||||
typedef struct dsp_core_s {
|
||||
|
||||
/* DSP executing instructions ? */
|
||||
int running;
|
||||
|
||||
/* DSP instruction Cycle counter */
|
||||
uint16_t instr_cycle;
|
||||
|
||||
/* Registers */
|
||||
uint32_t pc;
|
||||
uint32_t registers[DSP_REG_MAX];
|
||||
|
||||
/* stack[0=ssh], stack[1=ssl] */
|
||||
uint32_t stack[2][16];
|
||||
|
||||
uint32_t xram[DSP_XRAM_SIZE];
|
||||
uint32_t yram[DSP_YRAM_SIZE];
|
||||
uint32_t pram[DSP_PRAM_SIZE];
|
||||
|
||||
/* peripheral space, x:0xffff80-0xffffff */
|
||||
uint32_t periph[DSP_PERIPH_SIZE];
|
||||
|
||||
/* Misc */
|
||||
uint32_t loop_rep; /* executing rep ? */
|
||||
uint32_t pc_on_rep; /* True if PC is on REP instruction */
|
||||
|
||||
/* Interruptions */
|
||||
uint16_t interrupt_state; /* NONE, FAST or LONG interrupt */
|
||||
uint16_t interrupt_instr_fetch; /* vector of the current interrupt */
|
||||
uint16_t interrupt_save_pc; /* save next pc value before interrupt */
|
||||
uint16_t interrupt_counter; /* count number of pending interrupts */
|
||||
uint16_t interrupt_IplToRaise; /* save the IPL level to save in the SR register */
|
||||
uint16_t interrupt_pipeline_count; /* used to prefetch correctly the 2 inter instructions */
|
||||
int16_t interrupt_ipl[12]; /* store the current IPL for each interrupt */
|
||||
uint16_t interrupt_isPending[12]; /* store if interrupt is pending for each interrupt */
|
||||
} dsp_core_t;
|
||||
|
||||
/* DSP */
|
||||
extern dsp_core_t dsp_core;
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue