Added the NEC Mate NX MA23C.
This commit is contained in:
@@ -706,6 +706,7 @@ extern int machine_at_pb810_init(const machine_t *);
|
|||||||
extern int machine_at_mb520n_init(const machine_t *);
|
extern int machine_at_mb520n_init(const machine_t *);
|
||||||
extern int machine_at_i430vx_init(const machine_t *);
|
extern int machine_at_i430vx_init(const machine_t *);
|
||||||
|
|
||||||
|
extern int machine_at_ma23c_init(const machine_t *);
|
||||||
extern int machine_at_nupro592_init(const machine_t *);
|
extern int machine_at_nupro592_init(const machine_t *);
|
||||||
extern int machine_at_tx97_init(const machine_t *);
|
extern int machine_at_tx97_init(const machine_t *);
|
||||||
#if defined(DEV_BRANCH) && defined(USE_AN430TX)
|
#if defined(DEV_BRANCH) && defined(USE_AN430TX)
|
||||||
|
|||||||
@@ -798,6 +798,37 @@ machine_at_i430vx_init(const machine_t *model)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
machine_at_ma23c_init(const machine_t *model)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = bios_load_linear("roms/machines/ma23c/BIOS.ROM",
|
||||||
|
0x000c0000, 262144, 0);
|
||||||
|
|
||||||
|
if (bios_only || !ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
machine_at_common_init_ex(model, 2);
|
||||||
|
|
||||||
|
pci_init(PCI_CONFIG_TYPE_1);
|
||||||
|
pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
||||||
|
pci_register_slot(0x14, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
||||||
|
pci_register_slot(0x12, PCI_CARD_NORMAL, 2, 3, 4, 1);
|
||||||
|
pci_register_slot(0x0C, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
||||||
|
pci_register_slot(0x07, PCI_CARD_SOUTHBRIDGE, 1, 2, 3, 4);
|
||||||
|
pci_register_slot(0x0B, PCI_CARD_VIDEO, 3, 4, 1, 2);
|
||||||
|
device_add(&i430tx_device);
|
||||||
|
device_add(&piix4_device);
|
||||||
|
device_add(&nec_mate_unk_device);
|
||||||
|
device_add(&keyboard_ps2_ami_pci_device);
|
||||||
|
device_add(&fdc37c67x_device);
|
||||||
|
device_add(&intel_flash_bxt_device);
|
||||||
|
spd_register(SPD_TYPE_SDRAM, 0x7, 256);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
machine_at_nupro592_init(const machine_t *model)
|
machine_at_nupro592_init(const machine_t *model)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11997,6 +11997,47 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
|
/* Has a SM(S)C FDC37C67x Super I/O chip with on-chip KBC with Phoenix or
|
||||||
|
AMIKey-2 KBC firmware. */
|
||||||
|
{
|
||||||
|
.name = "[i430TX] NEC Mate NX MA23C",
|
||||||
|
.internal_name = "ma23c",
|
||||||
|
.type = MACHINE_TYPE_SOCKET7,
|
||||||
|
.chipset = MACHINE_CHIPSET_INTEL_430TX,
|
||||||
|
.init = machine_at_ma23c_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 = 60000000,
|
||||||
|
.max_bus = 66666667,
|
||||||
|
.min_voltage = 2700,
|
||||||
|
.max_voltage = 3520,
|
||||||
|
.min_multi = 1.5,
|
||||||
|
.max_multi = 3.0
|
||||||
|
},
|
||||||
|
.bus_flags = MACHINE_PS2_PCI,
|
||||||
|
.flags = MACHINE_IDE_DUAL | MACHINE_APM | MACHINE_ACPI | MACHINE_USB,
|
||||||
|
.ram = {
|
||||||
|
.min = 8192,
|
||||||
|
.max = 786432,
|
||||||
|
.step = 8192
|
||||||
|
},
|
||||||
|
.nvrmask = 255,
|
||||||
|
.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
|
||||||
|
},
|
||||||
/* The BIOS sends KBC command BB and expects it to output a byte, which is AMI KBC behavior.
|
/* The BIOS sends KBC command BB and expects it to output a byte, which is AMI KBC behavior.
|
||||||
A picture shows a VIA VT82C42N KBC though, so it could be a case of that KBC with AMI firmware. */
|
A picture shows a VIA VT82C42N KBC though, so it could be a case of that KBC with AMI firmware. */
|
||||||
{
|
{
|
||||||
@@ -13683,7 +13724,7 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
/* Has a SM(S)C FDC37M60x Super I/O chip with on-chip KBC with Phoenix or
|
/* Has a SM(S)C FDC37C67x Super I/O chip with on-chip KBC with Phoenix or
|
||||||
AMIKey-2 KBC firmware. */
|
AMIKey-2 KBC firmware. */
|
||||||
{
|
{
|
||||||
.name = "[i440LX] NEC Mate NX MA30D/23D",
|
.name = "[i440LX] NEC Mate NX MA30D/23D",
|
||||||
|
|||||||
Reference in New Issue
Block a user