2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2008-06-12 01:10:02 +04:00
|
|
|
// $Id: iodev.h,v 1.94 2008-06-11 21:10:02 sshwarts Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2002-06-16 19:02:28 +04: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
|
2008-04-17 18:39:33 +04:00
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-06-19 19:20:15 +04:00
|
|
|
#ifndef IODEV_H
|
|
|
|
#define IODEV_H
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-06-19 19:20:15 +04:00
|
|
|
#include "bochs.h"
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2003-07-31 19:29:34 +04:00
|
|
|
/* maximum number of emulated devices allowed. floppy, vga, etc...
|
2001-04-10 05:04:59 +04:00
|
|
|
you can increase this to anything below 256 since an 8-bit handle
|
|
|
|
is used for each device */
|
2003-07-31 19:29:34 +04:00
|
|
|
#define BX_MAX_IO_DEVICES 30
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
/* the last device in the array is the "default" I/O device */
|
|
|
|
#define BX_DEFAULT_IO_DEVICE (BX_MAX_IO_DEVICES-1)
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* number of IRQ lines supported. In an ISA PC there are two
|
|
|
|
PIC chips cascaded together. each has 8 IRQ lines, so there
|
|
|
|
should be 16 IRQ's total */
|
|
|
|
#define BX_MAX_IRQS 16
|
|
|
|
#define BX_NO_IRQ -1
|
|
|
|
|
|
|
|
class bx_pit_c;
|
2006-01-17 23:16:59 +03:00
|
|
|
#if BX_SUPPORT_APIC
|
2001-05-23 11:48:11 +04:00
|
|
|
class bx_ioapic_c;
|
2006-01-17 23:16:59 +03:00
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_IODEBUG
|
2001-09-14 19:01:29 +04:00
|
|
|
class bx_iodebug_c;
|
|
|
|
#endif
|
2006-01-17 23:16:59 +03:00
|
|
|
#if 0
|
|
|
|
class bx_g2h_c;
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
typedef Bit32u (*bx_read_handler_t)(void *, Bit32u, unsigned);
|
|
|
|
typedef void (*bx_write_handler_t)(void *, Bit32u, Bit32u, unsigned);
|
|
|
|
|
|
|
|
#if BX_USE_DEV_SMF
|
|
|
|
# define BX_DEV_SMF static
|
|
|
|
# define BX_DEV_THIS bx_devices.
|
|
|
|
#else
|
|
|
|
# define BX_DEV_SMF
|
|
|
|
# define BX_DEV_THIS this->
|
|
|
|
#endif
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// bx_devmodel_c declaration
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-01-27 01:24:03 +03:00
|
|
|
// This class defines virtual methods that are common to all devices.
|
|
|
|
// Child classes do not need to implement all of them, because in this
|
|
|
|
// definition they are defined as empty, as opposed to being pure
|
2002-10-25 01:07:56 +04:00
|
|
|
// virtual (= 0).
|
|
|
|
class BOCHSAPI bx_devmodel_c : public logfunctions {
|
|
|
|
public:
|
2006-03-08 00:11:20 +03:00
|
|
|
virtual ~bx_devmodel_c() {}
|
2002-10-25 01:07:56 +04:00
|
|
|
virtual void init_mem(BX_MEM_C *) {}
|
|
|
|
virtual void init(void) {}
|
|
|
|
virtual void reset(unsigned type) {}
|
2006-04-15 21:03:59 +04:00
|
|
|
virtual void register_state(void) {}
|
|
|
|
virtual void after_restore_state(void) {}
|
2002-10-25 01:07:56 +04:00
|
|
|
};
|
|
|
|
|
2006-03-08 00:11:20 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// declare stubs for PCI devices
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-02-03 20:56:35 +03:00
|
|
|
class bx_list_c;
|
|
|
|
|
2006-03-08 00:11:20 +03:00
|
|
|
// the best should be deriving of bx_pci_device_stub_c from bx_devmodel_c
|
|
|
|
// but it make serious problems for cirrus_svga device
|
|
|
|
class BOCHSAPI bx_pci_device_stub_c {
|
|
|
|
public:
|
|
|
|
virtual ~bx_pci_device_stub_c() {}
|
2008-01-27 01:24:03 +03:00
|
|
|
|
2006-03-08 00:11:20 +03:00
|
|
|
virtual Bit32u pci_read_handler(Bit8u address, unsigned io_len) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void pci_write_handler(Bit8u address, Bit32u value, unsigned io_len) {}
|
2007-02-03 20:56:35 +03:00
|
|
|
|
|
|
|
void register_pci_state(bx_list_c *list, Bit8u *pci_conf);
|
2006-03-08 00:11:20 +03:00
|
|
|
};
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// declare stubs for devices
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-03-08 00:11:20 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2002-10-25 01:07:56 +04:00
|
|
|
#define STUBFUNC(dev,method) \
|
2008-02-16 01:05:43 +03:00
|
|
|
pluginlog->panic("%s called in %s stub. you must not have loaded the %s plugin", #dev, #method, #dev)
|
2006-03-08 00:11:20 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
class BOCHSAPI bx_keyb_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
|
|
|
virtual ~bx_keyb_stub_c() {}
|
2002-10-25 01:07:56 +04:00
|
|
|
// stubs for bx_keyb_c methods
|
2004-12-05 23:23:39 +03:00
|
|
|
virtual void mouse_motion(int delta_x, int delta_y, int delta_z, unsigned button_state) {
|
2002-10-25 01:07:56 +04:00
|
|
|
STUBFUNC(keyboard, mouse_motion);
|
|
|
|
}
|
2003-07-13 23:51:21 +04:00
|
|
|
virtual void gen_scancode(Bit32u key) {
|
2002-10-25 01:07:56 +04:00
|
|
|
STUBFUNC(keyboard, gen_scancode);
|
|
|
|
}
|
|
|
|
virtual void paste_bytes(Bit8u *data, Bit32s length) {
|
|
|
|
STUBFUNC(keyboard, paste_bytes);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class BOCHSAPI bx_hard_drive_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2002-10-25 01:07:56 +04:00
|
|
|
virtual void init() {
|
|
|
|
STUBFUNC(HD, init);
|
|
|
|
}
|
|
|
|
virtual void reset(unsigned type) {
|
|
|
|
STUBFUNC(HD, reset);
|
|
|
|
}
|
|
|
|
virtual Bit32u get_device_handle(Bit8u channel, Bit8u device) {
|
|
|
|
STUBFUNC(HD, get_device_handle); return 0;
|
|
|
|
}
|
|
|
|
virtual Bit32u get_first_cd_handle(void) {
|
|
|
|
STUBFUNC(HD, get_first_cd_handle); return 0;
|
|
|
|
}
|
|
|
|
virtual unsigned get_cd_media_status(Bit32u handle) {
|
|
|
|
STUBFUNC(HD, get_cd_media_status); return 0;
|
|
|
|
}
|
|
|
|
virtual unsigned set_cd_media_status(Bit32u handle, unsigned status) {
|
|
|
|
STUBFUNC(HD, set_cd_media_status); return 0;
|
|
|
|
}
|
2008-01-27 01:24:03 +03:00
|
|
|
virtual Bit32u virt_read_handler(Bit32u address, unsigned io_len)
|
2002-10-25 01:07:56 +04:00
|
|
|
{
|
|
|
|
STUBFUNC(HD, virt_read_handler); return 0;
|
|
|
|
}
|
|
|
|
virtual void virt_write_handler(Bit32u address,
|
2008-01-27 01:24:03 +03:00
|
|
|
Bit32u value, unsigned io_len)
|
2002-10-25 01:07:56 +04:00
|
|
|
{
|
|
|
|
STUBFUNC(HD, virt_write_handler);
|
|
|
|
}
|
2005-10-30 17:14:03 +03:00
|
|
|
virtual bx_bool bmdma_read_sector(Bit8u channel, Bit8u *buffer, Bit32u *sector_size) {
|
2005-02-08 21:32:27 +03:00
|
|
|
STUBFUNC(HD, bmdma_read_sector); return 0;
|
|
|
|
}
|
|
|
|
virtual bx_bool bmdma_write_sector(Bit8u channel, Bit8u *buffer) {
|
|
|
|
STUBFUNC(HD, bmdma_write_sector); return 0;
|
|
|
|
}
|
|
|
|
virtual void bmdma_complete(Bit8u channel) {
|
|
|
|
STUBFUNC(HD, bmdma_complete);
|
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class BOCHSAPI bx_floppy_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2002-10-25 01:07:56 +04:00
|
|
|
virtual unsigned get_media_status(unsigned drive) {
|
|
|
|
STUBFUNC(floppy, get_media_status); return 0;
|
|
|
|
}
|
|
|
|
virtual unsigned set_media_status(unsigned drive, unsigned status) {
|
|
|
|
STUBFUNC(floppy, set_media_status); return 0;
|
|
|
|
}
|
|
|
|
};
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
class BOCHSAPI bx_cmos_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2002-10-25 01:07:56 +04:00
|
|
|
virtual Bit32u get_reg(unsigned reg) {
|
|
|
|
STUBFUNC(cmos, get_reg); return 0;
|
|
|
|
}
|
|
|
|
virtual void set_reg(unsigned reg, Bit32u val) {
|
|
|
|
STUBFUNC(cmos, set_reg);
|
|
|
|
}
|
|
|
|
virtual time_t get_timeval() {
|
2002-11-12 01:01:08 +03:00
|
|
|
return 0;
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
|
|
|
virtual void checksum_cmos(void) {
|
|
|
|
STUBFUNC(cmos, checksum);
|
|
|
|
}
|
|
|
|
};
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
class BOCHSAPI bx_dma_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2002-10-25 01:07:56 +04:00
|
|
|
virtual unsigned registerDMA8Channel(
|
|
|
|
unsigned channel,
|
|
|
|
void (* dmaRead)(Bit8u *data_byte),
|
|
|
|
void (* dmaWrite)(Bit8u *data_byte),
|
2006-03-08 00:11:20 +03:00
|
|
|
const char *name)
|
|
|
|
{
|
2002-10-25 01:07:56 +04:00
|
|
|
STUBFUNC(dma, registerDMA8Channel); return 0;
|
|
|
|
}
|
|
|
|
virtual unsigned registerDMA16Channel(
|
|
|
|
unsigned channel,
|
|
|
|
void (* dmaRead)(Bit16u *data_word),
|
2008-01-27 01:24:03 +03:00
|
|
|
void (* dmaWrite)(Bit16u *data_word),
|
2006-03-08 00:11:20 +03:00
|
|
|
const char *name)
|
|
|
|
{
|
2002-10-25 01:07:56 +04:00
|
|
|
STUBFUNC(dma, registerDMA16Channel); return 0;
|
|
|
|
}
|
|
|
|
virtual unsigned unregisterDMAChannel(unsigned channel) {
|
|
|
|
STUBFUNC(dma, unregisterDMAChannel); return 0;
|
|
|
|
}
|
|
|
|
virtual unsigned get_TC(void) {
|
|
|
|
STUBFUNC(dma, get_TC); return 0;
|
|
|
|
}
|
2002-10-25 15:44:41 +04:00
|
|
|
virtual void set_DRQ(unsigned channel, bx_bool val) {
|
2002-10-25 01:07:56 +04:00
|
|
|
STUBFUNC(dma, set_DRQ);
|
|
|
|
}
|
|
|
|
virtual void raise_HLDA(void) {
|
|
|
|
STUBFUNC(dma, raise_HLDA);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class BOCHSAPI bx_pic_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2002-10-25 01:07:56 +04:00
|
|
|
virtual void raise_irq(unsigned irq_no) {
|
2008-01-27 01:24:03 +03:00
|
|
|
STUBFUNC(pic, raise_irq);
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
|
|
|
virtual void lower_irq(unsigned irq_no) {
|
2008-01-27 01:24:03 +03:00
|
|
|
STUBFUNC(pic, lower_irq);
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
2004-07-06 23:59:10 +04:00
|
|
|
virtual void set_mode(bx_bool ma_sl, Bit8u mode) {
|
2008-01-27 01:24:03 +03:00
|
|
|
STUBFUNC(pic, set_mode);
|
2004-07-06 23:59:10 +04:00
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
virtual Bit8u IAC(void) {
|
|
|
|
STUBFUNC(pic, IAC); return 0;
|
|
|
|
}
|
2003-08-04 20:03:09 +04:00
|
|
|
virtual void show_pic_state(void) {
|
|
|
|
STUBFUNC(pic, show_pic_state);
|
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class BOCHSAPI bx_vga_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2008-01-27 01:24:03 +03:00
|
|
|
virtual void redraw_area(unsigned x0, unsigned y0,
|
2002-10-25 01:07:56 +04:00
|
|
|
unsigned width, unsigned height) {
|
2008-01-27 01:24:03 +03:00
|
|
|
STUBFUNC(vga, redraw_area);
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
|
|
|
virtual Bit8u mem_read(Bit32u addr) {
|
|
|
|
STUBFUNC(vga, mem_read); return 0;
|
|
|
|
}
|
|
|
|
virtual void mem_write(Bit32u addr, Bit8u value) {
|
|
|
|
STUBFUNC(vga, mem_write);
|
|
|
|
}
|
2008-01-27 01:24:03 +03:00
|
|
|
virtual void get_text_snapshot(Bit8u **text_snapshot,
|
2002-10-25 01:07:56 +04:00
|
|
|
unsigned *txHeight, unsigned *txWidth) {
|
2008-01-27 01:24:03 +03:00
|
|
|
STUBFUNC(vga, get_text_snapshot);
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
|
|
|
virtual void trigger_timer(void *this_ptr) {
|
2008-01-27 01:24:03 +03:00
|
|
|
STUBFUNC(vga, trigger_timer);
|
2002-10-25 01:07:56 +04:00
|
|
|
}
|
2002-12-28 14:49:17 +03:00
|
|
|
virtual Bit8u get_actl_palette_idx(Bit8u index) {
|
|
|
|
return 0;
|
|
|
|
}
|
2004-08-24 14:15:56 +04:00
|
|
|
virtual void dump_status(void) {}
|
2002-10-25 01:07:56 +04:00
|
|
|
};
|
|
|
|
|
2006-03-08 00:11:20 +03:00
|
|
|
class BOCHSAPI bx_pci_bridge_stub_c : public bx_devmodel_c, public bx_pci_device_stub_c {
|
2006-03-07 21:16:41 +03:00
|
|
|
public:
|
2006-03-08 00:11:20 +03:00
|
|
|
virtual bx_bool register_pci_handlers(bx_pci_device_stub_c *device,
|
2004-06-29 23:24:34 +04:00
|
|
|
Bit8u *devfunc, const char *name,
|
2006-03-08 00:11:20 +03:00
|
|
|
const char *descr)
|
|
|
|
{
|
2002-11-09 23:51:40 +03:00
|
|
|
STUBFUNC(pci, register_pci_handlers); return 0;
|
|
|
|
}
|
2008-04-17 18:39:33 +04:00
|
|
|
virtual bx_bool is_pci_device(const char *name) {
|
2004-06-29 23:24:34 +04:00
|
|
|
return 0;
|
2004-01-15 05:08:37 +03:00
|
|
|
}
|
2005-11-15 20:19:28 +03:00
|
|
|
virtual bx_bool pci_set_base_mem(void *this_ptr, memory_handler_t f1, memory_handler_t f2,
|
|
|
|
Bit32u *addr, Bit8u *pci_conf, unsigned size) {
|
2004-07-12 00:38:48 +04:00
|
|
|
STUBFUNC(pci, pci_set_base_mem);
|
2005-11-15 20:19:28 +03:00
|
|
|
return 0;
|
2004-07-12 00:38:48 +04:00
|
|
|
}
|
|
|
|
|
2005-11-15 20:19:28 +03:00
|
|
|
virtual bx_bool pci_set_base_io(void *this_ptr, bx_read_handler_t f1, bx_write_handler_t f2,
|
|
|
|
Bit32u *addr, Bit8u *pci_conf, unsigned size,
|
|
|
|
const Bit8u *iomask, const char *name) {
|
2004-07-12 00:38:48 +04:00
|
|
|
STUBFUNC(pci, pci_set_base_io);
|
2005-11-15 20:19:28 +03:00
|
|
|
return 0;
|
2004-07-12 00:38:48 +04:00
|
|
|
}
|
|
|
|
|
2008-04-17 18:39:33 +04:00
|
|
|
virtual Bit8u rd_memType(Bit32u addr) { return 0; }
|
|
|
|
virtual Bit8u wr_memType(Bit32u addr) { return 0; }
|
2002-11-09 23:51:40 +03:00
|
|
|
virtual void print_i440fx_state(void) {}
|
|
|
|
};
|
|
|
|
|
2006-03-08 00:11:20 +03:00
|
|
|
class BOCHSAPI bx_pci2isa_stub_c : public bx_devmodel_c, public bx_pci_device_stub_c {
|
|
|
|
public:
|
2004-07-04 21:10:05 +04:00
|
|
|
virtual void pci_set_irq (Bit8u devfunc, unsigned line, bx_bool level) {
|
2004-07-02 02:18:20 +04:00
|
|
|
STUBFUNC(pci2isa, pci_set_irq);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-03-08 00:11:20 +03:00
|
|
|
class BOCHSAPI bx_pci_ide_stub_c : public bx_devmodel_c, public bx_pci_device_stub_c {
|
|
|
|
public:
|
2005-09-05 22:32:23 +04:00
|
|
|
virtual bx_bool bmdma_present(void) {
|
2005-02-08 21:32:27 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2005-09-05 22:32:23 +04:00
|
|
|
virtual void bmdma_set_irq(Bit8u channel) {}
|
2005-02-08 21:32:27 +03:00
|
|
|
};
|
|
|
|
|
2006-03-08 22:28:37 +03:00
|
|
|
class BOCHSAPI bx_ne2k_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2002-11-19 21:56:39 +03:00
|
|
|
virtual void print_info(FILE *file, int page, int reg, int nodups) {}
|
|
|
|
};
|
|
|
|
|
2004-02-02 02:42:04 +03:00
|
|
|
class BOCHSAPI bx_speaker_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2004-02-02 02:42:04 +03:00
|
|
|
virtual void beep_on(float frequency) {}
|
|
|
|
virtual void beep_off() {}
|
|
|
|
};
|
|
|
|
|
2004-12-03 00:34:26 +03:00
|
|
|
class BOCHSAPI bx_serial_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2004-12-05 23:23:39 +03:00
|
|
|
virtual void serial_mouse_enq(int delta_x, int delta_y, int delta_z, unsigned button_state) {
|
2004-12-03 00:34:26 +03:00
|
|
|
STUBFUNC(serial, serial_mouse_enq);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2004-12-11 11:35:33 +03:00
|
|
|
#if BX_SUPPORT_PCIUSB
|
2006-03-08 00:11:20 +03:00
|
|
|
class BOCHSAPI bx_pci_usb_stub_c : public bx_devmodel_c, public bx_pci_device_stub_c {
|
|
|
|
public:
|
2004-12-11 11:35:33 +03:00
|
|
|
virtual void usb_mouse_enq(int delta_x, int delta_y, int delta_z, unsigned button_state) {
|
|
|
|
STUBFUNC(pciusb, usb_mouse_enq);
|
|
|
|
}
|
2006-09-23 16:59:57 +04:00
|
|
|
virtual void usb_mouse_enabled_changed(bx_bool enable) {
|
|
|
|
STUBFUNC(pciusb, usb_mouse_enabled_changed);
|
2004-12-16 22:05:01 +03:00
|
|
|
}
|
2005-01-14 21:28:47 +03:00
|
|
|
virtual bx_bool usb_key_enq(Bit8u *scan_code) {
|
2004-12-31 19:40:36 +03:00
|
|
|
STUBFUNC(pciusb, usb_key_enq);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-17 18:39:33 +04:00
|
|
|
virtual bx_bool usb_keyboard_connected() { return 0; }
|
|
|
|
virtual bx_bool usb_mouse_connected() { return 0; }
|
2004-12-11 11:35:33 +03:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2006-10-01 23:51:49 +04:00
|
|
|
#if BX_SUPPORT_ACPI
|
|
|
|
class BOCHSAPI bx_acpi_ctrl_stub_c : public bx_devmodel_c, public bx_pci_device_stub_c {
|
|
|
|
public:
|
2007-08-04 12:57:42 +04:00
|
|
|
virtual void generate_smi(Bit8u value) {}
|
2006-10-01 23:51:49 +04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2004-12-11 11:35:33 +03:00
|
|
|
#if BX_SUPPORT_BUSMOUSE
|
|
|
|
class BOCHSAPI bx_busm_stub_c : public bx_devmodel_c {
|
2006-03-08 00:11:20 +03:00
|
|
|
public:
|
2004-12-11 11:35:33 +03:00
|
|
|
virtual void bus_mouse_enq(int delta_x, int delta_y, int delta_z, unsigned button_state) {
|
|
|
|
STUBFUNC(busmouse, bus_mouse_enq);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
class BOCHSAPI bx_devices_c : public logfunctions {
|
2001-04-10 05:04:59 +04:00
|
|
|
public:
|
|
|
|
bx_devices_c(void);
|
2006-03-08 00:11:20 +03:00
|
|
|
~bx_devices_c(void);
|
2006-09-10 21:18:44 +04:00
|
|
|
// Initialize the device stubs (in constructur and exit())
|
|
|
|
void init_stubs(void);
|
2002-08-27 23:54:46 +04:00
|
|
|
// Register I/O addresses and IRQ lines. Initialize any internal
|
|
|
|
// structures. init() is called only once, even if the simulator
|
|
|
|
// reboots or is restarted.
|
2001-05-23 11:48:11 +04:00
|
|
|
void init(BX_MEM_C *);
|
2002-08-27 23:54:46 +04:00
|
|
|
// Enter reset state in response to a reset condition.
|
|
|
|
// The types of reset conditions are defined in bochs.h:
|
|
|
|
// power-on, hardware, or software.
|
|
|
|
void reset(unsigned type);
|
2006-09-07 22:50:51 +04:00
|
|
|
// Cleanup the devices when the simulation quits.
|
|
|
|
void exit(void);
|
2006-04-15 21:03:59 +04:00
|
|
|
void register_state(void);
|
|
|
|
void after_restore_state(void);
|
2001-05-23 11:48:11 +04:00
|
|
|
BX_MEM_C *mem; // address space associated with these devices
|
2006-09-20 22:24:17 +04:00
|
|
|
bx_bool register_io_read_handler(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u addr, const char *name, Bit8u mask);
|
|
|
|
bx_bool unregister_io_read_handler(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u addr, Bit8u mask);
|
|
|
|
bx_bool register_io_write_handler(void *this_ptr, bx_write_handler_t f,
|
|
|
|
Bit32u addr, const char *name, Bit8u mask);
|
|
|
|
bx_bool unregister_io_write_handler(void *this_ptr, bx_write_handler_t f,
|
2008-02-16 01:05:43 +03:00
|
|
|
Bit32u addr, Bit8u mask);
|
2006-09-20 22:24:17 +04:00
|
|
|
bx_bool register_io_read_handler_range(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u begin_addr, Bit32u end_addr,
|
|
|
|
const char *name, Bit8u mask);
|
|
|
|
bx_bool register_io_write_handler_range(void *this_ptr, bx_write_handler_t f,
|
|
|
|
Bit32u begin_addr, Bit32u end_addr,
|
2008-02-16 01:05:43 +03:00
|
|
|
const char *name, Bit8u mask);
|
2006-09-20 22:24:17 +04:00
|
|
|
bx_bool unregister_io_read_handler_range(void *this_ptr, bx_read_handler_t f,
|
|
|
|
Bit32u begin, Bit32u end, Bit8u mask);
|
|
|
|
bx_bool unregister_io_write_handler_range(void *this_ptr, bx_write_handler_t f,
|
|
|
|
Bit32u begin, Bit32u end, Bit8u mask);
|
|
|
|
bx_bool register_default_io_read_handler(void *this_ptr, bx_read_handler_t f, const char *name, Bit8u mask);
|
|
|
|
bx_bool register_default_io_write_handler(void *this_ptr, bx_write_handler_t f, const char *name, Bit8u mask);
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool register_irq(unsigned irq, const char *name);
|
|
|
|
bx_bool unregister_irq(unsigned irq, const char *name);
|
2003-03-03 02:59:12 +03:00
|
|
|
Bit32u inp(Bit16u addr, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
|
|
|
void outp(Bit16u addr, Bit32u value, unsigned io_len) BX_CPP_AttrRegparmN(3);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
static void timer_handler(void *);
|
|
|
|
void timer(void);
|
|
|
|
|
2004-02-02 02:42:04 +03:00
|
|
|
bx_devmodel_c *pluginBiosDevice;
|
2006-01-17 23:16:59 +03:00
|
|
|
#if BX_SUPPORT_APIC
|
2004-02-02 02:42:04 +03:00
|
|
|
bx_ioapic_c *ioapic;
|
2006-01-17 23:16:59 +03:00
|
|
|
#endif
|
2006-03-07 21:16:41 +03:00
|
|
|
bx_pci_bridge_stub_c *pluginPciBridge;
|
2004-07-02 02:18:20 +04:00
|
|
|
bx_pci2isa_stub_c *pluginPci2IsaBridge;
|
2005-02-08 21:32:27 +03:00
|
|
|
bx_pci_ide_stub_c *pluginPciIdeController;
|
2006-10-02 14:14:07 +04:00
|
|
|
#if BX_SUPPORT_ACPI
|
2006-10-01 23:51:49 +04:00
|
|
|
bx_acpi_ctrl_stub_c *pluginACPIController;
|
2006-10-02 14:14:07 +04:00
|
|
|
#endif
|
2004-02-02 02:42:04 +03:00
|
|
|
bx_devmodel_c *pluginPciVgaAdapter;
|
|
|
|
bx_devmodel_c *pluginPciDevAdapter;
|
2004-12-11 11:35:33 +03:00
|
|
|
bx_devmodel_c *pluginPciPNicAdapter;
|
2004-02-02 02:42:04 +03:00
|
|
|
bx_pit_c *pit;
|
|
|
|
bx_keyb_stub_c *pluginKeyboard;
|
|
|
|
bx_dma_stub_c *pluginDmaDevice;
|
|
|
|
bx_floppy_stub_c *pluginFloppyDevice;
|
|
|
|
bx_cmos_stub_c *pluginCmosDevice;
|
2004-12-03 00:34:26 +03:00
|
|
|
bx_serial_stub_c *pluginSerialDevice;
|
2004-12-11 11:35:33 +03:00
|
|
|
#if BX_SUPPORT_PCIUSB
|
2006-10-01 23:51:49 +04:00
|
|
|
bx_pci_usb_stub_c *pluginPciUSBAdapter;
|
2004-12-11 11:35:33 +03:00
|
|
|
#endif
|
2004-02-02 02:42:04 +03:00
|
|
|
bx_devmodel_c *pluginParallelDevice;
|
|
|
|
bx_devmodel_c *pluginUnmapped;
|
|
|
|
bx_vga_stub_c *pluginVgaDevice;
|
|
|
|
bx_pic_stub_c *pluginPicDevice;
|
2002-10-25 01:07:56 +04:00
|
|
|
bx_hard_drive_stub_c *pluginHardDrive;
|
2004-02-02 02:42:04 +03:00
|
|
|
bx_devmodel_c *pluginSB16Device;
|
|
|
|
bx_ne2k_stub_c *pluginNE2kDevice;
|
|
|
|
bx_devmodel_c *pluginExtFpuIrq;
|
|
|
|
bx_devmodel_c *pluginGameport;
|
|
|
|
bx_speaker_stub_c *pluginSpeaker;
|
2006-01-17 23:16:59 +03:00
|
|
|
#if BX_SUPPORT_BUSMOUSE
|
|
|
|
bx_busm_stub_c *pluginBusMouse;
|
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_IODEBUG
|
2004-02-02 02:42:04 +03:00
|
|
|
bx_iodebug_c *iodebug;
|
2001-09-14 19:01:29 +04:00
|
|
|
#endif
|
2006-01-17 23:16:59 +03:00
|
|
|
#if 0
|
|
|
|
bx_g2h_c *g2h;
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
// stub classes that the pointers (above) can point to until a plugin is
|
|
|
|
// loaded
|
|
|
|
bx_cmos_stub_c stubCmos;
|
|
|
|
bx_keyb_stub_c stubKeyboard;
|
2004-12-11 11:35:33 +03:00
|
|
|
#if BX_SUPPORT_BUSMOUSE
|
|
|
|
bx_busm_stub_c stubBusMouse;
|
|
|
|
#endif
|
2002-10-25 01:07:56 +04:00
|
|
|
bx_hard_drive_stub_c stubHardDrive;
|
|
|
|
bx_dma_stub_c stubDma;
|
|
|
|
bx_pic_stub_c stubPic;
|
|
|
|
bx_floppy_stub_c stubFloppy;
|
|
|
|
bx_vga_stub_c stubVga;
|
2006-03-07 21:16:41 +03:00
|
|
|
bx_pci_bridge_stub_c stubPci;
|
2004-12-03 00:34:26 +03:00
|
|
|
bx_pci2isa_stub_c stubPci2Isa;
|
2005-02-08 21:32:27 +03:00
|
|
|
bx_pci_ide_stub_c stubPciIde;
|
2004-12-03 00:34:26 +03:00
|
|
|
bx_ne2k_stub_c stubNE2k;
|
2004-02-03 00:47:26 +03:00
|
|
|
bx_speaker_stub_c stubSpeaker;
|
2004-12-03 00:34:26 +03:00
|
|
|
bx_serial_stub_c stubSerial;
|
2004-12-11 11:35:33 +03:00
|
|
|
#if BX_SUPPORT_PCIUSB
|
2006-10-01 23:51:49 +04:00
|
|
|
bx_pci_usb_stub_c stubUsbAdapter;
|
|
|
|
#endif
|
|
|
|
#if BX_SUPPORT_ACPI
|
|
|
|
bx_acpi_ctrl_stub_c stubACPIController;
|
2004-12-11 11:35:33 +03:00
|
|
|
#endif
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2002-09-09 20:56:56 +04:00
|
|
|
// Some info to pass to devices which can handled bulk IO. This allows
|
|
|
|
// the interface to remain the same for IO devices which can't handle
|
|
|
|
// bulk IO. We should probably implement special INPBulk() and OUTBulk()
|
|
|
|
// functions which stick these values in the bx_devices_c class, and
|
|
|
|
// then call the normal functions rather than having gross globals
|
|
|
|
// variables.
|
2005-04-02 15:30:08 +04:00
|
|
|
Bit8u* bulkIOHostAddr;
|
2002-09-09 20:56:56 +04:00
|
|
|
unsigned bulkIOQuantumsRequested;
|
|
|
|
unsigned bulkIOQuantumsTransferred;
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
private:
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2004-01-15 05:08:37 +03:00
|
|
|
struct io_handler_struct {
|
|
|
|
struct io_handler_struct *next;
|
|
|
|
struct io_handler_struct *prev;
|
|
|
|
void *funct; // C++ type checking is great, but annoying
|
|
|
|
void *this_ptr;
|
2006-09-20 22:24:17 +04:00
|
|
|
char *handler_name; // name of device
|
2004-01-15 05:08:37 +03:00
|
|
|
int usage_count;
|
|
|
|
Bit8u mask; // io_len mask
|
|
|
|
};
|
|
|
|
struct io_handler_struct io_read_handlers;
|
|
|
|
struct io_handler_struct io_write_handlers;
|
|
|
|
#define PORTS 0x10000
|
|
|
|
struct io_handler_struct **read_port_to_handler;
|
|
|
|
struct io_handler_struct **write_port_to_handler;
|
2008-01-27 01:24:03 +03:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// more for informative purposes, the names of the devices which
|
|
|
|
// are use each of the IRQ 0..15 lines are stored here
|
2006-09-13 22:51:25 +04:00
|
|
|
char *irq_handler_name[BX_MAX_IRQS];
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len);
|
|
|
|
static void write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
BX_DEV_SMF Bit32u port92_read(Bit32u address, unsigned io_len);
|
|
|
|
BX_DEV_SMF void port92_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
static Bit32u default_read_handler(void *this_ptr, Bit32u address, unsigned io_len);
|
|
|
|
static void default_write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
int timer_handle;
|
2008-04-17 18:39:33 +04:00
|
|
|
bx_bool is_serial_enabled();
|
|
|
|
bx_bool is_usb_enabled();
|
|
|
|
bx_bool is_parallel_enabled();
|
2006-03-06 22:23:13 +03:00
|
|
|
};
|
|
|
|
|
2008-04-17 18:39:33 +04:00
|
|
|
// memory stub has an assumption that there are no memory accesses splitting 4K page
|
|
|
|
BX_CPP_INLINE void DEV_MEM_READ_PHYSICAL(bx_phy_address phy_addr, unsigned len, Bit8u *ptr)
|
2008-06-12 00:59:50 +04:00
|
|
|
{
|
|
|
|
unsigned remainingInPage = 0x1000 - (phy_addr & 0xfff);
|
2008-06-12 01:10:02 +04:00
|
|
|
if (len <= remainingInPage) {
|
2008-06-12 00:59:50 +04:00
|
|
|
BX_MEM(0)->readPhysicalPage(NULL, phy_addr, len, ptr);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BX_MEM(0)->readPhysicalPage(NULL, phy_addr, remainingInPage, ptr);
|
|
|
|
ptr += remainingInPage;
|
|
|
|
phy_addr += remainingInPage;
|
|
|
|
len -= remainingInPage;
|
|
|
|
BX_MEM(0)->readPhysicalPage(NULL, phy_addr, len, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BX_CPP_INLINE void DEV_MEM_READ_PHYSICAL_BLOCK(bx_phy_address phy_addr, unsigned len, Bit8u *ptr)
|
2008-04-17 18:39:33 +04:00
|
|
|
{
|
|
|
|
while(len > 0) {
|
|
|
|
unsigned remainingInPage = 0x1000 - (phy_addr & 0xfff);
|
|
|
|
if (len < remainingInPage) remainingInPage = len;
|
|
|
|
BX_MEM(0)->readPhysicalPage(NULL, phy_addr, remainingInPage, ptr);
|
|
|
|
ptr += remainingInPage;
|
|
|
|
phy_addr += remainingInPage;
|
|
|
|
len -= remainingInPage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// memory stub has an assumption that there are no memory accesses splitting 4K page
|
|
|
|
BX_CPP_INLINE void DEV_MEM_WRITE_PHYSICAL(bx_phy_address phy_addr, unsigned len, Bit8u *ptr)
|
2008-06-12 00:59:50 +04:00
|
|
|
{
|
|
|
|
unsigned remainingInPage = 0x1000 - (phy_addr & 0xfff);
|
2008-06-12 01:10:02 +04:00
|
|
|
if (len <= remainingInPage) {
|
2008-06-12 00:59:50 +04:00
|
|
|
BX_MEM(0)->writePhysicalPage(NULL, phy_addr, len, ptr);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BX_MEM(0)->writePhysicalPage(NULL, phy_addr, remainingInPage, ptr);
|
|
|
|
ptr += remainingInPage;
|
|
|
|
phy_addr += remainingInPage;
|
|
|
|
len -= remainingInPage;
|
|
|
|
BX_MEM(0)->writePhysicalPage(NULL, phy_addr, len, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BX_CPP_INLINE void DEV_MEM_WRITE_PHYSICAL_BLOCK(bx_phy_address phy_addr, unsigned len, Bit8u *ptr)
|
2008-04-17 18:39:33 +04:00
|
|
|
{
|
|
|
|
while(len > 0) {
|
|
|
|
unsigned remainingInPage = 0x1000 - (phy_addr & 0xfff);
|
|
|
|
if (len < remainingInPage) remainingInPage = len;
|
|
|
|
BX_MEM(0)->writePhysicalPage(NULL, phy_addr, remainingInPage, ptr);
|
|
|
|
ptr += remainingInPage;
|
|
|
|
phy_addr += remainingInPage;
|
|
|
|
len -= remainingInPage;
|
|
|
|
}
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-12-10 21:37:35 +03:00
|
|
|
#ifndef NO_DEVICE_INCLUDES
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCI
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "iodev/pci.h"
|
2002-09-16 23:18:58 +04:00
|
|
|
#include "iodev/pci2isa.h"
|
2004-06-10 00:55:58 +04:00
|
|
|
#include "iodev/pci_ide.h"
|
2006-10-02 14:14:07 +04:00
|
|
|
#if BX_SUPPORT_ACPI
|
2006-09-24 20:58:13 +04:00
|
|
|
#include "iodev/acpi.h"
|
2006-10-02 14:14:07 +04:00
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIVGA
|
2003-01-11 01:43:54 +03:00
|
|
|
#include "iodev/pcivga.h"
|
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIDEV
|
2004-01-15 05:08:37 +03:00
|
|
|
#include "iodev/pcidev.h"
|
|
|
|
#endif
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIUSB
|
2003-01-28 19:58:10 +03:00
|
|
|
#include "iodev/pciusb.h"
|
|
|
|
#endif
|
2002-11-09 23:51:40 +03:00
|
|
|
#endif
|
2002-10-26 17:14:11 +04:00
|
|
|
#include "iodev/vga.h"
|
2001-06-12 17:07:43 +04:00
|
|
|
#if BX_SUPPORT_APIC
|
2001-05-23 11:48:11 +04:00
|
|
|
# include "iodev/ioapic.h"
|
|
|
|
#endif
|
2002-04-02 01:53:23 +04:00
|
|
|
#include "iodev/biosdev.h"
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "iodev/cmos.h"
|
|
|
|
#include "iodev/dma.h"
|
|
|
|
#include "iodev/floppy.h"
|
|
|
|
#include "iodev/harddrv.h"
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_IODEBUG
|
2001-09-14 19:01:29 +04:00
|
|
|
# include "iodev/iodebug.h"
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "iodev/keyboard.h"
|
2004-12-11 11:35:33 +03:00
|
|
|
#if BX_SUPPORT_BUSMOUSE
|
|
|
|
# include "iodev/busmouse.h"
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "iodev/parallel.h"
|
|
|
|
#include "iodev/pic.h"
|
2001-07-02 00:49:46 +04:00
|
|
|
#include "iodev/pit_wrap.h"
|
2003-02-17 06:58:29 +03:00
|
|
|
#include "iodev/virt_timer.h"
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "iodev/serial.h"
|
|
|
|
#if BX_SUPPORT_SB16
|
|
|
|
# include "iodev/sb16.h"
|
|
|
|
#endif
|
|
|
|
#include "iodev/unmapped.h"
|
|
|
|
#include "iodev/ne2k.h"
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCIPNIC
|
2004-01-13 22:21:21 +03:00
|
|
|
#include "iodev/pcipnic.h"
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "iodev/guest2host.h"
|
2001-08-18 07:28:23 +04:00
|
|
|
#include "iodev/slowdown_timer.h"
|
2003-01-06 05:20:47 +03:00
|
|
|
#include "iodev/extfpuirq.h"
|
2003-06-21 16:55:19 +04:00
|
|
|
#include "iodev/gameport.h"
|
2004-06-19 19:20:15 +04:00
|
|
|
|
2005-12-10 21:37:35 +03:00
|
|
|
#endif /* NO_DEVICE_INCLUDES */
|
|
|
|
|
2008-02-16 01:05:43 +03:00
|
|
|
#if BX_PROVIDE_DEVICE_MODELS
|
|
|
|
BOCHSAPI extern bx_devices_c bx_devices;
|
2004-06-19 19:20:15 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* IODEV_H */
|