mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-23 06:29:38 +00:00
Initial Hammerhead ASIC emulation.
This commit is contained in:
parent
bd19914132
commit
4216c412b3
169
devices/memctrl/hammerhead.cpp
Normal file
169
devices/memctrl/hammerhead.cpp
Normal file
@ -0,0 +1,169 @@
|
||||
/*
|
||||
DingusPPC - The Experimental PowerPC Macintosh emulator
|
||||
Copyright (C) 2018-22 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 Memory Controller";
|
||||
|
||||
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 reg_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 = MBID_VCI0_PRESENT << 5;
|
||||
break;
|
||||
case HammerheadReg::CPU_SPEED:
|
||||
result = BUS_SPEED_33_MHZ << 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, "Hammerhead: unknown register read at offset 0x%X", 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, "Hammerhead: bank base #%d set to 0x%X", offset >> 1, bank_base[offset >> 1]);
|
||||
return;
|
||||
}
|
||||
|
||||
switch (offset) {
|
||||
case HammerheadReg::MEM_TIMING_0:
|
||||
LOG_F(9, "Hammerhead: MEM_TIMING_0 set to 0x%X", value);
|
||||
break;
|
||||
case HammerheadReg::MEM_TIMING_1:
|
||||
LOG_F(9, "Hammerhead: MEM_TIMING_1 set to 0x%X", value);
|
||||
break;
|
||||
case HammerheadReg::REFRESH_TIMING:
|
||||
LOG_F(9, "Hammerhead: REFRESH_TIMING set to 0x%X", value);
|
||||
break;
|
||||
case HammerheadReg::ROM_TIMING:
|
||||
LOG_F(9, "Hammerhead: ROM_TIMING set to 0x%X", value);
|
||||
break;
|
||||
case HammerheadReg::ARBITER_CONFIG:
|
||||
this->arb_config = value;
|
||||
break;
|
||||
default:
|
||||
LOG_F(WARNING, "Hammerhead: unknown register write at offset 0x%X", offset);
|
||||
}
|
||||
}
|
||||
|
||||
void HammerheadCtrl::insert_ram_dimm(int slot_num, uint32_t capacity)
|
||||
{
|
||||
if (slot_num < 0 || slot_num >= 26) {
|
||||
ABORT_F("Hammerhead: invalid DIMM slot number %d", 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("Hammerhead: unsupported DRAM capacity %d", 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, "Hammerhead: total RAM size = %d bytes", total_ram);
|
||||
|
||||
if (!add_ram_region(0x00000000, total_ram)) {
|
||||
ABORT_F("Hammerhead: could not allocate physical RAM storage");
|
||||
}
|
||||
}
|
||||
|
||||
static const DeviceDescription Hammerhead_Descriptor = {
|
||||
HammerheadCtrl::create, {}, {}
|
||||
};
|
||||
|
||||
REGISTER_DEVICE(Hammerhead, Hammerhead_Descriptor);
|
113
devices/memctrl/hammerhead.h
Normal file
113
devices/memctrl/hammerhead.h
Normal file
@ -0,0 +1,113 @@
|
||||
/*
|
||||
DingusPPC - The Experimental PowerPC Macintosh emulator
|
||||
Copyright (C) 2018-22 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 definitions.
|
||||
|
||||
Author: Max Poliakovski
|
||||
|
||||
Hammerhead is a custom memory controller and ARBus arbiter
|
||||
designed especially for the TNT family of Power Macintosh computers.
|
||||
*/
|
||||
|
||||
#ifndef HAMMERHEAD_MEMCTRL_H
|
||||
#define HAMMERHEAD_MEMCTRL_H
|
||||
|
||||
#include <devices/common/hwcomponent.h>
|
||||
#include <devices/common/mmiodevice.h>
|
||||
#include <devices/memctrl/memctrlbase.h>
|
||||
|
||||
#include <cinttypes>
|
||||
#include <memory>
|
||||
|
||||
namespace Hammerhead {
|
||||
|
||||
#define RISC_MACHINE 0x3
|
||||
#define MACH_TYPE_TNT 0x1
|
||||
#define HH_CPU_ID_TNT ((RISC_MACHINE << 4) | (1 << 3) | MACH_TYPE_TNT)
|
||||
|
||||
// contants for the MBID field of the MOTHERBOARD_ID register
|
||||
enum {
|
||||
MBID_VCI0_PRESENT = 4,
|
||||
MBID_PCI2_PRESENT = 2,
|
||||
};
|
||||
|
||||
// ARBus speed constants for the CPU_SPEED register
|
||||
enum {
|
||||
BUS_SPEED_40_MHZ = 0,
|
||||
BUS_SPEED_33_MHZ = 1,
|
||||
BUS_SPEED_44_MHZ = 2,
|
||||
BUS_SPEED_50_MHZ = 3
|
||||
};
|
||||
|
||||
// bus master IDs for the WHO_AM_I register
|
||||
enum {
|
||||
BM_VIDEO_BRIDGE = 1 << 4,
|
||||
BM_PCI_BRIDGE_1 = 1 << 3,
|
||||
BM_PCI_BRIDGE_2 = 1 << 2,
|
||||
BM_PRIMARY_CPU = 1 << 1,
|
||||
BM_SECONDARY_CPU = 1 << 0
|
||||
};
|
||||
|
||||
// Configuration and status registers.
|
||||
enum HammerheadReg : uint16_t {
|
||||
CPU_ID = 0x00,
|
||||
ASIC_REVISION = 0x10,
|
||||
MOTHERBOARD_ID = 0x20,
|
||||
CPU_SPEED = 0x30,
|
||||
MB_DRAM_CONFIG = 0x40,
|
||||
MEM_TIMING_0 = 0x50,
|
||||
MEM_TIMING_1 = 0x60,
|
||||
REFRESH_TIMING = 0x70,
|
||||
ROM_TIMING = 0x80,
|
||||
ARBITER_CONFIG = 0x90,
|
||||
ARBUS_TIMEOUT = 0xA0,
|
||||
WHO_AM_I = 0xB0,
|
||||
L2_CACHE_CONFIG = 0xE0,
|
||||
BANK_0_BASE_MSB = 0x1C0,
|
||||
BANK_25_BASE_LSB = 0x4F0,
|
||||
};
|
||||
|
||||
}; // namespace Hammerhead
|
||||
|
||||
class HammerheadCtrl : public MemCtrlBase, public MMIODevice {
|
||||
public:
|
||||
HammerheadCtrl();
|
||||
~HammerheadCtrl() = default;
|
||||
|
||||
static std::unique_ptr<HWComponent> create() {
|
||||
return std::unique_ptr<HammerheadCtrl>(new HammerheadCtrl());
|
||||
}
|
||||
|
||||
// MMIODevice methods
|
||||
uint32_t read(uint32_t reg_start, uint32_t offset, int size);
|
||||
void write(uint32_t rgn_start, uint32_t offset, uint32_t value, int size);
|
||||
|
||||
void insert_ram_dimm(int slot_num, uint32_t capacity);
|
||||
void map_phys_ram();
|
||||
|
||||
private:
|
||||
uint8_t arb_config = 0;
|
||||
|
||||
uint16_t bank_base[26];
|
||||
uint32_t bank_size[26] = { 0 };
|
||||
};
|
||||
|
||||
#endif // HAMMERHEAD_MEMCTRL_H
|
Loading…
Reference in New Issue
Block a user