mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-27 00:29:18 +00:00
45a9d45e3f
scsibus has a new method attach_scsi_devices which is used by all machines to populate a SCSI bus with one or more hard drives or CD-ROM drives. HDDs are specified by the hdd_img property. CDs are specified by the cdr_img property. Multiple images are delimited by a colon : attach_scsi_devices is called by the scsi controller after the scsi controller has attached itself to the scsi bus. The bus suffix is applied to the property name. Curio has no suffix so it will use hdd_img and cdr_img properties. Mesh is expected to have a suffix of 2 so it will use hdd_img2 and cdr_img2 properties. HDDs will skip SCSI ID 3 unless 7 HDDs are added, in which case, the seventh HDD will use ID 3. CDs will start at SCSI ID 3, go to 7, then down to 0. SCSI IDs are skipped if a device is already using that SCSI ID. ScsiCdrom and ScsiHD no longer use REGISTER_DEVICE or DeviceDescription or PropMap which is normal for devices that can have multiple instances.
111 lines
3.8 KiB
C++
111 lines
3.8 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/>.
|
|
*/
|
|
|
|
/** @file Constructs a Catalyst (Power Macintosh 7200) machine. */
|
|
|
|
#include <cpu/ppc/ppcemu.h>
|
|
#include <devices/common/machineid.h>
|
|
#include <devices/common/pci/pcidevice.h>
|
|
#include <devices/common/pci/pcihost.h>
|
|
#include <devices/common/scsi/scsicdrom.h>
|
|
#include <devices/common/scsi/scsihd.h>
|
|
#include <devices/memctrl/platinum.h>
|
|
#include <loguru.hpp>
|
|
#include <machines/machinebase.h>
|
|
#include <machines/machinefactory.h>
|
|
#include <machines/machineproperties.h>
|
|
#include <memctrl/memctrlbase.h>
|
|
|
|
#include <string>
|
|
|
|
int initialize_catalyst(std::string& id)
|
|
{
|
|
LOG_F(INFO, "Building machine Catalyst...");
|
|
|
|
PlatinumCtrl* platinum_obj;
|
|
|
|
PCIHost *pci_host = dynamic_cast<PCIHost*>(gMachineObj->get_comp_by_name("Bandit1"));
|
|
|
|
// get (raw) pointer to the I/O controller
|
|
GrandCentral* gc_obj = dynamic_cast<GrandCentral*>(gMachineObj->get_comp_by_name("GrandCentral"));
|
|
|
|
// connect GrandCentral I/O controller to the PCI1 bus
|
|
pci_host->pci_register_device(DEV_FUN(0x10,0), gc_obj);
|
|
|
|
// attach IOBus Device #1 0xF301A000
|
|
gMachineObj->add_device("BoardReg1", std::unique_ptr<BoardRegister>(
|
|
new BoardRegister("Board Register 1",
|
|
0x3F | // pull up all PRSNT bits
|
|
((GET_BIN_PROP("emmo") ^ 1) << 8) | // factory tests (active low)
|
|
(0 << 11) | // 2-bit box ID
|
|
0xE000U // pull up unused bits
|
|
)));
|
|
|
|
gc_obj->attach_iodevice(0, dynamic_cast<BoardRegister*>(gMachineObj->get_comp_by_name("BoardReg1")));
|
|
|
|
// get (raw) pointer to the memory controller
|
|
platinum_obj = dynamic_cast<PlatinumCtrl*>(gMachineObj->get_comp_by_name("Platinum"));
|
|
|
|
// allocate ROM region
|
|
if (!platinum_obj->add_rom_region(0xFFC00000, 0x400000)) {
|
|
LOG_F(ERROR, "Could not allocate ROM region!");
|
|
return -1;
|
|
}
|
|
|
|
// plug 8MB RAM DIMM into slot #0
|
|
platinum_obj->insert_ram_dimm(0, DRAM_CAP_8MB);
|
|
|
|
// allocate and map physical RAM
|
|
platinum_obj->map_phys_ram();
|
|
|
|
// init virtual CPU and request MPC601
|
|
ppc_cpu_init(platinum_obj, PPC_VER::MPC601, 7833600ULL);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const PropMap pm7200_settings = {
|
|
{"rambank1_size",
|
|
new IntProperty(16, vector<uint32_t>({4, 8, 16, 32, 64, 128}))},
|
|
{"rambank2_size",
|
|
new IntProperty( 0, vector<uint32_t>({0, 4, 8, 16, 32, 64, 128}))},
|
|
{"rambank3_size",
|
|
new IntProperty( 0, vector<uint32_t>({0, 4, 8, 16, 32, 64, 128}))},
|
|
{"rambank4_size",
|
|
new IntProperty( 0, vector<uint32_t>({0, 4, 8, 16, 32, 64, 128}))},
|
|
{"emmo",
|
|
new BinProperty(0)},
|
|
};
|
|
|
|
static vector<string> pm7200_devices = {
|
|
"Platinum", "Bandit1", "GrandCentral"
|
|
};
|
|
|
|
static const MachineDescription pm7200_descriptor = {
|
|
.name = "pm7200",
|
|
.description = "Power Macintosh 7200",
|
|
.devices = pm7200_devices,
|
|
.settings = pm7200_settings,
|
|
.init_func = &initialize_catalyst
|
|
};
|
|
|
|
REGISTER_MACHINE(pm7200, pm7200_descriptor);
|