/* * 86Box A hypervisor and IBM PC system emulator that specializes in * running old operating systems and software designed for IBM * PC systems and compatibles from 1981 through fairly recent * system designs based on the PCI bus. * * This file is part of the 86Box distribution. * * Implementation of the UMC HB4 "Super Energy Star Green" PCI Chipset. * * Note: This chipset has no datasheet, everything were done via * reverse engineering the BIOS of various machines using it. * * Note 2: Additional information were also used from all * around the web. * * Authors: Tiseno100, * * Copyright 2021 Tiseno100. */ /* UMC HB4 Configuration Registers Sources & Notes: Cache registers were found at Vogons: https://www.vogons.org/viewtopic.php?f=46&t=68829&start=20 Basic Reverse engineering effort was done personally by me TODO: - APM, SMM, SMRAM registers(Did some early work. Still quite incomplete) - More Appropriate Bitmasking(If it's even possible) Warning: Register documentation may be inaccurate! UMC 8881x: Register 50: Bit 7: Enable L2 Cache Bit 6: Cache Policy (0: Write Thru / 1: Write Back) Bit 5-4 Cache Speed 0 0 Read 3-2-2-2 Write 3T 0 1 Read 3-1-1-1 Write 3T 1 0 Read 2-2-2-2 Write 2T 1 1 Read 2-1-1-1 Write 2T Bit 3 Cache Banks (0: 1 Bank / 1: 2 Banks) Bit 2-1-0 Cache Size 0 0 0 0KB 0 0 1 64KB x-x-x Multiplications of 2(64*2 for 0 1 0) till 2MB Register 51: Bit 7-6 DRAM Read Speed 5-4 DRAM Write Speed 0 0 1 Waits 0 1 1 Waits 1 0 1 Wait 1 1 0 Waits Bit 3 Resource Lock Enable Bit 2 Graphics Adapter (0: VL Bus / 1: PCI Bus) Bit 1 L1 WB Policy (0: WT / 1: WB) Bit 0 L2 Cache Tag Lenght (0: 7 Bits / 1: 8 Bits) Register 52: Bit 7: Host-to-PCI Post Write (0: 1 Wait State / 1: 0 Wait States) Register 54: Bit 7: DC000-DFFFF Bit 6: D8000-DBFFF Bit 5: D4000-D7FFF Bit 4: D0000-D3FFF Bit 3: CC000-CFFFF Bit 2: C8000-CBFFF Bit 1: C0000-C7FFF Bit 0: Reserved Register 55: Bit 7: Enable Shadow Reads For System & Selected Segments Bit 6: Write Protect Enable */ #include #include #include #include #include #include #define HAVE_STDARG_H #include <86box/86box.h> #include "cpu.h" #include <86box/timer.h> #include <86box/io.h> #include <86box/device.h> #include <86box/apm.h> #include <86box/mem.h> #include <86box/pci.h> #include <86box/port_92.h> #include <86box/smram.h> #include <86box/chipset.h> #ifdef ENABLE_HB4_LOG int hb4_do_log = ENABLE_HB4_LOG; static void hb4_log(const char *fmt, ...) { va_list ap; if (hb4_do_log) { va_start(ap, fmt); pclog_ex(fmt, ap); va_end(ap); } } #else #define hb4_log(fmt, ...) #endif /* Shadow RAM Flags */ #define CAN_READ ((dev->pci_conf[0x55] & 0x80) ? MEM_READ_INTERNAL : MEM_READ_EXTANY) #define CAN_WRITE ((dev->pci_conf[0x55] & 0x40) ? MEM_WRITE_DISABLED : MEM_WRITE_INTERNAL) #define DISABLE (MEM_READ_EXTANY | MEM_WRITE_EXTANY) typedef struct hb4_t { apm_t *apm; smram_t *smram; uint8_t pci_conf[256]; /* PCI Registers */ } hb4_t; void hb4_shadow(int cur_addr, hb4_t *dev) { mem_set_mem_state_both(0xc0000, 0x8000, (dev->pci_conf[0x54] & 2) ? (CAN_READ | CAN_WRITE) : DISABLE); for (int i = 2; i < 8; i++) mem_set_mem_state_both(0xc8000 + ((i - 2) << 14), 0x4000, (dev->pci_conf[0x54] & (1 << i)) ? (CAN_READ | CAN_WRITE) : DISABLE); mem_set_mem_state_both(0xe0000, 0x20000, CAN_READ | CAN_WRITE); flushmmucache_nopc(); } static void um8881_write(int func, int addr, uint8_t val, void *priv) { hb4_t *dev = (hb4_t *)priv; hb4_log("UM8881: dev->regs[%02x] = %02x\n", addr, val); if (addr > 3) /* We don't know the RW status of registers but Phoenix writes on some RO registers too*/ switch (addr) { case 0x50: dev->pci_conf[addr] = ((val & 0xf8) | 4); /* Hardcode Cache Size to 512KB */ cpu_cache_ext_enabled = !!(val & 0x80); /* Fixes freezing issues on the HOT-433A*/ cpu_update_waitstates(); break; case 0x54: case 0x55: dev->pci_conf[addr] = val & (!(addr & 1) ? 0xfe : 0xff); hb4_shadow(addr, dev); break; case 0x60: dev->pci_conf[addr] = val & 0x3f; break; case 0x61: dev->pci_conf[addr] = val & 0x0f; break; default: dev->pci_conf[addr] = val; break; } } static uint8_t um8881_read(int func, int addr, void *priv) { hb4_t *dev = (hb4_t *)priv; return dev->pci_conf[addr]; } static void hb4_reset(void *priv) { hb4_t *dev = (hb4_t *)priv; /* Defaults */ dev->pci_conf[0] = 0x60; /* UMC */ dev->pci_conf[1] = 0x10; dev->pci_conf[2] = 0x81; /* 8881x */ dev->pci_conf[3] = 0x88; dev->pci_conf[8] = 1; dev->pci_conf[0x09] = 0x00; dev->pci_conf[0x0a] = 0x00; dev->pci_conf[0x0b] = 0x06; } static void hb4_close(void *priv) { hb4_t *dev = (hb4_t *)priv; //smram_del(dev->smram); free(dev); } static void * hb4_init(const device_t *info) { hb4_t *dev = (hb4_t *)malloc(sizeof(hb4_t)); memset(dev, 0, sizeof(hb4_t)); pci_add_card(PCI_ADD_NORTHBRIDGE, um8881_read, um8881_write, dev); /* Device 10: UMC 8881x */ /* APM */ dev->apm = device_add(&apm_pci_device); /* SMRAM(Needs excessive documentation before we begin SMM implementation) */ //dev->smram = smram_add(); /* Port 92 */ device_add(&port_92_pci_device); hb4_reset(dev); return dev; } const device_t umc_hb4_device = { "UMC HB4(8881F)", DEVICE_PCI, 0x886a, hb4_init, hb4_close, hb4_reset, {NULL}, NULL, NULL, NULL};