2005-01-15 13:02:56 +01:00
|
|
|
/*
|
|
|
|
* QEMU Parallel PORT emulation
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2005-11-11 00:58:52 +01:00
|
|
|
* Copyright (c) 2003-2005 Fabrice Bellard
|
2007-02-18 00:44:43 +01:00
|
|
|
* Copyright (c) 2007 Marko Kohtala
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2005-01-15 13:02:56 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2016-01-26 19:17:03 +01:00
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/hw.h"
|
2013-04-08 16:55:25 +02:00
|
|
|
#include "sysemu/char.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/isa/isa.h"
|
|
|
|
#include "hw/i386/pc.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2005-01-15 13:02:56 +01:00
|
|
|
|
|
|
|
//#define DEBUG_PARALLEL
|
|
|
|
|
2007-02-18 00:44:43 +01:00
|
|
|
#ifdef DEBUG_PARALLEL
|
2009-05-13 19:53:17 +02:00
|
|
|
#define pdebug(fmt, ...) printf("pp: " fmt, ## __VA_ARGS__)
|
2007-02-18 00:44:43 +01:00
|
|
|
#else
|
2009-05-13 19:53:17 +02:00
|
|
|
#define pdebug(fmt, ...) ((void)0)
|
2007-02-18 00:44:43 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PARA_REG_DATA 0
|
|
|
|
#define PARA_REG_STS 1
|
|
|
|
#define PARA_REG_CTR 2
|
|
|
|
#define PARA_REG_EPP_ADDR 3
|
|
|
|
#define PARA_REG_EPP_DATA 4
|
|
|
|
|
2005-01-15 13:02:56 +01:00
|
|
|
/*
|
|
|
|
* These are the definitions for the Printer Status Register
|
|
|
|
*/
|
|
|
|
#define PARA_STS_BUSY 0x80 /* Busy complement */
|
|
|
|
#define PARA_STS_ACK 0x40 /* Acknowledge */
|
|
|
|
#define PARA_STS_PAPER 0x20 /* Out of paper */
|
|
|
|
#define PARA_STS_ONLINE 0x10 /* Online */
|
|
|
|
#define PARA_STS_ERROR 0x08 /* Error complement */
|
2007-02-18 00:44:43 +01:00
|
|
|
#define PARA_STS_TMOUT 0x01 /* EPP timeout */
|
2005-01-15 13:02:56 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* These are the definitions for the Printer Control Register
|
|
|
|
*/
|
2007-02-18 00:44:43 +01:00
|
|
|
#define PARA_CTR_DIR 0x20 /* Direction (1=read, 0=write) */
|
2005-01-15 13:02:56 +01:00
|
|
|
#define PARA_CTR_INTEN 0x10 /* IRQ Enable */
|
|
|
|
#define PARA_CTR_SELECT 0x08 /* Select In complement */
|
|
|
|
#define PARA_CTR_INIT 0x04 /* Initialize Printer complement */
|
|
|
|
#define PARA_CTR_AUTOLF 0x02 /* Auto linefeed complement */
|
|
|
|
#define PARA_CTR_STROBE 0x01 /* Strobe complement */
|
|
|
|
|
2007-02-18 00:44:43 +01:00
|
|
|
#define PARA_CTR_SIGNAL (PARA_CTR_SELECT|PARA_CTR_INIT|PARA_CTR_AUTOLF|PARA_CTR_STROBE)
|
|
|
|
|
2011-02-05 15:51:57 +01:00
|
|
|
typedef struct ParallelState {
|
2011-10-06 16:44:26 +02:00
|
|
|
MemoryRegion iomem;
|
2007-02-18 00:44:43 +01:00
|
|
|
uint8_t dataw;
|
|
|
|
uint8_t datar;
|
|
|
|
uint8_t status;
|
2005-01-15 13:02:56 +01:00
|
|
|
uint8_t control;
|
2007-04-07 20:14:41 +02:00
|
|
|
qemu_irq irq;
|
2005-01-15 13:02:56 +01:00
|
|
|
int irq_pending;
|
2016-10-22 11:52:51 +02:00
|
|
|
CharBackend chr;
|
2005-11-11 00:58:52 +01:00
|
|
|
int hw_driver;
|
2007-02-18 00:44:43 +01:00
|
|
|
int epp_timeout;
|
|
|
|
uint32_t last_read_offset; /* For debugging */
|
2007-06-18 20:55:46 +02:00
|
|
|
/* Memory-mapped interface */
|
|
|
|
int it_shift;
|
2016-07-13 02:11:59 +02:00
|
|
|
PortioList portio_list;
|
2011-02-05 15:51:57 +01:00
|
|
|
} ParallelState;
|
2005-01-15 13:02:56 +01:00
|
|
|
|
2013-04-27 22:18:45 +02:00
|
|
|
#define TYPE_ISA_PARALLEL "isa-parallel"
|
|
|
|
#define ISA_PARALLEL(obj) \
|
|
|
|
OBJECT_CHECK(ISAParallelState, (obj), TYPE_ISA_PARALLEL)
|
|
|
|
|
2009-09-22 13:53:22 +02:00
|
|
|
typedef struct ISAParallelState {
|
2013-04-27 22:18:45 +02:00
|
|
|
ISADevice parent_obj;
|
|
|
|
|
2009-10-13 13:38:39 +02:00
|
|
|
uint32_t index;
|
2009-09-22 13:53:22 +02:00
|
|
|
uint32_t iobase;
|
|
|
|
uint32_t isairq;
|
|
|
|
ParallelState state;
|
|
|
|
} ISAParallelState;
|
|
|
|
|
2005-01-15 13:02:56 +01:00
|
|
|
static void parallel_update_irq(ParallelState *s)
|
|
|
|
{
|
|
|
|
if (s->irq_pending)
|
2007-04-07 20:14:41 +02:00
|
|
|
qemu_irq_raise(s->irq);
|
2005-01-15 13:02:56 +01:00
|
|
|
else
|
2007-04-07 20:14:41 +02:00
|
|
|
qemu_irq_lower(s->irq);
|
2005-01-15 13:02:56 +01:00
|
|
|
}
|
|
|
|
|
2007-02-18 00:44:43 +01:00
|
|
|
static void
|
|
|
|
parallel_ioport_write_sw(void *opaque, uint32_t addr, uint32_t val)
|
2005-01-15 13:02:56 +01:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2007-02-18 00:44:43 +01:00
|
|
|
pdebug("write addr=0x%02x val=0x%02x\n", addr, val);
|
|
|
|
|
|
|
|
addr &= 7;
|
|
|
|
switch(addr) {
|
|
|
|
case PARA_REG_DATA:
|
2007-06-07 23:07:11 +02:00
|
|
|
s->dataw = val;
|
|
|
|
parallel_update_irq(s);
|
2007-02-18 00:44:43 +01:00
|
|
|
break;
|
|
|
|
case PARA_REG_CTR:
|
2008-02-10 14:34:48 +01:00
|
|
|
val |= 0xc0;
|
2007-06-07 23:07:11 +02:00
|
|
|
if ((val & PARA_CTR_INIT) == 0 ) {
|
|
|
|
s->status = PARA_STS_BUSY;
|
|
|
|
s->status |= PARA_STS_ACK;
|
|
|
|
s->status |= PARA_STS_ONLINE;
|
|
|
|
s->status |= PARA_STS_ERROR;
|
|
|
|
}
|
|
|
|
else if (val & PARA_CTR_SELECT) {
|
|
|
|
if (val & PARA_CTR_STROBE) {
|
|
|
|
s->status &= ~PARA_STS_BUSY;
|
|
|
|
if ((s->control & PARA_CTR_STROBE) == 0)
|
2016-09-06 15:56:04 +02:00
|
|
|
/* XXX this blocks entire thread. Rewrite to use
|
|
|
|
* qemu_chr_fe_write and background I/O callbacks */
|
2016-10-22 11:52:55 +02:00
|
|
|
qemu_chr_fe_write_all(&s->chr, &s->dataw, 1);
|
2007-06-07 23:07:11 +02:00
|
|
|
} else {
|
|
|
|
if (s->control & PARA_CTR_INTEN) {
|
|
|
|
s->irq_pending = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parallel_update_irq(s);
|
|
|
|
s->control = val;
|
2007-02-18 00:44:43 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parallel_ioport_write_hw(void *opaque, uint32_t addr, uint32_t val)
|
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
uint8_t parm = val;
|
2008-08-22 10:57:09 +02:00
|
|
|
int dir;
|
2007-02-18 00:44:43 +01:00
|
|
|
|
|
|
|
/* Sometimes programs do several writes for timing purposes on old
|
|
|
|
HW. Take care not to waste time on writes that do nothing. */
|
|
|
|
|
|
|
|
s->last_read_offset = ~0U;
|
|
|
|
|
2005-01-15 13:02:56 +01:00
|
|
|
addr &= 7;
|
|
|
|
switch(addr) {
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_DATA:
|
|
|
|
if (s->dataw == val)
|
2007-06-07 23:07:11 +02:00
|
|
|
return;
|
|
|
|
pdebug("wd%02x\n", val);
|
2016-10-22 11:52:55 +02:00
|
|
|
qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_WRITE_DATA, &parm);
|
2007-06-07 23:07:11 +02:00
|
|
|
s->dataw = val;
|
2005-01-15 13:02:56 +01:00
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_STS:
|
2007-06-07 23:07:11 +02:00
|
|
|
pdebug("ws%02x\n", val);
|
|
|
|
if (val & PARA_STS_TMOUT)
|
|
|
|
s->epp_timeout = 0;
|
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_CTR:
|
|
|
|
val |= 0xc0;
|
|
|
|
if (s->control == val)
|
2007-06-07 23:07:11 +02:00
|
|
|
return;
|
|
|
|
pdebug("wc%02x\n", val);
|
2008-08-22 10:57:09 +02:00
|
|
|
|
|
|
|
if ((val & PARA_CTR_DIR) != (s->control & PARA_CTR_DIR)) {
|
|
|
|
if (val & PARA_CTR_DIR) {
|
|
|
|
dir = 1;
|
|
|
|
} else {
|
|
|
|
dir = 0;
|
|
|
|
}
|
2016-10-22 11:52:55 +02:00
|
|
|
qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_DATA_DIR, &dir);
|
2008-08-22 10:57:09 +02:00
|
|
|
parm &= ~PARA_CTR_DIR;
|
|
|
|
}
|
|
|
|
|
2016-10-22 11:52:55 +02:00
|
|
|
qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_WRITE_CONTROL, &parm);
|
2007-06-07 23:07:11 +02:00
|
|
|
s->control = val;
|
2005-01-15 13:02:56 +01:00
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_EPP_ADDR:
|
2007-06-07 23:07:11 +02:00
|
|
|
if ((s->control & (PARA_CTR_DIR|PARA_CTR_SIGNAL)) != PARA_CTR_INIT)
|
|
|
|
/* Controls not correct for EPP address cycle, so do nothing */
|
|
|
|
pdebug("wa%02x s\n", val);
|
|
|
|
else {
|
|
|
|
struct ParallelIOArg ioarg = { .buffer = &parm, .count = 1 };
|
2016-10-22 11:52:55 +02:00
|
|
|
if (qemu_chr_fe_ioctl(&s->chr,
|
2016-10-22 11:52:51 +02:00
|
|
|
CHR_IOCTL_PP_EPP_WRITE_ADDR, &ioarg)) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("wa%02x t\n", val);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pdebug("wa%02x\n", val);
|
|
|
|
}
|
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_EPP_DATA:
|
2007-06-07 23:07:11 +02:00
|
|
|
if ((s->control & (PARA_CTR_DIR|PARA_CTR_SIGNAL)) != PARA_CTR_INIT)
|
|
|
|
/* Controls not correct for EPP data cycle, so do nothing */
|
|
|
|
pdebug("we%02x s\n", val);
|
|
|
|
else {
|
|
|
|
struct ParallelIOArg ioarg = { .buffer = &parm, .count = 1 };
|
2016-10-22 11:52:55 +02:00
|
|
|
if (qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_EPP_WRITE, &ioarg)) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("we%02x t\n", val);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pdebug("we%02x\n", val);
|
|
|
|
}
|
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
parallel_ioport_eppdata_write_hw2(void *opaque, uint32_t addr, uint32_t val)
|
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
uint16_t eppdata = cpu_to_le16(val);
|
|
|
|
int err;
|
|
|
|
struct ParallelIOArg ioarg = {
|
2007-06-07 23:07:11 +02:00
|
|
|
.buffer = &eppdata, .count = sizeof(eppdata)
|
2007-02-18 00:44:43 +01:00
|
|
|
};
|
|
|
|
if ((s->control & (PARA_CTR_DIR|PARA_CTR_SIGNAL)) != PARA_CTR_INIT) {
|
2007-06-07 23:07:11 +02:00
|
|
|
/* Controls not correct for EPP data cycle, so do nothing */
|
|
|
|
pdebug("we%04x s\n", val);
|
|
|
|
return;
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
2016-10-22 11:52:55 +02:00
|
|
|
err = qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_EPP_WRITE, &ioarg);
|
2007-02-18 00:44:43 +01:00
|
|
|
if (err) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("we%04x t\n", val);
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
else
|
2007-06-07 23:07:11 +02:00
|
|
|
pdebug("we%04x\n", val);
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
parallel_ioport_eppdata_write_hw4(void *opaque, uint32_t addr, uint32_t val)
|
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
uint32_t eppdata = cpu_to_le32(val);
|
|
|
|
int err;
|
|
|
|
struct ParallelIOArg ioarg = {
|
2007-06-07 23:07:11 +02:00
|
|
|
.buffer = &eppdata, .count = sizeof(eppdata)
|
2007-02-18 00:44:43 +01:00
|
|
|
};
|
|
|
|
if ((s->control & (PARA_CTR_DIR|PARA_CTR_SIGNAL)) != PARA_CTR_INIT) {
|
2007-06-07 23:07:11 +02:00
|
|
|
/* Controls not correct for EPP data cycle, so do nothing */
|
|
|
|
pdebug("we%08x s\n", val);
|
|
|
|
return;
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
2016-10-22 11:52:55 +02:00
|
|
|
err = qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_EPP_WRITE, &ioarg);
|
2007-02-18 00:44:43 +01:00
|
|
|
if (err) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("we%08x t\n", val);
|
2005-01-15 13:02:56 +01:00
|
|
|
}
|
2007-02-18 00:44:43 +01:00
|
|
|
else
|
2007-06-07 23:07:11 +02:00
|
|
|
pdebug("we%08x\n", val);
|
2005-01-15 13:02:56 +01:00
|
|
|
}
|
|
|
|
|
2007-02-18 00:44:43 +01:00
|
|
|
static uint32_t parallel_ioport_read_sw(void *opaque, uint32_t addr)
|
2005-01-15 13:02:56 +01:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
uint32_t ret = 0xff;
|
|
|
|
|
|
|
|
addr &= 7;
|
|
|
|
switch(addr) {
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_DATA:
|
2007-06-07 23:07:11 +02:00
|
|
|
if (s->control & PARA_CTR_DIR)
|
|
|
|
ret = s->datar;
|
|
|
|
else
|
|
|
|
ret = s->dataw;
|
2005-01-15 13:02:56 +01:00
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_STS:
|
2007-06-07 23:07:11 +02:00
|
|
|
ret = s->status;
|
|
|
|
s->irq_pending = 0;
|
|
|
|
if ((s->status & PARA_STS_BUSY) == 0 && (s->control & PARA_CTR_STROBE) == 0) {
|
|
|
|
/* XXX Fixme: wait 5 microseconds */
|
|
|
|
if (s->status & PARA_STS_ACK)
|
|
|
|
s->status &= ~PARA_STS_ACK;
|
|
|
|
else {
|
|
|
|
/* XXX Fixme: wait 5 microseconds */
|
|
|
|
s->status |= PARA_STS_ACK;
|
|
|
|
s->status |= PARA_STS_BUSY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parallel_update_irq(s);
|
2005-01-15 13:02:56 +01:00
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_CTR:
|
2005-01-15 13:02:56 +01:00
|
|
|
ret = s->control;
|
|
|
|
break;
|
|
|
|
}
|
2007-02-18 00:44:43 +01:00
|
|
|
pdebug("read addr=0x%02x val=0x%02x\n", addr, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t parallel_ioport_read_hw(void *opaque, uint32_t addr)
|
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
uint8_t ret = 0xff;
|
|
|
|
addr &= 7;
|
|
|
|
switch(addr) {
|
|
|
|
case PARA_REG_DATA:
|
2016-10-22 11:52:55 +02:00
|
|
|
qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_READ_DATA, &ret);
|
2007-06-07 23:07:11 +02:00
|
|
|
if (s->last_read_offset != addr || s->datar != ret)
|
|
|
|
pdebug("rd%02x\n", ret);
|
2007-02-18 00:44:43 +01:00
|
|
|
s->datar = ret;
|
|
|
|
break;
|
|
|
|
case PARA_REG_STS:
|
2016-10-22 11:52:55 +02:00
|
|
|
qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_READ_STATUS, &ret);
|
2007-06-07 23:07:11 +02:00
|
|
|
ret &= ~PARA_STS_TMOUT;
|
|
|
|
if (s->epp_timeout)
|
|
|
|
ret |= PARA_STS_TMOUT;
|
|
|
|
if (s->last_read_offset != addr || s->status != ret)
|
|
|
|
pdebug("rs%02x\n", ret);
|
|
|
|
s->status = ret;
|
2007-02-18 00:44:43 +01:00
|
|
|
break;
|
|
|
|
case PARA_REG_CTR:
|
|
|
|
/* s->control has some bits fixed to 1. It is zero only when
|
2007-06-07 23:07:11 +02:00
|
|
|
it has not been yet written to. */
|
|
|
|
if (s->control == 0) {
|
2016-10-22 11:52:55 +02:00
|
|
|
qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_READ_CONTROL, &ret);
|
2007-06-07 23:07:11 +02:00
|
|
|
if (s->last_read_offset != addr)
|
|
|
|
pdebug("rc%02x\n", ret);
|
|
|
|
s->control = ret;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ret = s->control;
|
|
|
|
if (s->last_read_offset != addr)
|
|
|
|
pdebug("rc%02x\n", ret);
|
|
|
|
}
|
2007-02-18 00:44:43 +01:00
|
|
|
break;
|
|
|
|
case PARA_REG_EPP_ADDR:
|
2016-10-22 11:52:51 +02:00
|
|
|
if ((s->control & (PARA_CTR_DIR | PARA_CTR_SIGNAL)) !=
|
|
|
|
(PARA_CTR_DIR | PARA_CTR_INIT))
|
2007-06-07 23:07:11 +02:00
|
|
|
/* Controls not correct for EPP addr cycle, so do nothing */
|
|
|
|
pdebug("ra%02x s\n", ret);
|
|
|
|
else {
|
|
|
|
struct ParallelIOArg ioarg = { .buffer = &ret, .count = 1 };
|
2016-10-22 11:52:55 +02:00
|
|
|
if (qemu_chr_fe_ioctl(&s->chr,
|
2016-10-22 11:52:51 +02:00
|
|
|
CHR_IOCTL_PP_EPP_READ_ADDR, &ioarg)) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("ra%02x t\n", ret);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pdebug("ra%02x\n", ret);
|
|
|
|
}
|
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
case PARA_REG_EPP_DATA:
|
2016-10-22 11:52:51 +02:00
|
|
|
if ((s->control & (PARA_CTR_DIR | PARA_CTR_SIGNAL)) !=
|
|
|
|
(PARA_CTR_DIR | PARA_CTR_INIT))
|
2007-06-07 23:07:11 +02:00
|
|
|
/* Controls not correct for EPP data cycle, so do nothing */
|
|
|
|
pdebug("re%02x s\n", ret);
|
|
|
|
else {
|
|
|
|
struct ParallelIOArg ioarg = { .buffer = &ret, .count = 1 };
|
2016-10-22 11:52:55 +02:00
|
|
|
if (qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_EPP_READ, &ioarg)) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("re%02x t\n", ret);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pdebug("re%02x\n", ret);
|
|
|
|
}
|
|
|
|
break;
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
s->last_read_offset = addr;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
parallel_ioport_eppdata_read_hw2(void *opaque, uint32_t addr)
|
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
uint32_t ret;
|
|
|
|
uint16_t eppdata = ~0;
|
|
|
|
int err;
|
|
|
|
struct ParallelIOArg ioarg = {
|
2007-06-07 23:07:11 +02:00
|
|
|
.buffer = &eppdata, .count = sizeof(eppdata)
|
2007-02-18 00:44:43 +01:00
|
|
|
};
|
|
|
|
if ((s->control & (PARA_CTR_DIR|PARA_CTR_SIGNAL)) != (PARA_CTR_DIR|PARA_CTR_INIT)) {
|
2007-06-07 23:07:11 +02:00
|
|
|
/* Controls not correct for EPP data cycle, so do nothing */
|
|
|
|
pdebug("re%04x s\n", eppdata);
|
|
|
|
return eppdata;
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
2016-10-22 11:52:55 +02:00
|
|
|
err = qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_EPP_READ, &ioarg);
|
2007-02-18 00:44:43 +01:00
|
|
|
ret = le16_to_cpu(eppdata);
|
|
|
|
|
|
|
|
if (err) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("re%04x t\n", ret);
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
else
|
2007-06-07 23:07:11 +02:00
|
|
|
pdebug("re%04x\n", ret);
|
2007-02-18 00:44:43 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
parallel_ioport_eppdata_read_hw4(void *opaque, uint32_t addr)
|
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
uint32_t ret;
|
|
|
|
uint32_t eppdata = ~0U;
|
|
|
|
int err;
|
|
|
|
struct ParallelIOArg ioarg = {
|
2007-06-07 23:07:11 +02:00
|
|
|
.buffer = &eppdata, .count = sizeof(eppdata)
|
2007-02-18 00:44:43 +01:00
|
|
|
};
|
|
|
|
if ((s->control & (PARA_CTR_DIR|PARA_CTR_SIGNAL)) != (PARA_CTR_DIR|PARA_CTR_INIT)) {
|
2007-06-07 23:07:11 +02:00
|
|
|
/* Controls not correct for EPP data cycle, so do nothing */
|
|
|
|
pdebug("re%08x s\n", eppdata);
|
|
|
|
return eppdata;
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
2016-10-22 11:52:55 +02:00
|
|
|
err = qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_EPP_READ, &ioarg);
|
2007-02-18 00:44:43 +01:00
|
|
|
ret = le32_to_cpu(eppdata);
|
|
|
|
|
|
|
|
if (err) {
|
2007-06-07 23:07:11 +02:00
|
|
|
s->epp_timeout = 1;
|
|
|
|
pdebug("re%08x t\n", ret);
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
else
|
2007-06-07 23:07:11 +02:00
|
|
|
pdebug("re%08x\n", ret);
|
2007-02-18 00:44:43 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parallel_ioport_ecp_write(void *opaque, uint32_t addr, uint32_t val)
|
|
|
|
{
|
2010-04-25 20:58:25 +02:00
|
|
|
pdebug("wecp%d=%02x\n", addr & 7, val);
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t parallel_ioport_ecp_read(void *opaque, uint32_t addr)
|
|
|
|
{
|
|
|
|
uint8_t ret = 0xff;
|
2010-04-25 20:58:25 +02:00
|
|
|
|
|
|
|
pdebug("recp%d:%02x\n", addr & 7, ret);
|
2005-01-15 13:02:56 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-12-08 00:26:09 +01:00
|
|
|
static void parallel_reset(void *opaque)
|
2005-01-15 13:02:56 +01:00
|
|
|
{
|
2008-12-08 00:26:09 +01:00
|
|
|
ParallelState *s = opaque;
|
|
|
|
|
2007-02-18 00:44:43 +01:00
|
|
|
s->datar = ~0;
|
|
|
|
s->dataw = ~0;
|
2005-01-15 13:02:56 +01:00
|
|
|
s->status = PARA_STS_BUSY;
|
|
|
|
s->status |= PARA_STS_ACK;
|
|
|
|
s->status |= PARA_STS_ONLINE;
|
|
|
|
s->status |= PARA_STS_ERROR;
|
2008-02-10 14:34:48 +01:00
|
|
|
s->status |= PARA_STS_TMOUT;
|
2005-01-15 13:02:56 +01:00
|
|
|
s->control = PARA_CTR_SELECT;
|
|
|
|
s->control |= PARA_CTR_INIT;
|
2008-02-10 14:34:48 +01:00
|
|
|
s->control |= 0xc0;
|
2007-02-18 00:44:43 +01:00
|
|
|
s->irq_pending = 0;
|
|
|
|
s->hw_driver = 0;
|
|
|
|
s->epp_timeout = 0;
|
|
|
|
s->last_read_offset = ~0U;
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2009-10-13 13:38:39 +02:00
|
|
|
static const int isa_parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
|
|
|
|
|
2011-08-16 00:55:09 +02:00
|
|
|
static const MemoryRegionPortio isa_parallel_portio_hw_list[] = {
|
|
|
|
{ 0, 8, 1,
|
|
|
|
.read = parallel_ioport_read_hw,
|
|
|
|
.write = parallel_ioport_write_hw },
|
|
|
|
{ 4, 1, 2,
|
|
|
|
.read = parallel_ioport_eppdata_read_hw2,
|
|
|
|
.write = parallel_ioport_eppdata_write_hw2 },
|
|
|
|
{ 4, 1, 4,
|
|
|
|
.read = parallel_ioport_eppdata_read_hw4,
|
|
|
|
.write = parallel_ioport_eppdata_write_hw4 },
|
|
|
|
{ 0x400, 8, 1,
|
|
|
|
.read = parallel_ioport_ecp_read,
|
|
|
|
.write = parallel_ioport_ecp_write },
|
|
|
|
PORTIO_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static const MemoryRegionPortio isa_parallel_portio_sw_list[] = {
|
|
|
|
{ 0, 8, 1,
|
|
|
|
.read = parallel_ioport_read_sw,
|
|
|
|
.write = parallel_ioport_write_sw },
|
|
|
|
PORTIO_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2014-08-28 13:18:46 +02:00
|
|
|
|
|
|
|
static const VMStateDescription vmstate_parallel_isa = {
|
|
|
|
.name = "parallel_isa",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_UINT8(state.dataw, ISAParallelState),
|
|
|
|
VMSTATE_UINT8(state.datar, ISAParallelState),
|
|
|
|
VMSTATE_UINT8(state.status, ISAParallelState),
|
|
|
|
VMSTATE_UINT8(state.control, ISAParallelState),
|
|
|
|
VMSTATE_INT32(state.irq_pending, ISAParallelState),
|
|
|
|
VMSTATE_INT32(state.epp_timeout, ISAParallelState),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-11-25 02:37:14 +01:00
|
|
|
static void parallel_isa_realizefn(DeviceState *dev, Error **errp)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
2009-10-13 13:38:39 +02:00
|
|
|
static int index;
|
2012-11-25 02:37:14 +01:00
|
|
|
ISADevice *isadev = ISA_DEVICE(dev);
|
2013-04-27 22:18:45 +02:00
|
|
|
ISAParallelState *isa = ISA_PARALLEL(dev);
|
2009-09-22 13:53:22 +02:00
|
|
|
ParallelState *s = &isa->state;
|
2009-10-13 13:38:39 +02:00
|
|
|
int base;
|
2007-06-18 20:55:46 +02:00
|
|
|
uint8_t dummy;
|
|
|
|
|
2016-10-22 11:52:55 +02:00
|
|
|
if (!qemu_chr_fe_get_driver(&s->chr)) {
|
2012-11-25 02:37:14 +01:00
|
|
|
error_setg(errp, "Can't create parallel device, empty char device");
|
|
|
|
return;
|
2009-09-22 13:53:22 +02:00
|
|
|
}
|
|
|
|
|
2012-11-25 02:37:14 +01:00
|
|
|
if (isa->index == -1) {
|
2009-10-13 13:38:39 +02:00
|
|
|
isa->index = index;
|
2012-11-25 02:37:14 +01:00
|
|
|
}
|
|
|
|
if (isa->index >= MAX_PARALLEL_PORTS) {
|
|
|
|
error_setg(errp, "Max. supported number of parallel ports is %d.",
|
|
|
|
MAX_PARALLEL_PORTS);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (isa->iobase == -1) {
|
2009-10-13 13:38:39 +02:00
|
|
|
isa->iobase = isa_parallel_io[isa->index];
|
2012-11-25 02:37:14 +01:00
|
|
|
}
|
2009-10-13 13:38:39 +02:00
|
|
|
index++;
|
|
|
|
|
|
|
|
base = isa->iobase;
|
2012-11-25 02:37:14 +01:00
|
|
|
isa_init_irq(isadev, &s->irq, isa->isairq);
|
2009-06-27 09:25:07 +02:00
|
|
|
qemu_register_reset(parallel_reset, s);
|
2005-01-15 13:02:56 +01:00
|
|
|
|
2016-10-22 11:52:55 +02:00
|
|
|
if (qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_PP_READ_STATUS, &dummy) == 0) {
|
2007-02-18 00:44:43 +01:00
|
|
|
s->hw_driver = 1;
|
2007-06-07 23:07:11 +02:00
|
|
|
s->status = dummy;
|
2007-02-18 00:44:43 +01:00
|
|
|
}
|
|
|
|
|
2016-07-13 02:11:59 +02:00
|
|
|
isa_register_portio_list(isadev, &s->portio_list, base,
|
2011-08-16 00:55:09 +02:00
|
|
|
(s->hw_driver
|
|
|
|
? &isa_parallel_portio_hw_list[0]
|
|
|
|
: &isa_parallel_portio_sw_list[0]),
|
|
|
|
s, "parallel");
|
2009-09-22 13:53:22 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 20:55:46 +02:00
|
|
|
/* Memory mapped interface */
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint32_t parallel_mm_readb (void *opaque, hwaddr addr)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
|
2008-12-01 19:59:50 +01:00
|
|
|
return parallel_ioport_read_sw(s, addr >> s->it_shift) & 0xFF;
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2007-11-18 02:44:38 +01:00
|
|
|
static void parallel_mm_writeb (void *opaque,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr addr, uint32_t value)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
|
2008-12-01 19:59:50 +01:00
|
|
|
parallel_ioport_write_sw(s, addr >> s->it_shift, value & 0xFF);
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint32_t parallel_mm_readw (void *opaque, hwaddr addr)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
|
2008-12-01 19:59:50 +01:00
|
|
|
return parallel_ioport_read_sw(s, addr >> s->it_shift) & 0xFFFF;
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2007-11-18 02:44:38 +01:00
|
|
|
static void parallel_mm_writew (void *opaque,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr addr, uint32_t value)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
|
2008-12-01 19:59:50 +01:00
|
|
|
parallel_ioport_write_sw(s, addr >> s->it_shift, value & 0xFFFF);
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint32_t parallel_mm_readl (void *opaque, hwaddr addr)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
|
2008-12-01 19:59:50 +01:00
|
|
|
return parallel_ioport_read_sw(s, addr >> s->it_shift);
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2007-11-18 02:44:38 +01:00
|
|
|
static void parallel_mm_writel (void *opaque,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr addr, uint32_t value)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
|
|
|
ParallelState *s = opaque;
|
|
|
|
|
2008-12-01 19:59:50 +01:00
|
|
|
parallel_ioport_write_sw(s, addr >> s->it_shift, value);
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2011-10-06 16:44:26 +02:00
|
|
|
static const MemoryRegionOps parallel_mm_ops = {
|
|
|
|
.old_mmio = {
|
|
|
|
.read = { parallel_mm_readb, parallel_mm_readw, parallel_mm_readl },
|
|
|
|
.write = { parallel_mm_writeb, parallel_mm_writew, parallel_mm_writel },
|
|
|
|
},
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
2007-06-18 20:55:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* If fd is zero, it means that the parallel device uses the console */
|
2011-10-06 16:44:26 +02:00
|
|
|
bool parallel_mm_init(MemoryRegion *address_space,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr base, int it_shift, qemu_irq irq,
|
2011-02-05 15:51:57 +01:00
|
|
|
CharDriverState *chr)
|
2007-06-18 20:55:46 +02:00
|
|
|
{
|
|
|
|
ParallelState *s;
|
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
s = g_malloc0(sizeof(ParallelState));
|
2008-12-08 00:26:09 +01:00
|
|
|
s->irq = irq;
|
2016-10-22 11:52:51 +02:00
|
|
|
qemu_chr_fe_init(&s->chr, chr, &error_abort);
|
2007-06-18 20:55:46 +02:00
|
|
|
s->it_shift = it_shift;
|
2009-06-27 09:25:07 +02:00
|
|
|
qemu_register_reset(parallel_reset, s);
|
2007-06-18 20:55:46 +02:00
|
|
|
|
2013-06-06 11:41:28 +02:00
|
|
|
memory_region_init_io(&s->iomem, NULL, ¶llel_mm_ops, s,
|
2011-10-06 16:44:26 +02:00
|
|
|
"parallel", 8 << it_shift);
|
|
|
|
memory_region_add_subregion(address_space, base, &s->iomem);
|
2011-02-05 15:51:57 +01:00
|
|
|
return true;
|
2007-06-18 20:55:46 +02:00
|
|
|
}
|
2009-09-22 13:53:22 +02:00
|
|
|
|
2011-12-08 04:34:16 +01:00
|
|
|
static Property parallel_isa_properties[] = {
|
|
|
|
DEFINE_PROP_UINT32("index", ISAParallelState, index, -1),
|
2014-02-08 11:01:53 +01:00
|
|
|
DEFINE_PROP_UINT32("iobase", ISAParallelState, iobase, -1),
|
2011-12-08 04:34:16 +01:00
|
|
|
DEFINE_PROP_UINT32("irq", ISAParallelState, isairq, 7),
|
|
|
|
DEFINE_PROP_CHR("chardev", ISAParallelState, state.chr),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2011-12-04 18:52:49 +01:00
|
|
|
static void parallel_isa_class_initfn(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-11-25 02:37:14 +01:00
|
|
|
|
|
|
|
dc->realize = parallel_isa_realizefn;
|
2014-08-28 13:18:46 +02:00
|
|
|
dc->vmsd = &vmstate_parallel_isa;
|
2011-12-08 04:34:16 +01:00
|
|
|
dc->props = parallel_isa_properties;
|
2013-07-29 16:17:45 +02:00
|
|
|
set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
|
2011-12-04 18:52:49 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo parallel_isa_info = {
|
2013-04-27 22:18:45 +02:00
|
|
|
.name = TYPE_ISA_PARALLEL,
|
2011-12-08 04:34:16 +01:00
|
|
|
.parent = TYPE_ISA_DEVICE,
|
|
|
|
.instance_size = sizeof(ISAParallelState),
|
|
|
|
.class_init = parallel_isa_class_initfn,
|
2009-09-22 13:53:22 +02:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void parallel_register_types(void)
|
2009-09-22 13:53:22 +02:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
type_register_static(¶llel_isa_info);
|
2009-09-22 13:53:22 +02:00
|
|
|
}
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(parallel_register_types)
|