2003-10-14 18:19:59 +02:00
|
|
|
/*
|
2005-06-05 11:16:00 +02:00
|
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
2003-10-14 18:19:59 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2004-11-16 02:30:51 +01:00
|
|
|
#include "base/loader/symtab.hh"
|
2003-10-21 02:17:01 +02:00
|
|
|
#include "base/trace.hh"
|
2005-06-05 02:50:10 +02:00
|
|
|
#include "cpu/base.hh"
|
2003-10-14 18:19:59 +02:00
|
|
|
#include "cpu/exec_context.hh"
|
|
|
|
#include "kern/tru64/tru64_events.hh"
|
|
|
|
#include "kern/tru64/tru64_system.hh"
|
2004-05-13 17:40:07 +02:00
|
|
|
#include "kern/system_events.hh"
|
2005-06-05 02:50:10 +02:00
|
|
|
#include "mem/functional/memory_control.hh"
|
|
|
|
#include "mem/functional/physical.hh"
|
2003-10-21 02:17:01 +02:00
|
|
|
#include "sim/builder.hh"
|
2003-10-14 18:19:59 +02:00
|
|
|
#include "targetarch/isa_traits.hh"
|
|
|
|
#include "targetarch/vtophys.hh"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
Tru64System::Tru64System(Tru64System::Params *p)
|
|
|
|
: System(p)
|
2003-10-14 18:19:59 +02:00
|
|
|
{
|
|
|
|
Addr addr = 0;
|
|
|
|
if (kernelSymtab->findAddress("enable_async_printf", addr)) {
|
|
|
|
Addr paddr = vtophys(physmem, addr);
|
|
|
|
uint8_t *enable_async_printf =
|
|
|
|
physmem->dma_addr(paddr, sizeof(uint32_t));
|
|
|
|
|
|
|
|
if (enable_async_printf)
|
|
|
|
*(uint32_t *)enable_async_printf = 0;
|
|
|
|
}
|
|
|
|
|
2004-01-30 04:30:14 +01:00
|
|
|
#ifdef DEBUG
|
2004-08-20 17:35:31 +02:00
|
|
|
kernelPanicEvent = new BreakPCEvent(&pcEventQueue, "kernel panic");
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("panic", addr))
|
|
|
|
kernelPanicEvent->schedule(addr);
|
|
|
|
else
|
|
|
|
panic("could not find kernel symbol \'panic\'");
|
2004-01-30 04:30:14 +01:00
|
|
|
#endif
|
2003-10-14 18:19:59 +02:00
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
badaddrEvent = new BadAddrEvent(&pcEventQueue, "badaddr");
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("badaddr", addr))
|
|
|
|
badaddrEvent->schedule(addr);
|
|
|
|
else
|
|
|
|
panic("could not find kernel symbol \'badaddr\'");
|
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
skipPowerStateEvent = new SkipFuncEvent(&pcEventQueue,
|
|
|
|
"tl_v48_capture_power_state");
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("tl_v48_capture_power_state", addr))
|
|
|
|
skipPowerStateEvent->schedule(addr);
|
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
skipScavengeBootEvent = new SkipFuncEvent(&pcEventQueue,
|
|
|
|
"pmap_scavenge_boot");
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("pmap_scavenge_boot", addr))
|
|
|
|
skipScavengeBootEvent->schedule(addr);
|
|
|
|
|
|
|
|
#if TRACING_ON
|
2004-08-20 17:35:31 +02:00
|
|
|
printfEvent = new PrintfEvent(&pcEventQueue, "printf");
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("printf", addr))
|
|
|
|
printfEvent->schedule(addr);
|
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
debugPrintfEvent = new DebugPrintfEvent(&pcEventQueue, "debug_printf",
|
|
|
|
false);
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("m5printf", addr))
|
|
|
|
debugPrintfEvent->schedule(addr);
|
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
debugPrintfrEvent = new DebugPrintfEvent(&pcEventQueue, "debug_printfr",
|
|
|
|
true);
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("m5printfr", addr))
|
|
|
|
debugPrintfrEvent->schedule(addr);
|
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
dumpMbufEvent = new DumpMbufEvent(&pcEventQueue, "dump_mbuf");
|
2003-10-14 18:19:59 +02:00
|
|
|
if (kernelSymtab->findAddress("m5_dump_mbuf", addr))
|
|
|
|
dumpMbufEvent->schedule(addr);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
Tru64System::~Tru64System()
|
|
|
|
{
|
2004-01-30 04:30:14 +01:00
|
|
|
#ifdef DEBUG
|
2003-10-14 18:19:59 +02:00
|
|
|
delete kernelPanicEvent;
|
2004-01-30 04:30:14 +01:00
|
|
|
#endif
|
2003-10-14 18:19:59 +02:00
|
|
|
delete badaddrEvent;
|
|
|
|
delete skipPowerStateEvent;
|
|
|
|
delete skipScavengeBootEvent;
|
2004-08-20 17:35:31 +02:00
|
|
|
#if TRACING_ON
|
2003-10-14 18:19:59 +02:00
|
|
|
delete printfEvent;
|
|
|
|
delete debugPrintfEvent;
|
|
|
|
delete debugPrintfrEvent;
|
|
|
|
delete dumpMbufEvent;
|
2004-08-20 17:35:31 +02:00
|
|
|
#endif
|
2003-10-14 18:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_DECLARE_SIM_OBJECT_PARAMS(Tru64System)
|
|
|
|
|
Make the notion of a global event tick independent of the actual
CPU cycle ticks. This allows the user to have CPUs of different
frequencies, and also allows frequencies and latencies that are
not evenly divisible by the CPU frequency. For now, the CPU
frequency is still set to the global frequency, but soon, we'll
hopefully make the global frequency fixed at something like 1THz
and set all other frequencies independently.
arch/alpha/ev5.cc:
The cycles counter is based on the current cpu cycle.
cpu/base_cpu.cc:
frequency isn't the cpu parameter anymore, cycleTime is.
cpu/base_cpu.hh:
frequency isn't the cpu parameter anymore, cycleTime is.
create several public functions for getting the cpu frequency
and the numbers of ticks for a given number of cycles, etc.
cpu/memtest/memtest.cc:
cpu/simple_cpu/simple_cpu.cc:
cpu/simple_cpu/simple_cpu.hh:
cpu/trace/trace_cpu.cc:
Now that ticks aren't cpu cycles, fixup code to advance
by the proper number of ticks.
cpu/memtest/memtest.hh:
cpu/trace/trace_cpu.hh:
Provide a function to get the number of ticks for a given
number of cycles.
dev/alpha_console.cc:
Update for changes in the way that frequencies and latencies are
accessed. Move some stuff to init()
dev/alpha_console.hh:
Need a pointer to the system and the cpu to get the frequency
so we can pass the info to the console code.
dev/etherbus.cc:
dev/etherbus.hh:
dev/etherlink.cc:
dev/etherlink.hh:
dev/ethertap.cc:
dev/ide_disk.hh:
dev/ns_gige.cc:
dev/ns_gige.hh:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
dev/ide_disk.cc:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
Add some extra debugging printfs
dev/platform.cc:
dev/sinic.cc:
dev/sinic.hh:
outline the constructor and destructor
dev/platform.hh:
outline the constructor and destructor.
don't keep track of the interrupt frequency. Only provide the
accessor function.
dev/tsunami.cc:
dev/tsunami.hh:
outline the constructor and destructor
Don't set the interrupt frequency here. Get it from the actual device
that does the interrupting.
dev/tsunami_io.cc:
dev/tsunami_io.hh:
Make the interrupt interval a configuration parameter. (And convert
the interval to the new latency/frequency stuff in the python)
kern/linux/linux_system.cc:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
For now, we must get the boot cpu's frequency as a parameter
since allowing the system to have a pointer to the boot cpu would
cause a cycle.
kern/tru64/tru64_system.cc:
For now, we must get the boot cpu's frequency as a parameter
since allowing the system to have a pointer to the boot cpu would
cause a cycle.
python/m5/config.py:
Fix support for cycle_time relative latencies and frequencies.
Add support for getting a NetworkBandwidth or a MemoryBandwidth.
python/m5/objects/BaseCPU.mpy:
All CPUs now have a cycle_time. The default is the global frequency,
but it is now possible to set the global frequency to some large value
(like 1THz) and set each CPU frequency independently.
python/m5/objects/BaseCache.mpy:
python/m5/objects/Ide.mpy:
Make this a Latency parameter
python/m5/objects/BaseSystem.mpy:
We need to pass the boot CPU's frequency to the system
python/m5/objects/Ethernet.mpy:
Update parameter types to use latency and bandwidth types
python/m5/objects/Platform.mpy:
this frequency isn't needed. We get it from the clock interrupt.
python/m5/objects/Tsunami.mpy:
The clock generator should hold the frequency
sim/eventq.hh:
Need to remove this assertion because the writeback event
queue is different from the CPU's event queue which can cause
this assertion to fail.
sim/process.cc:
Fix comment.
sim/system.hh:
Struct member to hold the boot CPU's frequency.
sim/universe.cc:
remove unneeded variable.
--HG--
extra : convert_revision : 51efe4041095234bf458d9b3b0d417f4cae16fdc
2005-04-11 21:32:06 +02:00
|
|
|
Param<Tick> boot_cpu_frequency;
|
2005-01-15 10:12:25 +01:00
|
|
|
SimObjectParam<MemoryController *> memctrl;
|
2003-10-14 18:19:59 +02:00
|
|
|
SimObjectParam<PhysicalMemory *> physmem;
|
|
|
|
|
2005-01-15 10:12:25 +01:00
|
|
|
Param<string> kernel;
|
|
|
|
Param<string> console;
|
|
|
|
Param<string> pal;
|
2004-08-20 17:35:31 +02:00
|
|
|
|
2003-10-14 18:19:59 +02:00
|
|
|
Param<string> boot_osflags;
|
2004-08-20 17:35:31 +02:00
|
|
|
Param<string> readfile;
|
|
|
|
Param<unsigned int> init_param;
|
|
|
|
|
2004-06-01 21:43:27 +02:00
|
|
|
Param<uint64_t> system_type;
|
|
|
|
Param<uint64_t> system_rev;
|
2003-10-14 18:19:59 +02:00
|
|
|
|
2004-08-20 17:35:31 +02:00
|
|
|
Param<bool> bin;
|
|
|
|
VectorParam<string> binned_fns;
|
|
|
|
|
2003-10-14 18:19:59 +02:00
|
|
|
END_DECLARE_SIM_OBJECT_PARAMS(Tru64System)
|
|
|
|
|
|
|
|
BEGIN_INIT_SIM_OBJECT_PARAMS(Tru64System)
|
|
|
|
|
Make the notion of a global event tick independent of the actual
CPU cycle ticks. This allows the user to have CPUs of different
frequencies, and also allows frequencies and latencies that are
not evenly divisible by the CPU frequency. For now, the CPU
frequency is still set to the global frequency, but soon, we'll
hopefully make the global frequency fixed at something like 1THz
and set all other frequencies independently.
arch/alpha/ev5.cc:
The cycles counter is based on the current cpu cycle.
cpu/base_cpu.cc:
frequency isn't the cpu parameter anymore, cycleTime is.
cpu/base_cpu.hh:
frequency isn't the cpu parameter anymore, cycleTime is.
create several public functions for getting the cpu frequency
and the numbers of ticks for a given number of cycles, etc.
cpu/memtest/memtest.cc:
cpu/simple_cpu/simple_cpu.cc:
cpu/simple_cpu/simple_cpu.hh:
cpu/trace/trace_cpu.cc:
Now that ticks aren't cpu cycles, fixup code to advance
by the proper number of ticks.
cpu/memtest/memtest.hh:
cpu/trace/trace_cpu.hh:
Provide a function to get the number of ticks for a given
number of cycles.
dev/alpha_console.cc:
Update for changes in the way that frequencies and latencies are
accessed. Move some stuff to init()
dev/alpha_console.hh:
Need a pointer to the system and the cpu to get the frequency
so we can pass the info to the console code.
dev/etherbus.cc:
dev/etherbus.hh:
dev/etherlink.cc:
dev/etherlink.hh:
dev/ethertap.cc:
dev/ide_disk.hh:
dev/ns_gige.cc:
dev/ns_gige.hh:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
dev/ide_disk.cc:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
Add some extra debugging printfs
dev/platform.cc:
dev/sinic.cc:
dev/sinic.hh:
outline the constructor and destructor
dev/platform.hh:
outline the constructor and destructor.
don't keep track of the interrupt frequency. Only provide the
accessor function.
dev/tsunami.cc:
dev/tsunami.hh:
outline the constructor and destructor
Don't set the interrupt frequency here. Get it from the actual device
that does the interrupting.
dev/tsunami_io.cc:
dev/tsunami_io.hh:
Make the interrupt interval a configuration parameter. (And convert
the interval to the new latency/frequency stuff in the python)
kern/linux/linux_system.cc:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
For now, we must get the boot cpu's frequency as a parameter
since allowing the system to have a pointer to the boot cpu would
cause a cycle.
kern/tru64/tru64_system.cc:
For now, we must get the boot cpu's frequency as a parameter
since allowing the system to have a pointer to the boot cpu would
cause a cycle.
python/m5/config.py:
Fix support for cycle_time relative latencies and frequencies.
Add support for getting a NetworkBandwidth or a MemoryBandwidth.
python/m5/objects/BaseCPU.mpy:
All CPUs now have a cycle_time. The default is the global frequency,
but it is now possible to set the global frequency to some large value
(like 1THz) and set each CPU frequency independently.
python/m5/objects/BaseCache.mpy:
python/m5/objects/Ide.mpy:
Make this a Latency parameter
python/m5/objects/BaseSystem.mpy:
We need to pass the boot CPU's frequency to the system
python/m5/objects/Ethernet.mpy:
Update parameter types to use latency and bandwidth types
python/m5/objects/Platform.mpy:
this frequency isn't needed. We get it from the clock interrupt.
python/m5/objects/Tsunami.mpy:
The clock generator should hold the frequency
sim/eventq.hh:
Need to remove this assertion because the writeback event
queue is different from the CPU's event queue which can cause
this assertion to fail.
sim/process.cc:
Fix comment.
sim/system.hh:
Struct member to hold the boot CPU's frequency.
sim/universe.cc:
remove unneeded variable.
--HG--
extra : convert_revision : 51efe4041095234bf458d9b3b0d417f4cae16fdc
2005-04-11 21:32:06 +02:00
|
|
|
INIT_PARAM(boot_cpu_frequency, "frequency of the boot cpu"),
|
2005-01-15 10:12:25 +01:00
|
|
|
INIT_PARAM(memctrl, "memory controller"),
|
2003-10-14 18:19:59 +02:00
|
|
|
INIT_PARAM(physmem, "phsyical memory"),
|
2005-01-15 10:12:25 +01:00
|
|
|
INIT_PARAM(kernel, "file that contains the kernel code"),
|
|
|
|
INIT_PARAM(console, "file that contains the console code"),
|
|
|
|
INIT_PARAM(pal, "file that contains palcode"),
|
2003-10-14 18:19:59 +02:00
|
|
|
INIT_PARAM_DFLT(boot_osflags, "flags to pass to the kernel during boot",
|
Overall gist of this is to 'dynamicize' the tracking of functions so you can choose them at the .ini stage rather than at compile time.
to do it:
in .ini file set binned_fns=foo null bar foo
what this says is, track foo when it is called by null (i.e. anything). bin bar only when it is called by foo.
essentially, if you have a path of functions to track, the 0th, 2nd, 4th fn listed are the fns to track, and the 1st, 3rd, 5th are their respective callers.
base/statistics.hh:
turn it back to FS_MEASURE since we already have a build in place
kern/tru64/tru64_events.cc:
remove FS_MEASURE #defs. add more DPRINTF's. manage an anomaly that happens when tracking idle_thread.
kern/tru64/tru64_events.hh:
remove FS_MEASURE #defs
kern/tru64/tru64_system.cc:
make DumpState print all the time, but only with DPRINTF. add a new parameter to tru64System a vector<string> binned_fns, to read in from .ini file. now all this binning stuff is dynamically generated.
kern/tru64/tru64_system.hh:
remove all static binning stuff, add support for dynamic
sim/system.cc:
change nonPath bin name to Kernel, remove FS_MEASURE
sim/system.hh:
change nonPath to Kernel
--HG--
extra : convert_revision : 9ee813c0a64273bab4125815b7bc8145c5897ec1
2004-03-05 03:57:09 +01:00
|
|
|
"a"),
|
2004-08-20 17:35:31 +02:00
|
|
|
INIT_PARAM_DFLT(readfile, "file to read startup script from", ""),
|
|
|
|
INIT_PARAM_DFLT(init_param, "numerical value to pass into simulator", 0),
|
2004-06-01 21:43:27 +02:00
|
|
|
INIT_PARAM_DFLT(system_type, "Type of system we are emulating", 12),
|
2004-08-20 17:35:31 +02:00
|
|
|
INIT_PARAM_DFLT(system_rev, "Revision of system we are emulating", 2<<1),
|
|
|
|
INIT_PARAM_DFLT(bin, "is this system to be binned", false),
|
|
|
|
INIT_PARAM(binned_fns, "functions to be broken down and binned")
|
2003-10-14 18:19:59 +02:00
|
|
|
|
|
|
|
END_INIT_SIM_OBJECT_PARAMS(Tru64System)
|
|
|
|
|
|
|
|
CREATE_SIM_OBJECT(Tru64System)
|
|
|
|
{
|
2004-08-20 17:35:31 +02:00
|
|
|
System::Params *p = new System::Params;
|
|
|
|
p->name = getInstanceName();
|
Make the notion of a global event tick independent of the actual
CPU cycle ticks. This allows the user to have CPUs of different
frequencies, and also allows frequencies and latencies that are
not evenly divisible by the CPU frequency. For now, the CPU
frequency is still set to the global frequency, but soon, we'll
hopefully make the global frequency fixed at something like 1THz
and set all other frequencies independently.
arch/alpha/ev5.cc:
The cycles counter is based on the current cpu cycle.
cpu/base_cpu.cc:
frequency isn't the cpu parameter anymore, cycleTime is.
cpu/base_cpu.hh:
frequency isn't the cpu parameter anymore, cycleTime is.
create several public functions for getting the cpu frequency
and the numbers of ticks for a given number of cycles, etc.
cpu/memtest/memtest.cc:
cpu/simple_cpu/simple_cpu.cc:
cpu/simple_cpu/simple_cpu.hh:
cpu/trace/trace_cpu.cc:
Now that ticks aren't cpu cycles, fixup code to advance
by the proper number of ticks.
cpu/memtest/memtest.hh:
cpu/trace/trace_cpu.hh:
Provide a function to get the number of ticks for a given
number of cycles.
dev/alpha_console.cc:
Update for changes in the way that frequencies and latencies are
accessed. Move some stuff to init()
dev/alpha_console.hh:
Need a pointer to the system and the cpu to get the frequency
so we can pass the info to the console code.
dev/etherbus.cc:
dev/etherbus.hh:
dev/etherlink.cc:
dev/etherlink.hh:
dev/ethertap.cc:
dev/ide_disk.hh:
dev/ns_gige.cc:
dev/ns_gige.hh:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
dev/ide_disk.cc:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
Add some extra debugging printfs
dev/platform.cc:
dev/sinic.cc:
dev/sinic.hh:
outline the constructor and destructor
dev/platform.hh:
outline the constructor and destructor.
don't keep track of the interrupt frequency. Only provide the
accessor function.
dev/tsunami.cc:
dev/tsunami.hh:
outline the constructor and destructor
Don't set the interrupt frequency here. Get it from the actual device
that does the interrupting.
dev/tsunami_io.cc:
dev/tsunami_io.hh:
Make the interrupt interval a configuration parameter. (And convert
the interval to the new latency/frequency stuff in the python)
kern/linux/linux_system.cc:
update for changes in the way bandwidths are passed from
python to C++ to accomidate the new way that ticks works.
For now, we must get the boot cpu's frequency as a parameter
since allowing the system to have a pointer to the boot cpu would
cause a cycle.
kern/tru64/tru64_system.cc:
For now, we must get the boot cpu's frequency as a parameter
since allowing the system to have a pointer to the boot cpu would
cause a cycle.
python/m5/config.py:
Fix support for cycle_time relative latencies and frequencies.
Add support for getting a NetworkBandwidth or a MemoryBandwidth.
python/m5/objects/BaseCPU.mpy:
All CPUs now have a cycle_time. The default is the global frequency,
but it is now possible to set the global frequency to some large value
(like 1THz) and set each CPU frequency independently.
python/m5/objects/BaseCache.mpy:
python/m5/objects/Ide.mpy:
Make this a Latency parameter
python/m5/objects/BaseSystem.mpy:
We need to pass the boot CPU's frequency to the system
python/m5/objects/Ethernet.mpy:
Update parameter types to use latency and bandwidth types
python/m5/objects/Platform.mpy:
this frequency isn't needed. We get it from the clock interrupt.
python/m5/objects/Tsunami.mpy:
The clock generator should hold the frequency
sim/eventq.hh:
Need to remove this assertion because the writeback event
queue is different from the CPU's event queue which can cause
this assertion to fail.
sim/process.cc:
Fix comment.
sim/system.hh:
Struct member to hold the boot CPU's frequency.
sim/universe.cc:
remove unneeded variable.
--HG--
extra : convert_revision : 51efe4041095234bf458d9b3b0d417f4cae16fdc
2005-04-11 21:32:06 +02:00
|
|
|
p->boot_cpu_frequency = boot_cpu_frequency;
|
2005-01-15 10:12:25 +01:00
|
|
|
p->memctrl = memctrl;
|
2004-08-20 17:35:31 +02:00
|
|
|
p->physmem = physmem;
|
2005-01-15 10:12:25 +01:00
|
|
|
p->kernel_path = kernel;
|
|
|
|
p->console_path = console;
|
|
|
|
p->palcode = pal;
|
2004-08-20 17:35:31 +02:00
|
|
|
p->boot_osflags = boot_osflags;
|
|
|
|
p->init_param = init_param;
|
|
|
|
p->readfile = readfile;
|
|
|
|
p->system_type = system_type;
|
|
|
|
p->system_rev = system_rev;
|
|
|
|
p->bin = bin;
|
|
|
|
p->binned_fns = binned_fns;
|
2004-09-24 20:16:51 +02:00
|
|
|
p->bin_int = false;
|
2004-08-20 17:35:31 +02:00
|
|
|
|
|
|
|
return new Tru64System(p);
|
2003-10-14 18:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_SIM_OBJECT("Tru64System", Tru64System)
|