Merge pull request #3078 from luennix/master
Add Packard Bell PB810 (without on-board video, for now)
This commit is contained in:
@@ -613,6 +613,7 @@ extern int machine_at_presario4500_init(const machine_t *);
|
|||||||
extern int machine_at_p55va_init(const machine_t *);
|
extern int machine_at_p55va_init(const machine_t *);
|
||||||
extern int machine_at_brio80xx_init(const machine_t *);
|
extern int machine_at_brio80xx_init(const machine_t *);
|
||||||
extern int machine_at_pb680_init(const machine_t *);
|
extern int machine_at_pb680_init(const machine_t *);
|
||||||
|
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 *);
|
||||||
|
|
||||||
|
@@ -35,6 +35,7 @@
|
|||||||
#include <86box/keyboard.h>
|
#include <86box/keyboard.h>
|
||||||
#include <86box/flash.h>
|
#include <86box/flash.h>
|
||||||
#include <86box/sio.h>
|
#include <86box/sio.h>
|
||||||
|
#include <86box/sound.h>
|
||||||
#include <86box/hwm.h>
|
#include <86box/hwm.h>
|
||||||
#include <86box/video.h>
|
#include <86box/video.h>
|
||||||
#include <86box/spd.h>
|
#include <86box/spd.h>
|
||||||
@@ -531,6 +532,38 @@ machine_at_pb680_init(const machine_t *model)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
machine_at_pb810_init(const machine_t *model)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = bios_load_linear("roms/machines/pb810/G400125I.BIN",
|
||||||
|
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(0x13, PCI_CARD_NORMAL, 2, 1, 3, 4);
|
||||||
|
pci_register_slot(0x11, PCI_CARD_NORMAL, 1, 3, 2, 4);
|
||||||
|
pci_register_slot(0x0b, PCI_CARD_NORMAL, 1, 2, 3, 4);
|
||||||
|
pci_register_slot(0x07, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
||||||
|
|
||||||
|
if (sound_card_current[0] == SOUND_INTERNAL)
|
||||||
|
device_add(&cs4237b_device);
|
||||||
|
|
||||||
|
device_add(&i430vx_device);
|
||||||
|
device_add(&piix3_device);
|
||||||
|
device_add(&keyboard_ps2_device);
|
||||||
|
device_add(&fdc37c935_device);
|
||||||
|
device_add(&intel_flash_bxt_device);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
machine_at_mb520n_init(const machine_t *model)
|
machine_at_mb520n_init(const machine_t *model)
|
||||||
{
|
{
|
||||||
|
@@ -9449,6 +9449,43 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
|
/* This machine has Phoenix MultiKey/42i KBC */
|
||||||
|
{
|
||||||
|
.name = "[i430VX] Packard Bell PB810",
|
||||||
|
.internal_name = "pb810",
|
||||||
|
.type = MACHINE_TYPE_SOCKET7,
|
||||||
|
.chipset = MACHINE_CHIPSET_INTEL_430VX,
|
||||||
|
.init = machine_at_pb810_init,
|
||||||
|
.pad = 0,
|
||||||
|
.pad0 = 0,
|
||||||
|
.pad1 = MACHINE_AVAILABLE,
|
||||||
|
.pad2 = 0,
|
||||||
|
.cpu = {
|
||||||
|
.package = CPU_PKG_SOCKET5_7,
|
||||||
|
.block = CPU_BLOCK_NONE,
|
||||||
|
.min_bus = 50000000,
|
||||||
|
.max_bus = 66666667,
|
||||||
|
.min_voltage = 2500,
|
||||||
|
.max_voltage = 3520,
|
||||||
|
.min_multi = 1.5,
|
||||||
|
.max_multi = 3.0
|
||||||
|
},
|
||||||
|
.bus_flags = MACHINE_PS2_PCI,
|
||||||
|
.flags = MACHINE_IDE_DUAL | MACHINE_SOUND,
|
||||||
|
.ram = {
|
||||||
|
.min = 8192,
|
||||||
|
.max = 131072,
|
||||||
|
.step = 8192
|
||||||
|
},
|
||||||
|
.nvrmask = 127,
|
||||||
|
.kbc = KBC_UNKNOWN,
|
||||||
|
.kbc_p1 = 0,
|
||||||
|
.gpio = 0,
|
||||||
|
.device = NULL,
|
||||||
|
.vid_device = NULL,
|
||||||
|
.snd_device = NULL,
|
||||||
|
.net_device = NULL
|
||||||
|
},
|
||||||
/* This has the AMIKey 'H' firmware, possibly AMIKey-2. Photos show it with a BestKey, so it
|
/* This has the AMIKey 'H' firmware, possibly AMIKey-2. Photos show it with a BestKey, so it
|
||||||
likely clones the behavior of AMIKey 'H'. */
|
likely clones the behavior of AMIKey 'H'. */
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user