2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2006-03-03 23:29:50 +03:00
|
|
|
// $Id: devices.cc,v 1.93 2006-03-03 20:29:50 vruppert Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2002-01-29 20:20:12 +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/
|
|
|
|
//
|
2004-01-15 05:08:37 +03:00
|
|
|
// I/O port handlers API Copyright (C) 2003 by Frank Cornelis
|
|
|
|
//
|
2001-04-10 05:04:59 +04:00
|
|
|
// 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
|
|
|
|
|
|
|
|
|
2004-06-19 19:20:15 +04:00
|
|
|
#include "iodev.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_devices.
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* main memory size (in Kbytes)
|
|
|
|
* subtract 1k for extended BIOS area
|
|
|
|
* report only base memory, not extended mem
|
|
|
|
*/
|
|
|
|
#define BASE_MEMORY_IN_K 640
|
|
|
|
|
|
|
|
|
|
|
|
bx_devices_c bx_devices;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-27 23:54:46 +04:00
|
|
|
// constructor for bx_devices_c
|
2001-04-10 05:04:59 +04:00
|
|
|
bx_devices_c::bx_devices_c(void)
|
|
|
|
{
|
2001-06-27 23:16:01 +04:00
|
|
|
put("DEV");
|
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
|
|
|
settype(DEVLOG);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
read_port_to_handler = NULL;
|
|
|
|
write_port_to_handler = NULL;
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCI
|
2002-11-09 23:51:40 +03:00
|
|
|
pluginPciBridge = &stubPci;
|
2004-07-02 02:18:20 +04:00
|
|
|
pluginPci2IsaBridge = &stubPci2Isa;
|
2005-02-08 21:32:27 +03:00
|
|
|
pluginPciIdeController = &stubPciIde;
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIVGA
|
2003-01-11 01:43:54 +03:00
|
|
|
pluginPciVgaAdapter = NULL;
|
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIDEV
|
2004-01-15 05:08:37 +03:00
|
|
|
pluginPciDevAdapter = NULL;
|
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIUSB
|
2004-12-11 11:35:33 +03:00
|
|
|
pluginPciUSBAdapter = &stubUsbAdapter;
|
2004-01-13 22:21:21 +03:00
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIPNIC
|
2004-01-13 22:21:21 +03:00
|
|
|
pluginPciPNicAdapter = NULL;
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
pit = NULL;
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginKeyboard = &stubKeyboard;
|
|
|
|
pluginDmaDevice = &stubDma;
|
|
|
|
pluginFloppyDevice = &stubFloppy;
|
|
|
|
pluginBiosDevice = NULL;
|
|
|
|
pluginCmosDevice = &stubCmos;
|
2004-12-03 00:34:26 +03:00
|
|
|
pluginSerialDevice = &stubSerial;
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginParallelDevice = NULL;
|
|
|
|
pluginUnmapped = NULL;
|
|
|
|
pluginVgaDevice = &stubVga;
|
|
|
|
pluginPicDevice = &stubPic;
|
|
|
|
pluginHardDrive = &stubHardDrive;
|
2002-11-13 21:39:41 +03:00
|
|
|
pluginSB16Device = NULL;
|
2002-11-19 21:56:39 +03:00
|
|
|
pluginNE2kDevice =&stubNE2k;
|
2003-01-06 05:20:47 +03:00
|
|
|
pluginExtFpuIrq = NULL;
|
2003-06-21 16:55:19 +04:00
|
|
|
pluginGameport = NULL;
|
2004-02-03 00:47:26 +03:00
|
|
|
pluginSpeaker = &stubSpeaker;
|
2006-01-17 23:16:59 +03:00
|
|
|
#if BX_SUPPORT_BUSMOUSE
|
|
|
|
pluginBusMouse = &stubBusMouse;
|
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_IODEBUG
|
2001-09-14 19:01:29 +04:00
|
|
|
iodebug = NULL;
|
|
|
|
#endif
|
2006-01-17 23:16:59 +03:00
|
|
|
#if 0
|
|
|
|
g2h = NULL;
|
|
|
|
#endif
|
2002-08-27 21:25:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bx_devices_c::~bx_devices_c(void)
|
|
|
|
{
|
|
|
|
// nothing needed for now
|
|
|
|
BX_DEBUG(("Exit."));
|
2002-10-06 23:04:47 +04:00
|
|
|
timer_handle = BX_NULL_TIMER_HANDLE;
|
2002-08-27 21:25:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_devices_c::init(BX_MEM_C *newmem)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
2006-03-03 23:29:50 +03:00
|
|
|
BX_DEBUG(("Init $Id: devices.cc,v 1.93 2006-03-03 20:29:50 vruppert Exp $"));
|
2002-08-27 21:25:18 +04:00
|
|
|
mem = newmem;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
/* set no-default handlers, will be overwritten by the real default handler */
|
2004-01-15 05:08:37 +03:00
|
|
|
io_read_handlers.next = &io_read_handlers;
|
|
|
|
io_read_handlers.prev = &io_read_handlers;
|
|
|
|
io_read_handlers.handler_name = "Default";
|
|
|
|
io_read_handlers.funct = (void *)&default_read_handler;
|
|
|
|
io_read_handlers.this_ptr = NULL;
|
|
|
|
io_read_handlers.usage_count = 0; // not used with the default handler
|
|
|
|
io_read_handlers.mask = 7;
|
|
|
|
|
|
|
|
io_write_handlers.next = &io_write_handlers;
|
|
|
|
io_write_handlers.prev = &io_write_handlers;
|
|
|
|
io_write_handlers.handler_name = "Default";
|
|
|
|
io_write_handlers.funct = (void *)&default_write_handler;
|
|
|
|
io_write_handlers.this_ptr = NULL;
|
|
|
|
io_write_handlers.usage_count = 0; // not used with the default handler
|
|
|
|
io_write_handlers.mask = 7;
|
|
|
|
|
|
|
|
if (read_port_to_handler)
|
|
|
|
delete [] read_port_to_handler;
|
|
|
|
if (write_port_to_handler)
|
|
|
|
delete [] write_port_to_handler;
|
|
|
|
read_port_to_handler = new struct io_handler_struct *[PORTS];
|
|
|
|
write_port_to_handler = new struct io_handler_struct *[PORTS];
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
/* set handlers to the default one */
|
2004-01-15 05:08:37 +03:00
|
|
|
for (i=0; i < PORTS; i++) {
|
|
|
|
read_port_to_handler[i] = &io_read_handlers;
|
|
|
|
write_port_to_handler[i] = &io_write_handlers;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
for (i=0; i < BX_MAX_IRQS; i++) {
|
|
|
|
irq_handler_name[i] = NULL;
|
|
|
|
}
|
|
|
|
|
2002-10-25 16:28:34 +04:00
|
|
|
// BBD: At present, the only difference between "core" and "optional"
|
|
|
|
// plugins is that initialization and reset of optional plugins is handled
|
|
|
|
// by the plugin device list (). Init and reset of core plugins is done
|
|
|
|
// "by hand" in this file. Basically, we're using core plugins when we
|
|
|
|
// want to control the init order.
|
|
|
|
//
|
|
|
|
// CB: UNMAPPED and BIOSDEV should maybe be optional
|
2002-10-25 01:07:56 +04:00
|
|
|
PLUG_load_plugin(unmapped, PLUGTYPE_CORE);
|
|
|
|
PLUG_load_plugin(biosdev, PLUGTYPE_CORE);
|
|
|
|
PLUG_load_plugin(cmos, PLUGTYPE_CORE);
|
|
|
|
PLUG_load_plugin(dma, PLUGTYPE_CORE);
|
|
|
|
PLUG_load_plugin(pic, PLUGTYPE_CORE);
|
|
|
|
PLUG_load_plugin(vga, PLUGTYPE_CORE);
|
|
|
|
PLUG_load_plugin(floppy, PLUGTYPE_CORE);
|
|
|
|
PLUG_load_plugin(harddrv, PLUGTYPE_OPTIONAL);
|
|
|
|
PLUG_load_plugin(keyboard, PLUGTYPE_OPTIONAL);
|
2004-12-11 11:35:33 +03:00
|
|
|
#if BX_SUPPORT_BUSMOUSE
|
2006-02-22 22:18:29 +03:00
|
|
|
if (SIM->get_param_bool(BXPN_MOUSE_ENABLED)->get() == BX_MOUSE_TYPE_BUS) {
|
2004-12-11 11:35:33 +03:00
|
|
|
PLUG_load_plugin(busmouse, PLUGTYPE_OPTIONAL);
|
|
|
|
}
|
|
|
|
#endif
|
2006-03-02 23:13:14 +03:00
|
|
|
if (is_serial_enabled())
|
2002-10-25 01:07:56 +04:00
|
|
|
PLUG_load_plugin(serial, PLUGTYPE_OPTIONAL);
|
2006-03-02 23:13:14 +03:00
|
|
|
if (is_parallel_enabled())
|
2002-10-25 01:07:56 +04:00
|
|
|
PLUG_load_plugin(parallel, PLUGTYPE_OPTIONAL);
|
2003-01-06 05:20:47 +03:00
|
|
|
PLUG_load_plugin(extfpuirq, PLUGTYPE_OPTIONAL);
|
2003-12-26 16:53:40 +03:00
|
|
|
#if BX_SUPPORT_GAME
|
2003-06-21 16:55:19 +04:00
|
|
|
PLUG_load_plugin(gameport, PLUGTYPE_OPTIONAL);
|
2003-12-26 16:53:40 +03:00
|
|
|
#endif
|
2004-02-02 02:42:04 +03:00
|
|
|
PLUG_load_plugin(speaker, PLUGTYPE_OPTIONAL);
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
// Start with registering the default (unmapped) handler
|
|
|
|
pluginUnmapped->init ();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// PCI logic (i440FX)
|
2006-02-20 00:35:50 +03:00
|
|
|
if (SIM->get_param_bool(BXPN_I440FX_SUPPORT)->get()) {
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCI
|
2004-06-27 22:23:00 +04:00
|
|
|
PLUG_load_plugin(pci, PLUGTYPE_CORE);
|
2004-07-03 12:20:19 +04:00
|
|
|
PLUG_load_plugin(pci2isa, PLUGTYPE_CORE);
|
2004-06-10 00:55:58 +04:00
|
|
|
PLUG_load_plugin(pci_ide, PLUGTYPE_OPTIONAL);
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIVGA
|
2005-10-27 12:20:16 +04:00
|
|
|
if ((DEV_is_pci_device("pcivga")) &&
|
2006-02-22 00:35:09 +03:00
|
|
|
(!strcmp(SIM->get_param_string(BXPN_VGA_EXTENSION)->getptr(), "vbe"))) {
|
2005-02-01 22:16:39 +03:00
|
|
|
PLUG_load_plugin(pcivga, PLUGTYPE_OPTIONAL);
|
|
|
|
}
|
2003-01-11 01:43:54 +03:00
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIUSB
|
2006-03-02 23:13:14 +03:00
|
|
|
if (is_usb_enabled()) {
|
|
|
|
PLUG_load_plugin(pciusb, PLUGTYPE_OPTIONAL);
|
|
|
|
}
|
2003-01-28 19:58:10 +03:00
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIDEV
|
2006-02-21 00:29:13 +03:00
|
|
|
if (SIM->get_param_num(BXPN_PCIDEV_VENDOR)->get() != 0xffff) {
|
|
|
|
PLUG_load_plugin(pcidev, PLUGTYPE_OPTIONAL);
|
|
|
|
}
|
2004-01-15 05:08:37 +03:00
|
|
|
#endif
|
2004-10-04 00:06:12 +04:00
|
|
|
#if BX_SUPPORT_PCIPNIC
|
2006-03-02 23:13:14 +03:00
|
|
|
if (SIM->get_param_bool(BXPN_PNIC_ENABLED)->get()) {
|
2004-01-13 22:21:21 +03:00
|
|
|
PLUG_load_plugin(pcipnic, PLUGTYPE_OPTIONAL);
|
2004-02-11 02:47:31 +03:00
|
|
|
}
|
2004-01-13 22:21:21 +03:00
|
|
|
#endif
|
2002-11-21 20:10:13 +03:00
|
|
|
#else
|
|
|
|
BX_ERROR(("Bochs is not compiled with PCI support"));
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
2002-11-21 20:10:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-07-03 12:20:19 +04:00
|
|
|
// NE2000 NIC
|
2006-03-02 23:13:14 +03:00
|
|
|
if (SIM->get_param_bool(BXPN_NE2K_ENABLED)->get()) {
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_NE2K
|
2004-07-03 12:20:19 +04:00
|
|
|
PLUG_load_plugin(ne2k, PLUGTYPE_OPTIONAL);
|
|
|
|
#else
|
|
|
|
BX_ERROR(("Bochs is not compiled with NE2K support"));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-06-12 17:07:43 +04:00
|
|
|
#if BX_SUPPORT_APIC
|
2002-10-25 01:07:56 +04:00
|
|
|
// I/O APIC 82093AA
|
|
|
|
ioapic = & bx_ioapic;
|
|
|
|
ioapic->init ();
|
2001-05-23 11:48:11 +04:00
|
|
|
#endif
|
|
|
|
|
2002-04-02 01:53:23 +04:00
|
|
|
// BIOS log
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginBiosDevice->init ();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// CMOS RAM & RTC
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginCmosDevice->init ();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-06-02 15:53:19 +04:00
|
|
|
/*--- 8237 DMA ---*/
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginDmaDevice->init();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
//--- FLOPPY ---
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginFloppyDevice->init();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
//--- SOUND ---
|
2006-03-03 23:29:50 +03:00
|
|
|
if (SIM->get_param_bool(BXPN_SB16_ENABLED)->get()) {
|
2002-11-21 20:10:13 +03:00
|
|
|
#if BX_SUPPORT_SB16
|
2002-11-13 21:39:41 +03:00
|
|
|
PLUG_load_plugin(sb16, PLUGTYPE_OPTIONAL);
|
2002-11-21 20:10:13 +03:00
|
|
|
#else
|
|
|
|
BX_ERROR(("Bochs is not compiled with SB16 support"));
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
2002-11-21 20:10:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCI
|
2004-07-03 12:20:19 +04:00
|
|
|
pluginPciBridge->init ();
|
|
|
|
pluginPci2IsaBridge->init ();
|
2004-06-27 22:23:00 +04:00
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
/*--- VGA adapter ---*/
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginVgaDevice->init ();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/*--- 8259A PIC ---*/
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginPicDevice->init();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/*--- 8254 PIT ---*/
|
|
|
|
pit = & bx_pit;
|
2002-10-25 01:07:56 +04:00
|
|
|
pit->init();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2003-02-18 06:38:03 +03:00
|
|
|
bx_virt_timer.init();
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
bx_slowdown_timer.init();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_IODEBUG
|
2001-09-14 19:01:29 +04:00
|
|
|
iodebug = &bx_iodebug;
|
2002-10-25 01:07:56 +04:00
|
|
|
iodebug->init();
|
2001-09-14 19:01:29 +04:00
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#if 0
|
|
|
|
// Guest to Host interface. Used with special guest drivers
|
|
|
|
// which move data to/from the host environment.
|
|
|
|
g2h = &bx_g2h;
|
2002-10-25 01:07:56 +04:00
|
|
|
g2h->init();
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// system hardware
|
2005-10-01 21:40:07 +04:00
|
|
|
register_io_read_handler(this, &read_handler, 0x0092,
|
|
|
|
"Port 92h System Control", 1);
|
|
|
|
register_io_write_handler(this, &write_handler, 0x0092,
|
|
|
|
"Port 92h System Control", 1);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// misc. CMOS
|
2003-04-26 02:06:27 +04:00
|
|
|
Bit32u extended_memory_in_k = mem->get_memory_in_k() > 1024 ? (mem->get_memory_in_k() - 1024) : 0;
|
2005-02-16 20:53:40 +03:00
|
|
|
if (extended_memory_in_k > 0xfc00) extended_memory_in_k = 0xfc00;
|
2003-04-26 02:06:27 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_cmos_set_reg(0x15, (Bit8u) BASE_MEMORY_IN_K);
|
|
|
|
DEV_cmos_set_reg(0x16, (Bit8u) (BASE_MEMORY_IN_K >> 8));
|
2003-04-26 02:06:27 +04:00
|
|
|
DEV_cmos_set_reg(0x17, (Bit8u) (extended_memory_in_k & 0xff) );
|
|
|
|
DEV_cmos_set_reg(0x18, (Bit8u) ((extended_memory_in_k >> 8) & 0xff) );
|
|
|
|
DEV_cmos_set_reg(0x30, (Bit8u) (extended_memory_in_k & 0xff) );
|
|
|
|
DEV_cmos_set_reg(0x31, (Bit8u) ((extended_memory_in_k >> 8) & 0xff) );
|
|
|
|
|
|
|
|
Bit32u extended_memory_in_64k = mem->get_memory_in_k() > 16384 ? (mem->get_memory_in_k() - 16384) / 64 : 0;
|
|
|
|
if (extended_memory_in_64k > 0xffff) extended_memory_in_64k = 0xffff;
|
|
|
|
|
|
|
|
DEV_cmos_set_reg(0x34, (Bit8u) (extended_memory_in_64k & 0xff) );
|
|
|
|
DEV_cmos_set_reg(0x35, (Bit8u) ((extended_memory_in_64k >> 8) & 0xff) );
|
2002-10-16 11:38:37 +04:00
|
|
|
|
2002-10-06 23:04:47 +04:00
|
|
|
if (timer_handle != BX_NULL_TIMER_HANDLE) {
|
|
|
|
timer_handle = bx_pc_system.register_timer( this, timer_handler,
|
|
|
|
(unsigned) BX_IODEV_HANDLER_PERIOD, 1, 1, "devices.cc");
|
|
|
|
}
|
2002-09-09 20:56:56 +04:00
|
|
|
|
|
|
|
// Clear fields for bulk IO acceleration transfers.
|
|
|
|
bulkIOHostAddr = 0;
|
|
|
|
bulkIOQuantumsRequested = 0;
|
|
|
|
bulkIOQuantumsTransferred = 0;
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
bx_init_plugins();
|
2003-01-03 14:43:24 +03:00
|
|
|
|
|
|
|
/* now perform checksum of CMOS memory */
|
|
|
|
DEV_cmos_checksum();
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-01 16:19:01 +04:00
|
|
|
void
|
2002-08-27 23:54:46 +04:00
|
|
|
bx_devices_c::reset(unsigned type)
|
2002-08-01 16:19:01 +04:00
|
|
|
{
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginUnmapped->reset(type);
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCI
|
2006-02-20 00:35:50 +03:00
|
|
|
if (SIM->get_param_bool(BXPN_I440FX_SUPPORT)->get ()) {
|
2002-11-09 23:51:40 +03:00
|
|
|
pluginPciBridge->reset(type);
|
|
|
|
pluginPci2IsaBridge->reset(type);
|
|
|
|
}
|
2002-08-27 23:54:46 +04:00
|
|
|
#endif
|
|
|
|
#if BX_SUPPORT_IOAPIC
|
|
|
|
ioapic->reset (type);
|
|
|
|
#endif
|
2002-10-25 01:07:56 +04:00
|
|
|
pluginBiosDevice->reset(type);
|
|
|
|
pluginCmosDevice->reset(type);
|
|
|
|
pluginDmaDevice->reset(type);
|
|
|
|
pluginFloppyDevice->reset(type);
|
|
|
|
pluginVgaDevice->reset(type);
|
|
|
|
pluginPicDevice->reset(type);
|
2002-08-27 23:54:46 +04:00
|
|
|
pit->reset(type);
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_IODEBUG
|
2002-08-27 23:54:46 +04:00
|
|
|
iodebug->reset(type);
|
|
|
|
#endif
|
2004-07-03 12:20:19 +04:00
|
|
|
// now reset optional plugins
|
2002-10-25 01:07:56 +04:00
|
|
|
bx_reset_plugins(type);
|
2002-08-01 16:19:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit32u
|
|
|
|
bx_devices_c::read_handler(void *this_ptr, Bit32u address, unsigned io_len)
|
|
|
|
{
|
|
|
|
#if !BX_USE_DEV_SMF
|
|
|
|
bx_devices_c *class_ptr = (bx_devices_c *) this_ptr;
|
|
|
|
|
|
|
|
return( class_ptr->port92_read(address, io_len) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Bit32u
|
|
|
|
bx_devices_c::port92_read(Bit32u address, unsigned io_len)
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
UNUSED(this_ptr);
|
|
|
|
#endif // !BX_USE_DEV_SMF
|
|
|
|
|
2001-06-27 23:16:01 +04:00
|
|
|
BX_DEBUG(("port92h read partially supported!!!"));
|
|
|
|
BX_DEBUG((" returning %02x", (unsigned) (BX_GET_ENABLE_A20() << 1)));
|
2001-04-10 05:04:59 +04:00
|
|
|
return(BX_GET_ENABLE_A20() << 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_devices_c::write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len)
|
|
|
|
{
|
|
|
|
#if !BX_USE_DEV_SMF
|
|
|
|
bx_devices_c *class_ptr = (bx_devices_c *) this_ptr;
|
|
|
|
|
|
|
|
class_ptr->port92_write(address, value, io_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_devices_c::port92_write(Bit32u address, Bit32u value, unsigned io_len)
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
UNUSED(this_ptr);
|
|
|
|
#endif // !BX_USE_DEV_SMF
|
|
|
|
|
2004-04-09 01:23:41 +04:00
|
|
|
BX_DEBUG(("port92h write of %02x partially supported!!!", (unsigned) value));
|
2001-06-27 23:16:01 +04:00
|
|
|
BX_DEBUG(("A20: set_enable_a20() called"));
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SET_ENABLE_A20( (value & 0x02) >> 1 );
|
2001-08-31 20:06:32 +04:00
|
|
|
BX_DEBUG(("A20: now %u", (unsigned) BX_GET_ENABLE_A20()));
|
2004-04-09 01:23:41 +04:00
|
|
|
if (value & 0x01) { /* high speed reset */
|
|
|
|
BX_INFO(("iowrite to port0x92 : reset resquested"));
|
2004-06-21 14:39:24 +04:00
|
|
|
bx_pc_system.Reset(BX_RESET_SOFTWARE);
|
2004-04-09 01:23:41 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
// This defines a no-default read handler,
|
|
|
|
// so Bochs does not segfault if unmapped is not loaded
|
|
|
|
Bit32u
|
|
|
|
bx_devices_c::default_read_handler(void *this_ptr, Bit32u address, unsigned io_len)
|
|
|
|
{
|
|
|
|
UNUSED(this_ptr);
|
|
|
|
BX_PANIC(("No default io-read handler found for 0x%04x/%d. Unmapped io-device not loaded ?", address, io_len));
|
|
|
|
return 0xffffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This defines a no-default write handler,
|
|
|
|
// so Bochs does not segfault if unmapped is not loaded
|
|
|
|
void
|
|
|
|
bx_devices_c::default_write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len)
|
|
|
|
{
|
|
|
|
UNUSED(this_ptr);
|
|
|
|
BX_PANIC(("No default io-write handler found for 0x%04x/%d. Unmapped io-device not loaded ?", address, io_len));
|
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
void
|
|
|
|
bx_devices_c::timer_handler(void *this_ptr)
|
|
|
|
{
|
|
|
|
bx_devices_c *class_ptr = (bx_devices_c *) this_ptr;
|
|
|
|
|
|
|
|
class_ptr->timer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_devices_c::timer()
|
|
|
|
{
|
2001-08-18 07:28:23 +04:00
|
|
|
#if (BX_USE_NEW_PIT==0)
|
2002-03-26 16:59:35 +03:00
|
|
|
if ( pit->periodic( BX_IODEV_HANDLER_PERIOD ) ) {
|
2002-01-29 20:20:12 +03:00
|
|
|
// This is a hack to make the IRQ0 work
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_pic_lower_irq(0);
|
|
|
|
DEV_pic_raise_irq(0);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2001-08-18 07:28:23 +04:00
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-01-29 20:20:12 +03:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
// separate calls to bx_gui->handle_events from the keyboard code.
|
|
|
|
{
|
|
|
|
static int multiple=0;
|
|
|
|
if ( ++multiple==10)
|
|
|
|
{
|
|
|
|
multiple=0;
|
|
|
|
SIM->periodic ();
|
|
|
|
if (!BX_CPU(0)->kill_bochs_request)
|
|
|
|
bx_gui->handle_events();
|
|
|
|
}
|
|
|
|
}
|
2001-05-23 11:48:11 +04:00
|
|
|
|
2002-10-03 19:47:13 +04:00
|
|
|
// KPL Removed lapic periodic timer registration here.
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool
|
2001-04-10 05:04:59 +04:00
|
|
|
bx_devices_c::register_irq(unsigned irq, const char *name)
|
|
|
|
{
|
|
|
|
if (irq >= BX_MAX_IRQS) {
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("IO device %s registered with IRQ=%d above %u",
|
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
|
|
|
name, irq, (unsigned) BX_MAX_IRQS-1));
|
2002-04-03 05:56:26 +04:00
|
|
|
return false;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
if (irq_handler_name[irq]) {
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("IRQ %u conflict, %s with %s", irq,
|
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
|
|
|
irq_handler_name[irq], name));
|
2002-04-03 05:56:26 +04:00
|
|
|
return false;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
irq_handler_name[irq] = name;
|
2002-04-03 05:56:26 +04:00
|
|
|
return true;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool
|
2001-04-10 05:04:59 +04:00
|
|
|
bx_devices_c::unregister_irq(unsigned irq, const char *name)
|
|
|
|
{
|
|
|
|
if (irq >= BX_MAX_IRQS) {
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("IO device %s tried to unregister IRQ %d above %u",
|
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
|
|
|
name, irq, (unsigned) BX_MAX_IRQS-1));
|
2002-04-03 05:56:26 +04:00
|
|
|
return false;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!irq_handler_name[irq]) {
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_INFO(("IO device %s tried to unregister IRQ %d, not registered",
|
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
|
|
|
name, irq));
|
2002-04-03 05:56:26 +04:00
|
|
|
return false;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(irq_handler_name[irq], name)) {
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_INFO(("IRQ %u not registered to %s but to %s", irq,
|
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
|
|
|
name, irq_handler_name[irq]));
|
2002-04-03 05:56:26 +04:00
|
|
|
return false;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
irq_handler_name[irq] = NULL;
|
2002-04-03 05:56:26 +04:00
|
|
|
return true;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::register_io_read_handler(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u addr, const char *name, Bit8u mask)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
addr &= 0x0000ffff;
|
2005-10-01 21:40:07 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
if (!f)
|
2005-10-01 21:40:07 +04:00
|
|
|
return false;
|
2004-01-15 05:08:37 +03:00
|
|
|
|
|
|
|
/* first check if the port already has a handlers != the default handler */
|
|
|
|
if (read_port_to_handler[addr] &&
|
2005-10-01 21:40:07 +04:00
|
|
|
read_port_to_handler[addr] != &io_read_handlers) { // the default
|
|
|
|
BX_ERROR(("IO device address conflict(read) at IO address %Xh",
|
|
|
|
(unsigned) addr));
|
|
|
|
BX_ERROR((" conflicting devices: %s & %s",
|
|
|
|
read_port_to_handler[addr]->handler_name, name));
|
|
|
|
return false;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* first find existing handle for function or create new one */
|
2004-01-15 05:08:37 +03:00
|
|
|
struct io_handler_struct *curr = &io_read_handlers;
|
|
|
|
struct io_handler_struct *io_read_handler = NULL;
|
|
|
|
do {
|
2005-10-01 21:40:07 +04:00
|
|
|
if (curr->funct == f &&
|
|
|
|
curr->mask == mask &&
|
|
|
|
curr->this_ptr == this_ptr &&
|
|
|
|
curr->handler_name == name) { // really want the same name too
|
|
|
|
io_read_handler = curr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
2004-01-15 05:08:37 +03:00
|
|
|
} while (curr->next != &io_read_handlers);
|
2005-10-01 21:40:07 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
if (!io_read_handler) {
|
2005-10-01 21:40:07 +04:00
|
|
|
io_read_handler = new struct io_handler_struct;
|
|
|
|
io_read_handler->funct = (void *)f;
|
|
|
|
io_read_handler->this_ptr = this_ptr;
|
|
|
|
io_read_handler->handler_name = name;
|
|
|
|
io_read_handler->mask = mask;
|
|
|
|
io_read_handler->usage_count = 0;
|
|
|
|
// add the handler to the double linked list of handlers
|
|
|
|
io_read_handlers.prev->next = io_read_handler;
|
|
|
|
io_read_handler->next = &io_read_handlers;
|
|
|
|
io_read_handler->prev = io_read_handlers.prev;
|
|
|
|
io_read_handlers.prev = io_read_handler;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
io_read_handler->usage_count++;
|
|
|
|
read_port_to_handler[addr] = io_read_handler;
|
2002-04-03 05:56:26 +04:00
|
|
|
return true; // address mapped successfully
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::register_io_write_handler(void *this_ptr, bx_write_handler_t f,
|
|
|
|
Bit32u addr, const char *name, Bit8u mask)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
addr &= 0x0000ffff;
|
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
if (!f)
|
2005-10-01 21:40:07 +04:00
|
|
|
return false;
|
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
/* first check if the port already has a handlers != the default handler */
|
|
|
|
if (write_port_to_handler[addr] &&
|
2005-10-01 21:40:07 +04:00
|
|
|
write_port_to_handler[addr] != &io_write_handlers) { // the default
|
|
|
|
BX_ERROR(("IO device address conflict(write) at IO address %Xh",
|
|
|
|
(unsigned) addr));
|
|
|
|
BX_ERROR((" conflicting devices: %s & %s",
|
|
|
|
write_port_to_handler[addr]->handler_name, name));
|
|
|
|
return false;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
/* first find existing handle for function or create new one */
|
|
|
|
struct io_handler_struct *curr = &io_write_handlers;
|
|
|
|
struct io_handler_struct *io_write_handler = NULL;
|
|
|
|
do {
|
2005-10-01 21:40:07 +04:00
|
|
|
if (curr->funct == f &&
|
|
|
|
curr->mask == mask &&
|
|
|
|
curr->this_ptr == this_ptr &&
|
|
|
|
curr->handler_name == name) { // really want the same name too
|
|
|
|
io_write_handler = curr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
2004-01-15 05:08:37 +03:00
|
|
|
} while (curr->next != &io_write_handlers);
|
2005-10-01 21:40:07 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
if (!io_write_handler) {
|
2005-10-01 21:40:07 +04:00
|
|
|
io_write_handler = new struct io_handler_struct;
|
|
|
|
io_write_handler->funct = (void *)f;
|
|
|
|
io_write_handler->this_ptr = this_ptr;
|
|
|
|
io_write_handler->handler_name = name;
|
|
|
|
io_write_handler->mask = mask;
|
|
|
|
io_write_handler->usage_count = 0;
|
|
|
|
// add the handler to the double linked list of handlers
|
|
|
|
io_write_handlers.prev->next = io_write_handler;
|
|
|
|
io_write_handler->next = &io_write_handlers;
|
|
|
|
io_write_handler->prev = io_write_handlers.prev;
|
|
|
|
io_write_handlers.prev = io_write_handler;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
io_write_handler->usage_count++;
|
|
|
|
write_port_to_handler[addr] = io_write_handler;
|
|
|
|
return true; // address mapped successfully
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::register_io_read_handler_range(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u begin_addr, Bit32u end_addr,
|
|
|
|
const char *name, Bit8u mask)
|
2004-01-15 05:08:37 +03:00
|
|
|
{
|
2004-02-03 00:47:26 +03:00
|
|
|
Bit32u addr;
|
2004-01-15 05:08:37 +03:00
|
|
|
begin_addr &= 0x0000ffff;
|
|
|
|
end_addr &= 0x0000ffff;
|
|
|
|
|
|
|
|
if (end_addr < begin_addr) {
|
2005-10-01 21:40:07 +04:00
|
|
|
BX_ERROR(("!!! end_addr < begin_addr !!!"));
|
|
|
|
return false;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!f) {
|
2005-10-01 21:40:07 +04:00
|
|
|
BX_ERROR(("!!! f == NULL !!!"));
|
|
|
|
return false;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* first check if the port already has a handlers != the default handler */
|
|
|
|
for (addr = begin_addr; addr <= end_addr; addr++)
|
2005-10-01 21:40:07 +04:00
|
|
|
if (read_port_to_handler[addr] &&
|
|
|
|
read_port_to_handler[addr] != &io_read_handlers) { // the default
|
|
|
|
BX_ERROR(("IO device address conflict(read) at IO address %Xh",
|
|
|
|
(unsigned) addr));
|
|
|
|
BX_ERROR((" conflicting devices: %s & %s",
|
|
|
|
read_port_to_handler[addr]->handler_name, name));
|
|
|
|
return false;
|
|
|
|
}
|
2004-01-15 05:08:37 +03:00
|
|
|
|
|
|
|
/* first find existing handle for function or create new one */
|
|
|
|
struct io_handler_struct *curr = &io_read_handlers;
|
|
|
|
struct io_handler_struct *io_read_handler = NULL;
|
|
|
|
do {
|
2005-10-01 21:40:07 +04:00
|
|
|
if (curr->funct == f &&
|
|
|
|
curr->mask == mask &&
|
|
|
|
curr->this_ptr == this_ptr &&
|
|
|
|
curr->handler_name == name) {
|
|
|
|
io_read_handler = curr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
2004-01-15 05:08:37 +03:00
|
|
|
} while (curr->next != &io_read_handlers);
|
2005-10-01 21:40:07 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
if (!io_read_handler) {
|
2005-10-01 21:40:07 +04:00
|
|
|
io_read_handler = new struct io_handler_struct;
|
|
|
|
io_read_handler->funct = (void *)f;
|
|
|
|
io_read_handler->this_ptr = this_ptr;
|
|
|
|
io_read_handler->handler_name = name;
|
|
|
|
io_read_handler->mask = mask;
|
|
|
|
io_read_handler->usage_count = 0;
|
|
|
|
// add the handler to the double linked list of handlers
|
|
|
|
io_read_handlers.prev->next = io_read_handler;
|
|
|
|
io_read_handler->next = &io_read_handlers;
|
|
|
|
io_read_handler->prev = io_read_handlers.prev;
|
|
|
|
io_read_handlers.prev = io_read_handler;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
io_read_handler->usage_count += end_addr - begin_addr + 1;
|
|
|
|
for (addr = begin_addr; addr <= end_addr; addr++)
|
|
|
|
read_port_to_handler[addr] = io_read_handler;
|
|
|
|
return true; // address mapped successfully
|
|
|
|
}
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::register_io_write_handler_range(void *this_ptr, bx_write_handler_t f,
|
|
|
|
Bit32u begin_addr, Bit32u end_addr,
|
|
|
|
const char *name, Bit8u mask)
|
2002-10-25 01:07:56 +04:00
|
|
|
{
|
2004-02-03 00:47:26 +03:00
|
|
|
Bit32u addr;
|
2004-01-15 05:08:37 +03:00
|
|
|
begin_addr &= 0x0000ffff;
|
|
|
|
end_addr &= 0x0000ffff;
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
if (end_addr < begin_addr) {
|
2005-10-01 21:40:07 +04:00
|
|
|
BX_ERROR(("!!! end_addr < begin_addr !!!"));
|
|
|
|
return false;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!f) {
|
2005-10-01 21:40:07 +04:00
|
|
|
BX_ERROR(("!!! f == NULL !!!"));
|
|
|
|
return false;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
/* first check if the port already has a handlers != the default handler */
|
|
|
|
for (addr = begin_addr; addr <= end_addr; addr++)
|
2005-10-01 21:40:07 +04:00
|
|
|
if (write_port_to_handler[addr] &&
|
|
|
|
write_port_to_handler[addr] != &io_write_handlers) { // the default
|
|
|
|
BX_ERROR(("IO device address conflict(read) at IO address %Xh",
|
|
|
|
(unsigned) addr));
|
|
|
|
BX_ERROR((" conflicting devices: %s & %s",
|
|
|
|
write_port_to_handler[addr]->handler_name, name));
|
|
|
|
return false;
|
|
|
|
}
|
2004-01-15 05:08:37 +03:00
|
|
|
|
|
|
|
/* first find existing handle for function or create new one */
|
|
|
|
struct io_handler_struct *curr = &io_write_handlers;
|
|
|
|
struct io_handler_struct *io_write_handler = NULL;
|
|
|
|
do {
|
2005-10-01 21:40:07 +04:00
|
|
|
if (curr->funct == f &&
|
|
|
|
curr->mask == mask &&
|
|
|
|
curr->this_ptr == this_ptr &&
|
|
|
|
curr->handler_name == name) {
|
|
|
|
io_write_handler = curr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
2004-01-15 05:08:37 +03:00
|
|
|
} while (curr->next != &io_write_handlers);
|
2005-10-01 21:40:07 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
if (!io_write_handler) {
|
2005-10-01 21:40:07 +04:00
|
|
|
io_write_handler = new struct io_handler_struct;
|
|
|
|
io_write_handler->funct = (void *)f;
|
|
|
|
io_write_handler->this_ptr = this_ptr;
|
|
|
|
io_write_handler->handler_name = name;
|
|
|
|
io_write_handler->mask = mask;
|
|
|
|
io_write_handler->usage_count = 0;
|
|
|
|
// add the handler to the double linked list of handlers
|
|
|
|
io_write_handlers.prev->next = io_write_handler;
|
|
|
|
io_write_handler->next = &io_write_handlers;
|
|
|
|
io_write_handler->prev = io_write_handlers.prev;
|
|
|
|
io_write_handlers.prev = io_write_handler;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
io_write_handler->usage_count += end_addr - begin_addr + 1;
|
|
|
|
for (addr = begin_addr; addr <= end_addr; addr++)
|
|
|
|
write_port_to_handler[addr] = io_write_handler;
|
|
|
|
return true; // address mapped successfully
|
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
|
|
|
|
// Registration of default handlers (mainly be the unmapped device)
|
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::register_default_io_read_handler(void *this_ptr, bx_read_handler_t f,
|
|
|
|
const char *name, Bit8u mask)
|
2004-01-15 05:08:37 +03:00
|
|
|
{
|
2005-10-01 21:40:07 +04:00
|
|
|
io_read_handlers.funct = (void *)f;
|
|
|
|
io_read_handlers.this_ptr = this_ptr;
|
|
|
|
io_read_handlers.handler_name = name;
|
|
|
|
io_read_handlers.mask = mask;
|
|
|
|
return true;
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::register_default_io_write_handler(void *this_ptr, bx_write_handler_t f,
|
|
|
|
const char *name, Bit8u mask)
|
2002-10-25 01:07:56 +04:00
|
|
|
{
|
2005-10-01 21:40:07 +04:00
|
|
|
io_write_handlers.funct = (void *)f;
|
|
|
|
io_write_handlers.this_ptr = this_ptr;
|
|
|
|
io_write_handlers.handler_name = name;
|
|
|
|
io_write_handlers.mask = mask;
|
|
|
|
return true;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::unregister_io_read_handler(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u addr, Bit8u mask)
|
2004-01-15 05:08:37 +03:00
|
|
|
{
|
2005-10-01 21:40:07 +04:00
|
|
|
addr &= 0x0000ffff;
|
|
|
|
|
|
|
|
struct io_handler_struct *io_read_handler = read_port_to_handler[addr];
|
|
|
|
|
|
|
|
//BX_INFO(("Unregistering I/O read handler at %#x", addr));
|
|
|
|
|
|
|
|
if (!io_read_handler) {
|
|
|
|
BX_ERROR((">>> NO IO_READ_HANDLER <<<"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (io_read_handler == &io_read_handlers) {
|
|
|
|
BX_ERROR((">>> CANNOT UNREGISTER THE DEFAULT IO_READ_HANDLER <<<"));
|
|
|
|
return false; // cannot unregister the default handler
|
|
|
|
}
|
|
|
|
|
|
|
|
if (io_read_handler->funct != f) {
|
|
|
|
BX_ERROR((">>> NOT THE SAME IO_READ_HANDLER FUNC <<<"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (io_read_handler->this_ptr != this_ptr) {
|
|
|
|
BX_ERROR((">>> NOT THE SAME IO_READ_HANDLER THIS_PTR <<<"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (io_read_handler->mask != mask) {
|
|
|
|
BX_ERROR((">>> NOT THE SAME IO_READ_HANDLER MASK <<<"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_port_to_handler[addr] = &io_read_handlers; // reset to default
|
|
|
|
io_read_handler->usage_count--;
|
|
|
|
|
|
|
|
if (!io_read_handler->usage_count) { // kill this handler entry
|
|
|
|
io_read_handler->prev->next = io_read_handler->next;
|
|
|
|
io_read_handler->next->prev = io_read_handler->prev;
|
|
|
|
delete io_read_handler;
|
|
|
|
}
|
|
|
|
return true;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::unregister_io_write_handler(void *this_ptr, bx_write_handler_t f,
|
|
|
|
Bit32u addr, Bit8u mask)
|
2004-01-15 05:08:37 +03:00
|
|
|
{
|
2005-10-01 21:40:07 +04:00
|
|
|
addr &= 0x0000ffff;
|
|
|
|
|
|
|
|
struct io_handler_struct *io_write_handler = write_port_to_handler[addr];
|
|
|
|
|
|
|
|
if (!io_write_handler)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (io_write_handler == &io_write_handlers)
|
|
|
|
return false; // cannot unregister the default handler
|
|
|
|
|
|
|
|
if (io_write_handler->funct != f)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (io_write_handler->this_ptr != this_ptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (io_write_handler->mask != mask)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
write_port_to_handler[addr] = &io_write_handlers; // reset to default
|
|
|
|
io_write_handler->usage_count--;
|
|
|
|
|
|
|
|
if (!io_write_handler->usage_count) { // kill this handler entry
|
|
|
|
io_write_handler->prev->next = io_write_handler->next;
|
|
|
|
io_write_handler->next->prev = io_write_handler->prev;
|
|
|
|
delete io_write_handler;
|
|
|
|
}
|
|
|
|
return true;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::unregister_io_read_handler_range(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u begin, Bit32u end, Bit8u mask)
|
2004-01-15 05:08:37 +03:00
|
|
|
{
|
2005-10-01 21:40:07 +04:00
|
|
|
begin &= 0x0000ffff;
|
|
|
|
end &= 0x0000ffff;
|
|
|
|
Bit32u addr;
|
|
|
|
bx_bool ret = true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the easy way this time
|
|
|
|
*/
|
|
|
|
for (addr = begin; addr <= end; addr++)
|
|
|
|
if (!unregister_io_read_handler(this_ptr, f, addr, mask))
|
|
|
|
ret = false;
|
|
|
|
|
|
|
|
return ret;
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
bx_bool
|
2005-10-01 21:40:07 +04:00
|
|
|
bx_devices_c::unregister_io_write_handler_range(void *this_ptr, bx_write_handler_t f,
|
|
|
|
Bit32u begin, Bit32u end, Bit8u mask)
|
2004-01-15 05:08:37 +03:00
|
|
|
{
|
2005-10-01 21:40:07 +04:00
|
|
|
begin &= 0x0000ffff;
|
|
|
|
end &= 0x0000ffff;
|
|
|
|
Bit32u addr;
|
|
|
|
bx_bool ret = true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the easy way this time
|
|
|
|
*/
|
|
|
|
for (addr = begin; addr <= end; addr++)
|
|
|
|
if (!unregister_io_write_handler(this_ptr, f, addr, mask))
|
|
|
|
ret = false;
|
|
|
|
|
|
|
|
return ret;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a byte of data from the IO memory address space
|
|
|
|
*/
|
|
|
|
|
2003-03-03 02:59:12 +03:00
|
|
|
Bit32u BX_CPP_AttrRegparmN(2)
|
2001-04-10 05:04:59 +04:00
|
|
|
bx_devices_c::inp(Bit16u addr, unsigned io_len)
|
|
|
|
{
|
2004-01-15 05:08:37 +03:00
|
|
|
struct io_handler_struct *io_read_handler;
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit32u ret;
|
|
|
|
|
|
|
|
BX_INSTR_INP(addr, io_len);
|
2004-01-15 05:08:37 +03:00
|
|
|
|
|
|
|
io_read_handler = read_port_to_handler[addr];
|
|
|
|
if (io_read_handler->mask & io_len) {
|
|
|
|
ret = ((bx_read_handler_t)io_read_handler->funct)(io_read_handler->this_ptr, (Bit32u)addr, io_len);
|
2003-07-31 16:04:48 +04:00
|
|
|
} else {
|
|
|
|
switch (io_len) {
|
|
|
|
case 1: ret = 0xff; break;
|
|
|
|
case 2: ret = 0xffff; break;
|
|
|
|
default: ret = 0xffffffff; break;
|
|
|
|
}
|
2005-10-01 21:40:07 +04:00
|
|
|
if (addr != 0x0cf8) { // don't flood the logfile when probing PCI
|
|
|
|
BX_ERROR(("read from port 0x%04x with len %d returns 0x%x", addr, io_len, ret));
|
|
|
|
}
|
2003-07-31 16:04:48 +04:00
|
|
|
}
|
2001-06-28 23:48:04 +04:00
|
|
|
BX_INSTR_INP2(addr, io_len, ret);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_DBG_IO_REPORT(addr, io_len, BX_READ, ret);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write a byte of data to the IO memory address space.
|
|
|
|
*/
|
|
|
|
|
2003-03-03 02:59:12 +03:00
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2001-04-10 05:04:59 +04:00
|
|
|
bx_devices_c::outp(Bit16u addr, Bit32u value, unsigned io_len)
|
|
|
|
{
|
2004-01-15 05:08:37 +03:00
|
|
|
struct io_handler_struct *io_write_handler;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
BX_INSTR_OUTP(addr, io_len);
|
2001-06-28 23:48:04 +04:00
|
|
|
BX_INSTR_OUTP2(addr, io_len, value);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
BX_DBG_IO_REPORT(addr, io_len, BX_WRITE, value);
|
2004-01-15 05:08:37 +03:00
|
|
|
|
|
|
|
io_write_handler = write_port_to_handler[addr];
|
|
|
|
if (io_write_handler->mask & io_len) {
|
|
|
|
((bx_write_handler_t)io_write_handler->funct)(io_write_handler->this_ptr, (Bit32u)addr, value, io_len);
|
2005-10-01 21:40:07 +04:00
|
|
|
} else if (addr != 0x0cf8) { // don't flood the logfile when probing PCI
|
2003-07-31 16:04:48 +04:00
|
|
|
BX_ERROR(("write to port 0x%04x with len %d ignored", addr, io_len));
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2006-03-02 23:13:14 +03:00
|
|
|
bx_bool bx_devices_c::is_serial_enabled()
|
2002-10-25 01:07:56 +04:00
|
|
|
{
|
2006-03-01 20:14:36 +03:00
|
|
|
char pname[24];
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
for (int i=0; i<BX_N_SERIAL_PORTS; i++) {
|
2006-03-01 20:14:36 +03:00
|
|
|
sprintf(pname, "ports.serial.%d.enabled", i+1);
|
|
|
|
if (SIM->get_param_bool(pname)->get())
|
2002-10-25 01:07:56 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-03-02 23:13:14 +03:00
|
|
|
bx_bool bx_devices_c::is_usb_enabled()
|
2003-01-28 19:58:10 +03:00
|
|
|
{
|
2006-03-01 20:14:36 +03:00
|
|
|
char pname[20];
|
|
|
|
|
2003-01-28 19:58:10 +03:00
|
|
|
for (int i=0; i<BX_N_USB_HUBS; i++) {
|
2006-03-01 20:14:36 +03:00
|
|
|
sprintf(pname, "ports.usb.%d.enabled", i+1);
|
|
|
|
if (SIM->get_param_bool(pname)->get())
|
2003-01-28 19:58:10 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-03-02 23:13:14 +03:00
|
|
|
bx_bool bx_devices_c::is_parallel_enabled()
|
2002-10-25 01:07:56 +04:00
|
|
|
{
|
2006-03-01 20:14:36 +03:00
|
|
|
char pname[26];
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
for (int i=0; i<BX_N_PARALLEL_PORTS; i++) {
|
2006-03-01 20:14:36 +03:00
|
|
|
sprintf(pname, "ports.parallel.%d.enabled", i+1);
|
|
|
|
if (SIM->get_param_bool(pname)->get())
|
2002-10-25 01:07:56 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|