2001-04-10 06:20:02 +04:00
|
|
|
// Copyright (C) 2001 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/
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
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
|
|
|
class bx_pc_system_c : logfunctions {
|
2001-04-10 05:04:59 +04:00
|
|
|
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
|
2001-05-23 12:16:07 +04:00
|
|
|
//Boolean INTR; // Interrupt
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
// 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 );
|
2001-04-10 06:10:09 +04:00
|
|
|
static BX_CPP_INLINE void tick1(void) {
|
2001-04-10 05:04:59 +04:00
|
|
|
#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();
|
|
|
|
}
|
|
|
|
}
|
2001-04-10 06:10:09 +04:00
|
|
|
static BX_CPP_INLINE void tickn(Bit64u n) {
|
2001-04-10 05:04:59 +04:00
|
|
|
#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;
|
2001-07-02 00:42:56 +04:00
|
|
|
Bit64u time_usec();
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit64u time_ticks();
|
|
|
|
|
|
|
|
void dma_write8(Bit32u phy_addr, unsigned channel);
|
|
|
|
void dma_read8(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);
|
|
|
|
|
|
|
|
};
|