Added Maxtium Computer SmartBX
This commit is contained in:
@@ -839,6 +839,7 @@ extern int machine_at_atc7020bxii_init(const machine_t *);
|
|||||||
extern int machine_at_m773_init(const machine_t *);
|
extern int machine_at_m773_init(const machine_t *);
|
||||||
extern int machine_at_ambx133_init(const machine_t *);
|
extern int machine_at_ambx133_init(const machine_t *);
|
||||||
extern int machine_at_awo671r_init(const machine_t *);
|
extern int machine_at_awo671r_init(const machine_t *);
|
||||||
|
extern int machine_at_smartbx_init(const machine_t *);
|
||||||
extern int machine_at_63a1_init(const machine_t *);
|
extern int machine_at_63a1_init(const machine_t *);
|
||||||
extern int machine_at_s370sba_init(const machine_t *);
|
extern int machine_at_s370sba_init(const machine_t *);
|
||||||
extern int machine_at_apas3_init(const machine_t *);
|
extern int machine_at_apas3_init(const machine_t *);
|
||||||
|
|||||||
@@ -402,6 +402,38 @@ machine_at_awo671r_init(const machine_t *model)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
machine_at_smartbx_init(const machine_t *model)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = bios_load_linear("roms/machines/smartbx/sbx107.bin",
|
||||||
|
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(0x07, PCI_CARD_SOUTHBRIDGE, 0, 0, 3, 4);
|
||||||
|
pci_register_slot(0x09, PCI_CARD_NORMAL, 4, 1, 2, 3);
|
||||||
|
pci_register_slot(0x0A, PCI_CARD_NORMAL, 3, 4, 1, 2);
|
||||||
|
pci_register_slot(0x0B, PCI_CARD_NORMAL, 2, 3, 4, 1);
|
||||||
|
pci_register_slot(0x0C, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
||||||
|
pci_register_slot(0x0D, PCI_CARD_NORMAL, 4, 1, 2, 3);
|
||||||
|
pci_register_slot(0x01, PCI_CARD_AGPBRIDGE, 1, 2, 3, 4);
|
||||||
|
device_add(&i440bx_device);
|
||||||
|
device_add(&piix4e_device);
|
||||||
|
device_add(&keyboard_ps2_ami_pci_device);
|
||||||
|
device_add(&w83977ef_device);
|
||||||
|
device_add(&sst_flash_39sf020_device);
|
||||||
|
spd_register(SPD_TYPE_SDRAM, 0x7, 256);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
machine_at_63a1_init(const machine_t *model)
|
machine_at_63a1_init(const machine_t *model)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15758,6 +15758,47 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
|
/* Has a Winbond W83977EF Super I/O chip with on-chip KBC with AMIKey-2 KBC
|
||||||
|
firmware. */
|
||||||
|
{
|
||||||
|
.name = "[i440BX] Maxtium Computer SmartBX",
|
||||||
|
.internal_name = "smartbx",
|
||||||
|
.type = MACHINE_TYPE_SOCKET370,
|
||||||
|
.chipset = MACHINE_CHIPSET_INTEL_440BX,
|
||||||
|
.init = machine_at_smartbx_init,
|
||||||
|
.p1_handler = NULL,
|
||||||
|
.gpio_handler = NULL,
|
||||||
|
.available_flag = MACHINE_AVAILABLE,
|
||||||
|
.gpio_acpi_handler = NULL,
|
||||||
|
.cpu = {
|
||||||
|
.package = CPU_PKG_SOCKET370,
|
||||||
|
.block = CPU_BLOCK_NONE,
|
||||||
|
.min_bus = 66666667,
|
||||||
|
.max_bus = 100000000,
|
||||||
|
.min_voltage = 1300,
|
||||||
|
.max_voltage = 3500,
|
||||||
|
.min_multi = 1.5,
|
||||||
|
.max_multi = 8.0
|
||||||
|
},
|
||||||
|
.bus_flags = MACHINE_PS2_A97 | MACHINE_BUS_USB,
|
||||||
|
.flags = MACHINE_IDE_DUAL | MACHINE_APM | MACHINE_ACPI | MACHINE_USB,
|
||||||
|
.ram = {
|
||||||
|
.min = 8192,
|
||||||
|
.max = 393216,
|
||||||
|
.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
|
||||||
|
},
|
||||||
|
|
||||||
/* 440ZX */
|
/* 440ZX */
|
||||||
/* Has a Winbond W83977TF Super I/O chip with on-chip KBC with AMIKey-2 KBC
|
/* Has a Winbond W83977TF Super I/O chip with on-chip KBC with AMIKey-2 KBC
|
||||||
|
|||||||
Reference in New Issue
Block a user