Bochs/bochs/pc_system.h
Volker Ruppert c7c9cc2430 - DMA register and unregister functions for DMA channels added and macros for
DMA functions defined. Most of the changes are based on the "bochs sync"
   version of plex86. Here is the list of changes:

  * register/unregister functions for DMA channels added. The DMA controller
    can use the DMA read/write handlers of registered devices directly.
  * "hardwired" code in dma.cc removed
  * all DMA related code in devices.cc and iodev.h removed
  * DMA related code in pc_system.* removed except HRQ handling
  * macros for DMA functions defined in bochs.h
  * floppy and SB16 code modified to use the changes described above
2002-06-16 15:02:28 +00:00

162 lines
4.5 KiB
C++

/////////////////////////////////////////////////////////////////////////
// $Id: pc_system.h,v 1.11 2002-06-16 15:02:27 vruppert Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 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 HRQ; // Hold Request
//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_HRQ(Boolean val); // set the Hold ReQuest 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();
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);
};