mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 20:35:32 -07:00
Implement the VLSI SuperCore/Wildcat chipsets (#6247)
* Add the VLSI SuperCore and Wildcat chipsets * Disable logging and minor cleanups * Add the AST Bravo MS P/90 (Rattler) * Add the AT&T Globalyst 620 (NCR 3248) * Add the DEC Celebris 5xx * Add the DFI G586VPM Rev C * Add the Packard Bell PB600 * Fix southbridge PCI Command Register writes * Block the Cyrix 6x86 on incompatible machines * Rename the AT&T Globalyst 620 to include the names of the NCR counterparts * Add the Zeos Pantera Wildcat * Add RZ-1001 variant of the RZ-1000 PCI IDE controller and made the Zeos Pantera Wildcat use it * Add the Micronics M54Si * Update machine_table.c * Re-add new machines to machine table * Update machine inits to use new KBC device names * Use correct machine init method as NVRAM init is done by the chipset code * Use a Phoenix KBC for the AST Bravo since the BIOS calls command D5h to show the KBC revision * Update KBC comments in machine table * Update VLSI 59x chipset comments * Update machine inits for new super I/O code * Reorganize machines and update comments * AST readout device actually has multiple indexed registers * Implement the AST Bravo MS ECP DMA configuration * Implement jumpered/hardwired ECP DMA for the remaining machines * Fix ECP DMA on the AST Bravo MS * Move the DEC Celebris to the Socket 4/5 category * Implement SMI I/O port read, fixes APM init on AT&T, Micronics and Zeos machines * Convert AST readout device to new logging system * Update KBC init to new method * Cleanups
This commit is contained in:
@@ -214,6 +214,10 @@ extern const device_t via_vt8231_device;
|
||||
/* VLSI */
|
||||
extern const device_t vl82c480_device;
|
||||
extern const device_t vl82c486_device;
|
||||
extern const device_t vl82c59x_device;
|
||||
extern const device_t vl82c59x_compaq_device;
|
||||
extern const device_t vl82c59x_wildcat_device;
|
||||
extern const device_t vl82c59x_wildcat_compaq_device;
|
||||
extern const device_t vlsi_scamp_device;
|
||||
|
||||
/* WD */
|
||||
@@ -228,6 +232,10 @@ extern const device_t nec_mate_unk_device;
|
||||
|
||||
extern const device_t phoenix_486_jumper_device;
|
||||
extern const device_t phoenix_486_jumper_pci_device;
|
||||
extern const device_t phoenix_486_jumper_pci_pb600_device;
|
||||
|
||||
extern const device_t ast_readout_device;
|
||||
extern const device_t ast_nvr_device;
|
||||
|
||||
extern const device_t radisys_config_device;
|
||||
|
||||
|
||||
@@ -76,6 +76,7 @@ extern const device_t ide_cmd640_pci_device; /* CMD PCI-640B
|
||||
extern const device_t ide_cmd640_pci_legacy_only_device; /* CMD PCI-640B PCI (Legacy Mode Only) */
|
||||
extern const device_t ide_cmd640_pci_single_channel_device; /* CMD PCI-640B PCI (Only primary channel) */
|
||||
extern const device_t ide_cmd640_pci_single_channel_sec_device; /* CMD PCI-640B PCI (Only secondary channel) */
|
||||
extern const device_t ide_cmd640_pci_single_channel_legacy_only_device; /* CMD PCI-640B PCI (Legacy Mode Only/Only primary channel) */
|
||||
extern const device_t ide_cmd646_device; /* CMD PCI-646 */
|
||||
extern const device_t ide_cmd646_legacy_only_device; /* CMD PCI-646 (Legacy Mode Only) */
|
||||
extern const device_t ide_cmd646_single_channel_device; /* CMD PCI-646 (Only primary channel) */
|
||||
@@ -89,6 +90,7 @@ extern const device_t ide_opti611_vlb_sec_device; /* OPTi 82c611/6
|
||||
|
||||
extern const device_t ide_rz1000_pci_device; /* PC Technology RZ-1000 PCI */
|
||||
extern const device_t ide_rz1000_pci_single_channel_device; /* PC Technology RZ-1000 PCI (Only primary channel) */
|
||||
extern const device_t ide_rz1001_pci_device; /* PC Technology RZ-1001 PCI */
|
||||
|
||||
extern const device_t ide_um8673f_device; /* UMC UM8673F */
|
||||
extern const device_t ide_um8886af_device; /* UMC UM8886AF */
|
||||
|
||||
@@ -301,6 +301,8 @@ enum {
|
||||
MACHINE_CHIPSET_VLSI_VL82C480,
|
||||
MACHINE_CHIPSET_VLSI_VL82C481,
|
||||
MACHINE_CHIPSET_VLSI_VL82C486,
|
||||
MACHINE_CHIPSET_VLSI_SUPERCORE,
|
||||
MACHINE_CHIPSET_VLSI_WILDCAT,
|
||||
MACHINE_CHIPSET_WD76C10,
|
||||
MACHINE_CHIPSET_ZYMOS_POACH,
|
||||
MACHINE_CHIPSET_MAX
|
||||
@@ -890,6 +892,9 @@ extern int machine_at_ecs50x_init(const machine_t *);
|
||||
/* OPTi 597 */
|
||||
extern int machine_at_pci56001_init(const machine_t *);
|
||||
|
||||
/* VLSI SuperCore */
|
||||
extern int machine_at_celebris5xx_init(const machine_t *);
|
||||
|
||||
/* m_at_socket5.c */
|
||||
/* i430NX */
|
||||
extern int machine_at_p54np4_init(const machine_t *);
|
||||
@@ -930,6 +935,15 @@ extern int machine_at_torino_init(const machine_t *);
|
||||
/* UMC 889x */
|
||||
extern int machine_at_hot539_init(const machine_t *);
|
||||
|
||||
/* VLSI SuperCore */
|
||||
extern int machine_at_bravoms586_init(const machine_t *);
|
||||
extern int machine_at_g586vpmc_init(const machine_t *);
|
||||
extern int machine_at_m54si_init(const machine_t *);
|
||||
extern int machine_at_pb600_init(const machine_t *);
|
||||
|
||||
/* VLSI Wildcat */
|
||||
extern int machine_at_globalyst620_init(const machine_t *);
|
||||
|
||||
/* m_at_socket7_3v.c */
|
||||
/* i430FX */
|
||||
#ifdef EMU_DEVICE_H
|
||||
@@ -976,6 +990,9 @@ extern int machine_at_ap5s_init(const machine_t *);
|
||||
extern int machine_at_pc140_6260_init(const machine_t *);
|
||||
extern int machine_at_ms5124_init(const machine_t *);
|
||||
|
||||
/* VLSI Wildcat */
|
||||
extern int machine_at_zeoswildcat_init(const machine_t *);
|
||||
|
||||
/* m_at_socket7.c */
|
||||
/* i430HX */
|
||||
extern int machine_at_acerm3a_init(const machine_t *);
|
||||
|
||||
Reference in New Issue
Block a user