2022-02-28 15:55:50 +00:00
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
const DmaControl = @import("io.zig").DmaControl;
|
|
|
|
const Bus = @import("../Bus.zig");
|
2022-05-06 01:04:59 +00:00
|
|
|
const Arm7tdmi = @import("../cpu.zig").Arm7tdmi;
|
2022-02-28 15:55:50 +00:00
|
|
|
|
2022-06-15 04:08:43 +00:00
|
|
|
const readUndefined = @import("../util.zig").readUndefined;
|
|
|
|
const writeUndefined = @import("../util.zig").writeUndefined;
|
2022-05-05 22:53:12 +00:00
|
|
|
pub const DmaTuple = std.meta.Tuple(&[_]type{ DmaController(0), DmaController(1), DmaController(2), DmaController(3) });
|
2022-02-28 15:55:50 +00:00
|
|
|
const log = std.log.scoped(.DmaTransfer);
|
|
|
|
|
2022-05-05 22:53:12 +00:00
|
|
|
pub fn create() DmaTuple {
|
|
|
|
return .{ DmaController(0).init(), DmaController(1).init(), DmaController(2).init(), DmaController(3).init() };
|
|
|
|
}
|
2022-03-15 11:25:26 +00:00
|
|
|
|
2022-06-15 01:34:33 +00:00
|
|
|
pub fn read(comptime T: type, dma: *const DmaTuple, addr: u32) T {
|
|
|
|
const byte = @truncate(u8, addr);
|
|
|
|
|
|
|
|
return switch (T) {
|
|
|
|
u32 => switch (byte) {
|
|
|
|
0xB8 => @as(T, dma.*[0].cnt.raw) << 16,
|
|
|
|
0xC4 => @as(T, dma.*[1].cnt.raw) << 16,
|
2022-06-16 03:03:51 +00:00
|
|
|
0xD0 => @as(T, dma.*[2].cnt.raw) << 16,
|
2022-06-15 01:34:33 +00:00
|
|
|
0xDC => @as(T, dma.*[3].cnt.raw) << 16,
|
2022-06-15 04:08:43 +00:00
|
|
|
else => readUndefined(log, "Tried to perform a {} read to 0x{X:0>8}", .{ T, addr }),
|
2022-06-15 01:34:33 +00:00
|
|
|
},
|
|
|
|
u16 => switch (byte) {
|
|
|
|
0xBA => dma.*[0].cnt.raw,
|
|
|
|
0xC6 => dma.*[1].cnt.raw,
|
|
|
|
0xD2 => dma.*[2].cnt.raw,
|
|
|
|
0xDE => dma.*[3].cnt.raw,
|
2022-06-15 04:08:43 +00:00
|
|
|
else => readUndefined(log, "Tried to perform a {} read to 0x{X:0>8}", .{ T, addr }),
|
2022-06-15 01:34:33 +00:00
|
|
|
},
|
2022-06-15 04:08:43 +00:00
|
|
|
u8 => readUndefined(log, "Tried to perform a {} read to 0x{X:0>8}", .{ T, addr }),
|
2022-06-15 01:34:33 +00:00
|
|
|
else => @compileError("DMA: Unsupported read width"),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn write(comptime T: type, dma: *DmaTuple, addr: u32, value: T) void {
|
|
|
|
const byte = @truncate(u8, addr);
|
|
|
|
|
|
|
|
switch (T) {
|
|
|
|
u32 => switch (byte) {
|
|
|
|
0xB0 => dma.*[0].setSad(value),
|
|
|
|
0xB4 => dma.*[0].setDad(value),
|
|
|
|
0xB8 => dma.*[0].setCnt(value),
|
|
|
|
0xBC => dma.*[1].setSad(value),
|
|
|
|
0xC0 => dma.*[1].setDad(value),
|
|
|
|
0xC4 => dma.*[1].setCnt(value),
|
|
|
|
0xC8 => dma.*[2].setSad(value),
|
|
|
|
0xCC => dma.*[2].setDad(value),
|
|
|
|
0xD0 => dma.*[2].setCnt(value),
|
|
|
|
0xD4 => dma.*[3].setSad(value),
|
|
|
|
0xD8 => dma.*[3].setDad(value),
|
|
|
|
0xDC => dma.*[3].setCnt(value),
|
2022-06-15 04:08:43 +00:00
|
|
|
else => writeUndefined(log, "Tried to write 0x{X:0>8}{} to 0x{X:0>8}", .{ value, T, addr }),
|
2022-06-15 01:34:33 +00:00
|
|
|
},
|
|
|
|
u16 => switch (byte) {
|
|
|
|
0xB0 => dma.*[0].setSad(setU32L(dma.*[0].sad, value)),
|
|
|
|
0xB2 => dma.*[0].setSad(setU32H(dma.*[0].sad, value)),
|
|
|
|
0xB4 => dma.*[0].setDad(setU32L(dma.*[0].dad, value)),
|
|
|
|
0xB6 => dma.*[0].setDad(setU32H(dma.*[0].dad, value)),
|
|
|
|
0xB8 => dma.*[0].setCntL(value),
|
|
|
|
0xBA => dma.*[0].setCntH(value),
|
|
|
|
|
|
|
|
0xBC => dma.*[1].setSad(setU32L(dma.*[1].sad, value)),
|
|
|
|
0xBE => dma.*[1].setSad(setU32H(dma.*[1].sad, value)),
|
|
|
|
0xC0 => dma.*[1].setDad(setU32L(dma.*[1].dad, value)),
|
|
|
|
0xC2 => dma.*[1].setDad(setU32H(dma.*[1].dad, value)),
|
|
|
|
0xC4 => dma.*[1].setCntL(value),
|
|
|
|
0xC6 => dma.*[1].setCntH(value),
|
|
|
|
|
|
|
|
0xC8 => dma.*[2].setSad(setU32L(dma.*[2].sad, value)),
|
|
|
|
0xCA => dma.*[2].setSad(setU32H(dma.*[2].sad, value)),
|
|
|
|
0xCC => dma.*[2].setDad(setU32L(dma.*[2].dad, value)),
|
|
|
|
0xCE => dma.*[2].setDad(setU32H(dma.*[2].dad, value)),
|
|
|
|
0xD0 => dma.*[2].setCntL(value),
|
|
|
|
0xD2 => dma.*[2].setCntH(value),
|
|
|
|
|
|
|
|
0xD4 => dma.*[3].setSad(setU32L(dma.*[3].sad, value)),
|
|
|
|
0xD6 => dma.*[3].setSad(setU32H(dma.*[3].sad, value)),
|
|
|
|
0xD8 => dma.*[3].setDad(setU32L(dma.*[3].dad, value)),
|
|
|
|
0xDA => dma.*[3].setDad(setU32H(dma.*[3].dad, value)),
|
|
|
|
0xDC => dma.*[3].setCntL(value),
|
|
|
|
0xDE => dma.*[3].setCntH(value),
|
2022-06-15 04:08:43 +00:00
|
|
|
else => writeUndefined(log, "Tried to write 0x{X:0>4}{} to 0x{X:0>8}", .{ value, T, addr }),
|
2022-06-15 01:34:33 +00:00
|
|
|
},
|
2022-06-15 04:08:43 +00:00
|
|
|
u8 => writeUndefined(log, "Tried to write 0x{X:0>2}{} to 0x{X:0>8}", .{ value, T, addr }),
|
2022-06-15 01:34:33 +00:00
|
|
|
else => @compileError("DMA: Unsupported write width"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-28 15:55:50 +00:00
|
|
|
/// Function that creates a DMAController. Determines unique DMA Controller behaiour at compile-time
|
2022-03-15 11:25:26 +00:00
|
|
|
fn DmaController(comptime id: u2) type {
|
2022-02-28 15:55:50 +00:00
|
|
|
return struct {
|
|
|
|
const Self = @This();
|
|
|
|
|
|
|
|
const sad_mask: u32 = if (id == 0) 0x07FF_FFFF else 0x0FFF_FFFF;
|
|
|
|
const dad_mask: u32 = if (id != 3) 0x07FF_FFFF else 0x0FFF_FFFF;
|
|
|
|
|
|
|
|
/// Write-only. The first address in a DMA transfer. (DMASAD)
|
|
|
|
/// Note: use writeSrc instead of manipulating src_addr directly
|
|
|
|
sad: u32,
|
|
|
|
/// Write-only. The final address in a DMA transffer. (DMADAD)
|
|
|
|
/// Note: Use writeDst instead of manipulatig dst_addr directly
|
|
|
|
dad: u32,
|
|
|
|
/// Write-only. The Word Count for the DMA Transfer (DMACNT_L)
|
|
|
|
word_count: if (id == 3) u16 else u14,
|
|
|
|
/// Read / Write. DMACNT_H
|
|
|
|
/// Note: Use writeControl instead of manipulating cnt directly.
|
|
|
|
cnt: DmaControl,
|
|
|
|
|
2022-04-08 05:13:58 +00:00
|
|
|
/// Internal. Currrent Source Address
|
2022-02-28 15:55:50 +00:00
|
|
|
_sad: u32,
|
|
|
|
/// Internal. Current Destination Address
|
|
|
|
_dad: u32,
|
|
|
|
/// Internal. Word Count
|
|
|
|
_word_count: if (id == 3) u16 else u14,
|
|
|
|
|
2022-04-10 07:28:05 +00:00
|
|
|
// Internal. FIFO Word Count
|
|
|
|
_fifo_word_count: u8,
|
|
|
|
|
2022-03-03 05:28:49 +00:00
|
|
|
/// Some DMA Transfers are enabled during Hblank / VBlank and / or
|
|
|
|
/// have delays. Thefore bit 15 of DMACNT isn't actually something
|
|
|
|
/// we can use to control when we do or do not execute a step in a DMA Transfer
|
2022-06-18 22:15:34 +00:00
|
|
|
in_progress: bool,
|
2022-03-03 05:28:49 +00:00
|
|
|
|
2022-02-28 15:55:50 +00:00
|
|
|
pub fn init() Self {
|
|
|
|
return .{
|
|
|
|
.sad = 0,
|
|
|
|
.dad = 0,
|
|
|
|
.word_count = 0,
|
|
|
|
.cnt = .{ .raw = 0x000 },
|
|
|
|
|
|
|
|
// Internals
|
|
|
|
._sad = 0,
|
|
|
|
._dad = 0,
|
|
|
|
._word_count = 0,
|
2022-04-10 07:28:05 +00:00
|
|
|
._fifo_word_count = 4,
|
2022-06-18 22:15:34 +00:00
|
|
|
.in_progress = false,
|
2022-02-28 15:55:50 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-06-15 01:34:33 +00:00
|
|
|
pub fn setSad(self: *Self, addr: u32) void {
|
2022-02-28 15:55:50 +00:00
|
|
|
self.sad = addr & sad_mask;
|
|
|
|
}
|
|
|
|
|
2022-06-15 01:34:33 +00:00
|
|
|
pub fn setDad(self: *Self, addr: u32) void {
|
2022-02-28 15:55:50 +00:00
|
|
|
self.dad = addr & dad_mask;
|
|
|
|
}
|
|
|
|
|
2022-06-15 01:34:33 +00:00
|
|
|
pub fn setCntL(self: *Self, halfword: u16) void {
|
2022-02-28 15:55:50 +00:00
|
|
|
self.word_count = @truncate(@TypeOf(self.word_count), halfword);
|
|
|
|
}
|
|
|
|
|
2022-06-15 01:34:33 +00:00
|
|
|
pub fn setCntH(self: *Self, halfword: u16) void {
|
2022-02-28 15:55:50 +00:00
|
|
|
const new = DmaControl{ .raw = halfword };
|
|
|
|
|
|
|
|
if (!self.cnt.enabled.read() and new.enabled.read()) {
|
|
|
|
// Reload Internals on Rising Edge.
|
|
|
|
self._sad = self.sad;
|
|
|
|
self._dad = self.dad;
|
|
|
|
self._word_count = if (self.word_count == 0) std.math.maxInt(@TypeOf(self._word_count)) else self.word_count;
|
2022-03-03 05:28:49 +00:00
|
|
|
|
|
|
|
// Only a Start Timing of 00 has a DMA Transfer immediately begin
|
2022-06-18 22:15:34 +00:00
|
|
|
self.in_progress = new.start_timing.read() == 0b00;
|
2022-02-28 15:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.cnt.raw = halfword;
|
|
|
|
}
|
|
|
|
|
2022-06-15 01:34:33 +00:00
|
|
|
pub fn setCnt(self: *Self, word: u32) void {
|
2022-06-16 03:03:51 +00:00
|
|
|
self.setCntL(@truncate(u16, word));
|
2022-06-15 01:34:33 +00:00
|
|
|
self.setCntH(@truncate(u16, word >> 16));
|
2022-02-28 15:55:50 +00:00
|
|
|
}
|
|
|
|
|
2022-06-16 04:46:37 +00:00
|
|
|
pub fn step(self: *Self, cpu: *Arm7tdmi) void {
|
2022-06-18 22:15:34 +00:00
|
|
|
const is_fifo = (id == 1 or id == 2) and self.cnt.start_timing.read() == 0b11;
|
2022-05-06 01:36:11 +00:00
|
|
|
const sad_adj = Self.adjustment(self.cnt.sad_adj.read());
|
|
|
|
const dad_adj = if (is_fifo) .Fixed else Self.adjustment(self.cnt.dad_adj.read());
|
2022-04-10 07:28:05 +00:00
|
|
|
|
2022-05-06 01:36:11 +00:00
|
|
|
const transfer_type = is_fifo or self.cnt.transfer_type.read();
|
2022-04-10 07:28:05 +00:00
|
|
|
const offset: u32 = if (transfer_type) @sizeOf(u32) else @sizeOf(u16);
|
2022-02-28 15:55:50 +00:00
|
|
|
|
2022-06-29 07:31:02 +00:00
|
|
|
const mask = if (transfer_type) ~@as(u32, 3) else ~@as(u32, 1);
|
|
|
|
|
2022-04-10 07:28:05 +00:00
|
|
|
if (transfer_type) {
|
2022-06-29 07:31:02 +00:00
|
|
|
cpu.bus.write(u32, self._dad & mask, cpu.bus.read(u32, self._sad & mask));
|
2022-02-28 15:55:50 +00:00
|
|
|
} else {
|
2022-06-29 07:31:02 +00:00
|
|
|
cpu.bus.write(u16, self._dad & mask, cpu.bus.read(u16, self._sad & mask));
|
2022-02-28 15:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (sad_adj) {
|
2022-03-03 05:28:49 +00:00
|
|
|
.Increment => self._sad +%= offset,
|
|
|
|
.Decrement => self._sad -%= offset,
|
2022-05-06 01:36:11 +00:00
|
|
|
// TODO: Is just ignoring this ok?
|
|
|
|
.IncrementReload => log.err("{} is a prohibited adjustment on SAD", .{sad_adj}),
|
2022-02-28 15:55:50 +00:00
|
|
|
.Fixed => {},
|
|
|
|
}
|
|
|
|
|
2022-05-06 01:36:11 +00:00
|
|
|
switch (dad_adj) {
|
|
|
|
.Increment, .IncrementReload => self._dad +%= offset,
|
|
|
|
.Decrement => self._dad -%= offset,
|
|
|
|
.Fixed => {},
|
2022-02-28 15:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self._word_count -= 1;
|
|
|
|
|
|
|
|
if (self._word_count == 0) {
|
2022-06-19 00:13:12 +00:00
|
|
|
if (self.cnt.irq.read()) {
|
|
|
|
switch (id) {
|
|
|
|
0 => cpu.bus.io.irq.dma0.set(),
|
|
|
|
1 => cpu.bus.io.irq.dma1.set(),
|
|
|
|
2 => cpu.bus.io.irq.dma2.set(),
|
|
|
|
3 => cpu.bus.io.irq.dma3.set(),
|
2022-02-28 15:55:50 +00:00
|
|
|
}
|
2022-05-06 01:04:59 +00:00
|
|
|
|
2022-06-19 00:13:12 +00:00
|
|
|
cpu.handleInterrupt();
|
2022-02-28 15:55:50 +00:00
|
|
|
}
|
|
|
|
|
2022-06-19 00:13:12 +00:00
|
|
|
// If we're not repeating, Fire the IRQs and disable the DMA
|
|
|
|
if (!self.cnt.repeat.read()) self.cnt.enabled.unset();
|
|
|
|
|
2022-03-03 05:28:49 +00:00
|
|
|
// We want to disable our internal enabled flag regardless of repeat
|
|
|
|
// because we only want to step A DMA that repeats during it's specific
|
|
|
|
// timing window
|
2022-06-18 22:15:34 +00:00
|
|
|
self.in_progress = false;
|
2022-03-03 05:28:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pollBlankingDma(self: *Self, comptime kind: DmaKind) void {
|
2022-06-19 00:13:12 +00:00
|
|
|
if (self.in_progress) return; // If there's an ongoing DMA Transfer, exit early
|
2022-03-03 05:28:49 +00:00
|
|
|
|
2022-06-19 00:13:12 +00:00
|
|
|
// No ongoing DMA Transfer, We want to check if we should repeat an existing one
|
|
|
|
// Determined by the repeat bit and whether the DMA is in the right start_timing
|
2022-03-03 05:28:49 +00:00
|
|
|
switch (kind) {
|
2022-06-18 22:15:34 +00:00
|
|
|
.VBlank => self.in_progress = self.cnt.enabled.read() and self.cnt.start_timing.read() == 0b01,
|
2022-06-19 00:13:12 +00:00
|
|
|
.HBlank => self.in_progress = self.cnt.enabled.read() and self.cnt.start_timing.read() == 0b10,
|
2022-03-03 05:28:49 +00:00
|
|
|
.Immediate, .Special => {},
|
|
|
|
}
|
|
|
|
|
2022-06-19 00:13:12 +00:00
|
|
|
// If we determined that the repeat bit is set (and now the Hblank / Vblank DMA is now in progress)
|
|
|
|
// Reload internal word count latch
|
|
|
|
// Reload internal DAD latch if we are in IncrementRelaod
|
|
|
|
if (self.in_progress) {
|
2022-03-03 05:28:49 +00:00
|
|
|
self._word_count = if (self.word_count == 0) std.math.maxInt(@TypeOf(self._word_count)) else self.word_count;
|
2022-05-06 01:36:11 +00:00
|
|
|
if (Self.adjustment(self.cnt.dad_adj.read()) == .IncrementReload) self._dad = self.dad;
|
2022-02-28 15:55:50 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-10 07:28:05 +00:00
|
|
|
|
2022-06-19 00:36:40 +00:00
|
|
|
pub fn requestSoundDma(self: *Self, _: u32) void {
|
2022-04-10 07:28:05 +00:00
|
|
|
comptime std.debug.assert(id == 1 or id == 2);
|
2022-06-19 00:36:40 +00:00
|
|
|
if (self.in_progress) return; // APU must wait their turn
|
2022-04-10 07:28:05 +00:00
|
|
|
|
2022-06-19 00:36:40 +00:00
|
|
|
// DMA May not be configured for handling DMAs
|
|
|
|
if (self.cnt.start_timing.read() != 0b11) return;
|
2022-06-19 00:13:12 +00:00
|
|
|
|
|
|
|
// We Assume the Repeat Bit is Set
|
|
|
|
// We Assume that DAD is set to 0x0400_00A0 or 0x0400_00A4 (fifo_addr)
|
|
|
|
// We Assume DMACNT_L is set to 4
|
|
|
|
|
2022-06-19 00:36:40 +00:00
|
|
|
// FIXME: Safe to just assume whatever DAD is set to is the FIFO Address?
|
|
|
|
// self._dad = fifo_addr;
|
2022-06-19 00:13:12 +00:00
|
|
|
self.cnt.repeat.set();
|
|
|
|
self._word_count = 4;
|
|
|
|
self.in_progress = true;
|
2022-04-10 07:28:05 +00:00
|
|
|
}
|
2022-05-06 01:36:11 +00:00
|
|
|
|
|
|
|
fn adjustment(idx: u2) Adjustment {
|
|
|
|
return std.meta.intToEnum(Adjustment, idx) catch unreachable;
|
|
|
|
}
|
2022-02-28 15:55:50 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-03-03 05:28:49 +00:00
|
|
|
pub fn pollBlankingDma(bus: *Bus, comptime kind: DmaKind) void {
|
2022-05-05 22:53:12 +00:00
|
|
|
bus.dma[0].pollBlankingDma(kind);
|
|
|
|
bus.dma[1].pollBlankingDma(kind);
|
|
|
|
bus.dma[2].pollBlankingDma(kind);
|
|
|
|
bus.dma[3].pollBlankingDma(kind);
|
2022-03-03 05:28:49 +00:00
|
|
|
}
|
|
|
|
|
2022-02-28 15:55:50 +00:00
|
|
|
const Adjustment = enum(u2) {
|
|
|
|
Increment = 0,
|
|
|
|
Decrement = 1,
|
|
|
|
Fixed = 2,
|
|
|
|
IncrementReload = 3,
|
|
|
|
};
|
2022-03-03 05:28:49 +00:00
|
|
|
|
|
|
|
const DmaKind = enum(u2) {
|
|
|
|
Immediate = 0,
|
|
|
|
HBlank,
|
|
|
|
VBlank,
|
|
|
|
Special,
|
|
|
|
};
|
2022-06-15 01:34:33 +00:00
|
|
|
|
|
|
|
fn setU32L(left: u32, right: u16) u32 {
|
|
|
|
return (left & 0xFFFF_0000) | right;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setU32H(left: u32, right: u16) u32 {
|
|
|
|
return (left & 0x0000_FFFF) | (@as(u32, right) << 16);
|
|
|
|
}
|