Bunch of improvements in the device, memory and MMU handling. Re-worked the NEAT 286 chipset (ported from VARCem). Re-worked the ATI 28800 a bit, added Sierra SC1502x ramdac to VGA Wonder XL (Compaq) since it supports such. Top 384K memory handling improvements (256K top memory too) Added MCA version of MPU-401 (not tested much, however). Re-worked the SCAT 286 chipset.
972 lines
22 KiB
C
972 lines
22 KiB
C
/*
|
|
* VARCem Virtual ARchaeological Computer EMulator.
|
|
* An emulator of (mostly) x86-based PC systems and devices,
|
|
* using the ISA,EISA,VLB,MCA and PCI system buses, roughly
|
|
* spanning the era between 1981 and 1995.
|
|
*
|
|
* This file is part of the VARCem Project.
|
|
*
|
|
* Implementation of a memory expansion board for the ISA Bus.
|
|
*
|
|
* Although modern systems use direct-connect local buses to
|
|
* connect the CPU with its memory, originally the main system
|
|
* bus(es) were used for that. Memory expension cards could add
|
|
* memory to the system through the ISA bus, using a variety of
|
|
* techniques.
|
|
*
|
|
* The majority of these boards could provide some (additional)
|
|
* conventional (low) memory, extended (high) memory on 80286
|
|
* and higher systems, as well as EMS bank-switched memory.
|
|
*
|
|
* This implementation uses the LIM 3.2 specifications for EMS.
|
|
*
|
|
* With the EMS method, the system's standard memory is expanded
|
|
* by means of bank-switching. One or more 'frames' in the upper
|
|
* memory area (640K-1024K) are used as viewports into an array
|
|
* of RAM pages numbered 0 to N. Each page is defined to be 16KB
|
|
* in size, so, for a 1024KB board, 64 such pages are available.
|
|
* I/O control registers are used to set up the mappings. More
|
|
* modern boards even have multiple 'copies' of those registers,
|
|
* which can be switched very fast, to allow for multitasking.
|
|
*
|
|
* TODO: The EV159 is supposed to support 16b EMS transfers, but the
|
|
* EMM.sys driver for it doesn't seem to want to do that..
|
|
*
|
|
* Version: @(#)isamem.c 1.0.1 2018/08/18
|
|
*
|
|
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
|
*
|
|
* Copyright 2018 Fred N. van Kempen.
|
|
*
|
|
* Redistribution and use in source and binary forms, with
|
|
* or without modification, are permitted provided that the
|
|
* following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the entire
|
|
* above notice, this list of conditions and the following
|
|
* disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer in the documentation and/or other
|
|
* materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the copyright holder nor the names
|
|
* of its contributors may be used to endorse or promote
|
|
* products derived from this software without specific
|
|
* prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
#include "86box.h"
|
|
#include "cpu/cpu.h"
|
|
#include "machine/machine.h"
|
|
#include "io.h"
|
|
#include "mem.h"
|
|
#include "device.h"
|
|
#include "ui.h"
|
|
#include "plat.h"
|
|
#include "isamem.h"
|
|
|
|
|
|
#define RAM_TOPMEM (640 << 10) /* end of low memory */
|
|
#define RAM_UMAMEM (384 << 10) /* upper memory block */
|
|
#define RAM_EXTMEM (1024 << 10) /* start of high memory */
|
|
|
|
#define EMS_MAXSIZE (2048 << 10) /* max EMS memory size */
|
|
#define EMS_PGSIZE (16 << 10) /* one page is this big */
|
|
#define EMS_MAXPAGE 4 /* number of viewport pages */
|
|
|
|
|
|
typedef struct {
|
|
int8_t enabled; /* 1=ENABLED */
|
|
uint8_t page; /* page# in EMS RAM */
|
|
uint8_t frame; /* (varies with board) */
|
|
char pad;
|
|
uint8_t *addr; /* start addr in EMS RAM */
|
|
mem_mapping_t mapping; /* mapping entry for page */
|
|
} emsreg_t;
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
uint8_t board : 6, /* board type */
|
|
instance : 2; /* device instance */
|
|
|
|
uint8_t flags;
|
|
#define FLAG_CONFIG 0x01 /* card is configured */
|
|
#define FLAG_WIDE 0x10 /* card uses 16b mode */
|
|
#define FLAG_FAST 0x20 /* fast (<= 120ns) chips */
|
|
#define FLAG_EMS 0x40 /* card has EMS mode enabled */
|
|
|
|
uint16_t total_size; /* configured size in KB */
|
|
uint32_t base_addr, /* configured I/O address */
|
|
start_addr, /* configured memory start */
|
|
frame_addr; /* configured frame address */
|
|
|
|
uint16_t ems_size, /* EMS size in KB */
|
|
ems_pages; /* EMS size in pages */
|
|
uint32_t ems_start; /* start of EMS in RAM */
|
|
|
|
uint8_t *ram; /* allocated RAM buffer */
|
|
|
|
mem_mapping_t low_mapping; /* mapping for low mem */
|
|
mem_mapping_t high_mapping; /* mapping for high mem */
|
|
|
|
emsreg_t ems[EMS_MAXPAGE]; /* EMS controller registers */
|
|
} memdev_t;
|
|
|
|
/* Read one byte from onboard RAM. */
|
|
static uint8_t
|
|
ram_readb(uint32_t addr, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
uint8_t ret = 0xff;
|
|
|
|
/* Grab the data. */
|
|
ret = *(uint8_t *)(dev->ram + (addr - map->base));
|
|
|
|
return(ret);
|
|
}
|
|
|
|
|
|
/* Read one word from onboard RAM. */
|
|
static uint16_t
|
|
ram_readw(uint32_t addr, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
uint16_t ret = 0xffff;
|
|
|
|
/* Grab the data. */
|
|
ret = *(uint16_t *)(dev->ram + (addr - map->base));
|
|
|
|
return(ret);
|
|
}
|
|
|
|
|
|
/* Write one byte to onboard RAM. */
|
|
static void
|
|
ram_writeb(uint32_t addr, uint8_t val, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
|
|
/* Write the data. */
|
|
*(uint8_t *)(dev->ram + (addr - map->base)) = val;
|
|
}
|
|
|
|
|
|
/* Write one word to onboard RAM. */
|
|
static void
|
|
ram_writew(uint32_t addr, uint16_t val, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
|
|
/* Write the data. */
|
|
*(uint16_t *)(dev->ram + (addr - map->base)) = val;
|
|
}
|
|
|
|
|
|
/* Read one byte from onboard paged RAM. */
|
|
static uint8_t
|
|
ems_readb(uint32_t addr, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
uint8_t ret = 0xff;
|
|
int vpage;
|
|
|
|
/* Get the viewport page number. */
|
|
vpage = ((addr & 0xffff) / EMS_PGSIZE);
|
|
|
|
/* Grab the data. */
|
|
ret = *(uint8_t *)(dev->ems[vpage].addr + (addr - map->base));
|
|
|
|
return(ret);
|
|
}
|
|
|
|
|
|
/* Read one word from onboard paged RAM. */
|
|
static uint16_t
|
|
ems_readw(uint32_t addr, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
uint16_t ret = 0xffff;
|
|
int vpage;
|
|
|
|
/* Get the viewport page number. */
|
|
vpage = ((addr & 0xffff) / EMS_PGSIZE);
|
|
|
|
/* Grab the data. */
|
|
ret = *(uint16_t *)(dev->ems[vpage].addr + (addr - map->base));
|
|
|
|
return(ret);
|
|
}
|
|
|
|
|
|
/* Write one byte to onboard paged RAM. */
|
|
static void
|
|
ems_writeb(uint32_t addr, uint8_t val, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
int vpage;
|
|
|
|
/* Get the viewport page number. */
|
|
vpage = ((addr & 0xffff) / EMS_PGSIZE);
|
|
|
|
/* Write the data. */
|
|
*(uint8_t *)(dev->ems[vpage].addr + (addr - map->base)) = val;
|
|
}
|
|
|
|
|
|
/* Write one word to onboard paged RAM. */
|
|
static void
|
|
ems_writew(uint32_t addr, uint16_t val, void *priv)
|
|
{
|
|
mem_mapping_t *map = (mem_mapping_t *)priv;
|
|
memdev_t *dev = (memdev_t *)map->dev;
|
|
int vpage;
|
|
|
|
/* Get the viewport page number. */
|
|
vpage = ((addr & 0xffff) / EMS_PGSIZE);
|
|
|
|
/* Write the data. */
|
|
*(uint16_t *)(dev->ems[vpage].addr + (addr - map->base)) = val;
|
|
}
|
|
|
|
|
|
/* Handle a READ operation from one of our registers. */
|
|
static uint8_t
|
|
ems_read(uint16_t port, void *priv)
|
|
{
|
|
memdev_t *dev = (memdev_t *)priv;
|
|
uint8_t ret = 0xff;
|
|
int vpage;
|
|
|
|
/* Get the viewport page number. */
|
|
vpage = (port / EMS_PGSIZE);
|
|
|
|
switch(port & 0x02ff) {
|
|
case 0x0208: /* page number register */
|
|
case 0x0218:
|
|
case 0x0258:
|
|
case 0x0268:
|
|
case 0x02a8:
|
|
case 0x02b8:
|
|
case 0x02e8:
|
|
ret = dev->ems[vpage].page;
|
|
if (dev->ems[vpage].enabled)
|
|
ret |= 0x80;
|
|
break;
|
|
}
|
|
|
|
#if 0
|
|
pclog("ISAMEM: read(%04x) = %02x)\n", port, ret);
|
|
#endif
|
|
|
|
return(ret);
|
|
}
|
|
|
|
|
|
/* Handle a WRITE operation to one of our registers. */
|
|
static void
|
|
ems_write(uint16_t port, uint8_t val, void *priv)
|
|
{
|
|
memdev_t *dev = (memdev_t *)priv;
|
|
int vpage;
|
|
|
|
/* Get the viewport page number. */
|
|
vpage = (port / EMS_PGSIZE);
|
|
|
|
#if 0
|
|
pclog("ISAMEM: write(%04x, %02x) page=%d\n", port, val, vpage);
|
|
#endif
|
|
|
|
switch(port & 0x02ff) {
|
|
case 0x0208: /* page mapping registers */
|
|
case 0x0218:
|
|
case 0x0258:
|
|
case 0x0268:
|
|
case 0x02a8:
|
|
case 0x02b8:
|
|
case 0x02e8:
|
|
/* Set the page number. */
|
|
dev->ems[vpage].enabled = (val & 0x80);
|
|
dev->ems[vpage].page = (val & 0x7f);
|
|
|
|
/* Make sure we can do that.. */
|
|
if (dev->flags & FLAG_CONFIG) {
|
|
if (dev->ems[vpage].page < dev->ems_pages) {
|
|
/* Pre-calculate the page address in EMS RAM. */
|
|
dev->ems[vpage].addr = dev->ram + dev->ems_start + ((val & 0x7f) * EMS_PGSIZE);
|
|
} else {
|
|
/* That page does not exist. */
|
|
dev->ems[vpage].enabled = 0;
|
|
}
|
|
|
|
if (dev->ems[vpage].enabled) {
|
|
/* Update the EMS RAM address for this page. */
|
|
mem_mapping_set_exec(&dev->ems[vpage].mapping,
|
|
dev->ems[vpage].addr);
|
|
|
|
/* Enable this page. */
|
|
mem_mapping_enable(&dev->ems[vpage].mapping);
|
|
} else {
|
|
/* Disable this page. */
|
|
mem_mapping_disable(&dev->ems[vpage].mapping);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 0x0209: /* page frame registers */
|
|
case 0x0219:
|
|
case 0x0259:
|
|
case 0x0269:
|
|
case 0x02a9:
|
|
case 0x02b9:
|
|
case 0x02e9:
|
|
/*
|
|
* The EV-159 EMM driver configures the frame address
|
|
* by setting bits in these registers. The information
|
|
* in their manual is unclear, but here is what was
|
|
* found out by repeatedly changing EMM's config:
|
|
*
|
|
* 00 04 08 Address
|
|
* -----------------
|
|
* 80 c0 e0 E0000
|
|
*/
|
|
|
|
dev->ems[vpage].frame = val;
|
|
if (val)
|
|
dev->flags |= FLAG_CONFIG;
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/* Initialize the device for use. */
|
|
static void *
|
|
isamem_init(const device_t *info)
|
|
{
|
|
memdev_t *dev;
|
|
uint32_t k, t;
|
|
uint32_t addr;
|
|
uint32_t tot;
|
|
uint8_t *ptr;
|
|
int i;
|
|
|
|
/* Find our device and create an instance. */
|
|
dev = (memdev_t *)malloc(sizeof(memdev_t));
|
|
memset(dev, 0x00, sizeof(memdev_t));
|
|
dev->name = info->name;
|
|
dev->board = info->local;
|
|
|
|
/* Do per-board initialization. */
|
|
tot = 0;
|
|
switch(dev->board) {
|
|
case 0: /* IBM PC/XT Memory Expansion Card */
|
|
dev->total_size = device_get_config_int("size");
|
|
dev->start_addr = device_get_config_int("start");
|
|
tot = dev->total_size;
|
|
break;
|
|
|
|
case 1: /* IBM PC/AT Memory Expansion Card */
|
|
dev->total_size = device_get_config_int("size");
|
|
dev->start_addr = device_get_config_int("start");
|
|
tot = dev->total_size;
|
|
dev->flags |= FLAG_WIDE;
|
|
break;
|
|
|
|
case 10: /* Everex EV-159 RAM 3000 */
|
|
dev->base_addr = device_get_config_hex16("base");
|
|
dev->total_size = device_get_config_int("size");
|
|
dev->start_addr = device_get_config_int("start");
|
|
tot = device_get_config_int("length");
|
|
if (!!device_get_config_int("width"))
|
|
dev->flags |= FLAG_WIDE;
|
|
if (!!device_get_config_int("speed"))
|
|
dev->flags |= FLAG_FAST;
|
|
if (!!device_get_config_int("ems"))
|
|
dev->flags |= FLAG_EMS;
|
|
dev->frame_addr = 0xE0000;
|
|
break;
|
|
|
|
case 11:
|
|
dev->base_addr = device_get_config_hex16("base");
|
|
dev->total_size = device_get_config_int("size");
|
|
dev->start_addr = device_get_config_int("start");
|
|
dev->frame_addr = device_get_config_hex20("frame");
|
|
if (!!device_get_config_int("width"))
|
|
dev->flags |= FLAG_WIDE;
|
|
if (!!device_get_config_int("speed"))
|
|
dev->flags |= FLAG_FAST;
|
|
break;
|
|
}
|
|
|
|
/* Fix up the memory start address. */
|
|
dev->start_addr <<= 10;
|
|
|
|
/* Say hello! */
|
|
pclog("ISAMEM: %s (%iKB", info->name, dev->total_size);
|
|
if (dev->total_size != tot) pclog(", %iKB for RAM", tot);
|
|
if (dev->flags & FLAG_FAST) pclog(", FAST");
|
|
if (dev->flags & FLAG_WIDE) pclog(", 16BIT");
|
|
pclog(")\n");
|
|
|
|
/* Force (back to) 8-bit bus if needed. */
|
|
if (AT) {
|
|
if (! cpu_16bitbus)
|
|
pclog("ISAMEM: *WARNING* this board will slow down your PC!\n");
|
|
} else {
|
|
pclog("ISAMEM: not AT+ system, forcing 8-bit mode!\n");
|
|
dev->flags &= ~FLAG_WIDE;
|
|
}
|
|
|
|
/* Allocate and initialize our RAM. */
|
|
k = dev->total_size << 10;
|
|
dev->ram = (uint8_t *)malloc(k);
|
|
memset(dev->ram, 0x00, k);
|
|
ptr = dev->ram;
|
|
|
|
/*
|
|
* The 'Memory Start Address' switch indicates at which address
|
|
* we should start adding memory. No memory is added if it is
|
|
* set to 0.
|
|
*/
|
|
tot <<= 10;
|
|
addr = dev->start_addr;
|
|
if (addr > 0 && tot > 0) {
|
|
/* Adjust K for the RAM we will use. */
|
|
k -= tot;
|
|
|
|
/*
|
|
* First, see if we have to expand the conventional
|
|
* (low) memory area. This can extend up to 640KB,
|
|
* so check this first.
|
|
*/
|
|
t = (addr < RAM_TOPMEM) ? RAM_TOPMEM - addr : 0;
|
|
if (t > 0) {
|
|
/*
|
|
* We need T bytes to extend that area.
|
|
*
|
|
* If the board doesn't have that much, grab
|
|
* as much as we can.
|
|
*/
|
|
if (t > tot)
|
|
t = tot;
|
|
pclog("ISAMEM: RAM at %05iKB (%iKB)\n", addr>>10, t>>10);
|
|
|
|
/* Create, initialize and enable the low-memory mapping. */
|
|
mem_mapping_add(&dev->low_mapping, addr, t,
|
|
ram_readb,
|
|
(dev->flags&FLAG_WIDE) ? ram_readw : NULL,
|
|
NULL,
|
|
ram_writeb,
|
|
(dev->flags&FLAG_WIDE) ? ram_writew : NULL,
|
|
NULL,
|
|
ptr, MEM_MAPPING_EXTERNAL, &dev->low_mapping);
|
|
mem_mapping_set_dev(&dev->low_mapping, dev);
|
|
|
|
/* Tell the memory system this is external RAM. */
|
|
mem_set_mem_state(addr, t,
|
|
MEM_READ_EXTERNAL | MEM_WRITE_EXTERNAL);
|
|
|
|
/* Update pointers. */
|
|
ptr += t;
|
|
tot -= t;
|
|
addr += t;
|
|
}
|
|
|
|
/* Skip to high memory if needed. */
|
|
if ((addr == RAM_TOPMEM) && (tot >= RAM_UMAMEM)) {
|
|
/*
|
|
* We have more RAM available, but we are at the
|
|
* top of conventional RAM. So, the next 384K are
|
|
* skipped, and placed into different mappings so
|
|
* they can be re-mapped later.
|
|
*/
|
|
t = RAM_UMAMEM; /* 384KB */
|
|
|
|
pclog("ISAMEM: RAM at %05iKB (%iKB)\n", addr>>10, t>>10);
|
|
|
|
/* Update and enable the remap. */
|
|
mem_mapping_del(&ram_remapped_mapping);
|
|
mem_mapping_add(&ram_remapped_mapping,
|
|
addr + tot, t,
|
|
ram_readb, ram_readw, NULL,
|
|
ram_writeb, ram_writew, NULL,
|
|
ptr, MEM_MAPPING_EXTERNAL,
|
|
&ram_remapped_mapping);
|
|
mem_mapping_set_exec(&ram_remapped_mapping, ptr);
|
|
mem_mapping_set_dev(&ram_remapped_mapping, dev);
|
|
mem_mapping_disable(&ram_remapped_mapping);
|
|
|
|
/* Tell the memory system this is external RAM. */
|
|
mem_set_mem_state(addr + tot, t,
|
|
MEM_READ_EXTERNAL | MEM_WRITE_EXTERNAL);
|
|
|
|
/* Update pointers. */
|
|
ptr += t;
|
|
tot -= t;
|
|
addr += t;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Next, on systems that support it (80286 and up), we can add
|
|
* (some of) our RAM to the system as Extended Memory, that is,
|
|
* memory located above 1MB. This memory cannot be addressed in
|
|
* real mode (so, not by DOS, for example) but it can be used in
|
|
* protected mode.
|
|
*/
|
|
if (AT && addr > 0 && tot > 0) {
|
|
t = tot;
|
|
pclog("ISAMEM: RAM at %05iKB (%iKB)\n", addr>>10, t>>10);
|
|
|
|
/* Create, initialize and enable the high-memory mapping. */
|
|
mem_mapping_add(&dev->high_mapping, addr, t,
|
|
ram_readb, ram_readw, NULL,
|
|
ram_writeb, ram_writew, NULL,
|
|
ptr, MEM_MAPPING_EXTERNAL, &dev->high_mapping);
|
|
mem_mapping_set_dev(&dev->high_mapping, dev);
|
|
|
|
/* Tell the memory system this is external RAM. */
|
|
mem_set_mem_state(addr, t, MEM_READ_EXTERNAL | MEM_WRITE_EXTERNAL);
|
|
|
|
/* Update pointers. */
|
|
ptr += t;
|
|
tot -= t;
|
|
addr += t;
|
|
}
|
|
|
|
/* If EMS is enabled, use the remainder for EMS. */
|
|
if (dev->flags & FLAG_EMS) {
|
|
/* EMS 3.2 cannot have more than 2048KB per board. */
|
|
t = k;
|
|
if (t > EMS_MAXSIZE)
|
|
t = EMS_MAXSIZE;
|
|
|
|
/* Set up where EMS begins in local RAM, and how much we have. */
|
|
dev->ems_start = ptr - dev->ram;
|
|
dev->ems_size = t >> 10;
|
|
dev->ems_pages = t / EMS_PGSIZE;
|
|
pclog("ISAMEM: EMS enabled, I/O=%04xH, %iKB (%i pages)",
|
|
dev->base_addr, dev->ems_size, dev->ems_pages);
|
|
if (dev->frame_addr > 0)
|
|
pclog(", Frame=%05XH", dev->frame_addr);
|
|
pclog("\n");
|
|
|
|
/*
|
|
* For each supported page (we can have a maximum of 4),
|
|
* create, initialize and disable the mappings, and set
|
|
* up the I/O control handler.
|
|
*/
|
|
for (i = 0; i < EMS_MAXPAGE; i++) {
|
|
/* Create and initialize a page mapping. */
|
|
mem_mapping_add(&dev->ems[i].mapping,
|
|
dev->frame_addr + (EMS_PGSIZE*i), EMS_PGSIZE,
|
|
ems_readb,
|
|
(dev->flags&FLAG_WIDE) ? ems_readw : NULL,
|
|
NULL,
|
|
ems_writeb,
|
|
(dev->flags&FLAG_WIDE) ? ems_writew : NULL,
|
|
NULL,
|
|
ptr, MEM_MAPPING_EXTERNAL,
|
|
&dev->ems[i].mapping);
|
|
mem_mapping_set_dev(&dev->ems[i].mapping, dev);
|
|
|
|
/* For now, disable it. */
|
|
mem_mapping_disable(&dev->ems[i].mapping);
|
|
|
|
/* Set up an I/O port handler. */
|
|
io_sethandler(dev->base_addr + (EMS_PGSIZE*i), 2,
|
|
ems_read,NULL,NULL, ems_write,NULL,NULL, dev);
|
|
}
|
|
}
|
|
|
|
/* Just so its not NULL. */
|
|
return((void *)dev);
|
|
}
|
|
|
|
|
|
/* Remove the device from the system. */
|
|
static void
|
|
isamem_close(void *priv)
|
|
{
|
|
memdev_t *dev = (memdev_t *)priv;
|
|
int i;
|
|
|
|
if (dev->flags & FLAG_EMS) {
|
|
for (i = 0; i < EMS_MAXPAGE; i++) {
|
|
io_removehandler(dev->base_addr + (EMS_PGSIZE*i), 2,
|
|
ems_read,NULL,NULL, ems_write,NULL,NULL, dev);
|
|
|
|
}
|
|
}
|
|
|
|
if (dev->ram != NULL)
|
|
free(dev->ram);
|
|
|
|
if (dev != NULL)
|
|
free(dev);
|
|
}
|
|
|
|
|
|
static const device_config_t ibmxt_config[] =
|
|
{
|
|
{
|
|
"size", "Memory Size", CONFIG_SPINNER, "", 128,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 256, 16 }
|
|
},
|
|
{
|
|
"start", "Start Address", CONFIG_SPINNER, "", 256,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 640-64, 64 }
|
|
},
|
|
{
|
|
"", "", -1
|
|
}
|
|
};
|
|
|
|
static const device_t ibmxt_device = {
|
|
"IBM PC/XT Memory Expansion",
|
|
DEVICE_ISA,
|
|
0,
|
|
isamem_init,
|
|
isamem_close,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
ibmxt_config
|
|
};
|
|
|
|
|
|
static const device_config_t ibmat_config[] =
|
|
{
|
|
{
|
|
"size", "Memory Size", CONFIG_SPINNER, "", 512,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 4096, 512 }
|
|
},
|
|
{
|
|
"start", "Start Address", CONFIG_SPINNER, "", 512,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 16128, 128 }
|
|
},
|
|
{
|
|
"", "", -1
|
|
}
|
|
};
|
|
|
|
static const device_t ibmat_device = {
|
|
"IBM PC/AT Memory Expansion",
|
|
DEVICE_ISA,
|
|
1,
|
|
isamem_init, isamem_close, NULL,
|
|
NULL, NULL, NULL,
|
|
ibmat_config
|
|
};
|
|
|
|
|
|
static const device_config_t ev159_config[] =
|
|
{
|
|
{
|
|
"size", "Memory Size", CONFIG_SPINNER, "", 512,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 3072, 512 }
|
|
},
|
|
{
|
|
"start", "Start Address", CONFIG_SPINNER, "", 0,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 16128, 128 }
|
|
},
|
|
{
|
|
"length", "Contiguous Size", CONFIG_SPINNER, "", 0,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 16384, 128 }
|
|
},
|
|
{
|
|
"width", "I/O Width", CONFIG_SELECTION, "", 0,
|
|
{
|
|
{
|
|
"8-bit", 0
|
|
},
|
|
{
|
|
"16-bit", 1
|
|
},
|
|
{
|
|
""
|
|
}
|
|
},
|
|
},
|
|
{
|
|
"speed", "Transfer Speed", CONFIG_SELECTION, "", 0,
|
|
{
|
|
{
|
|
"Standard (150ns)", 0
|
|
},
|
|
{
|
|
"High-Speed (120ns)", 1
|
|
},
|
|
{
|
|
""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"ems", "EMS mode", CONFIG_SELECTION, "", 0,
|
|
{
|
|
{
|
|
"Disabled", 0
|
|
},
|
|
{
|
|
"Enabled", 1
|
|
},
|
|
{
|
|
""
|
|
}
|
|
},
|
|
},
|
|
{
|
|
"base", "Address", CONFIG_HEX16, "", 0x0258,
|
|
{
|
|
{
|
|
"208H", 0x0208
|
|
},
|
|
{
|
|
"218H", 0x0218
|
|
},
|
|
{
|
|
"258H", 0x0258
|
|
},
|
|
{
|
|
"268H", 0x0268
|
|
},
|
|
{
|
|
"2A8H", 0x02A8
|
|
},
|
|
{
|
|
"2B8H", 0x02B8
|
|
},
|
|
{
|
|
"2E8H", 0x02E8
|
|
},
|
|
{
|
|
""
|
|
}
|
|
},
|
|
},
|
|
{
|
|
"", "", -1
|
|
}
|
|
};
|
|
|
|
static const device_t ev159_device = {
|
|
"Everex EV-159 RAM 3000 Deluxe",
|
|
DEVICE_ISA,
|
|
10,
|
|
isamem_init, isamem_close, NULL,
|
|
NULL, NULL, NULL,
|
|
ev159_config
|
|
};
|
|
|
|
|
|
#ifdef USE_ISAMEM_RAMPAGE
|
|
static const device_config_t rampage_config[] =
|
|
{
|
|
{
|
|
"base", "Address", CONFIG_HEX16, "", 0x0258,
|
|
{
|
|
{
|
|
"208H", 0x0208
|
|
},
|
|
{
|
|
"218H", 0x0218
|
|
},
|
|
{
|
|
"258H", 0x0258
|
|
},
|
|
{
|
|
"268H", 0x0268
|
|
},
|
|
{
|
|
"2A8H", 0x02A8
|
|
},
|
|
{
|
|
"2B8H", 0x02B8
|
|
},
|
|
{
|
|
"2E8H", 0x02E8
|
|
},
|
|
{
|
|
""
|
|
}
|
|
},
|
|
},
|
|
{
|
|
"frame", "Frame Address", CONFIG_HEX20, "", 0,
|
|
{
|
|
{
|
|
"Disabled", 0x00000
|
|
},
|
|
{
|
|
"C000H", 0xC0000
|
|
},
|
|
{
|
|
"D000H", 0xD0000
|
|
},
|
|
{
|
|
"E000H", 0xE0000
|
|
},
|
|
{
|
|
""
|
|
}
|
|
},
|
|
},
|
|
{
|
|
"width", "I/O Width", CONFIG_SELECTION, "", 8,
|
|
{
|
|
{
|
|
"8-bit", 8
|
|
},
|
|
{
|
|
"16-bit", 16
|
|
},
|
|
{
|
|
""
|
|
}
|
|
},
|
|
},
|
|
{
|
|
"speed", "Transfer Speed", CONFIG_SELECTION, "", 0,
|
|
{
|
|
{
|
|
"Standard", 0
|
|
},
|
|
{
|
|
"High-Speed", 1
|
|
},
|
|
{
|
|
""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"size", "Memory Size", CONFIG_SPINNER, "", 128,
|
|
{ { 0 } },
|
|
{ { 0 } },
|
|
{ 0, 8192, 128 }
|
|
},
|
|
{
|
|
"", "", -1
|
|
}
|
|
};
|
|
|
|
static const device_t isamem_rampage_device = {
|
|
"AST RAMpage/XT",
|
|
DEVICE_ISA,
|
|
11,
|
|
isamem_init, isamem_close, NULL,
|
|
NULL, NULL, NULL,
|
|
rampage_config
|
|
};
|
|
#endif
|
|
|
|
|
|
static const struct {
|
|
const char *name;
|
|
const char *internal_name;
|
|
const device_t *dev;
|
|
} boards[] = {
|
|
{ "None", "none", NULL, },
|
|
{ "IBM PC/XT Memory Expansion", "ibmxt", &ibmxt_device, },
|
|
{ "IBM PC/AT Memory Expansion", "ibmat", &ibmat_device, },
|
|
{ "Everex EV-159 RAM 3000 Deluxe", "ev159", &ev159_device, },
|
|
{ "", "", NULL, },
|
|
};
|
|
|
|
|
|
void
|
|
isamem_reset(void)
|
|
{
|
|
const device_t *dev;
|
|
int k, i;
|
|
|
|
for (i = 0; i < ISAMEM_MAX; i++) {
|
|
k = isamem_type[i];
|
|
if (k == 0) continue;
|
|
|
|
/* Clone the device. */
|
|
dev = device_clone(boards[k].dev);
|
|
|
|
/* Add the instance to the system. */
|
|
device_add(dev);
|
|
}
|
|
}
|
|
|
|
|
|
char *
|
|
isamem_get_name(int board)
|
|
{
|
|
return((char *)boards[board].name);
|
|
}
|
|
|
|
|
|
char *
|
|
isamem_get_internal_name(int board)
|
|
{
|
|
return((char *)boards[board].internal_name);
|
|
}
|
|
|
|
|
|
|
|
int
|
|
isamem_get_from_internal_name(char *s)
|
|
{
|
|
int c = 0;
|
|
|
|
while (strlen((char *) boards[c].internal_name)) {
|
|
if (!strcmp((char *)boards[c].internal_name, s))
|
|
return(c);
|
|
c++;
|
|
}
|
|
|
|
/* Not found. */
|
|
return(0);
|
|
}
|
|
|
|
|
|
const device_t *
|
|
isamem_get_device(int board)
|
|
{
|
|
return(boards[board].dev);
|
|
}
|