From 3e6fc14a4c90c17cc03a50106a1f3c2b0f869039 Mon Sep 17 00:00:00 2001 From: espes Date: Sun, 14 Jun 2015 22:51:54 +1000 Subject: [PATCH] cleanup, integrate with apu --- hw/xbox/dsp/dsp.c | 50 ++++++++++++++-------------- hw/xbox/dsp/dsp.h | 36 ++++++++++----------- hw/xbox/dsp/dsp_cpu.c | 51 +++++++++++++++-------------- hw/xbox/dsp/dsp_cpu.h | 45 +++++++++++++------------- hw/xbox/dsp/dsp_dis.inl | 23 +++++++++++++ hw/xbox/dsp/dsp_dma.c | 25 ++++++++++++-- hw/xbox/dsp/dsp_dma.h | 19 +++++++++++ hw/xbox/dsp/dsp_emu.inl | 23 +++++++++++++ hw/xbox/mcpx_apu.c | 72 +++++++++++++++++++++++++++++++++++++++-- 9 files changed, 248 insertions(+), 96 deletions(-) diff --git a/hw/xbox/dsp/dsp.c b/hw/xbox/dsp/dsp.c index 56b7585678..14d92c7460 100644 --- a/hw/xbox/dsp/dsp.c +++ b/hw/xbox/dsp/dsp.c @@ -1,26 +1,26 @@ /* - DSP56300 emulator - - Copyright (c) 2015 espes - - Adapted from Hatari DSP M56001 emulation - (C) 2001-2008 ARAnyM developer team - Adaption to Hatari (C) 2008 by Thomas Huth - - 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 -*/ + * MCPX DSP emulator + * + * Copyright (c) 2015 espes + * + * Adapted from Hatari DSP M56001 emulation + * (C) 2001-2008 ARAnyM developer team + * Adaption to Hatari (C) 2008 by Thomas Huth + * + * 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 #include @@ -88,7 +88,7 @@ void dsp_destroy(DSPState* dsp) static uint32_t read_peripheral(dsp_core_t* core, uint32_t address) { DSPState* dsp = container_of(core, DSPState, core); - printf("read_peripheral 0x%06x\n", address); + // printf("read_peripheral 0x%06x\n", address); uint32_t v = 0xababa; switch(address) { @@ -112,14 +112,14 @@ static uint32_t read_peripheral(dsp_core_t* core, uint32_t address) { break; } - printf(" -> 0x%06x\n", v); + // printf(" -> 0x%06x\n", v); return v; } static void write_peripheral(dsp_core_t* core, uint32_t address, uint32_t value) { DSPState* dsp = container_of(core, DSPState, core); - printf("write_peripheral [0x%06x] = 0x%06x\n", address, value); + // printf("write_peripheral [0x%06x] = 0x%06x\n", address, value); switch(address) { case 0xFFFFC5: diff --git a/hw/xbox/dsp/dsp.h b/hw/xbox/dsp/dsp.h index 0ea3d038de..9ad725e4b2 100644 --- a/hw/xbox/dsp/dsp.h +++ b/hw/xbox/dsp/dsp.h @@ -1,26 +1,26 @@ /* - DSP56300 emulator + * MCPX DSP emulator - Copyright (c) 2015 espes + * Copyright (c) 2015 espes - Adapted from Hatari DSP M56001 emulation - (C) 2001-2008 ARAnyM developer team - Adaption to Hatari (C) 2008 by Thomas Huth + * Adapted from Hatari DSP M56001 emulation + * (C) 2001-2008 ARAnyM developer team + * Adaption to Hatari (C) 2008 by Thomas Huth - 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 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. + * 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 -*/ + * 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_H #define DSP_H @@ -32,7 +32,7 @@ typedef struct DSPState DSPState; typedef void (*dsp_scratch_rw_func)( - void* opaque, uint8_t* ptr, uint64_t addr, size_t len, bool dir); + void* opaque, uint8_t* ptr, uint32_t addr, size_t len, bool dir); /* Dsp commands */ DSPState* dsp_init(void* scratch_rw_opaque, dsp_scratch_rw_func scratch_rw); diff --git a/hw/xbox/dsp/dsp_cpu.c b/hw/xbox/dsp/dsp_cpu.c index 90e42bfaa3..e66a1f5dbf 100644 --- a/hw/xbox/dsp/dsp_cpu.c +++ b/hw/xbox/dsp/dsp_cpu.c @@ -1,25 +1,26 @@ /* - DSP56300 emulator - - Copyright (c) 2015 espes - - Adapted from 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 -*/ + * DSP56300 emulator + * + * Copyright (c) 2015 espes + * + * Adapted from Hatari DSP M56001 emulation + * (C) 2003-2008 ARAnyM developer team + * Adaption to Hatari (C) 2008 by Thomas Huth + * + * 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 #include @@ -27,9 +28,9 @@ #include "dsp_cpu.h" -#define TRACE_DSP_DISASM 1 -#define TRACE_DSP_DISASM_REG 1 -#define TRACE_DSP_DISASM_MEM 1 +#define TRACE_DSP_DISASM 0 +#define TRACE_DSP_DISASM_REG 0 +#define TRACE_DSP_DISASM_MEM 0 #define DPRINTF(s, ...) fprintf(stderr, s, ## __VA_ARGS__) @@ -572,7 +573,7 @@ static void disasm_reg_compare(dsp_core_t* dsp) #endif } -const char* disasm_get_instruction_text(dsp_core_t* dsp) +static const char* disasm_get_instruction_text(dsp_core_t* dsp) { const int len = sizeof(dsp->disasm_str_instr); // uint64_t count, cycles; diff --git a/hw/xbox/dsp/dsp_cpu.h b/hw/xbox/dsp/dsp_cpu.h index c0770d394c..41870186f6 100644 --- a/hw/xbox/dsp/dsp_cpu.h +++ b/hw/xbox/dsp/dsp_cpu.h @@ -1,25 +1,26 @@ /* - DSP56300 emulator - - Copyright (c) 2015 espes - - Adapted from 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 -*/ + * DSP56300 emulator + * + * Copyright (c) 2015 espes + * + * Adapted from Hatari DSP M56001 emulation + * (C) 2003-2008 ARAnyM developer team + * Adaption to Hatari (C) 2008 by Thomas Huth + * + * 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_CPU_H #define DSP_CPU_H @@ -236,7 +237,7 @@ struct dsp_core_s { **********************************/ uint32_t disasm_registers_save[64]; -#if DSP_DISASM_REG_PC +#ifdef DSP_DISASM_REG_PC uint32_t pc_save; #endif diff --git a/hw/xbox/dsp/dsp_dis.inl b/hw/xbox/dsp/dsp_dis.inl index 50d330294c..0b0aa6a958 100644 --- a/hw/xbox/dsp/dsp_dis.inl +++ b/hw/xbox/dsp/dsp_dis.inl @@ -1,3 +1,26 @@ +/* + * DSP56300 disassembly routines + * + * Copyright (c) 2015 espes + * + * Adapted from Hatari DSP M56001 emulation + * (C) 2003-2008 ARAnyM developer team + * Adaption to Hatari (C) 2008 by Thomas Huth + * + * 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 + */ typedef void (*dis_func_t)(dsp_core_t* dsp); diff --git a/hw/xbox/dsp/dsp_dma.c b/hw/xbox/dsp/dsp_dma.c index 75d2511b34..3a72f6e627 100644 --- a/hw/xbox/dsp/dsp_dma.c +++ b/hw/xbox/dsp/dsp_dma.c @@ -1,3 +1,22 @@ +/* + * MCPX DSP DMA + * + * Copyright (c) 2015 espes + * + * 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 or + * (at your option) version 3 of the License. + * + * 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, see . + */ + #include #include #include @@ -21,7 +40,6 @@ #define DMA_CONTROL_FROZEN (1 << 3) #define DMA_CONTROL_RUNNING (1 << 4) #define DMA_CONTROL_STOPPED (1 << 5) -#define DMA_CONTROL_WRITE_ #define NODE_POINTER_VAL 0x3fff #define NODE_POINTER_EOL (1 << 14) @@ -46,8 +64,8 @@ static void dsp_dma_run(DSPDMAState *s) uint32_t scratch_base = dsp56k_read_memory(s->core, DSP_SPACE_X, addr+5); uint32_t scratch_size = dsp56k_read_memory(s->core, DSP_SPACE_X, addr+6)+1; - printf("\n\n\nQQQ DMA addr %x, control %x, count %x, dsp_offset %x, scratch_offset %x, base %x, size %x\n\n\n", - addr, control, count, dsp_offset, scratch_offset, scratch_base, scratch_size); + // printf("\n\n\nQQQ DMA addr %x, control %x, count %x, dsp_offset %x, scratch_offset %x, base %x, size %x\n\n\n", + // addr, control, count, dsp_offset, scratch_offset, scratch_base, scratch_size); uint32_t format = (control >> 10) & 7; unsigned int item_size; @@ -130,6 +148,7 @@ static void dsp_dma_run(DSPDMAState *s) assert(false); break; } + // printf("... %06x\n", v); dsp56k_write_memory(s->core, mem_space, mem_address+i, v); } } diff --git a/hw/xbox/dsp/dsp_dma.h b/hw/xbox/dsp/dsp_dma.h index 9b39c61370..1a65e83e2d 100644 --- a/hw/xbox/dsp/dsp_dma.h +++ b/hw/xbox/dsp/dsp_dma.h @@ -1,3 +1,22 @@ +/* + * MCPX DSP DMA + * + * Copyright (c) 2015 espes + * + * 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 or + * (at your option) version 3 of the License. + * + * 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, see . + */ + #ifndef DSP_DMA_H #define DSP_DMA_H diff --git a/hw/xbox/dsp/dsp_emu.inl b/hw/xbox/dsp/dsp_emu.inl index 46119ccef6..a3b7c88121 100644 --- a/hw/xbox/dsp/dsp_emu.inl +++ b/hw/xbox/dsp/dsp_emu.inl @@ -1,3 +1,26 @@ +/* + * DSP56300 instruction routines + * + * Copyright (c) 2015 espes + * + * Adapted from Hatari DSP M56001 emulation + * (C) 2003-2008 ARAnyM developer team + * Adaption to Hatari (C) 2008 by Thomas Huth + * + * 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 +*/ typedef void (*emu_func_t)(dsp_core_t* dsp); diff --git a/hw/xbox/mcpx_apu.c b/hw/xbox/mcpx_apu.c index d38761f8b3..1fe93cd706 100644 --- a/hw/xbox/mcpx_apu.c +++ b/hw/xbox/mcpx_apu.c @@ -20,6 +20,7 @@ #include "hw/i386/pc.h" #include "hw/pci/pci.h" +#include "hw/xbox/dsp/dsp.h" #define NV_PAPU_ISTS 0x00001000 # define NV_PAPU_ISTS_GINTSTS (1 << 0) @@ -47,6 +48,7 @@ # define NV_PAPU_SECTL_XCNTMODE 0x00000018 # define NV_PAPU_SECTL_XCNTMODE_OFF 0 #define NV_PAPU_VPVADDR 0x0000202C +#define NV_PAPU_GPSADDR 0x00002040 #define NV_PAPU_TVL2D 0x00002054 #define NV_PAPU_CVL2D 0x00002058 #define NV_PAPU_NVL2D 0x0000205C @@ -56,6 +58,14 @@ #define NV_PAPU_TVLMP 0x0000206C #define NV_PAPU_CVLMP 0x00002070 #define NV_PAPU_NVLMP 0x00002074 +#define NV_PAPU_GPSMAXSGE 0x000020D4 + +#define NV_PAPU_GPRST 0x0000FFFC +#define NV_PAPU_GPRST_GPRST (1 << 0) +#define NV_PAPU_GPRST_GPDSPRST (1 << 1) +#define NV_PAPU_GPRST_GPNMI (1 << 2) +#define NV_PAPU_GPRST_GPABORT (1 << 3) + static const struct { hwaddr top, current, next; @@ -105,7 +115,7 @@ static const struct { -//#define DEBUG +// #define DEBUG #ifdef DEBUG # define MCPX_DPRINTF(format, ...) printf(format, ## __VA_ARGS__) #else @@ -131,6 +141,8 @@ typedef struct MCPXAPUState { /* Global Processor */ struct { MemoryRegion mmio; + DSPState *dsp; + uint32_t regs[0x10000]; } gp; uint32_t regs[0x20000]; @@ -360,18 +372,61 @@ static const MemoryRegionOps vp_ops = { .write = vp_write, }; +static void gp_scratch_rw(void *opaque, uint8_t* ptr, uint32_t addr, size_t len, bool dir) +{ + MCPXAPUState *d = opaque; + + hwaddr sge_base = d->regs[NV_PAPU_GPSADDR]; + + int i; + for (i=0; iregs[NV_PAPU_GPSMAXSGE]); + uint32_t prd_address = ldl_le_phys(sge_base + entry*4*2); + uint32_t prd_control = ldl_le_phys(sge_base + entry*4*2 + 1); + + hwaddr paddr = prd_address + (addr + i) % TARGET_PAGE_SIZE; + + if (dir) { + stb_phys(paddr, ptr[i]); + } else { + ptr[i] = ldub_phys(paddr); + } + } +} /* Global Processor - programmable DSP */ static uint64_t gp_read(void *opaque, hwaddr addr, unsigned int size) { - MCPX_DPRINTF("mcpx apu GP: read [0x%llx]\n", addr); - return 0; + MCPXAPUState *d = opaque; + + uint64_t r = d->gp.regs[addr]; + MCPX_DPRINTF("mcpx apu GP: read [0x%llx] -> 0x%llx\n", addr, r); + return r; } static void gp_write(void *opaque, hwaddr addr, uint64_t val, unsigned int size) { + MCPXAPUState *d = opaque; + MCPX_DPRINTF("mcpx apu GP: [0x%llx] = 0x%llx\n", addr, val); + + switch (addr) { + case NV_PAPU_GPRST: + if (!(val & NV_PAPU_GPRST_GPRST) || !(val & NV_PAPU_GPRST_GPDSPRST)) { + dsp_reset(d->gp.dsp); + } else if ((!(d->gp.regs[NV_PAPU_GPRST] & NV_PAPU_GPRST_GPRST) + || !(d->gp.regs[NV_PAPU_GPRST] & NV_PAPU_GPRST_GPDSPRST)) + && ((val & NV_PAPU_GPRST_GPRST) && (val & NV_PAPU_GPRST_GPDSPRST)) ) { + dsp_bootstrap(d->gp.dsp); + } + d->gp.regs[NV_PAPU_GPRST] = val; + break; + default: + d->gp.regs[addr] = val; + break; + } } static const MemoryRegionOps gp_ops = { .read = gp_read, @@ -406,6 +461,15 @@ static void se_frame(void *opaque) d->regs[current] = d->regs[next]; } } + + if ((d->gp.regs[NV_PAPU_GPRST] & NV_PAPU_GPRST_GPRST) + && (d->gp.regs[NV_PAPU_GPRST] & NV_PAPU_GPRST_GPDSPRST)) { + dsp_start_frame(d->gp.dsp); + + // hax + dsp_run(d->gp.dsp, 10000); + } + } @@ -429,6 +493,8 @@ static int mcpx_apu_initfn(PCIDevice *dev) d->se.frame_timer = qemu_new_timer_ms(vm_clock, se_frame, d); + d->gp.dsp = dsp_init(d, gp_scratch_rw); + return 0; }