Add BIOS selection to Packard Bell PB450.

This commit is contained in:
GetDizzy
2025-01-11 00:10:38 -05:00
committed by GetDizzy
parent 28c296fc75
commit 0931e82bd1
2 changed files with 50 additions and 4 deletions

View File

@@ -684,13 +684,56 @@ machine_at_403tg_d_mr_init(const machine_t *model)
return ret; return ret;
} }
static const device_config_t pb450_config[] = {
// clang-format off
{
.name = "bios",
.description = "BIOS Version",
.type = CONFIG_BIOS,
.default_string = "pci10a",
.default_int = 0,
.file_filter = "",
.spinner = { 0 },
.bios = {
{ .name = "PCI 1.0A", .internal_name = "pci10a", .bios_type = BIOS_NORMAL,
.files_no = 1, .local = 0, .size = 131072, .files = { "roms/machines/pb450/OPTI802.bin", "" } },
{ .name = "PNP 1.1A", .internal_name = "pnp11a", .bios_type = BIOS_NORMAL,
.files_no = 1, .local = 0, .size = 131072, .files = { "roms/machines/pb450/PNP11A.bin", "" } },
{ .files_no = 0 }
},
},
{ .name = "", .description = "", .type = CONFIG_END }
// clang-format on
};
const device_t pb450_device = {
.name = "Packard Bell PB450 Devices",
.internal_name = "pb450_device",
.flags = 0,
.local = 0,
.init = NULL,
.close = NULL,
.reset = NULL,
.available = NULL,
.speed_changed = NULL,
.force_redraw = NULL,
.config = pb450_config
};
int int
machine_at_pb450_init(const machine_t *model) machine_at_pb450_init(const machine_t *model)
{ {
int ret; int ret = 0;
const char* fn;
ret = bios_load_linear("roms/machines/pb450/OPTI802.bin", /* No ROMs available */
0x000e0000, 131072, 0); if (!device_available(model->device))
return ret;
device_context(model->device);
fn = device_get_bios_file(model->device, device_get_config_bios("bios"), 0);
ret = bios_load_linear(fn, 0x000e0000, 131072, 0);
device_context_restore();
if (bios_only || !ret) if (bios_only || !ret)
return ret; return ret;
@@ -698,6 +741,7 @@ machine_at_pb450_init(const machine_t *model)
machine_at_common_init_ex(model, 2); machine_at_common_init_ex(model, 2);
device_add(&ide_vlb_2ch_device); device_add(&ide_vlb_2ch_device);
/* TODO: Detect if we're using the PNP and not the PCI ROM and don't add these? */
pci_init(PCI_CONFIG_TYPE_1); pci_init(PCI_CONFIG_TYPE_1);
pci_register_slot(0x10, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0); pci_register_slot(0x10, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
pci_register_slot(0x11, PCI_CARD_NORMAL, 1, 2, 3, 4); pci_register_slot(0x11, PCI_CARD_NORMAL, 1, 2, 3, 4);
@@ -713,6 +757,7 @@ machine_at_pb450_init(const machine_t *model)
device_add(&fdc37c665_ide_device); device_add(&fdc37c665_ide_device);
device_add(&ide_opti611_vlb_sec_device); device_add(&ide_opti611_vlb_sec_device);
device_add(&intel_flash_bxt_device); device_add(&intel_flash_bxt_device);
/* TODO: Detect if we're using the PNP and not the PCI ROM and don't add this? */
device_add(&phoenix_486_jumper_pci_device); device_add(&phoenix_486_jumper_pci_device);
return ret; return ret;

View File

@@ -63,6 +63,7 @@ extern const device_t ibmxt_device;
extern const device_t ibmxt86_device; extern const device_t ibmxt86_device;
extern const device_t ibmat_device; extern const device_t ibmat_device;
extern const device_t ibmxt286_device; extern const device_t ibmxt286_device;
extern const device_t pb450_device;
const machine_filter_t machine_types[] = { const machine_filter_t machine_types[] = {
{ "None", MACHINE_TYPE_NONE }, { "None", MACHINE_TYPE_NONE },
@@ -6888,7 +6889,7 @@ const machine_t machines[] = {
.kbc_p1 = 0xff, .kbc_p1 = 0xff,
.gpio = 0xffffffff, .gpio = 0xffffffff,
.gpio_acpi = 0xffffffff, .gpio_acpi = 0xffffffff,
.device = NULL, .device = &pb450_device,
.fdc_device = NULL, .fdc_device = NULL,
.sio_device = NULL, .sio_device = NULL,
.vid_device = &gd5428_vlb_onboard_device, .vid_device = &gd5428_vlb_onboard_device,