Sanitize some old chipset code
Simplistic but complex shadow implementations, few corrections and clearups
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
*
|
||||
* Authors: Tiseno100
|
||||
*
|
||||
* Copyright 2020 Tiseno100
|
||||
* Copyright 2021 Tiseno100
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -28,144 +28,125 @@
|
||||
#include <86box/timer.h>
|
||||
#include <86box/io.h>
|
||||
#include <86box/device.h>
|
||||
#include <86box/keyboard.h>
|
||||
#include <86box/mem.h>
|
||||
#include <86box/fdd.h>
|
||||
#include <86box/fdc.h>
|
||||
#include <86box/port_92.h>
|
||||
#include <86box/chipset.h>
|
||||
|
||||
#define disabled_shadow (MEM_READ_EXTANY | MEM_WRITE_EXTANY)
|
||||
#ifdef ENABLE_OPTI283_LOG
|
||||
int opti283_do_log = ENABLE_OPTI283_LOG;
|
||||
static void
|
||||
opti283_log(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
if (opti283_do_log)
|
||||
{
|
||||
va_start(ap, fmt);
|
||||
pclog_ex(fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
}
|
||||
#else
|
||||
#define opti283_log(fmt, ...)
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint8_t index,
|
||||
regs[256];
|
||||
uint8_t index,
|
||||
regs[256];
|
||||
} opti283_t;
|
||||
|
||||
static void opti283_shadow_recalc(opti283_t *dev)
|
||||
{
|
||||
uint32_t base, i;
|
||||
uint32_t shflagsc, shflagsd, shflagse, shflagsf;
|
||||
mem_set_mem_state_both(0xf0000, 0x10000, (dev->regs[0x11] & 0x80) ? (MEM_READ_EXTANY | MEM_WRITE_INTERNAL) : (MEM_READ_INTERNAL | ((dev->regs[0x14] & 0x80) ? MEM_WRITE_INTERNAL : MEM_WRITE_DISABLED)));
|
||||
|
||||
shadowbios = !(dev->regs[0x11] & 0x80);
|
||||
shadowbios_write = (dev->regs[0x11] & 0x80);
|
||||
for (uint32_t i = 0; i < 4; i++)
|
||||
{
|
||||
if (dev->regs[0x11] & 0x40)
|
||||
mem_set_mem_state_both(0xe0000 + (i << 14), 0x4000, (dev->regs[0x12] & (1 << (4 + i))) ? (MEM_READ_INTERNAL | ((dev->regs[0x11] & 4) ? MEM_WRITE_DISABLED : MEM_WRITE_INTERNAL)) : (MEM_READ_EXTANY | MEM_WRITE_EXTANY));
|
||||
mem_set_mem_state_both(0xe0000, 0x10000, MEM_READ_EXTANY | MEM_WRITE_EXTANY);
|
||||
|
||||
if(dev->regs[0x11] & 0x10){
|
||||
shflagsc = MEM_READ_INTERNAL;
|
||||
shflagsc |= (dev->regs[0x11] & 0x08) ? MEM_WRITE_INTERNAL : MEM_WRITE_EXTANY;
|
||||
} else shflagsc = disabled_shadow;
|
||||
|
||||
if(dev->regs[0x11] & 0x20){
|
||||
shflagsd = MEM_READ_INTERNAL;
|
||||
shflagsd |= (dev->regs[0x11] & 0x08) ? MEM_WRITE_INTERNAL : MEM_WRITE_EXTANY;
|
||||
} else shflagsd = disabled_shadow;
|
||||
|
||||
if(dev->regs[0x11] & 0x40){
|
||||
shflagse = MEM_READ_INTERNAL;
|
||||
shflagse |= (dev->regs[0x11] & 0x08) ? MEM_WRITE_INTERNAL : MEM_WRITE_EXTANY;
|
||||
} else shflagse = disabled_shadow;
|
||||
|
||||
if(!(dev->regs[0x11] & 0x80)){
|
||||
shflagsf = MEM_READ_INTERNAL | MEM_WRITE_DISABLED;
|
||||
} else shflagsf = MEM_READ_EXTANY | MEM_WRITE_INTERNAL;
|
||||
|
||||
mem_set_mem_state_both(0xf0000, 0x10000, shflagsf);
|
||||
|
||||
for(i = 4; i < 8; i++){
|
||||
base = 0xc0000 + ((i-4) << 14);
|
||||
mem_set_mem_state_both(base, 0x4000, (dev->regs[0x13] & (1 << i)) ? shflagsc : disabled_shadow);
|
||||
}
|
||||
|
||||
for(i = 0; i < 4; i++){
|
||||
base = 0xd0000 + (i << 14);
|
||||
mem_set_mem_state_both(base, 0x4000, (dev->regs[0x12] & (1 << i)) ? shflagsd : disabled_shadow);
|
||||
}
|
||||
|
||||
for(i = 4; i < 8; i++){
|
||||
base = 0xe0000 + ((i-4) << 14);
|
||||
mem_set_mem_state_both(base, 0x4000, (dev->regs[0x12] & (1 << i)) ? shflagse : disabled_shadow);
|
||||
}
|
||||
if (dev->regs[0x11] & 0x20)
|
||||
mem_set_mem_state_both(0xd0000 + (i << 14), 0x4000, (dev->regs[0x12] & (1 << i)) ? (MEM_READ_INTERNAL | ((dev->regs[0x11] & 2) ? MEM_WRITE_DISABLED : MEM_WRITE_INTERNAL)) : (MEM_READ_EXTANY | MEM_WRITE_EXTANY));
|
||||
else
|
||||
mem_set_mem_state_both(0xd0000, 0x10000, MEM_READ_EXTANY | MEM_WRITE_EXTANY);
|
||||
|
||||
if (dev->regs[0x11] & 0x10)
|
||||
mem_set_mem_state_both(0xc0000 + (i << 14), 0x4000, (dev->regs[0x13] & (1 << (4 + i))) ? (MEM_READ_INTERNAL | ((dev->regs[0x11] & 1) ? MEM_WRITE_DISABLED : MEM_WRITE_INTERNAL)) : (MEM_READ_EXTANY | MEM_WRITE_EXTANY));
|
||||
else
|
||||
mem_set_mem_state_both(0xc0000, 0x10000, MEM_READ_EXTANY | MEM_WRITE_EXTANY);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
opti283_write(uint16_t addr, uint8_t val, void *priv)
|
||||
{
|
||||
opti283_t *dev = (opti283_t *) priv;
|
||||
opti283_t *dev = (opti283_t *)priv;
|
||||
|
||||
switch (addr) {
|
||||
case 0x22:
|
||||
dev->index = val;
|
||||
break;
|
||||
case 0x24:
|
||||
/* pclog("OPTi 283: dev->regs[%02x] = %02x\n", dev->index, val); */
|
||||
dev->regs[dev->index] = val;
|
||||
switch (addr)
|
||||
{
|
||||
case 0x22:
|
||||
dev->index = val;
|
||||
break;
|
||||
case 0x24:
|
||||
opti283_log("OPTi 283: dev->regs[%02x] = %02x\n", dev->index, val);
|
||||
|
||||
switch(dev->index){
|
||||
case 0x10:
|
||||
cpu_update_waitstates();
|
||||
switch (dev->index)
|
||||
{
|
||||
case 0x10:
|
||||
dev->regs[dev->index] = val;
|
||||
break;
|
||||
|
||||
case 0x11:
|
||||
case 0x12:
|
||||
case 0x13:
|
||||
case 0x11:
|
||||
case 0x12:
|
||||
case 0x13:
|
||||
case 0x14:
|
||||
dev->regs[dev->index] = val;
|
||||
opti283_shadow_recalc(dev);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static uint8_t
|
||||
opti283_read(uint16_t addr, void *priv)
|
||||
{
|
||||
uint8_t ret = 0xff;
|
||||
opti283_t *dev = (opti283_t *) priv;
|
||||
|
||||
switch (addr) {
|
||||
case 0x24:
|
||||
ret = dev->regs[dev->index];
|
||||
break;
|
||||
}
|
||||
|
||||
return ret;
|
||||
opti283_t *dev = (opti283_t *)priv;
|
||||
return (addr == 0x24) ? dev->regs[dev->index] : 0xff;
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
opti283_close(void *priv)
|
||||
{
|
||||
opti283_t *dev = (opti283_t *) priv;
|
||||
opti283_t *dev = (opti283_t *)priv;
|
||||
|
||||
free(dev);
|
||||
}
|
||||
|
||||
|
||||
static void *
|
||||
opti283_init(const device_t *info)
|
||||
{
|
||||
opti283_t *dev = (opti283_t *) malloc(sizeof(opti283_t));
|
||||
opti283_t *dev = (opti283_t *)malloc(sizeof(opti283_t));
|
||||
memset(dev, 0, sizeof(opti283_t));
|
||||
|
||||
io_sethandler(0x022, 0x0001, opti283_read, NULL, NULL, opti283_write, NULL, NULL, dev);
|
||||
io_sethandler(0x024, 0x0001, opti283_read, NULL, NULL, opti283_write, NULL, NULL, dev);
|
||||
io_sethandler(0x0022, 0x0001, opti283_read, NULL, NULL, opti283_write, NULL, NULL, dev);
|
||||
io_sethandler(0x0024, 0x0001, opti283_read, NULL, NULL, opti283_write, NULL, NULL, dev);
|
||||
|
||||
dev->regs[0x10] = 0x3f;
|
||||
dev->regs[0x11] = 0xf0;
|
||||
opti283_shadow_recalc(dev);
|
||||
|
||||
|
||||
return dev;
|
||||
}
|
||||
|
||||
|
||||
const device_t opti283_device = {
|
||||
"OPTi 82C283",
|
||||
0,
|
||||
0,
|
||||
opti283_init, opti283_close, NULL,
|
||||
{ NULL }, NULL, NULL,
|
||||
NULL
|
||||
};
|
||||
opti283_init,
|
||||
opti283_close,
|
||||
NULL,
|
||||
{NULL},
|
||||
NULL,
|
||||
NULL,
|
||||
NULL};
|
||||
|
||||
Reference in New Issue
Block a user