2014-10-13 05:40:26 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-05-06 07:06:12 +00:00
|
|
|
#include <cstring>
|
2014-10-13 05:40:26 +00:00
|
|
|
#include "common/common_types.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2014-10-13 05:40:26 +00:00
|
|
|
#include "core/hw/hw.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hw/lcd.h"
|
2015-04-04 10:57:31 +00:00
|
|
|
#include "core/tracer/recorder.h"
|
|
|
|
|
2014-10-13 05:40:26 +00:00
|
|
|
namespace LCD {
|
|
|
|
|
|
|
|
Regs g_regs;
|
|
|
|
|
|
|
|
template <typename T>
|
2016-09-18 00:38:01 +00:00
|
|
|
inline void Read(T& var, const u32 raw_addr) {
|
2014-10-13 05:40:26 +00:00
|
|
|
u32 addr = raw_addr - HW::VADDR_LCD;
|
|
|
|
u32 index = addr / 4;
|
|
|
|
|
|
|
|
// Reads other than u32 are untested, so I'd rather have them abort than silently fail
|
|
|
|
if (index >= 0x400 || !std::is_same<T, u32>::value) {
|
2018-04-26 12:54:52 +00:00
|
|
|
NGLOG_ERROR(HW_LCD, "Unknown Read{} @ {:#010X}", sizeof(var) * 8, addr);
|
2014-10-13 05:40:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var = g_regs[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline void Write(u32 addr, const T data) {
|
|
|
|
addr -= HW::VADDR_LCD;
|
|
|
|
u32 index = addr / 4;
|
|
|
|
|
|
|
|
// Writes other than u32 are untested, so I'd rather have them abort than silently fail
|
|
|
|
if (index >= 0x400 || !std::is_same<T, u32>::value) {
|
2018-04-26 12:54:52 +00:00
|
|
|
NGLOG_ERROR(HW_LCD, "Unknown Write{} {:#010X} @ {:#010X}", sizeof(data) * 8, data, addr);
|
2014-10-13 05:40:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_regs[index] = static_cast<u32>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicitly instantiate template functions because we aren't defining this in the header:
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
template void Read<u64>(u64& var, const u32 addr);
|
|
|
|
template void Read<u32>(u32& var, const u32 addr);
|
|
|
|
template void Read<u16>(u16& var, const u32 addr);
|
|
|
|
template void Read<u8>(u8& var, const u32 addr);
|
2014-10-13 05:40:26 +00:00
|
|
|
|
|
|
|
template void Write<u64>(u32 addr, const u64 data);
|
|
|
|
template void Write<u32>(u32 addr, const u32 data);
|
|
|
|
template void Write<u16>(u32 addr, const u16 data);
|
|
|
|
template void Write<u8>(u32 addr, const u8 data);
|
|
|
|
|
|
|
|
/// Initialize hardware
|
|
|
|
void Init() {
|
2015-04-28 02:03:35 +00:00
|
|
|
memset(&g_regs, 0, sizeof(g_regs));
|
2018-04-26 12:54:52 +00:00
|
|
|
NGLOG_DEBUG(HW_LCD, "Initialized OK");
|
2014-10-13 05:40:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown hardware
|
|
|
|
void Shutdown() {
|
2018-04-26 12:54:52 +00:00
|
|
|
NGLOG_DEBUG(HW_LCD, "Shutdown OK");
|
2014-10-13 05:40:26 +00:00
|
|
|
}
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace LCD
|