all repos — mgba @ f32fbd737fee9defcfbbb73a386685f936eeaae5

mGBA Game Boy Advance Emulator

DS GX: Fix DMAs triggering too frequently (fixes #620, #583)
Vicki Pfau vi@endrift.com
Tue, 25 Apr 2017 17:02:06 -0700
commit

f32fbd737fee9defcfbbb73a386685f936eeaae5

parent

6d3764d800a77c4587b0ce15d4e54bc9401a86fa

2 files changed, 20 insertions(+), 12 deletions(-)

jump to
M CHANGESCHANGES

@@ -26,6 +26,7 @@ - DS Audio: Fix audio sampling slightly too quickly

- Feature: Fix resizing GIF buffer (fixes mgba.io/i/695) - DS GX: Retain translucent polygon ID when drawing opaque fragments (fixes mgba.io/i/661) - DS Timers: Fix ARM9 timers running too fast + - DS GX: Fix DMAs triggering too frequently (fixes mgba.io/i/620, mgba.io/i/583) Misc: - DS: Set boot complete bit in RAM on boot (fixes mgba.io/i/576, mgba.io/i/580, mgba.io/i/586) - DS Memory: Ensure DS9 I/O is 8-byte aligned
M src/ds/gx.csrc/ds/gx.c

@@ -604,6 +604,22 @@

return false; } +static void _updateDMA(struct DSGX* gx) { + unsigned entries = CircleBufferSize(&gx->fifo) / sizeof(struct DSGXEntry); + struct GBADMA* dma = NULL; + if (gx->dmaSource < 0 || entries >= DS_GX_FIFO_SIZE / 2) { + return; + } + dma = &gx->p->ds9.memory.dma[gx->dmaSource]; + if (GBADMARegisterGetTiming9(dma->reg) != DS_DMA_TIMING_GEOM_FIFO) { + gx->dmaSource = -1; + } else if (GBADMARegisterIsEnable(dma->reg) && !dma->nextCount) { + dma->nextCount = dma->count; + dma->when = mTimingCurrentTime(&gx->p->ds9.timing); + DSDMAUpdate(&gx->p->ds9); + } +} + static void _fifoRun(struct mTiming* timing, void* context, uint32_t cyclesLate) { struct DSGX* gx = context; uint32_t cycles;

@@ -1216,6 +1232,7 @@ if (CircleBufferSize(&gx->fifo) < (DS_GX_FIFO_SIZE * sizeof(struct DSGXEntry))) {

_flushOutstanding(gx); } DSGXUpdateGXSTAT(gx); + _updateDMA(gx); } void DSGXInit(struct DSGX* gx) {

@@ -1314,18 +1331,7 @@

value = DSRegGXSTATSetBusy(value, mTimingIsScheduled(&gx->p->ds9.timing, &gx->fifoEvent) || gx->swapBuffers); gx->p->memory.io9[DS9_REG_GXSTAT_HI >> 1] = value >> 16; - - struct GBADMA* dma = NULL; - if (gx->dmaSource >= 0) { - dma = &gx->p->ds9.memory.dma[gx->dmaSource]; - if (GBADMARegisterGetTiming9(dma->reg) != DS_DMA_TIMING_GEOM_FIFO) { - gx->dmaSource = -1; - } else if (GBADMARegisterIsEnable(dma->reg) && entries < (DS_GX_FIFO_SIZE / 2) && !dma->nextCount) { - dma->nextCount = dma->count; - dma->when = mTimingCurrentTime(&gx->p->ds9.timing); - DSDMAUpdate(&gx->p->ds9); - } - } + _updateDMA(gx); } static void DSGXUnpackCommand(struct DSGX* gx, uint32_t command) {

@@ -1546,6 +1552,7 @@

void DSGXScheduleDMA(struct DSCommon* dscore, int number, struct GBADMA* info) { UNUSED(info); dscore->p->gx.dmaSource = number; + _updateDMA(&dscore->p->gx); } static void DSGXDummyRendererInit(struct DSGXRenderer* renderer) {