Bochs/bochs/iodev/pci.h

62 lines
1.9 KiB
C
Raw Normal View History

/////////////////////////////////////////////////////////////////////////
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2013 The Bochs Project
//
// 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2006-03-07 21:16:41 +03:00
#ifndef BX_IODEV_PCI_BRIDGE_H
#define BX_IODEV_PCI_BRIDGE_H
#if BX_USE_PCI_SMF
# define BX_PCI_SMF static
# define BX_PCI_THIS thePciBridge->
#else
# define BX_PCI_SMF
# define BX_PCI_THIS this->
#endif
#define BX_PCI_DEVICE(device, function) ((device)<<3 | (function))
#define BX_PCI_INTA 1
#define BX_PCI_INTB 2
#define BX_PCI_INTC 3
#define BX_PCI_INTD 4
class bx_pci_bridge_c : public bx_devmodel_c, public bx_pci_device_stub_c {
public:
2006-03-07 21:16:41 +03:00
bx_pci_bridge_c();
virtual ~bx_pci_bridge_c();
2006-03-03 23:15:07 +03:00
virtual void init(void);
virtual void reset(unsigned type);
2006-05-27 19:54:49 +04:00
virtual void register_state(void);
virtual void after_restore_state(void);
virtual Bit32u pci_read_handler(Bit8u address, unsigned io_len);
virtual void pci_write_handler(Bit8u address, Bit32u value, unsigned io_len);
#if BX_DEBUGGER
virtual void debug_dump(int argc, char **argv);
#endif
private:
void smram_control(Bit8u value);
unsigned chipset;
Bit8u DRBA[8];
Bit8u dram_detect;
2006-03-03 23:15:07 +03:00
};
2006-03-07 21:16:41 +03:00
#endif