mirror of
https://github.com/86Box/86Box.git
synced 2026-02-22 01:25:33 -07:00
946 lines
24 KiB
C
946 lines
24 KiB
C
/* Copyright holders: Sarah Walker
|
|
see COPYING for more details
|
|
*/
|
|
#include <stdarg.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wchar.h>
|
|
#define HAVE_STDARG_H
|
|
#include <86box/86box.h>
|
|
#include <86box/device.h>
|
|
#include <86box/io.h>
|
|
#include <86box/fifo.h>
|
|
#include <86box/timer.h>
|
|
#include <86box/device.h>
|
|
#include <86box/dma.h>
|
|
#include <86box/lpt.h>
|
|
#include <86box/pic.h>
|
|
#include <86box/sound.h>
|
|
#include <86box/prt_devs.h>
|
|
#include <86box/thread.h>
|
|
#include <86box/device.h>
|
|
#include <86box/machine.h>
|
|
#include <86box/network.h>
|
|
|
|
static int next_inst = 0;
|
|
int lpt_3bc_used = 0;
|
|
|
|
lpt_port_t lpt_ports[PARALLEL_MAX];
|
|
|
|
lpt_device_t lpt_devs[PARALLEL_MAX];
|
|
|
|
const lpt_device_t lpt_none_device = {
|
|
.name = "None",
|
|
.internal_name = "none",
|
|
.init = NULL,
|
|
.close = NULL,
|
|
.write_data = NULL,
|
|
.write_ctrl = NULL,
|
|
.read_status = NULL,
|
|
.read_ctrl = NULL
|
|
};
|
|
|
|
static const struct {
|
|
const lpt_device_t *device;
|
|
} lpt_devices[] = {
|
|
// clang-format off
|
|
{ &lpt_none_device },
|
|
{ &dss_device },
|
|
{ &lpt_dac_device },
|
|
{ &lpt_dac_stereo_device },
|
|
{ &lpt_prt_text_device },
|
|
{ &lpt_prt_escp_device },
|
|
{ &lpt_prt_ps_device },
|
|
#ifdef USE_PCL
|
|
{ &lpt_prt_pcl_device },
|
|
#endif
|
|
{ &lpt_plip_device },
|
|
{ &lpt_hasp_savquest_device },
|
|
{ NULL }
|
|
// clang-format on
|
|
};
|
|
|
|
#ifdef ENABLE_LPT_LOG
|
|
int lpt_do_log = ENABLE_LPT_LOG;
|
|
|
|
static void
|
|
lpt_log(const char *fmt, ...)
|
|
{
|
|
va_list ap;
|
|
|
|
if (lpt_do_log) {
|
|
va_start(ap, fmt);
|
|
pclog_ex(fmt, ap);
|
|
va_end(ap);
|
|
}
|
|
}
|
|
#else
|
|
# define lpt_log(fmt, ...)
|
|
#endif
|
|
|
|
const device_t *
|
|
lpt_device_getdevice(const int id)
|
|
{
|
|
return (device_t *) lpt_devices[id].device->cfgdevice;
|
|
}
|
|
|
|
int
|
|
lpt_device_has_config(const int id)
|
|
{
|
|
int c = 0;
|
|
const device_t *dev = (device_t *) lpt_devices[id].device->cfgdevice;
|
|
const device_config_t *config;
|
|
if (dev == NULL)
|
|
return 0;
|
|
|
|
if (dev->config == NULL)
|
|
return 0;
|
|
|
|
config = dev->config;
|
|
|
|
while (config->type != CONFIG_END) {
|
|
c++;
|
|
config++;
|
|
}
|
|
|
|
return (c > 0) ? 1 : 0;
|
|
}
|
|
|
|
const char *
|
|
lpt_device_get_name(const int id)
|
|
{
|
|
if (lpt_devices[id].device == NULL)
|
|
return NULL;
|
|
|
|
return lpt_devices[id].device->name;
|
|
}
|
|
|
|
const char *
|
|
lpt_device_get_internal_name(const int id)
|
|
{
|
|
if (lpt_devices[id].device == NULL)
|
|
return NULL;
|
|
|
|
return lpt_devices[id].device->internal_name;
|
|
}
|
|
|
|
int
|
|
lpt_device_get_from_internal_name(const char *str)
|
|
{
|
|
int c = 0;
|
|
|
|
while (lpt_devices[c].device != NULL) {
|
|
if (!strcmp(lpt_devices[c].device->internal_name, str))
|
|
return c;
|
|
c++;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
lpt_devices_init(void)
|
|
{
|
|
for (uint8_t i = 0; i < PARALLEL_MAX; i++) {
|
|
lpt_t *dev = lpt_devs[i].lpt;
|
|
|
|
if (lpt_devices[lpt_ports[i].device].device != NULL) {
|
|
memcpy(&(lpt_devs[i]), (lpt_device_t *) lpt_devices[lpt_ports[i].device].device, sizeof(lpt_device_t));
|
|
|
|
if (lpt_devs[i].init)
|
|
lpt_devs[i].priv = lpt_devs[i].init(dev);
|
|
} else
|
|
memset(&(lpt_devs[i]), 0x00, sizeof(lpt_device_t));
|
|
|
|
lpt_devs[i].lpt = dev;
|
|
}
|
|
}
|
|
|
|
void
|
|
lpt_devices_close(void)
|
|
{
|
|
for (uint8_t i = 0; i < PARALLEL_MAX; i++) {
|
|
if (lpt_devs[i].close)
|
|
lpt_devs[i].close(lpt_devs[i].priv);
|
|
|
|
memset(&(lpt_devs[i]), 0x00, sizeof(lpt_device_t));
|
|
}
|
|
}
|
|
|
|
static uint8_t
|
|
lpt_get_ctrl_raw(const lpt_t *dev)
|
|
{
|
|
uint8_t ret;
|
|
|
|
if (dev->dt && dev->dt->read_ctrl && dev->dt->priv)
|
|
ret = (dev->dt->read_ctrl(dev->dt->priv) & 0xef) | dev->enable_irq;
|
|
else
|
|
ret = 0xc0 | dev->ctrl | dev->enable_irq;
|
|
|
|
return ret & 0xdf;
|
|
}
|
|
|
|
static uint8_t
|
|
lpt_is_epp(const lpt_t *dev)
|
|
{
|
|
return (dev->epp || ((dev->ecp) && ((dev->ecr & 0xe0) == 0x80)));
|
|
}
|
|
|
|
static uint8_t
|
|
lpt_get_ctrl(const lpt_t *dev)
|
|
{
|
|
uint8_t ret = lpt_get_ctrl_raw(dev);
|
|
|
|
if (!dev->ecp && !dev->epp)
|
|
ret |= 0x20;
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void
|
|
lpt_write_fifo(lpt_t *dev, const uint8_t val, const uint8_t tag)
|
|
{
|
|
if (!fifo_get_full(dev->fifo)) {
|
|
fifo_write_evt_tagged(tag, val, dev->fifo);
|
|
|
|
if (!timer_is_enabled(&dev->fifo_out_timer))
|
|
timer_set_delay_u64(&dev->fifo_out_timer, (uint64_t) ((1000000.0 / 2500000.0) * (double) TIMER_USEC));
|
|
}
|
|
}
|
|
|
|
static void
|
|
lpt_ecp_update_irq(lpt_t *dev)
|
|
{
|
|
if (!(dev->ecr & 0x04) && ((dev->fifo_stat | dev->dma_stat) & 0x04))
|
|
picintlevel(1 << dev->irq, &dev->irq_state);
|
|
else
|
|
picintclevel(1 << dev->irq, &dev->irq_state);
|
|
}
|
|
|
|
static void
|
|
lpt_autofeed(lpt_t *dev, const uint8_t val)
|
|
{
|
|
if (dev->dt && dev->dt->autofeed && dev->dt->priv)
|
|
dev->dt->autofeed(val, dev->dt->priv);
|
|
|
|
dev->autofeed = val;
|
|
}
|
|
|
|
static void
|
|
lpt_strobe(lpt_t *dev, const uint8_t val)
|
|
{
|
|
if (dev->dt && dev->dt->strobe && dev->dt->priv)
|
|
dev->dt->strobe(dev->strobe, val, dev->dt->priv);
|
|
|
|
dev->strobe = val;
|
|
}
|
|
|
|
static void
|
|
lpt_fifo_out_callback(void *priv)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
switch (dev->state) {
|
|
default:
|
|
break;
|
|
|
|
case LPT_STATE_READ_DMA:
|
|
;
|
|
int ret = 0xff;
|
|
|
|
if (dev->dma == 0xff)
|
|
ret = DMA_NODATA;
|
|
else
|
|
ret = dma_channel_read(dev->dma);
|
|
|
|
lpt_log("DMA %02X: %08X\n", dev->dma, ret);
|
|
|
|
if (ret != DMA_NODATA) {
|
|
fifo_write_evt_tagged(0x01, (uint8_t) (ret & 0xff), dev->fifo);
|
|
|
|
if (ret & DMA_OVER)
|
|
/* Internal flag to indicate we have finished the DMA reads. */
|
|
dev->dma_stat = 0x08;
|
|
}
|
|
|
|
timer_advance_u64(&dev->fifo_out_timer,
|
|
(uint64_t) ((1000000.0 / 2500000.0) * (double) TIMER_USEC));
|
|
|
|
if (dev->dma_stat || fifo_get_full(dev->fifo))
|
|
dev->state = LPT_STATE_WRITE_FIFO;
|
|
break;
|
|
|
|
case LPT_STATE_WRITE_FIFO:
|
|
if (!fifo_get_empty(dev->fifo)) {
|
|
uint8_t tag = 0x00;
|
|
const uint8_t val = fifo_read_evt_tagged(&tag, dev->fifo);
|
|
|
|
lpt_log("FIFO: %02X, TAG = %02X\n", val, tag);
|
|
|
|
/* We do not currently support sending commands. */
|
|
if (tag == 0x01) {
|
|
if (dev->dt && dev->dt->write_data && dev->dt->priv)
|
|
dev->dt->write_data(val, dev->dt->priv);
|
|
|
|
lpt_strobe(dev, 1);
|
|
lpt_strobe(dev, 0);
|
|
}
|
|
}
|
|
|
|
if (dev->ecr & 0x08) {
|
|
if (fifo_get_empty(dev->fifo)) {
|
|
if (dev->dma_stat) {
|
|
/* Now actually set the external flag. */
|
|
dev->dma_stat = 0x04;
|
|
dev->state = LPT_STATE_IDLE;
|
|
lpt_ecp_update_irq(dev);
|
|
lpt_autofeed(dev, 0);
|
|
} else {
|
|
dev->state = LPT_STATE_READ_DMA;
|
|
|
|
timer_advance_u64(&dev->fifo_out_timer,
|
|
(uint64_t) ((1000000.0 / 2500000.0) * (double) TIMER_USEC));
|
|
}
|
|
} else
|
|
timer_advance_u64(&dev->fifo_out_timer,
|
|
(uint64_t) ((1000000.0 / 2500000.0) * (double) TIMER_USEC));
|
|
} else if (!fifo_get_empty(dev->fifo))
|
|
timer_advance_u64(&dev->fifo_out_timer,
|
|
(uint64_t) ((1000000.0 / 2500000.0) * (double) TIMER_USEC));
|
|
else
|
|
lpt_autofeed(dev, 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void
|
|
lpt_write(const uint16_t port, const uint8_t val, void *priv)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
uint16_t mask = 0x0407;
|
|
|
|
lpt_log("[W] %04X = %02X\n", port, val);
|
|
|
|
/* This is needed so the parallel port at 3BC works. */
|
|
if (dev->addr & 0x0004)
|
|
mask = 0x0403;
|
|
|
|
switch (port & mask) {
|
|
case 0x0000:
|
|
if (dev->ecp) {
|
|
if ((dev->ecr & 0xe0) == 0x60)
|
|
/* AFIFO */
|
|
lpt_write_fifo(dev, val, 0x00);
|
|
else if (!(dev->ecr & 0xc0) && (!(dev->ecr & 0x20) || !(lpt_get_ctrl_raw(dev) & 0x20)) &&
|
|
dev->dt && dev->dt->write_data && dev->dt->priv)
|
|
/* DATAR */
|
|
dev->dt->write_data(val, dev->dt->priv);
|
|
dev->dat = val;
|
|
} else {
|
|
/* DTR */
|
|
if ((!dev->ext || !(lpt_get_ctrl_raw(dev) & 0x20)) && dev->dt &&
|
|
dev->dt->write_data && dev->dt->priv)
|
|
dev->dt->write_data(val, dev->dt->priv);
|
|
dev->dat = val;
|
|
}
|
|
break;
|
|
|
|
case 0x0001:
|
|
break;
|
|
|
|
case 0x0002:
|
|
if (dev->dt && dev->dt->write_ctrl && dev->dt->priv) {
|
|
if (dev->ecp)
|
|
dev->dt->write_ctrl((val & 0xfc) | dev->autofeed | dev->strobe, dev->dt->priv);
|
|
else
|
|
dev->dt->write_ctrl(val, dev->dt->priv);
|
|
}
|
|
dev->ctrl = val;
|
|
dev->enable_irq = val & 0x10;
|
|
if (!(val & 0x10) && (dev->irq != 0xff))
|
|
picintc(1 << dev->irq);
|
|
dev->irq_state = 0;
|
|
break;
|
|
|
|
case 0x0003:
|
|
if (lpt_is_epp(dev)) {
|
|
if (dev->dt && dev->dt->epp_write_data && dev->dt->priv)
|
|
dev->dt->epp_write_data(1, val, dev->dt->priv);
|
|
}
|
|
break;
|
|
|
|
case 0x0004 ... 0x0007:
|
|
if (lpt_is_epp(dev)) {
|
|
if (dev->dt && dev->dt->epp_write_data && dev->dt->priv)
|
|
dev->dt->epp_write_data(0, val, dev->dt->priv);
|
|
}
|
|
break;
|
|
|
|
case 0x0400: case 0x0404:
|
|
switch (dev->ecr >> 5) {
|
|
default:
|
|
break;
|
|
case 2:
|
|
lpt_write_fifo(dev, val, 0x01);
|
|
break;
|
|
case 3:
|
|
if (!(lpt_get_ctrl_raw(dev) & 0x20))
|
|
lpt_write_fifo(dev, val, 0x01);
|
|
break;
|
|
case 6:
|
|
/* TFIFO */
|
|
if (!fifo_get_full(dev->fifo))
|
|
fifo_write_evt(val, dev->fifo);
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case 0x0402: case 0x0406:
|
|
if (!(val & 0x0c))
|
|
lpt_autofeed(dev, 0x00);
|
|
else
|
|
lpt_autofeed(dev, 0x02);
|
|
|
|
if ((dev->ecr & 0x04) && !(val & 0x04)) {
|
|
dev->dma_stat = 0x00;
|
|
fifo_reset(dev->fifo);
|
|
if (val & 0x08) {
|
|
dev->state = LPT_STATE_READ_DMA;
|
|
dev->fifo_stat = 0x00;
|
|
if (!timer_is_enabled(&dev->fifo_out_timer))
|
|
timer_set_delay_u64(&dev->fifo_out_timer, (uint64_t) ((1000000.0 / 2500000.0) * (double) TIMER_USEC));
|
|
} else {
|
|
dev->state = LPT_STATE_WRITE_FIFO;
|
|
if (lpt_get_ctrl_raw(dev) & 0x20)
|
|
dev->fifo_stat = fifo_get_ready(dev->fifo) ? 0x04 : 0x00;
|
|
else
|
|
dev->fifo_stat = fifo_get_ready(dev->fifo) ? 0x00 : 0x04;
|
|
}
|
|
} else if ((val & 0x04) && !(dev->ecr & 0x04)) {
|
|
if (timer_is_enabled(&dev->fifo_out_timer))
|
|
timer_disable(&dev->fifo_out_timer);
|
|
|
|
dev->state = LPT_STATE_IDLE;
|
|
}
|
|
dev->ecr = val;
|
|
lpt_ecp_update_irq(dev);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
lpt_fifo_d_ready_evt(void *priv)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
if (!(dev->ecr & 0x08)) {
|
|
if (lpt_get_ctrl_raw(dev) & 0x20)
|
|
dev->fifo_stat = fifo_get_ready(dev->fifo) ? 0x04 : 0x00;
|
|
else
|
|
dev->fifo_stat = fifo_get_ready(dev->fifo) ? 0x00 : 0x04;
|
|
}
|
|
|
|
lpt_ecp_update_irq(dev);
|
|
}
|
|
|
|
void
|
|
lpt_write_to_fifo(void *priv, const uint8_t val)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
if (dev->ecp) {
|
|
if (((dev->ecr & 0xe0) == 0x20) && (lpt_get_ctrl_raw(dev) & 0x20))
|
|
dev->dat = val;
|
|
else if (((dev->ecr & 0xe0) == 0x60) && (lpt_get_ctrl_raw(dev) & 0x20) &&
|
|
!fifo_get_full(dev->fifo))
|
|
fifo_write_evt_tagged(0x01, val, dev->fifo);
|
|
|
|
if (((dev->ecr & 0x0c) == 0x08) && (dev->dma != 0xff)) {
|
|
const int ret = dma_channel_write(dev->dma, val);
|
|
|
|
if (ret & DMA_OVER)
|
|
dev->dma_stat |= 0x04;
|
|
}
|
|
} else {
|
|
if (dev->ext && (lpt_get_ctrl_raw(dev) & 0x20))
|
|
dev->dat = val;
|
|
}
|
|
}
|
|
|
|
void
|
|
lpt_write_to_dat(void *priv, const uint8_t val)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
dev->dat = val;
|
|
}
|
|
|
|
static uint8_t
|
|
lpt_read_fifo(const lpt_t *dev)
|
|
{
|
|
uint8_t ret = 0xff;
|
|
|
|
if (!fifo_get_empty(dev->fifo))
|
|
ret = fifo_read(dev->fifo);
|
|
|
|
return ret;
|
|
}
|
|
|
|
uint8_t
|
|
lpt_read_status(lpt_t *dev)
|
|
{
|
|
uint8_t low_bits = 0x07;
|
|
uint8_t ret;
|
|
|
|
if (dev->ext) {
|
|
low_bits = 0x03 | (dev->irq_state ? 0x00 : 0x04);
|
|
if (dev->irq != 0xff)
|
|
picintclevel(1 << dev->irq, &dev->irq_state);
|
|
dev->irq_state = 0;
|
|
}
|
|
if (dev->epp || dev->ecp) {
|
|
low_bits = lpt_is_epp(dev) ? 0x02 : 0x03;
|
|
if (lpt_get_ctrl_raw(dev) & 0x10)
|
|
low_bits |= (dev->irq_state ? 0x00 : 0x04);
|
|
else
|
|
low_bits |= 0x04;
|
|
}
|
|
|
|
if (dev->dt && dev->dt->read_status && dev->dt->priv)
|
|
ret = (dev->dt->read_status(dev->dt->priv) & 0xf8) | low_bits;
|
|
else
|
|
ret = 0xd8 | low_bits;
|
|
|
|
return ret;
|
|
}
|
|
|
|
uint8_t
|
|
lpt_read(const uint16_t port, void *priv)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
uint16_t mask = 0x0407;
|
|
uint8_t ret = 0xff;
|
|
|
|
/* This is needed so the parallel port at 3BC works. */
|
|
if (dev->addr & 0x0004)
|
|
mask = 0x0403;
|
|
|
|
switch (port & mask) {
|
|
case 0x0000:
|
|
if (dev->ecp) {
|
|
if (!(dev->ecr & 0xc0))
|
|
ret = dev->dat;
|
|
} else {
|
|
/* DTR */
|
|
ret = dev->dat;
|
|
}
|
|
break;
|
|
|
|
case 0x0001:
|
|
ret = lpt_read_status(dev);
|
|
break;
|
|
|
|
case 0x0002:
|
|
ret = lpt_get_ctrl(dev);
|
|
if (dev->ecp)
|
|
ret = (ret & 0xfc) | (dev->ctrl & 0x03);
|
|
break;
|
|
|
|
case 0x0003:
|
|
if (lpt_is_epp(dev)) {
|
|
if (dev->dt && dev->dt->epp_request_read && dev->dt->priv)
|
|
dev->dt->epp_request_read(1, dev->dt->priv);
|
|
ret = dev->dat;
|
|
}
|
|
break;
|
|
|
|
case 0x0004 ... 0x0007:
|
|
if (lpt_is_epp(dev)) {
|
|
if (dev->dt && dev->dt->epp_request_read && dev->dt->priv)
|
|
dev->dt->epp_request_read(0, dev->dt->priv);
|
|
ret = dev->dat;
|
|
}
|
|
break;
|
|
|
|
case 0x0400: case 0x0404:
|
|
switch (dev->ecr >> 5) {
|
|
default:
|
|
break;
|
|
case 3:
|
|
if (lpt_get_ctrl_raw(dev) & 0x20)
|
|
ret = lpt_read_fifo(dev);
|
|
break;
|
|
case 6:
|
|
/* TFIFO */
|
|
if (!fifo_get_empty(dev->fifo))
|
|
ret = fifo_read_evt(dev->fifo);
|
|
break;
|
|
case 7:
|
|
/* CNFGA */
|
|
ret = dev->cnfga_readout;
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case 0x0401: case 0x0405:
|
|
if ((dev->ecr & 0xe0) == 0xe0) {
|
|
/* CNFGB */
|
|
ret = 0x08;
|
|
ret |= (dev->irq_state ? 0x40 : 0x00);
|
|
ret |= ((dev->irq == 0x05) ? 0x30 : 0x00);
|
|
if ((dev->dma >= 1) && (dev->dma <= 3))
|
|
ret |= dev->dma;
|
|
}
|
|
break;
|
|
|
|
case 0x0402: case 0x0406:
|
|
ret = dev->ecr | dev->fifo_stat | (dev->dma_stat & 0x04);
|
|
ret |= (fifo_get_full(dev->fifo) ? 0x02 : 0x00);
|
|
ret |= (fifo_get_empty(dev->fifo) ? 0x01 : 0x00);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
lpt_log("[R] %04X = %02X\n", port, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
uint8_t
|
|
lpt_read_port(lpt_t *dev, const uint16_t reg)
|
|
{
|
|
return lpt_read(reg, dev);
|
|
}
|
|
|
|
void
|
|
lpt_irq(void *priv, const int raise)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
if (dev->enable_irq) {
|
|
if (dev->irq != 0xff) {
|
|
if (dev->ext) {
|
|
if (raise)
|
|
picintlevel(1 << dev->irq, &dev->irq_state);
|
|
else
|
|
picintclevel(1 << dev->irq, &dev->irq_state);
|
|
} else {
|
|
if (raise)
|
|
picint(1 << dev->irq);
|
|
else
|
|
picintc(1 << dev->irq);
|
|
}
|
|
}
|
|
|
|
if (!dev->ext || (dev->irq == 0xff))
|
|
dev->irq_state = raise;
|
|
} else {
|
|
if (dev->irq != 0xff) {
|
|
if (dev->ext)
|
|
picintclevel(1 << dev->irq, &dev->irq_state);
|
|
else
|
|
picintc(1 << dev->irq);
|
|
}
|
|
|
|
dev->irq_state = 0;
|
|
}
|
|
}
|
|
|
|
void
|
|
lpt_set_ext(lpt_t *dev, const uint8_t ext)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
dev->ext = ext;
|
|
}
|
|
|
|
void
|
|
lpt_set_ecp(lpt_t *dev, const uint8_t ecp)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
dev->ecp = ecp;
|
|
}
|
|
|
|
void
|
|
lpt_set_epp(lpt_t *dev, const uint8_t epp)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
dev->epp = epp;
|
|
}
|
|
|
|
void
|
|
lpt_set_lv2(lpt_t *dev, const uint8_t lv2)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
dev->lv2 = lv2;
|
|
}
|
|
|
|
void
|
|
lpt_set_fifo_threshold(lpt_t *dev, const int threshold)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
fifo_set_trigger_len(dev->fifo, threshold);
|
|
}
|
|
|
|
void
|
|
lpt_set_cnfga_readout(lpt_t *dev, const uint8_t cnfga_readout)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
dev->cnfga_readout = cnfga_readout;
|
|
}
|
|
|
|
void
|
|
lpt_port_setup(lpt_t *dev, const uint16_t port)
|
|
{
|
|
if (lpt_ports[dev->id].enabled) {
|
|
if ((dev->addr != 0x0000) && (dev->addr != 0xffff)) {
|
|
io_removehandler(dev->addr, 0x0007, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
io_removehandler(dev->addr + 0x0400, 0x0007, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
}
|
|
if ((port != 0x0000) && (port != 0xffff)) {
|
|
lpt_log("Set handler: %04X-%04X\n", port, port + 0x0003);
|
|
io_sethandler(port, 0x0003, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
if (dev->epp)
|
|
io_sethandler(port + 0x0003, 0x0005, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
if (dev->ecp || dev->lv2) {
|
|
io_sethandler(port + 0x0400, 0x0003, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
if (dev->epp)
|
|
io_sethandler(port + 0x0404, 0x0003, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
}
|
|
}
|
|
dev->addr = port;
|
|
} else
|
|
dev->addr = 0xffff;
|
|
}
|
|
|
|
void
|
|
lpt_port_irq(lpt_t *dev, const uint8_t irq)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
dev->irq = irq;
|
|
else
|
|
dev->irq = 0xff;
|
|
|
|
lpt_log("Port %i IRQ = %02X\n", dev->id, irq);
|
|
}
|
|
|
|
void
|
|
lpt_port_dma(lpt_t *dev, const uint8_t dma)
|
|
{
|
|
if (lpt_ports[dev->id].enabled)
|
|
dev->dma = dma;
|
|
else
|
|
dev->dma = 0xff;
|
|
|
|
lpt_log("Port %i DMA = %02X\n", dev->id, dma);
|
|
}
|
|
|
|
void
|
|
lpt_port_remove(lpt_t *dev)
|
|
{
|
|
if (lpt_ports[dev->id].enabled && (dev->addr != 0xffff)) {
|
|
io_removehandler(dev->addr, 0x0007, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
io_removehandler(dev->addr + 0x0400, 0x0007, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
|
|
dev->addr = 0xffff;
|
|
}
|
|
}
|
|
|
|
void
|
|
lpt1_remove_ams(lpt_t *dev)
|
|
{
|
|
if (dev->enabled)
|
|
io_removehandler(dev->addr + 1, 0x0002, lpt_read, NULL, NULL, lpt_write, NULL, NULL, dev);
|
|
}
|
|
|
|
void
|
|
lpt_speed_changed(void *priv)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
if (timer_is_enabled(&dev->fifo_out_timer)) {
|
|
timer_disable(&dev->fifo_out_timer);
|
|
timer_set_delay_u64(&dev->fifo_out_timer, (uint64_t) ((1000000.0 / 2500000.0) * (double) TIMER_USEC));
|
|
}
|
|
}
|
|
|
|
void
|
|
lpt_port_zero(lpt_t *dev)
|
|
{
|
|
lpt_t temp = { 0 };
|
|
|
|
temp.irq = dev->irq;
|
|
temp.id = dev->id;
|
|
temp.dt = dev->dt;
|
|
temp.fifo = dev->fifo;
|
|
temp.fifo_out_timer = dev->fifo_out_timer;
|
|
|
|
if (lpt_ports[dev->id].enabled)
|
|
lpt_port_remove(dev);
|
|
|
|
memset(dev, 0x00, sizeof(lpt_t));
|
|
|
|
dev->addr = 0xffff;
|
|
dev->irq = temp.irq;
|
|
dev->id = temp.id;
|
|
dev->dt = temp.dt;
|
|
dev->fifo = temp.fifo;
|
|
dev->fifo_out_timer = temp.fifo_out_timer;
|
|
|
|
if (machine_has_bus(machine, MACHINE_BUS_MCA))
|
|
dev->ext = 1;
|
|
}
|
|
|
|
static void
|
|
lpt_close(void *priv)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
if (lpt_ports[dev->id].enabled) {
|
|
fifo_close(dev->fifo);
|
|
dev->fifo = NULL;
|
|
|
|
timer_disable(&dev->fifo_out_timer);
|
|
|
|
}
|
|
|
|
free(dev);
|
|
}
|
|
|
|
static void
|
|
lpt_reset(void *priv)
|
|
{
|
|
lpt_t *dev = (lpt_t *) priv;
|
|
|
|
if (lpt_ports[dev->id].enabled)
|
|
if (timer_is_enabled(&dev->fifo_out_timer))
|
|
timer_disable(&dev->fifo_out_timer);
|
|
|
|
lpt_port_zero(dev);
|
|
|
|
if (lpt_ports[dev->id].enabled) {
|
|
if (dev->irq_state) {
|
|
if (dev->irq == 0xff)
|
|
dev->irq_state = 0x00;
|
|
else {
|
|
picintclevel(dev->irq, &dev->irq_state);
|
|
picintc(dev->irq);
|
|
}
|
|
}
|
|
|
|
dev->enable_irq = 0x00;
|
|
dev->ext = !!(machine_has_bus(machine, MACHINE_BUS_MCA));
|
|
dev->epp = 0;
|
|
dev->ecp = 0;
|
|
dev->ecr = 0x15;
|
|
dev->dat = 0xff;
|
|
dev->fifo_stat = 0x00;
|
|
dev->dma_stat = 0x00;
|
|
}
|
|
}
|
|
|
|
static void *
|
|
lpt_init(const device_t *info)
|
|
{
|
|
lpt_t *dev = (lpt_t *) calloc(1, sizeof(lpt_t));
|
|
int orig_inst = next_inst;
|
|
|
|
const uint16_t default_ports[PARALLEL_MAX] = { LPT1_ADDR, LPT2_ADDR, LPT_MDA_ADDR, LPT4_ADDR };
|
|
const uint8_t default_irqs[PARALLEL_MAX] = { LPT1_IRQ, LPT2_IRQ, LPT_MDA_IRQ, LPT4_IRQ };
|
|
|
|
if (info->local & 0xFFF00000)
|
|
next_inst = PARALLEL_MAX - 1;
|
|
|
|
dev->id = next_inst;
|
|
|
|
if (lpt_ports[next_inst].enabled || (info->local & 0xFFF00000)) {
|
|
lpt_log("Adding parallel port %i...\n", next_inst);
|
|
dev->dt = &(lpt_devs[next_inst]);
|
|
dev->dt->lpt = dev;
|
|
|
|
dev->fifo = NULL;
|
|
memset(&dev->fifo_out_timer, 0x00, sizeof(pc_timer_t));
|
|
|
|
lpt_port_zero(dev);
|
|
|
|
dev->addr = 0xffff;
|
|
dev->irq = 0xff;
|
|
dev->dma = 0xff;
|
|
dev->enable_irq = 0x00;
|
|
dev->ext = 0;
|
|
dev->epp = 0;
|
|
dev->ecp = 0;
|
|
dev->ecr = 0x15;
|
|
dev->cnfga_readout = 0x14;
|
|
|
|
if (lpt_ports[dev->id].enabled) {
|
|
if (info->local & 0xfff00000) {
|
|
lpt_port_setup(dev, info->local >> 20);
|
|
lpt_port_irq(dev, (info->local >> 16) & 0xF);
|
|
next_inst = orig_inst;
|
|
} else {
|
|
if ((dev->id == 2) && (lpt_3bc_used)) {
|
|
lpt_port_setup(dev, LPT1_ADDR);
|
|
lpt_port_irq(dev, LPT1_IRQ);
|
|
} else {
|
|
lpt_port_setup(dev, default_ports[dev->id]);
|
|
lpt_port_irq(dev, default_irqs[dev->id]);
|
|
}
|
|
}
|
|
|
|
dev->fifo = fifo16_init();
|
|
|
|
fifo_set_trigger_len(dev->fifo, 8);
|
|
|
|
fifo_set_d_ready_evt(dev->fifo, lpt_fifo_d_ready_evt);
|
|
fifo_set_priv(dev->fifo, dev);
|
|
|
|
timer_add(&dev->fifo_out_timer, lpt_fifo_out_callback, dev, 0);
|
|
}
|
|
}
|
|
|
|
if (!(info->local & 0xfff00000))
|
|
next_inst++;
|
|
|
|
return dev;
|
|
}
|
|
|
|
void
|
|
lpt_set_next_inst(int ni)
|
|
{
|
|
next_inst = ni;
|
|
}
|
|
|
|
void
|
|
lpt_set_3bc_used(int is_3bc_used)
|
|
{
|
|
lpt_3bc_used = is_3bc_used;
|
|
}
|
|
|
|
void
|
|
lpt_standalone_init(void)
|
|
{
|
|
while (next_inst < (PARALLEL_MAX - 1))
|
|
device_add_inst(&lpt_port_device, next_inst + 1);
|
|
};
|
|
|
|
const device_t lpt_port_device = {
|
|
.name = "Parallel Port",
|
|
.internal_name = "lpt",
|
|
.flags = 0,
|
|
.local = 0,
|
|
.init = lpt_init,
|
|
.close = lpt_close,
|
|
.reset = lpt_reset,
|
|
.available = NULL,
|
|
.speed_changed = lpt_speed_changed,
|
|
.force_redraw = NULL,
|
|
.config = NULL
|
|
};
|