127 lines
4.1 KiB
Zig
127 lines
4.1 KiB
Zig
const std = @import("std");
|
|
|
|
const Arm7tdmi = @import("cpu.zig").Arm7tdmi;
|
|
const Clock = @import("bus/gpio.zig").Clock;
|
|
|
|
const Order = std.math.Order;
|
|
const PriorityQueue = std.PriorityQueue;
|
|
const Allocator = std.mem.Allocator;
|
|
const log = std.log.scoped(.Scheduler);
|
|
|
|
pub const Scheduler = struct {
|
|
const Self = @This();
|
|
|
|
tick: u64,
|
|
queue: PriorityQueue(Event, void, lessThan),
|
|
|
|
pub fn init(allocator: Allocator) Self {
|
|
var sched = Self{ .tick = 0, .queue = PriorityQueue(Event, void, lessThan).init(allocator, {}) };
|
|
sched.queue.add(.{ .kind = .HeatDeath, .tick = std.math.maxInt(u64) }) catch unreachable;
|
|
|
|
return sched;
|
|
}
|
|
|
|
pub fn deinit(self: *Self) void {
|
|
self.queue.deinit();
|
|
self.* = undefined;
|
|
}
|
|
|
|
pub inline fn now(self: *const Self) u64 {
|
|
return self.tick;
|
|
}
|
|
|
|
pub fn handleEvent(self: *Self, cpu: *Arm7tdmi) void {
|
|
if (self.queue.removeOrNull()) |event| {
|
|
const late = self.tick - event.tick;
|
|
|
|
switch (event.kind) {
|
|
.HeatDeath => {
|
|
log.err("u64 overflow. This *actually* should never happen.", .{});
|
|
unreachable;
|
|
},
|
|
.Draw => {
|
|
// The end of a VDraw
|
|
cpu.bus.ppu.drawScanline();
|
|
cpu.bus.ppu.onHdrawEnd(cpu, late);
|
|
},
|
|
.TimerOverflow => |id| {
|
|
switch (id) {
|
|
inline 0...3 => |idx| cpu.bus.tim[idx].onTimerExpire(cpu, late),
|
|
}
|
|
},
|
|
.ApuChannel => |id| {
|
|
switch (id) {
|
|
0 => cpu.bus.apu.ch1.onToneSweepEvent(late),
|
|
1 => cpu.bus.apu.ch2.onToneEvent(late),
|
|
2 => cpu.bus.apu.ch3.onWaveEvent(late),
|
|
3 => cpu.bus.apu.ch4.onNoiseEvent(late),
|
|
}
|
|
},
|
|
.RealTimeClock => {
|
|
const device = &cpu.bus.pak.gpio.device;
|
|
if (device.kind != .Rtc or device.ptr == null) return;
|
|
|
|
const clock = @ptrCast(*Clock, @alignCast(@alignOf(*Clock), device.ptr.?));
|
|
clock.onClockUpdate(late);
|
|
},
|
|
.FrameSequencer => cpu.bus.apu.onSequencerTick(late),
|
|
.SampleAudio => cpu.bus.apu.sampleAudio(late),
|
|
.HBlank => cpu.bus.ppu.onHblankEnd(cpu, late), // The end of a HBlank
|
|
.VBlank => cpu.bus.ppu.onHdrawEnd(cpu, late), // The end of a VBlank
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Removes the **first** scheduled event of type `needle`
|
|
pub fn removeScheduledEvent(self: *Self, needle: EventKind) void {
|
|
var it = self.queue.iterator();
|
|
|
|
var i: usize = 0;
|
|
while (it.next()) |event| : (i += 1) {
|
|
if (std.meta.eql(event.kind, needle)) {
|
|
|
|
// This invalidates the iterator
|
|
_ = self.queue.removeIndex(i);
|
|
|
|
// Since removing something from the PQ invalidates the iterator,
|
|
// this implementation can safely only remove the first instance of
|
|
// a Scheduled Event. Exit Early
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn push(self: *Self, kind: EventKind, end: u64) void {
|
|
self.queue.add(.{ .kind = kind, .tick = self.now() + end }) catch unreachable;
|
|
}
|
|
|
|
pub inline fn nextTimestamp(self: *const Self) u64 {
|
|
@setRuntimeSafety(false);
|
|
|
|
// Typically you'd use PriorityQueue.peek here, but there's always at least a HeatDeath
|
|
// event in the PQ so we can just do this instead. Should be faster in ReleaseSafe
|
|
return self.queue.items[0].tick;
|
|
}
|
|
};
|
|
|
|
pub const Event = struct {
|
|
kind: EventKind,
|
|
tick: u64,
|
|
};
|
|
|
|
fn lessThan(_: void, a: Event, b: Event) Order {
|
|
return std.math.order(a.tick, b.tick);
|
|
}
|
|
|
|
pub const EventKind = union(enum) {
|
|
HeatDeath,
|
|
HBlank,
|
|
VBlank,
|
|
Draw,
|
|
TimerOverflow: u2,
|
|
SampleAudio,
|
|
FrameSequencer,
|
|
ApuChannel: u2,
|
|
RealTimeClock,
|
|
};
|