Add Radisys EPC-2102
This commit is contained in:
@@ -678,6 +678,7 @@ extern int machine_at_cu430hx_init(const machine_t *);
|
|||||||
extern int machine_at_equium5200_init(const machine_t *);
|
extern int machine_at_equium5200_init(const machine_t *);
|
||||||
extern int machine_at_pcv90_init(const machine_t *);
|
extern int machine_at_pcv90_init(const machine_t *);
|
||||||
extern int machine_at_p65up5_cp55t2d_init(const machine_t *);
|
extern int machine_at_p65up5_cp55t2d_init(const machine_t *);
|
||||||
|
extern int machine_at_epc2102_init(const machine_t *);
|
||||||
|
|
||||||
extern int machine_at_ap5vm_init(const machine_t *);
|
extern int machine_at_ap5vm_init(const machine_t *);
|
||||||
extern int machine_at_p55tvp4_init(const machine_t *);
|
extern int machine_at_p55tvp4_init(const machine_t *);
|
||||||
|
|||||||
@@ -433,6 +433,35 @@ machine_at_p65up5_cp55t2d_init(const machine_t *model)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
machine_at_epc2102_init(const machine_t *model)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = bios_load_linear("roms/machines/epc2102/P5000HX.ROM",
|
||||||
|
0x000e0000, 131072, 0);
|
||||||
|
|
||||||
|
if (bios_only || !ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
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(0x0D, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
||||||
|
pci_register_slot(0x0E, PCI_CARD_NORMAL, 4, 1, 2, 3);
|
||||||
|
pci_register_slot(0x0F, PCI_CARD_NORMAL, 3, 4, 1, 2);
|
||||||
|
pci_register_slot(0x10, PCI_CARD_NORMAL, 2, 3, 4, 1);
|
||||||
|
pci_register_slot(0x07, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
||||||
|
device_add(&i430hx_device);
|
||||||
|
device_add(&piix3_device);
|
||||||
|
device_add(&keyboard_ps2_pci_device);
|
||||||
|
device_add(&i82091aa_device);
|
||||||
|
device_add(&intel_flash_bxt_device);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
machine_at_p55tvp4_init(const machine_t *model)
|
machine_at_p55tvp4_init(const machine_t *model)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11016,6 +11016,46 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
|
/* Unknown PS/2 KBC. */
|
||||||
|
{
|
||||||
|
.name = "[i430HX] Radisys EPC-2102",
|
||||||
|
.internal_name = "epc2102",
|
||||||
|
.type = MACHINE_TYPE_SOCKET7,
|
||||||
|
.chipset = MACHINE_CHIPSET_INTEL_430HX,
|
||||||
|
.init = machine_at_epc2102_init,
|
||||||
|
.p1_handler = NULL,
|
||||||
|
.gpio_handler = NULL,
|
||||||
|
.available_flag = MACHINE_AVAILABLE,
|
||||||
|
.gpio_acpi_handler = NULL,
|
||||||
|
.cpu = {
|
||||||
|
.package = CPU_PKG_SOCKET5_7,
|
||||||
|
.block = CPU_BLOCK_NONE,
|
||||||
|
.min_bus = 50000000,
|
||||||
|
.max_bus = 83333333,
|
||||||
|
.min_voltage = 2500,
|
||||||
|
.max_voltage = 3520,
|
||||||
|
.min_multi = 1.5,
|
||||||
|
.max_multi = 3.0
|
||||||
|
},
|
||||||
|
.bus_flags = MACHINE_PS2_PCI,
|
||||||
|
.flags = MACHINE_IDE_DUAL | MACHINE_APM | MACHINE_ACPI,
|
||||||
|
.ram = {
|
||||||
|
.min = 8192,
|
||||||
|
.max = 262144,
|
||||||
|
.step = 8192
|
||||||
|
},
|
||||||
|
.nvrmask = 127,
|
||||||
|
.kbc_device = NULL,
|
||||||
|
.kbc_p1 = 0xff,
|
||||||
|
.gpio = 0xffffffff,
|
||||||
|
.gpio_acpi = 0xffffffff,
|
||||||
|
.device = NULL,
|
||||||
|
.fdc_device = NULL,
|
||||||
|
.sio_device = NULL,
|
||||||
|
.vid_device = NULL,
|
||||||
|
.snd_device = NULL,
|
||||||
|
.net_device = NULL
|
||||||
|
},
|
||||||
|
|
||||||
/* 430VX */
|
/* 430VX */
|
||||||
/* This has the VIA VT82C42N KBC. */
|
/* This has the VIA VT82C42N KBC. */
|
||||||
|
|||||||
Reference in New Issue
Block a user