Duckstation/src/core/timers.h

84 lines
1.9 KiB
C
Raw Normal View History

2019-09-20 13:40:19 +00:00
#pragma once
#include "common/bitfield.h"
#include "types.h"
#include <array>
class StateWrapper;
class System;
2019-09-20 13:40:19 +00:00
class InterruptController;
class Timers
{
public:
Timers();
~Timers();
bool Initialize(System* system, InterruptController* interrupt_controller);
2019-09-20 13:40:19 +00:00
void Reset();
bool DoState(StateWrapper& sw);
void SetGate(u32 timer, bool state);
void DrawDebugStateWindow();
2019-10-12 12:15:38 +00:00
2019-09-20 13:40:19 +00:00
// dot clock/hblank/sysclk div 8
bool IsUsingExternalClock(u32 timer) const { return m_states[timer].external_counting_enabled; }
2019-10-08 08:21:15 +00:00
void AddTicks(u32 timer, TickCount ticks);
void Execute(TickCount sysclk_ticks);
2019-09-20 13:40:19 +00:00
u32 ReadRegister(u32 offset);
void WriteRegister(u32 offset, u32 value);
private:
static constexpr u32 NUM_TIMERS = 3;
enum class SyncMode : u8
{
PauseOnGate = 0,
ResetOnGate = 1,
ResetAndRunOnGate = 2,
FreeRunOnGate = 3
};
union CounterMode
{
u32 bits;
BitField<u32, bool, 0, 1> sync_enable;
BitField<u32, SyncMode, 1, 2> sync_mode;
BitField<u32, bool, 3, 1> reset_at_target;
BitField<u32, bool, 4, 1> irq_at_target;
BitField<u32, bool, 5, 1> irq_on_overflow;
BitField<u32, bool, 6, 1> irq_repeat;
2019-10-08 08:21:15 +00:00
BitField<u32, bool, 7, 1> irq_pulse_n;
2019-09-20 13:40:19 +00:00
BitField<u32, u8, 8, 2> clock_source;
2019-10-08 08:21:15 +00:00
BitField<u32, bool, 10, 1> interrupt_request_n;
2019-09-20 13:40:19 +00:00
BitField<u32, bool, 11, 1> reached_target;
BitField<u32, bool, 12, 1> reached_overflow;
};
struct CounterState
{
CounterMode mode;
u32 counter;
u32 target;
bool gate;
bool use_external_clock;
bool external_counting_enabled;
bool counting_enabled;
2019-10-08 08:21:15 +00:00
bool irq_done;
2019-09-20 13:40:19 +00:00
};
void UpdateCountingEnabled(CounterState& cs);
2019-10-08 08:21:15 +00:00
void UpdateIRQ(u32 index);
2019-09-20 13:40:19 +00:00
void UpdateDowncount();
System* m_system = nullptr;
2019-09-20 13:40:19 +00:00
InterruptController* m_interrupt_controller = nullptr;
std::array<CounterState, NUM_TIMERS> m_states{};
2019-10-08 08:21:15 +00:00
u32 m_sysclk_div_8_carry = 0; // partial ticks for timer 3 with sysclk/8
2019-09-20 13:40:19 +00:00
};