mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-16 19:05:39 +00:00
SIO: Convert to namespace
This commit is contained in:
parent
0683b9fa0e
commit
835834f8f4
|
@ -1125,13 +1125,13 @@ ALWAYS_INLINE static TickCount DoSIOAccess(u32 offset, u32& value)
|
||||||
{
|
{
|
||||||
if constexpr (type == MemoryAccessType::Read)
|
if constexpr (type == MemoryAccessType::Read)
|
||||||
{
|
{
|
||||||
value = g_sio.ReadRegister(FIXUP_HALFWORD_OFFSET(size, offset));
|
value = SIO::ReadRegister(FIXUP_HALFWORD_OFFSET(size, offset));
|
||||||
value = FIXUP_HALFWORD_READ_VALUE(size, offset, value);
|
value = FIXUP_HALFWORD_READ_VALUE(size, offset, value);
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
g_sio.WriteRegister(FIXUP_HALFWORD_OFFSET(size, offset), FIXUP_HALFWORD_WRITE_VALUE(size, offset, value));
|
SIO::WriteRegister(FIXUP_HALFWORD_OFFSET(size, offset), FIXUP_HALFWORD_WRITE_VALUE(size, offset, value));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
100
src/core/sio.cpp
100
src/core/sio.cpp
|
@ -2,18 +2,72 @@
|
||||||
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
||||||
|
|
||||||
#include "sio.h"
|
#include "sio.h"
|
||||||
|
#include "common/bitfield.h"
|
||||||
|
#include "common/fifo_queue.h"
|
||||||
#include "common/log.h"
|
#include "common/log.h"
|
||||||
#include "controller.h"
|
#include "controller.h"
|
||||||
#include "interrupt_controller.h"
|
#include "interrupt_controller.h"
|
||||||
#include "memory_card.h"
|
#include "memory_card.h"
|
||||||
#include "util/state_wrapper.h"
|
#include "util/state_wrapper.h"
|
||||||
|
#include <array>
|
||||||
|
#include <memory>
|
||||||
Log_SetChannel(SIO);
|
Log_SetChannel(SIO);
|
||||||
|
|
||||||
SIO g_sio;
|
namespace SIO {
|
||||||
|
|
||||||
SIO::SIO() = default;
|
union SIO_CTRL
|
||||||
|
{
|
||||||
|
u16 bits;
|
||||||
|
|
||||||
SIO::~SIO() = default;
|
BitField<u16, bool, 0, 1> TXEN;
|
||||||
|
BitField<u16, bool, 1, 1> DTROUTPUT;
|
||||||
|
BitField<u16, bool, 2, 1> RXEN;
|
||||||
|
BitField<u16, bool, 3, 1> TXOUTPUT;
|
||||||
|
BitField<u16, bool, 4, 1> ACK;
|
||||||
|
BitField<u16, bool, 5, 1> RTSOUTPUT;
|
||||||
|
BitField<u16, bool, 6, 1> RESET;
|
||||||
|
BitField<u16, u8, 8, 2> RXIMODE;
|
||||||
|
BitField<u16, bool, 10, 1> TXINTEN;
|
||||||
|
BitField<u16, bool, 11, 1> RXINTEN;
|
||||||
|
BitField<u16, bool, 12, 1> ACKINTEN;
|
||||||
|
};
|
||||||
|
|
||||||
|
union SIO_STAT
|
||||||
|
{
|
||||||
|
u32 bits;
|
||||||
|
|
||||||
|
BitField<u32, bool, 0, 1> TXRDY;
|
||||||
|
BitField<u32, bool, 1, 1> RXFIFONEMPTY;
|
||||||
|
BitField<u32, bool, 2, 1> TXDONE;
|
||||||
|
BitField<u32, bool, 3, 1> RXPARITY;
|
||||||
|
BitField<u32, bool, 4, 1> RXFIFOOVERRUN;
|
||||||
|
BitField<u32, bool, 5, 1> RXBADSTOPBIT;
|
||||||
|
BitField<u32, bool, 6, 1> RXINPUTLEVEL;
|
||||||
|
BitField<u32, bool, 7, 1> DSRINPUTLEVEL;
|
||||||
|
BitField<u32, bool, 8, 1> CTSINPUTLEVEL;
|
||||||
|
BitField<u32, bool, 9, 1> INTR;
|
||||||
|
BitField<u32, u32, 11, 15> TMR;
|
||||||
|
};
|
||||||
|
|
||||||
|
union SIO_MODE
|
||||||
|
{
|
||||||
|
u16 bits;
|
||||||
|
|
||||||
|
BitField<u16, u8, 0, 2> reload_factor;
|
||||||
|
BitField<u16, u8, 2, 2> character_length;
|
||||||
|
BitField<u16, bool, 4, 1> parity_enable;
|
||||||
|
BitField<u16, u8, 5, 1> parity_type;
|
||||||
|
BitField<u16, u8, 6, 2> stop_bit_length;
|
||||||
|
};
|
||||||
|
|
||||||
|
static void SoftReset();
|
||||||
|
|
||||||
|
static SIO_CTRL s_SIO_CTRL = {};
|
||||||
|
static SIO_STAT s_SIO_STAT = {};
|
||||||
|
static SIO_MODE s_SIO_MODE = {};
|
||||||
|
static u16 s_SIO_BAUD = 0;
|
||||||
|
|
||||||
|
} // namespace SIO
|
||||||
|
|
||||||
void SIO::Initialize()
|
void SIO::Initialize()
|
||||||
{
|
{
|
||||||
|
@ -29,10 +83,10 @@ void SIO::Reset()
|
||||||
|
|
||||||
bool SIO::DoState(StateWrapper& sw)
|
bool SIO::DoState(StateWrapper& sw)
|
||||||
{
|
{
|
||||||
sw.Do(&m_SIO_CTRL.bits);
|
sw.Do(&s_SIO_CTRL.bits);
|
||||||
sw.Do(&m_SIO_STAT.bits);
|
sw.Do(&s_SIO_STAT.bits);
|
||||||
sw.Do(&m_SIO_MODE.bits);
|
sw.Do(&s_SIO_MODE.bits);
|
||||||
sw.Do(&m_SIO_BAUD);
|
sw.Do(&s_SIO_BAUD);
|
||||||
|
|
||||||
return !sw.HasError();
|
return !sw.HasError();
|
||||||
}
|
}
|
||||||
|
@ -52,18 +106,18 @@ u32 SIO::ReadRegister(u32 offset)
|
||||||
|
|
||||||
case 0x04: // SIO_STAT
|
case 0x04: // SIO_STAT
|
||||||
{
|
{
|
||||||
const u32 bits = m_SIO_STAT.bits;
|
const u32 bits = s_SIO_STAT.bits;
|
||||||
return bits;
|
return bits;
|
||||||
}
|
}
|
||||||
|
|
||||||
case 0x08: // SIO_MODE
|
case 0x08: // SIO_MODE
|
||||||
return ZeroExtend32(m_SIO_MODE.bits);
|
return ZeroExtend32(s_SIO_MODE.bits);
|
||||||
|
|
||||||
case 0x0A: // SIO_CTRL
|
case 0x0A: // SIO_CTRL
|
||||||
return ZeroExtend32(m_SIO_CTRL.bits);
|
return ZeroExtend32(s_SIO_CTRL.bits);
|
||||||
|
|
||||||
case 0x0E: // SIO_BAUD
|
case 0x0E: // SIO_BAUD
|
||||||
return ZeroExtend32(m_SIO_BAUD);
|
return ZeroExtend32(s_SIO_BAUD);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
Log_ErrorPrintf("Unknown register read: 0x%X", offset);
|
Log_ErrorPrintf("Unknown register read: 0x%X", offset);
|
||||||
|
@ -85,8 +139,8 @@ void SIO::WriteRegister(u32 offset, u32 value)
|
||||||
{
|
{
|
||||||
Log_DebugPrintf("SIO_CTRL <- 0x%04X", value);
|
Log_DebugPrintf("SIO_CTRL <- 0x%04X", value);
|
||||||
|
|
||||||
m_SIO_CTRL.bits = Truncate16(value);
|
s_SIO_CTRL.bits = Truncate16(value);
|
||||||
if (m_SIO_CTRL.RESET)
|
if (s_SIO_CTRL.RESET)
|
||||||
SoftReset();
|
SoftReset();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -95,14 +149,14 @@ void SIO::WriteRegister(u32 offset, u32 value)
|
||||||
case 0x08: // SIO_MODE
|
case 0x08: // SIO_MODE
|
||||||
{
|
{
|
||||||
Log_DebugPrintf("SIO_MODE <- 0x%08X", value);
|
Log_DebugPrintf("SIO_MODE <- 0x%08X", value);
|
||||||
m_SIO_MODE.bits = Truncate16(value);
|
s_SIO_MODE.bits = Truncate16(value);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
case 0x0E:
|
case 0x0E:
|
||||||
{
|
{
|
||||||
Log_DebugPrintf("SIO_BAUD <- 0x%08X", value);
|
Log_DebugPrintf("SIO_BAUD <- 0x%08X", value);
|
||||||
m_SIO_BAUD = Truncate16(value);
|
s_SIO_BAUD = Truncate16(value);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,12 +168,12 @@ void SIO::WriteRegister(u32 offset, u32 value)
|
||||||
|
|
||||||
void SIO::SoftReset()
|
void SIO::SoftReset()
|
||||||
{
|
{
|
||||||
m_SIO_CTRL.bits = 0;
|
s_SIO_CTRL.bits = 0;
|
||||||
m_SIO_STAT.bits = 0;
|
s_SIO_STAT.bits = 0;
|
||||||
m_SIO_STAT.DSRINPUTLEVEL = true;
|
s_SIO_STAT.DSRINPUTLEVEL = true;
|
||||||
m_SIO_STAT.CTSINPUTLEVEL = true;
|
s_SIO_STAT.CTSINPUTLEVEL = true;
|
||||||
m_SIO_STAT.TXDONE = true;
|
s_SIO_STAT.TXDONE = true;
|
||||||
m_SIO_STAT.TXRDY = true;
|
s_SIO_STAT.TXRDY = true;
|
||||||
m_SIO_MODE.bits = 0;
|
s_SIO_MODE.bits = 0;
|
||||||
m_SIO_BAUD = 0xDC;
|
s_SIO_BAUD = 0xDC;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,83 +2,18 @@
|
||||||
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "common/bitfield.h"
|
|
||||||
#include "common/fifo_queue.h"
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include <array>
|
|
||||||
#include <memory>
|
|
||||||
|
|
||||||
class StateWrapper;
|
class StateWrapper;
|
||||||
|
|
||||||
class Controller;
|
namespace SIO {
|
||||||
class MemoryCard;
|
|
||||||
|
|
||||||
class SIO
|
void Initialize();
|
||||||
{
|
void Shutdown();
|
||||||
public:
|
void Reset();
|
||||||
SIO();
|
bool DoState(StateWrapper& sw);
|
||||||
~SIO();
|
|
||||||
|
|
||||||
void Initialize();
|
u32 ReadRegister(u32 offset);
|
||||||
void Shutdown();
|
void WriteRegister(u32 offset, u32 value);
|
||||||
void Reset();
|
|
||||||
bool DoState(StateWrapper& sw);
|
|
||||||
|
|
||||||
u32 ReadRegister(u32 offset);
|
} // namespace SIO
|
||||||
void WriteRegister(u32 offset, u32 value);
|
|
||||||
|
|
||||||
private:
|
|
||||||
union SIO_CTRL
|
|
||||||
{
|
|
||||||
u16 bits;
|
|
||||||
|
|
||||||
BitField<u16, bool, 0, 1> TXEN;
|
|
||||||
BitField<u16, bool, 1, 1> DTROUTPUT;
|
|
||||||
BitField<u16, bool, 2, 1> RXEN;
|
|
||||||
BitField<u16, bool, 3, 1> TXOUTPUT;
|
|
||||||
BitField<u16, bool, 4, 1> ACK;
|
|
||||||
BitField<u16, bool, 5, 1> RTSOUTPUT;
|
|
||||||
BitField<u16, bool, 6, 1> RESET;
|
|
||||||
BitField<u16, u8, 8, 2> RXIMODE;
|
|
||||||
BitField<u16, bool, 10, 1> TXINTEN;
|
|
||||||
BitField<u16, bool, 11, 1> RXINTEN;
|
|
||||||
BitField<u16, bool, 12, 1> ACKINTEN;
|
|
||||||
};
|
|
||||||
|
|
||||||
union SIO_STAT
|
|
||||||
{
|
|
||||||
u32 bits;
|
|
||||||
|
|
||||||
BitField<u32, bool, 0, 1> TXRDY;
|
|
||||||
BitField<u32, bool, 1, 1> RXFIFONEMPTY;
|
|
||||||
BitField<u32, bool, 2, 1> TXDONE;
|
|
||||||
BitField<u32, bool, 3, 1> RXPARITY;
|
|
||||||
BitField<u32, bool, 4, 1> RXFIFOOVERRUN;
|
|
||||||
BitField<u32, bool, 5, 1> RXBADSTOPBIT;
|
|
||||||
BitField<u32, bool, 6, 1> RXINPUTLEVEL;
|
|
||||||
BitField<u32, bool, 7, 1> DSRINPUTLEVEL;
|
|
||||||
BitField<u32, bool, 8, 1> CTSINPUTLEVEL;
|
|
||||||
BitField<u32, bool, 9, 1> INTR;
|
|
||||||
BitField<u32, u32, 11, 15> TMR;
|
|
||||||
};
|
|
||||||
|
|
||||||
union SIO_MODE
|
|
||||||
{
|
|
||||||
u16 bits;
|
|
||||||
|
|
||||||
BitField<u16, u8, 0, 2> reload_factor;
|
|
||||||
BitField<u16, u8, 2, 2> character_length;
|
|
||||||
BitField<u16, bool, 4, 1> parity_enable;
|
|
||||||
BitField<u16, u8, 5, 1> parity_type;
|
|
||||||
BitField<u16, u8, 6, 2> stop_bit_length;
|
|
||||||
};
|
|
||||||
|
|
||||||
void SoftReset();
|
|
||||||
|
|
||||||
SIO_CTRL m_SIO_CTRL = {};
|
|
||||||
SIO_STAT m_SIO_STAT = {};
|
|
||||||
SIO_MODE m_SIO_MODE = {};
|
|
||||||
u16 m_SIO_BAUD = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
extern SIO g_sio;
|
|
||||||
|
|
|
@ -1394,7 +1394,7 @@ bool System::Initialize(bool force_software_renderer)
|
||||||
Timers::Initialize();
|
Timers::Initialize();
|
||||||
SPU::Initialize();
|
SPU::Initialize();
|
||||||
MDEC::Initialize();
|
MDEC::Initialize();
|
||||||
g_sio.Initialize();
|
SIO::Initialize();
|
||||||
|
|
||||||
static constexpr float WARNING_DURATION = 15.0f;
|
static constexpr float WARNING_DURATION = 15.0f;
|
||||||
|
|
||||||
|
@ -1450,7 +1450,7 @@ void System::DestroySystem()
|
||||||
|
|
||||||
g_texture_replacements.Shutdown();
|
g_texture_replacements.Shutdown();
|
||||||
|
|
||||||
g_sio.Shutdown();
|
SIO::Shutdown();
|
||||||
MDEC::Shutdown();
|
MDEC::Shutdown();
|
||||||
SPU::Shutdown();
|
SPU::Shutdown();
|
||||||
Timers::Shutdown();
|
Timers::Shutdown();
|
||||||
|
@ -1667,7 +1667,7 @@ bool System::DoState(StateWrapper& sw, GPUTexture** host_texture, bool update_di
|
||||||
if (!sw.DoMarker("MDEC") || !MDEC::DoState(sw))
|
if (!sw.DoMarker("MDEC") || !MDEC::DoState(sw))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (!sw.DoMarker("SIO") || !g_sio.DoState(sw))
|
if (!sw.DoMarker("SIO") || !SIO::DoState(sw))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (!sw.DoMarker("Events") || !TimingEvents::DoState(sw))
|
if (!sw.DoMarker("Events") || !TimingEvents::DoState(sw))
|
||||||
|
@ -1747,7 +1747,7 @@ void System::InternalReset()
|
||||||
Timers::Reset();
|
Timers::Reset();
|
||||||
SPU::Reset();
|
SPU::Reset();
|
||||||
MDEC::Reset();
|
MDEC::Reset();
|
||||||
g_sio.Reset();
|
SIO::Reset();
|
||||||
s_frame_number = 1;
|
s_frame_number = 1;
|
||||||
s_internal_frame_number = 0;
|
s_internal_frame_number = 0;
|
||||||
TimingEvents::Reset();
|
TimingEvents::Reset();
|
||||||
|
|
Loading…
Reference in a new issue