2021-07-04 17:40:39 +02:00
|
|
|
/*
|
|
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the 86Box distribution.
|
|
|
|
|
*
|
|
|
|
|
* Implementation of Socket 4 machines.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
|
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2010-2019 Sarah Walker.
|
|
|
|
|
* Copyright 2016-2019 Miran Grca.
|
|
|
|
|
*/
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
#include <86box/86box.h>
|
|
|
|
|
#include <86box/mem.h>
|
|
|
|
|
#include <86box/io.h>
|
|
|
|
|
#include <86box/rom.h>
|
|
|
|
|
#include <86box/pci.h>
|
|
|
|
|
#include <86box/device.h>
|
|
|
|
|
#include <86box/chipset.h>
|
|
|
|
|
#include <86box/fdc_ext.h>
|
|
|
|
|
#include <86box/hdc.h>
|
|
|
|
|
#include <86box/hdc_ide.h>
|
|
|
|
|
#include <86box/timer.h>
|
|
|
|
|
#include <86box/fdd.h>
|
|
|
|
|
#include <86box/fdc.h>
|
|
|
|
|
#include <86box/keyboard.h>
|
|
|
|
|
#include <86box/flash.h>
|
|
|
|
|
#include <86box/nvr.h>
|
|
|
|
|
#include <86box/scsi_ncr53c8xx.h>
|
|
|
|
|
#include <86box/sio.h>
|
2022-07-27 15:17:53 -04:00
|
|
|
#include <86box/timer.h>
|
2021-07-04 17:40:39 +02:00
|
|
|
#include <86box/video.h>
|
|
|
|
|
#include <86box/machine.h>
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
machine_at_premiere_common_init(const machine_t *model, int pci_switch)
|
|
|
|
|
{
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
device_add(&ide_pci_2ch_device);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2 | pci_switch);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x01, PCI_CARD_IDE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x06, PCI_CARD_NORMAL, 3, 2, 1, 4);
|
|
|
|
|
pci_register_slot(0x0E, PCI_CARD_NORMAL, 2, 1, 3, 4);
|
|
|
|
|
pci_register_slot(0x0C, PCI_CARD_NORMAL, 1, 3, 2, 4);
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
device_add(&keyboard_ps2_intel_ami_pci_device);
|
|
|
|
|
device_add(&sio_zb_device);
|
|
|
|
|
device_add(&fdc37c665_device);
|
|
|
|
|
device_add(&intel_flash_bxt_ami_device);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
machine_at_award_common_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
device_add(&ide_pci_2ch_device);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2 | PCI_NO_IRQ_STEERING);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x01, PCI_CARD_IDE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x03, PCI_CARD_NORMAL, 1, 2, 3, 4); /* 03 = Slot 1 */
|
|
|
|
|
pci_register_slot(0x04, PCI_CARD_NORMAL, 2, 3, 4, 1); /* 04 = Slot 2 */
|
|
|
|
|
pci_register_slot(0x05, PCI_CARD_NORMAL, 3, 4, 1, 2); /* 05 = Slot 3 */
|
|
|
|
|
pci_register_slot(0x06, PCI_CARD_NORMAL, 4, 1, 2, 3); /* 06 = Slot 4 */
|
|
|
|
|
pci_register_slot(0x07, PCI_CARD_SCSI, 1, 2, 3, 4); /* 07 = SCSI */
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
|
|
|
|
|
if (fdc_type == FDC_INTERNAL)
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&fdc_at_device);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
// device_add(&keyboard_ps2_pci_device);
|
|
|
|
|
device_add(&keyboard_ps2_ami_pci_device);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
machine_at_sp4_common_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_1);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x01, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
/* Excluded: 02, 03, 04, 05, 06, 07, 08, 09, 0A, 0B, 0C, 0D, 0E, 0F, 10, 11, 12, 13, 14 */
|
|
|
|
|
pci_register_slot(0x0D, PCI_CARD_IDE, 1, 2, 3, 4);
|
|
|
|
|
/* Excluded: 02, 03*, 04*, 05*, 06*, 07*, 08* */
|
|
|
|
|
/* Slots: 09 (04), 0A (03), 0B (02), 0C (07) */
|
|
|
|
|
pci_register_slot(0x0C, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
|
|
|
|
pci_register_slot(0x0B, PCI_CARD_NORMAL, 2, 3, 4, 1);
|
|
|
|
|
pci_register_slot(0x0A, PCI_CARD_NORMAL, 3, 4, 1, 2);
|
|
|
|
|
pci_register_slot(0x09, PCI_CARD_NORMAL, 4, 1, 2, 3);
|
|
|
|
|
device_add(&sis_85c50x_device);
|
|
|
|
|
device_add(&ide_cmd640_pci_device);
|
|
|
|
|
device_add(&keyboard_ps2_ami_pci_device);
|
|
|
|
|
device_add(&fdc37c665_device);
|
|
|
|
|
device_add(&intel_flash_bxt_device);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-21 18:19:10 +02:00
|
|
|
int
|
2021-11-14 14:28:22 -03:00
|
|
|
machine_at_excaliburpci_init(const machine_t *model)
|
2021-08-21 18:19:10 +02:00
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
2021-11-14 14:28:22 -03:00
|
|
|
ret = bios_load_linear_inverted("roms/machines/excaliburpci/S701P.ROM",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-08-21 18:19:10 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-08-21 18:19:10 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x03, PCI_CARD_IDE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x0F, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
|
|
|
|
pci_register_slot(0x0E, PCI_CARD_NORMAL, 2, 3, 4, 1);
|
|
|
|
|
pci_register_slot(0x0D, PCI_CARD_NORMAL, 3, 4, 1, 2);
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
device_add(&fdc37c665_device);
|
|
|
|
|
device_add(&keyboard_ps2_ami_pci_device);
|
|
|
|
|
device_add(&ide_cmd640_pci_legacy_only_device);
|
|
|
|
|
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
device_add(&sio_zb_device);
|
|
|
|
|
device_add(&intel_flash_bxt_ami_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-04 17:40:39 +02:00
|
|
|
int
|
|
|
|
|
machine_at_p5mp3_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear("roms/machines/p5mp3/0205.bin",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
device_add(&ide_pci_device);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2 | PCI_NO_IRQ_STEERING);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x05, PCI_CARD_NORMAL, 1, 2, 3, 4); /* 05 = Slot 1 */
|
|
|
|
|
pci_register_slot(0x04, PCI_CARD_NORMAL, 2, 3, 4, 1); /* 04 = Slot 2 */
|
|
|
|
|
pci_register_slot(0x03, PCI_CARD_NORMAL, 3, 4, 1, 2); /* 03 = Slot 3 */
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
device_add(&fdc_at_device);
|
|
|
|
|
device_add(&keyboard_ps2_pci_device);
|
|
|
|
|
|
|
|
|
|
device_add(&sio_zb_device);
|
|
|
|
|
device_add(&catalyst_flash_device);
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_dellxp60_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear_inverted("roms/machines/dellxp60/XP60-A08.ROM",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2022-02-20 02:26:27 -05:00
|
|
|
|
2021-07-04 17:40:39 +02:00
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
device_add(&ide_pci_2ch_device);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
/* Not: 00, 02, 03, 04, 05, 06, 07, 08, 09, 0A, 0B, 0C, 0D, 0E, 0F. */
|
|
|
|
|
/* Yes: 01, 10, 11, 12, 13, 14. */
|
|
|
|
|
pci_register_slot(0x01, PCI_CARD_NORMAL, 1, 3, 2, 4);
|
|
|
|
|
pci_register_slot(0x04, PCI_CARD_NORMAL, 4, 4, 3, 3);
|
|
|
|
|
pci_register_slot(0x05, PCI_CARD_NORMAL, 1, 4, 3, 2);
|
|
|
|
|
pci_register_slot(0x06, PCI_CARD_NORMAL, 2, 1, 3, 4);
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
device_add(&keyboard_ps2_intel_ami_pci_device);
|
|
|
|
|
device_add(&sio_zb_device);
|
|
|
|
|
device_add(&fdc37c665_device);
|
|
|
|
|
device_add(&intel_flash_bxt_ami_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_opti560l_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear_inverted("roms/machines/opti560l/560L_A06.ROM",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
device_add(&ide_pci_2ch_device);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x03, PCI_CARD_NORMAL, 4, 4, 3, 3);
|
|
|
|
|
pci_register_slot(0x07, PCI_CARD_NORMAL, 1, 4, 3, 2);
|
|
|
|
|
pci_register_slot(0x08, PCI_CARD_NORMAL, 2, 1, 3, 4);
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
device_add(&keyboard_ps2_intel_ami_pci_device);
|
|
|
|
|
device_add(&sio_zb_device);
|
|
|
|
|
device_add(&i82091aa_device);
|
|
|
|
|
device_add(&intel_flash_bxt_ami_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_ambradp60_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear_combined("roms/machines/ambradp60/1004AF1P.BIO",
|
2022-07-27 15:17:53 -04:00
|
|
|
"roms/machines/ambradp60/1004AF1P.BI1", 0x1c000, 128);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_premiere_common_init(model, 0);
|
|
|
|
|
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_valuepointp60_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear_combined("roms/machines/valuepointp60/1006AV0M.BIO",
|
2022-07-27 15:17:53 -04:00
|
|
|
"roms/machines/valuepointp60/1006AV0M.BI1", 0x1d000, 128);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
device_add(&ide_pci_2ch_device);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2 | PCI_NO_IRQ_STEERING);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x01, PCI_CARD_IDE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x06, PCI_CARD_NORMAL, 3, 2, 1, 4);
|
|
|
|
|
pci_register_slot(0x0E, PCI_CARD_NORMAL, 2, 1, 3, 4);
|
|
|
|
|
pci_register_slot(0x0C, PCI_CARD_NORMAL, 1, 3, 2, 4);
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
device_add(&keyboard_ps2_ps1_pci_device);
|
|
|
|
|
device_add(&sio_device);
|
|
|
|
|
device_add(&fdc37c665_device);
|
|
|
|
|
device_add(&intel_flash_bxt_ami_device);
|
|
|
|
|
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_revenge_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear_combined("roms/machines/revenge/1009af2_.bio",
|
2022-07-27 15:17:53 -04:00
|
|
|
"roms/machines/revenge/1009af2_.bi1", 0x1c000, 128);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_premiere_common_init(model, 0);
|
|
|
|
|
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_586mc1_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear("roms/machines/586mc1/IS.34",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_award_common_init(model);
|
|
|
|
|
|
|
|
|
|
device_add(&sio_device);
|
|
|
|
|
device_add(&intel_flash_bxt_device);
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_pb520r_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear_combined("roms/machines/pb520r/1009bc0r.bio",
|
2022-07-27 15:17:53 -04:00
|
|
|
"roms/machines/pb520r/1009bc0r.bi1", 0x1d000, 128);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_2);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x01, PCI_CARD_IDE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x03, PCI_CARD_VIDEO, 3, 3, 3, 3);
|
|
|
|
|
pci_register_slot(0x06, PCI_CARD_NORMAL, 3, 2, 1, 4);
|
|
|
|
|
pci_register_slot(0x0E, PCI_CARD_NORMAL, 2, 1, 3, 4);
|
|
|
|
|
pci_register_slot(0x0C, PCI_CARD_NORMAL, 1, 3, 2, 4);
|
|
|
|
|
pci_register_slot(0x02, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
device_add(&i430lx_device);
|
|
|
|
|
device_add(&ide_cmd640_pci_single_channel_device);
|
|
|
|
|
|
|
|
|
|
if (gfxcard == VID_INTERNAL)
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&gd5434_onboard_pci_device);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
device_add(&keyboard_ps2_pci_device);
|
|
|
|
|
device_add(&sio_zb_device);
|
|
|
|
|
device_add(&i82091aa_ide_device);
|
|
|
|
|
device_add(&intel_flash_bxt_ami_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_excalibur_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear_inverted("roms/machines/excalibur/S75P.ROM",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
|
|
|
|
|
|
|
|
|
device_add(&opti5x7_device);
|
|
|
|
|
device_add(&ide_opti611_vlb_device);
|
|
|
|
|
device_add(&fdc37c661_device);
|
|
|
|
|
device_add(&keyboard_ps2_intel_ami_pci_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
machine_at_p5vl_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear("roms/machines/p5vl/SM507.ROM",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_common_init(model);
|
2022-11-02 04:03:55 +01:00
|
|
|
|
2022-11-02 05:19:28 +01:00
|
|
|
pci_init(PCI_CONFIG_TYPE_1);
|
2021-07-04 17:40:39 +02:00
|
|
|
pci_register_slot(0x10, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
2022-11-02 04:03:55 +01:00
|
|
|
|
2021-07-04 17:40:39 +02:00
|
|
|
pci_register_slot(0x11, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
2022-11-02 05:19:28 +01:00
|
|
|
pci_register_slot(0x12, PCI_CARD_NORMAL, 5, 6, 7, 8);
|
|
|
|
|
pci_register_slot(0x13, PCI_CARD_NORMAL, 9, 10, 11, 12);
|
|
|
|
|
pci_register_slot(0x14, PCI_CARD_NORMAL, 13, 14, 15, 16);
|
2022-11-02 04:03:55 +01:00
|
|
|
|
2022-10-31 05:44:32 +01:00
|
|
|
device_add(&opti5x7_pci_device);
|
2021-07-04 17:40:39 +02:00
|
|
|
device_add(&opti822_device);
|
|
|
|
|
device_add(&sst_flash_29ee010_device);
|
|
|
|
|
device_add(&keyboard_at_ami_device);
|
|
|
|
|
|
|
|
|
|
if (fdc_type == FDC_INTERNAL)
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&fdc_at_device);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-21 18:19:10 +02:00
|
|
|
int
|
2021-11-14 14:28:22 -03:00
|
|
|
machine_at_excaliburpci2_init(const machine_t *model)
|
2021-08-21 18:19:10 +02:00
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
2021-11-14 14:28:22 -03:00
|
|
|
ret = bios_load_linear_inverted("roms/machines/excaliburpci2/S722P.ROM",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-08-21 18:19:10 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-08-21 18:19:10 +02:00
|
|
|
|
2021-11-30 00:25:03 +01:00
|
|
|
machine_at_common_init_ex(model, 2);
|
|
|
|
|
device_add(&ami_1994_nvr_device);
|
2021-08-21 18:19:10 +02:00
|
|
|
|
|
|
|
|
pci_init(PCI_CONFIG_TYPE_1);
|
|
|
|
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x01, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x08, PCI_CARD_IDE, 0, 0, 0, 0);
|
|
|
|
|
pci_register_slot(0x0A, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
|
|
|
|
pci_register_slot(0x0B, PCI_CARD_NORMAL, 2, 3, 4, 1);
|
|
|
|
|
pci_register_slot(0x0C, PCI_CARD_NORMAL, 3, 4, 1, 2);
|
|
|
|
|
pci_register_slot(0x0D, PCI_CARD_NORMAL, 4, 1, 2, 3);
|
|
|
|
|
device_add(&fdc37c665_device);
|
|
|
|
|
device_add(&keyboard_ps2_ami_pci_device);
|
|
|
|
|
device_add(&ide_cmd640_pci_legacy_only_device);
|
|
|
|
|
|
|
|
|
|
device_add(&sis_85c50x_device);
|
|
|
|
|
device_add(&intel_flash_bxt_ami_device);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-04 17:40:39 +02:00
|
|
|
int
|
|
|
|
|
machine_at_p5sp4_init(const machine_t *model)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear("roms/machines/p5sp4/0106.001",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2021-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
|
machine_at_sp4_common_init(model);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|