2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2002-01-29 20:20:12 +03:00
|
|
|
// $Id: parallel.cc,v 1.17 2002-01-29 17:20:11 vruppert Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2002-01-18 19:33:07 +03:00
|
|
|
// Copyright (C) 2002 MandrakeSoft S.A.
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-11-12 04:45:21 +03:00
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
// This code was just a few stubs until Volker.Ruppert@t-online.de
|
|
|
|
// fixed it up in November 2001.
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
#include "bochs.h"
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
#define LOG_THIS bx_parallel.
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-11-12 05:35:09 +03:00
|
|
|
#define OUTPUT (BX_PAR_THIS output)
|
2001-04-10 05:04:59 +04:00
|
|
|
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
bx_parallel_c bx_parallel;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_USE_PAR_SMF
|
|
|
|
#define this (&bx_parallel)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bx_parallel_c::bx_parallel_c(void)
|
|
|
|
{
|
2001-06-28 00:11:10 +04:00
|
|
|
put("PAR");
|
|
|
|
settype(PARLOG);
|
2001-11-12 05:35:09 +03:00
|
|
|
OUTPUT = NULL;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bx_parallel_c::~bx_parallel_c(void)
|
|
|
|
{
|
2001-12-19 00:58:59 +03:00
|
|
|
if (OUTPUT != NULL)
|
2001-11-12 05:35:09 +03:00
|
|
|
fclose(OUTPUT);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_parallel_c::init(bx_devices_c *d)
|
|
|
|
{
|
2002-01-29 20:20:12 +03:00
|
|
|
BX_DEBUG(("Init $Id: parallel.cc,v 1.17 2002-01-29 17:20:11 vruppert Exp $"));
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_PAR_THIS devices = d;
|
|
|
|
|
|
|
|
/* PARALLEL PORT 1 */
|
|
|
|
|
|
|
|
BX_PAR_THIS devices->register_irq(7, "Parallel Port 1");
|
2001-12-19 00:58:59 +03:00
|
|
|
for (unsigned addr=0x0378; addr<=0x037A; addr++) {
|
|
|
|
BX_PAR_THIS devices->register_io_read_handler(this,
|
|
|
|
read_handler, addr, "Parallel Port 1");
|
|
|
|
}
|
2001-11-12 04:33:01 +03:00
|
|
|
BX_PAR_THIS devices->register_io_write_handler(this,
|
|
|
|
write_handler, 0x0378, "Parallel Port 1");
|
|
|
|
BX_PAR_THIS devices->register_io_write_handler(this,
|
|
|
|
write_handler, 0x037A, "Parallel Port 1");
|
|
|
|
|
|
|
|
BX_PAR_THIS s.STATUS.error = 1;
|
|
|
|
BX_PAR_THIS s.STATUS.slct = 1;
|
|
|
|
BX_PAR_THIS s.STATUS.pe = 0;
|
|
|
|
BX_PAR_THIS s.STATUS.ack = 1;
|
|
|
|
BX_PAR_THIS s.STATUS.busy = 1;
|
|
|
|
|
|
|
|
BX_PAR_THIS s.CONTROL.strobe = 0;
|
|
|
|
BX_PAR_THIS s.CONTROL.autofeed = 0;
|
|
|
|
BX_PAR_THIS s.CONTROL.init = 1;
|
|
|
|
BX_PAR_THIS s.CONTROL.slct_in = 1;
|
|
|
|
BX_PAR_THIS s.CONTROL.irq = 0;
|
2001-12-19 00:58:59 +03:00
|
|
|
BX_PAR_THIS s.CONTROL.input = 0;
|
2001-11-12 04:33:01 +03:00
|
|
|
|
2001-11-14 03:29:20 +03:00
|
|
|
BX_PAR_THIS initmode = 0;
|
|
|
|
|
2001-11-12 05:35:09 +03:00
|
|
|
if (bx_options.par1.Oenable->get ()) {
|
2001-11-14 03:29:20 +03:00
|
|
|
OUTPUT = fopen(bx_options.par1.Ooutfile->getptr (), "wb");
|
2001-11-12 05:35:09 +03:00
|
|
|
if (!OUTPUT)
|
|
|
|
BX_PANIC (("Could not open '%s' to write parport1 output"));
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2001-11-12 04:33:01 +03:00
|
|
|
void
|
|
|
|
bx_parallel_c::virtual_printer(void)
|
|
|
|
{
|
2001-12-19 00:58:59 +03:00
|
|
|
if (BX_PAR_THIS s.STATUS.slct) {
|
|
|
|
if (OUTPUT != NULL) {
|
|
|
|
fputc(BX_PAR_THIS s.data, OUTPUT);
|
|
|
|
fflush (OUTPUT);
|
|
|
|
}
|
|
|
|
if (BX_PAR_THIS s.CONTROL.irq == 1) {
|
2002-01-29 20:20:12 +03:00
|
|
|
BX_PAR_THIS devices->pic->raise_irq(7);
|
2001-12-19 00:58:59 +03:00
|
|
|
}
|
|
|
|
BX_PAR_THIS s.STATUS.ack = 0;
|
|
|
|
BX_PAR_THIS s.STATUS.busy = 1;
|
2001-11-12 04:33:01 +03:00
|
|
|
}
|
2002-01-18 19:33:07 +03:00
|
|
|
else {
|
|
|
|
BX_ERROR(("data is valid, but printer is offline"));
|
|
|
|
}
|
2001-11-12 04:33:01 +03:00
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// static IO port read callback handler
|
|
|
|
// redirects to non-static class handler to avoid virtual functions
|
|
|
|
|
|
|
|
Bit32u
|
|
|
|
bx_parallel_c::read_handler(void *this_ptr, Bit32u address, unsigned io_len)
|
|
|
|
{
|
|
|
|
#if !BX_USE_PAR_SMF
|
|
|
|
bx_parallel_c *class_ptr = (bx_parallel_c *) this_ptr;
|
|
|
|
|
|
|
|
return( class_ptr->read(address, io_len) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Bit32u
|
|
|
|
bx_parallel_c::read(Bit32u address, unsigned io_len)
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
UNUSED(this_ptr);
|
|
|
|
#endif // !BX_USE_PAR_SMF
|
|
|
|
|
2001-11-14 03:29:20 +03:00
|
|
|
Bit32u retval;
|
|
|
|
|
2001-11-12 04:33:01 +03:00
|
|
|
if (io_len == 1) {
|
|
|
|
switch (address) {
|
2001-12-19 00:58:59 +03:00
|
|
|
case 0x0378:
|
|
|
|
if (!BX_PAR_THIS s.CONTROL.input) {
|
|
|
|
return (Bit32u)BX_PAR_THIS s.data;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BX_ERROR(("read: input mode not supported"));
|
|
|
|
return (0xFF);
|
|
|
|
}
|
|
|
|
break;
|
2001-11-12 04:33:01 +03:00
|
|
|
case 0x0379:
|
|
|
|
{
|
|
|
|
retval = ((BX_PAR_THIS s.STATUS.busy << 7) |
|
|
|
|
(BX_PAR_THIS s.STATUS.ack << 6) |
|
|
|
|
(BX_PAR_THIS s.STATUS.pe << 5) |
|
|
|
|
(BX_PAR_THIS s.STATUS.slct << 4) |
|
|
|
|
(BX_PAR_THIS s.STATUS.error << 3));
|
2001-11-14 03:29:20 +03:00
|
|
|
if (BX_PAR_THIS s.STATUS.ack == 0) {
|
|
|
|
BX_PAR_THIS s.STATUS.ack = 1;
|
2002-01-18 19:33:07 +03:00
|
|
|
if (BX_PAR_THIS s.CONTROL.irq == 1) {
|
2002-01-29 20:20:12 +03:00
|
|
|
BX_PAR_THIS devices->pic->lower_irq(7);
|
2002-01-18 19:33:07 +03:00
|
|
|
}
|
2001-11-12 04:33:01 +03:00
|
|
|
}
|
2001-11-14 03:29:20 +03:00
|
|
|
if (BX_PAR_THIS initmode == 1) {
|
|
|
|
BX_PAR_THIS s.STATUS.busy = 1;
|
|
|
|
BX_PAR_THIS s.STATUS.slct = 1;
|
|
|
|
BX_PAR_THIS initmode = 0;
|
|
|
|
}
|
2001-12-19 00:58:59 +03:00
|
|
|
BX_DEBUG(("read: status register returns 0x%02x", retval));
|
2001-11-12 04:33:01 +03:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x037A:
|
2001-12-19 00:58:59 +03:00
|
|
|
{
|
|
|
|
retval = ((BX_PAR_THIS s.CONTROL.input << 5) |
|
|
|
|
(BX_PAR_THIS s.CONTROL.irq << 4) |
|
2001-11-14 03:29:20 +03:00
|
|
|
(BX_PAR_THIS s.CONTROL.slct_in << 3) |
|
|
|
|
(BX_PAR_THIS s.CONTROL.init << 2) |
|
|
|
|
(BX_PAR_THIS s.CONTROL.autofeed << 1) |
|
|
|
|
(BX_PAR_THIS s.CONTROL.strobe));
|
2001-12-19 00:58:59 +03:00
|
|
|
BX_DEBUG(("read: control register returns 0x%02x", retval));
|
2001-11-14 03:29:20 +03:00
|
|
|
return retval;
|
2001-11-12 04:33:01 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
/* PARALLEL PORT 1 */
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// static IO port write callback handler
|
|
|
|
// redirects to non-static class handler to avoid virtual functions
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_parallel_c::write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len)
|
|
|
|
{
|
|
|
|
#if !BX_USE_PAR_SMF
|
|
|
|
bx_parallel_c *class_ptr = (bx_parallel_c *) this_ptr;
|
|
|
|
|
|
|
|
class_ptr->write(address, value, io_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_parallel_c::write(Bit32u address, Bit32u value, unsigned io_len)
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
UNUSED(this_ptr);
|
|
|
|
#endif // !BX_USE_PAR_SMF
|
2001-11-12 04:33:01 +03:00
|
|
|
|
|
|
|
if (io_len == 1) {
|
|
|
|
switch (address) {
|
|
|
|
case 0x0378:
|
2001-12-19 00:58:59 +03:00
|
|
|
BX_PAR_THIS s.data = (Bit8u)value;
|
|
|
|
BX_DEBUG(("write: data output register = 0x%02x", (Bit8u)value));
|
|
|
|
break;
|
2001-11-12 04:33:01 +03:00
|
|
|
case 0x037A:
|
|
|
|
{
|
2001-11-14 03:29:20 +03:00
|
|
|
if ((value & 0x01) == 0x01) {
|
2001-11-12 04:33:01 +03:00
|
|
|
if (BX_PAR_THIS s.CONTROL.strobe == 0) {
|
|
|
|
BX_PAR_THIS s.CONTROL.strobe = 1;
|
|
|
|
virtual_printer(); // data is valid now
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (BX_PAR_THIS s.CONTROL.strobe == 1) {
|
|
|
|
BX_PAR_THIS s.CONTROL.strobe = 0;
|
|
|
|
}
|
|
|
|
}
|
2001-11-14 03:29:20 +03:00
|
|
|
BX_PAR_THIS s.CONTROL.autofeed = ((value & 0x02) == 0x02);
|
|
|
|
if ((value & 0x04) == 0x04) {
|
|
|
|
if (BX_PAR_THIS s.CONTROL.init == 0) {
|
|
|
|
BX_PAR_THIS s.CONTROL.init = 1;
|
|
|
|
BX_PAR_THIS s.STATUS.busy = 0;
|
|
|
|
BX_PAR_THIS s.STATUS.slct = 0;
|
|
|
|
BX_PAR_THIS initmode = 1;
|
|
|
|
BX_DEBUG(("printer init requested"));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (BX_PAR_THIS s.CONTROL.init == 1) {
|
|
|
|
BX_PAR_THIS s.CONTROL.init = 0;
|
|
|
|
}
|
|
|
|
}
|
2001-12-19 00:58:59 +03:00
|
|
|
if ((value & 0x08) == 0x08) {
|
|
|
|
if (BX_PAR_THIS s.CONTROL.slct_in == 0) {
|
|
|
|
BX_PAR_THIS s.CONTROL.slct_in = 1;
|
|
|
|
BX_DEBUG(("printer now online"));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (BX_PAR_THIS s.CONTROL.slct_in == 1) {
|
|
|
|
BX_PAR_THIS s.CONTROL.slct_in = 0;
|
|
|
|
BX_DEBUG(("printer now offline"));
|
|
|
|
}
|
|
|
|
}
|
2001-11-12 04:33:01 +03:00
|
|
|
BX_PAR_THIS s.STATUS.slct = BX_PAR_THIS s.CONTROL.slct_in;
|
|
|
|
if ((value & 0x10) == 0x10) {
|
2001-11-14 03:29:20 +03:00
|
|
|
if (BX_PAR_THIS s.CONTROL.irq == 0) {
|
|
|
|
BX_PAR_THIS s.CONTROL.irq = 1;
|
|
|
|
BX_DEBUG(("irq mode selected"));
|
|
|
|
}
|
2001-11-12 04:33:01 +03:00
|
|
|
} else {
|
2001-11-14 03:29:20 +03:00
|
|
|
if (BX_PAR_THIS s.CONTROL.irq == 1) {
|
|
|
|
BX_PAR_THIS s.CONTROL.irq = 0;
|
|
|
|
BX_DEBUG(("polling mode selected"));
|
|
|
|
}
|
|
|
|
}
|
2001-12-19 00:58:59 +03:00
|
|
|
if ((value & 0x20) == 0x20) {
|
|
|
|
if (BX_PAR_THIS s.CONTROL.input == 0) {
|
|
|
|
BX_PAR_THIS s.CONTROL.input = 1;
|
|
|
|
BX_DEBUG(("data input mode selected"));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (BX_PAR_THIS s.CONTROL.input == 1) {
|
|
|
|
BX_PAR_THIS s.CONTROL.input = 0;
|
|
|
|
BX_DEBUG(("data output mode selected"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((value & 0xC0) > 0) {
|
|
|
|
BX_ERROR(("write: unsupported control bit ignored"));
|
2001-11-12 04:33:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
/* PARALLEL PORT 1 */
|
|
|
|
}
|