2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
Integrated patches for:
- Paging code rehash. You must now use --enable-4meg-pages to
use 4Meg pages, with the default of disabled, since we don't well
support 4Meg pages yet. Paging table walks model a real CPU
more closely now, and I fixed some bugs in the old logic.
- Segment check redundancy elimination. After a segment is loaded,
reads and writes are marked when a segment type check succeeds, and
they are skipped thereafter, when possible.
- Repeated IO and memory string copy acceleration. Only some variants
of instructions are available on all platforms, word and dword
variants only on x86 for the moment due to alignment and endian issues.
This is compiled in currently with no option - I should add a configure
option.
- Added a guest linear address to host TLB. Actually, I just stick
the host address (mem.vector[addr] address) in the upper 29 bits
of the field 'combined_access' since they are unused. Convenient
for now. I'm only storing page frame addresses. This was the
simplest for of such a TLB. We can likely enhance this. Also,
I only accelerated the normal read/write routines in access.cc.
Could also modify the read-modify-write versions too. You must
use --enable-guest2host-tlb, to try this out. Currently speeds
up Win95 boot time by about 3.5% for me. More ground to cover...
- Minor mods to CPUI/MOV_CdRd for CMOV.
- Integrated enhancements from Volker to getHostMemAddr() for PCI
being enabled.
2002-09-02 00:12:09 +04:00
|
|
|
// $Id: pc_system.h,v 1.12 2002-09-01 20:12:09 kevinlawton 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/
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2001-09-21 06:46:17 +04:00
|
|
|
class bx_pc_system_c : private 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;
|
|
|
|
void expire_ticks(void);
|
|
|
|
|
|
|
|
#if !defined(PROVIDE_M_IPS)
|
|
|
|
double m_ips; // Millions of Instructions Per Second
|
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
Integrated patches for:
- Paging code rehash. You must now use --enable-4meg-pages to
use 4Meg pages, with the default of disabled, since we don't well
support 4Meg pages yet. Paging table walks model a real CPU
more closely now, and I fixed some bugs in the old logic.
- Segment check redundancy elimination. After a segment is loaded,
reads and writes are marked when a segment type check succeeds, and
they are skipped thereafter, when possible.
- Repeated IO and memory string copy acceleration. Only some variants
of instructions are available on all platforms, word and dword
variants only on x86 for the moment due to alignment and endian issues.
This is compiled in currently with no option - I should add a configure
option.
- Added a guest linear address to host TLB. Actually, I just stick
the host address (mem.vector[addr] address) in the upper 29 bits
of the field 'combined_access' since they are unused. Convenient
for now. I'm only storing page frame addresses. This was the
simplest for of such a TLB. We can likely enhance this. Also,
I only accelerated the normal read/write routines in access.cc.
Could also modify the read-modify-write versions too. You must
use --enable-guest2host-tlb, to try this out. Currently speeds
up Win95 boot time by about 3.5% for me. More ground to cover...
- Minor mods to CPUI/MOV_CdRd for CMOV.
- Integrated enhancements from Volker to getHostMemAddr() for PCI
being enabled.
2002-09-02 00:12:09 +04:00
|
|
|
Bit64u num_cpu_ticks_left;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
Boolean HRQ; // Hold Request
|
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_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 );
|
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();
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
};
|