New computer? HP Brio 8014 - Help needed

Discussion of development and patch submission.
Post Reply
User avatar
omarsis81
Posts: 945
Joined: Thu 17 Dec, 2015 6:20 pm

New computer? HP Brio 8014 - Help needed

Post by omarsis81 »

I acquired this HP Brio 8014 computer which is 430VX chipset based with a Phoenix BIOS.
I think this might be a good add to PCem since there is no computer with the 430VX chipset.
Is had a nice Brio splash screen ;)

I know Sarah is busy with the recompiler, but is there anyone else who could make a patch?
There is some urgency in this as you can see in the pic some capacitors blew and there is leakage, I fear the PC could stop from working any day soon.

I dumped the BIOS with Uniflash, but I'm not sure if I done it correctly as the BIOS is not directly supported by Uniflash.
Is the BIOS the one in the last pic? It reads LHF R00.12 MX
pic2.jpg
pic2.jpg (50.09 KiB) Viewed 7491 times
pic3.5.jpg
pic3.5.jpg (208.7 KiB) Viewed 7491 times
pic4.jpg
pic4.jpg (149.5 KiB) Viewed 7491 times
User avatar
omarsis81
Posts: 945
Joined: Thu 17 Dec, 2015 6:20 pm

Re: New computer? HP Brio 8014 - Help needed

Post by omarsis81 »

I'm trying to define a new model in model.c but the Intel Southbride PIIX3 is in slot 07h which I think is uncommon. Should I modify one of the lines here? or is it pci.c?

void at_brio_init()
{
at_init();
pci_init(PCI_CONFIG_TYPE_1);
pci_slot(0x11);
pci_slot(0x12);
pci_slot(0x13);
pci_slot(0x14);
i430vx_init();
piix_init(7, 18, 17, 20, 19, i430vx_reset);
fdc37c932fr_init();
device_add(&intel_flash_bxt_device);
}

PCI slot 07 is vendor 8086 (Intel) device 7000 (PIIX3)
User avatar
SarahWalker
Site Admin
Posts: 2054
Joined: Thu 24 Apr, 2014 4:18 pm

Re: New computer? HP Brio 8014 - Help needed

Post by SarahWalker »

Look at the parameters being passed to piix_init()...
Post Reply