dingusppc/devices/memctrl/hammerhead.cpp

173 lines
5.4 KiB
C++

/*
DingusPPC - The Experimental PowerPC Macintosh emulator
Copyright (C) 2018-24 divingkatae and maximum
(theweirdo) spatium
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/** Hammerhead Memory Controller emulation. */
#include <devices/deviceregistry.h>
#include <devices/memctrl/hammerhead.h>
#include <loguru.hpp>
#include <cinttypes>
#include <memory>
using namespace Hammerhead;
HammerheadCtrl::HammerheadCtrl() : MemCtrlBase()
{
this->name = "Hammerhead";
supports_types(HWCompType::MEM_CTRL | HWCompType::MMIO_DEV);
// add MMIO region for the configuration and status registers
add_mmio_region(0xF8000000, 0x500, this);
}
uint32_t HammerheadCtrl::read(uint32_t rgn_start, uint32_t offset, int size)
{
uint32_t result;
if (offset >= HammerheadReg::BANK_0_BASE_MSB &&
offset <= HammerheadReg::BANK_25_BASE_LSB) {
offset = (offset - HammerheadReg::BANK_0_BASE_MSB) >> 4;
if (offset & 1) { // return the LSB part
result = bank_base[offset >> 1] & 0xFFU;
} else { // return the MSB part
result = bank_base[offset >> 1] >> 8;
}
goto finish;
}
switch (offset) {
case HammerheadReg::CPU_ID:
result = HH_CPU_ID_TNT;
break;
case HammerheadReg::MOTHERBOARD_ID:
result = (this->mb_id << 5) | (this->rom_type << 4);
break;
case HammerheadReg::CPU_SPEED:
result = this->bus_speed << 5;
break;
case HammerheadReg::ARBITER_CONFIG:
result = this->arb_config;
break;
case HammerheadReg::WHO_AM_I:
result = BM_PRIMARY_CPU << 3;
break;
case HammerheadReg::L2_CACHE_CONFIG:
result = 0; // say there is no L2 cache
break;
default:
LOG_F(WARNING, "%s: unknown register read at offset 0x%X", this->name.c_str(),
offset);
return 0;
}
// Hammerhead registers are one byte wide so always place
// the result in the MSB of a multibyte read
finish:
return result << ((size - 1) << 3);
}
void HammerheadCtrl::write(uint32_t rgn_start, uint32_t offset, uint32_t value, int size)
{
// extract byte value from the MSB of a multibyte value
value = value >> ((size - 1) << 3);
if (offset >= HammerheadReg::BANK_0_BASE_MSB &&
offset <= HammerheadReg::BANK_25_BASE_LSB) {
offset = (offset - HammerheadReg::BANK_0_BASE_MSB) >> 4;
if (offset & 1) { // update the LSB part
bank_base[offset >> 1] = (bank_base[offset >> 1] & 0xFF00U) | value;
} else { // update the MSB part
bank_base[offset >> 1] = (bank_base[offset >> 1] & 0x00FFU) | (value << 8);
}
LOG_F(INFO, "%s: bank base #%d set to 0x%X", this->name.c_str(),
offset >> 1, bank_base[offset >> 1]);
return;
}
switch (offset) {
case HammerheadReg::MEM_TIMING_0:
LOG_F(9, "%s: MEM_TIMING_0 set to 0x%X", this->name.c_str(), value);
break;
case HammerheadReg::MEM_TIMING_1:
LOG_F(9, "%s: MEM_TIMING_1 set to 0x%X", this->name.c_str(), value);
break;
case HammerheadReg::REFRESH_TIMING:
LOG_F(9, "%s: REFRESH_TIMING set to 0x%X", this->name.c_str(), value);
break;
case HammerheadReg::ROM_TIMING:
LOG_F(9, "%s: ROM_TIMING set to 0x%X", this->name.c_str(), value);
break;
case HammerheadReg::ARBITER_CONFIG:
this->arb_config = value;
break;
default:
LOG_F(WARNING, "%s: unknown register write at offset 0x%X", this->name.c_str(),
offset);
}
}
void HammerheadCtrl::insert_ram_dimm(int slot_num, uint32_t capacity)
{
if (slot_num < 0 || slot_num >= 26) {
ABORT_F("%s: invalid DIMM slot number %d", this->name.c_str(), slot_num);
}
switch (capacity) {
case DRAM_CAP_2MB:
case DRAM_CAP_4MB:
case DRAM_CAP_8MB:
case DRAM_CAP_16MB:
case DRAM_CAP_32MB:
case DRAM_CAP_64MB:
this->bank_size[slot_num * 2 + 0] = capacity;
break;
case DRAM_CAP_128MB:
this->bank_size[slot_num * 2 + 0] = DRAM_CAP_64MB;
this->bank_size[slot_num * 2 + 1] = DRAM_CAP_64MB;
break;
default:
ABORT_F("%s: unsupported DRAM capacity %d", this->name.c_str(), capacity);
}
}
void HammerheadCtrl::map_phys_ram()
{
uint32_t total_ram = 0;
for (int i = 0; i < 26; i++) {
total_ram += this->bank_size[i];
}
LOG_F(INFO, "%s: total RAM size = %d bytes", this->name.c_str(), total_ram);
if (!add_ram_region(0x00000000, total_ram)) {
ABORT_F("%s: could not allocate physical RAM storage", this->name.c_str());
}
}
static const DeviceDescription Hammerhead_Descriptor = {
HammerheadCtrl::create, {}, {}
};
REGISTER_DEVICE(Hammerhead, Hammerhead_Descriptor);