Bochs/bochs/pc_system.h

175 lines
5.1 KiB
C++

/////////////////////////////////////////////////////////////////////////
// $Id: pc_system.h,v 1.9 2001-12-18 13:14:46 vruppert Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
//
// 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
#define BX_MAX_TIMERS 16
#define BX_NULL_TIMER_HANDLE 10000 /* set uninitialized timer handles to this */
#if BX_SHOW_IPS
extern unsigned long ips_count;
#endif
typedef void (*bx_timer_handler_t)(void *);
extern class bx_pc_system_c bx_pc_system;
#ifdef PROVIDE_M_IPS
extern double m_ips;
#endif
class bx_pc_system_c : private logfunctions {
private:
struct {
Bit64u period;
Bit64u remaining;
Boolean active;
Boolean continuous;
Boolean triggered;
bx_timer_handler_t funct;
void *this_ptr;
} timer[BX_MAX_TIMERS];
unsigned num_timers;
Bit64u num_cpu_ticks_in_period;
Bit64u num_cpu_ticks_left;
void expire_ticks(void);
#if !defined(PROVIDE_M_IPS)
double m_ips; // Millions of Instructions Per Second
#endif
public:
Boolean DRQ[8]; // DMA Request
Boolean DACK[8]; // DMA Acknowlege
Boolean TC; // Terminal Count
Boolean HRQ; // Hold Request
Boolean HLDA; // Hold Acknowlege
//Boolean INTR; // Interrupt
// Address line 20 control:
// 1 = enabled: extended memory is accessible
// 0 = disabled: A20 address line is forced low to simulate
// an 8088 address map
Boolean enable_a20;
// start out masking physical memory addresses to:
// 8086: 20 bits
// 286: 24 bits
// 386: 32 bits
// when A20 line is disabled, mask physical memory addresses to:
// 286: 20 bits
// 386: 20 bits
//
Bit32u a20_mask;
void set_DRQ(unsigned channel, Boolean val);
void set_DACK(unsigned channel, Boolean val);
void set_TC(Boolean val); // set the Terminal Count line
void set_HRQ(Boolean val); // set the Hold ReQuest line
void raise_HLDA(void); // raise the HoLD Acknowlege line
void set_INTR(Boolean value); // set the INTR line to value
int IntEnabled( void );
int InterruptSignal( PCS_OP operation );
int ResetSignal( PCS_OP operation );
Bit8u IAC(void);
bx_pc_system_c(void);
void init_ips(Bit32u ips);
void timer_handler(void);
int register_timer( void *this_ptr, bx_timer_handler_t, Bit32u useconds,
Boolean continuous, Boolean active);
void start_timers(void);
void activate_timer( unsigned timer_index, Bit32u useconds,
Boolean continuous );
void deactivate_timer( unsigned timer_index );
static BX_CPP_INLINE void tick1(void) {
#if BX_SHOW_IPS
{
extern unsigned long ips_count;
ips_count++;
}
#endif
if (--bx_pc_system.num_cpu_ticks_left == 0) {
bx_pc_system.timer_handler();
}
}
static BX_CPP_INLINE void tickn(Bit64u n) {
#if BX_SHOW_IPS
{
extern unsigned long ips_count;
ips_count += n;
}
#endif
if (bx_pc_system.num_cpu_ticks_left > n) {
bx_pc_system.num_cpu_ticks_left -= n;
return;
}
while (n >= bx_pc_system.num_cpu_ticks_left) {
n -= bx_pc_system.num_cpu_ticks_left;
bx_pc_system.num_cpu_ticks_left = 0;
bx_pc_system.timer_handler();
}
}
Bit64u ticks_remaining(int index)
{
return timer[index].remaining;
}
static const Bit64u COUNTER_INTERVAL;
int register_timer_ticks(void* this_ptr, bx_timer_handler_t, Bit64u ticks, Boolean continuous, Boolean active);
void activate_timer_ticks(unsigned index, Bit64u instructions, Boolean continuous);
static void counter_timer_handler(void* this_ptr);
static void wait_for_event();
#if BX_DEBUGGER
static void timebp_handler(void* this_ptr);
#endif
Bit64u counter;
int counter_timer_index;
Bit64u time_usec();
Bit64u time_ticks();
void dma_write8(Bit32u phy_addr, unsigned channel);
void dma_read8(Bit32u phy_addr, unsigned channel);
void dma_write16(Bit32u phy_addr, unsigned channel);
void dma_read16(Bit32u phy_addr, unsigned channel);
Bit32u inp(Bit16u addr, unsigned io_len);
void outp(Bit16u addr, Bit32u value, unsigned io_len);
void set_enable_a20(Bit8u value);
Boolean get_enable_a20(void);
void exit(void);
};