2004-02-06 00:23:16 +01:00
|
|
|
/*
|
2005-01-30 22:58:39 +01:00
|
|
|
* Copyright (c) 2004-2005 The Regents of The University of Michigan
|
2004-02-06 00:23:16 +01: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-01-22 02:14:10 +01:00
|
|
|
|
2005-06-05 07:22:21 +02:00
|
|
|
/** @file
|
2004-01-26 19:26:34 +01:00
|
|
|
* Tsunami I/O including PIC, PIT, RTC, DMA
|
2004-01-22 02:14:10 +01:00
|
|
|
*/
|
|
|
|
|
2004-01-26 19:26:34 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
2004-01-22 02:14:10 +01:00
|
|
|
#include <deque>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/trace.hh"
|
2004-01-22 06:36:26 +01:00
|
|
|
#include "dev/tsunami_io.hh"
|
2004-01-22 02:14:10 +01:00
|
|
|
#include "dev/tsunami.hh"
|
2004-06-10 19:30:58 +02:00
|
|
|
#include "mem/bus/bus.hh"
|
|
|
|
#include "mem/bus/pio_interface.hh"
|
|
|
|
#include "mem/bus/pio_interface_impl.hh"
|
2004-01-22 02:14:10 +01:00
|
|
|
#include "sim/builder.hh"
|
2004-01-28 03:36:46 +01:00
|
|
|
#include "dev/tsunami_cchip.hh"
|
2004-06-10 19:30:58 +02:00
|
|
|
#include "dev/tsunamireg.h"
|
2005-01-30 22:58:39 +01:00
|
|
|
#include "dev/rtcreg.h"
|
2005-06-05 02:50:10 +02:00
|
|
|
#include "mem/functional/memory_control.hh"
|
2004-01-22 02:14:10 +01:00
|
|
|
|
|
|
|
using namespace std;
|
2004-01-26 19:26:34 +01:00
|
|
|
|
|
|
|
#define UNIX_YEAR_OFFSET 52
|
|
|
|
|
|
|
|
// Timer Event for Periodic interrupt of RTC
|
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
|
|
|
TsunamiIO::RTCEvent::RTCEvent(Tsunami* t, Tick i)
|
|
|
|
: Event(&mainEventQueue), tsunami(t), interval(i)
|
2004-01-23 19:01:32 +01:00
|
|
|
{
|
2004-01-26 19:26:34 +01:00
|
|
|
DPRINTF(MC146818, "RTC Event Initilizing\n");
|
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
|
|
|
schedule(curTick + interval);
|
2004-01-23 19:01:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiIO::RTCEvent::process()
|
|
|
|
{
|
2004-01-29 00:12:52 +01:00
|
|
|
DPRINTF(MC146818, "RTC Timer Interrupt\n");
|
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
|
|
|
schedule(curTick + interval);
|
2004-01-26 19:26:34 +01:00
|
|
|
//Actually interrupt the processor here
|
2004-02-20 22:51:19 +01:00
|
|
|
tsunami->cchip->postRTC();
|
2004-01-23 19:01:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
TsunamiIO::RTCEvent::description()
|
|
|
|
{
|
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
|
|
|
return "tsunami RTC interrupt";
|
2004-01-23 19:01:32 +01:00
|
|
|
}
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-06-17 00:20:10 +02:00
|
|
|
void
|
|
|
|
TsunamiIO::RTCEvent::serialize(std::ostream &os)
|
|
|
|
{
|
|
|
|
Tick time = when();
|
|
|
|
SERIALIZE_SCALAR(time);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiIO::RTCEvent::unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
|
|
|
Tick time;
|
|
|
|
UNSERIALIZE_SCALAR(time);
|
|
|
|
reschedule(time);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-26 19:26:34 +01:00
|
|
|
// Timer Event for PIT Timers
|
2004-01-23 01:02:07 +01:00
|
|
|
TsunamiIO::ClockEvent::ClockEvent()
|
|
|
|
: Event(&mainEventQueue)
|
|
|
|
{
|
2005-03-29 14:55:44 +02:00
|
|
|
/* This is the PIT Tick Rate. A constant for the 8254 timer. The
|
|
|
|
* Tsunami platform has one of these cycle counters on the Cypress
|
|
|
|
* South Bridge and it is used by linux for estimating the cycle
|
|
|
|
* frequency of the machine it is running on. --Ali
|
|
|
|
*/
|
|
|
|
interval = (Tick)(Clock::Float::s / 1193180.0);
|
|
|
|
|
2004-01-23 01:02:07 +01:00
|
|
|
DPRINTF(Tsunami, "Clock Event Initilizing\n");
|
|
|
|
mode = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiIO::ClockEvent::process()
|
|
|
|
{
|
|
|
|
DPRINTF(Tsunami, "Timer Interrupt\n");
|
|
|
|
if (mode == 0)
|
2004-02-06 00:23:16 +01:00
|
|
|
status = 0x20; // set bit that linux is looking for
|
2004-01-23 01:02:07 +01:00
|
|
|
else
|
|
|
|
schedule(curTick + interval);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiIO::ClockEvent::Program(int count)
|
|
|
|
{
|
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
|
|
|
DPRINTF(Tsunami, "Timer set to curTick + %d\n", count * interval);
|
2005-03-29 14:55:44 +02:00
|
|
|
schedule(curTick + count * interval);
|
2004-01-23 01:02:07 +01:00
|
|
|
status = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
TsunamiIO::ClockEvent::description()
|
|
|
|
{
|
|
|
|
return "tsunami 8254 Interval timer";
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiIO::ClockEvent::ChangeMode(uint8_t md)
|
|
|
|
{
|
|
|
|
mode = md;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t
|
|
|
|
TsunamiIO::ClockEvent::Status()
|
|
|
|
{
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2004-06-17 00:20:10 +02:00
|
|
|
void
|
|
|
|
TsunamiIO::ClockEvent::serialize(std::ostream &os)
|
|
|
|
{
|
2004-06-17 01:47:07 +02:00
|
|
|
Tick time = scheduled() ? when() : 0;
|
2004-06-17 00:20:10 +02:00
|
|
|
SERIALIZE_SCALAR(time);
|
|
|
|
SERIALIZE_SCALAR(status);
|
|
|
|
SERIALIZE_SCALAR(mode);
|
|
|
|
SERIALIZE_SCALAR(interval);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiIO::ClockEvent::unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
|
|
|
Tick time;
|
|
|
|
UNSERIALIZE_SCALAR(time);
|
|
|
|
UNSERIALIZE_SCALAR(status);
|
|
|
|
UNSERIALIZE_SCALAR(mode);
|
|
|
|
UNSERIALIZE_SCALAR(interval);
|
2004-06-17 01:47:07 +02:00
|
|
|
if (time)
|
|
|
|
schedule(time);
|
2004-06-17 00:20:10 +02:00
|
|
|
}
|
|
|
|
|
2004-01-28 03:36:46 +01:00
|
|
|
TsunamiIO::TsunamiIO(const string &name, Tsunami *t, time_t init_time,
|
2004-07-13 04:58:22 +02:00
|
|
|
Addr a, MemoryController *mmu, HierParams *hier, Bus *bus,
|
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
|
|
|
Tick pio_latency, Tick ci)
|
|
|
|
: PioDevice(name, t), addr(a), clockInterval(ci), tsunami(t), rtc(t, ci)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2004-10-22 07:34:40 +02:00
|
|
|
mmu->add_child(this, RangeSize(addr, size));
|
2004-02-10 06:19:43 +01:00
|
|
|
|
2004-06-10 19:30:58 +02:00
|
|
|
if (bus) {
|
|
|
|
pioInterface = newPioInterface(name, hier, bus, this,
|
|
|
|
&TsunamiIO::cacheAccess);
|
2004-10-22 07:34:40 +02:00
|
|
|
pioInterface->addAddrRange(RangeSize(addr, size));
|
2005-06-02 03:44:00 +02:00
|
|
|
pioLatency = pio_latency * bus->clockRate;
|
2004-06-10 19:30:58 +02:00
|
|
|
}
|
|
|
|
|
2004-02-06 00:23:16 +01:00
|
|
|
// set the back pointer from tsunami to myself
|
|
|
|
tsunami->io = this;
|
|
|
|
|
2004-01-23 01:02:07 +01:00
|
|
|
timerData = 0;
|
2004-01-26 19:26:34 +01:00
|
|
|
set_time(init_time == 0 ? time(NULL) : init_time);
|
|
|
|
uip = 1;
|
2004-01-29 01:18:29 +01:00
|
|
|
picr = 0;
|
|
|
|
picInterrupting = false;
|
2004-01-26 19:26:34 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
Tick
|
|
|
|
TsunamiIO::frequency() const
|
|
|
|
{
|
|
|
|
return Clock::Frequency / clockInterval;
|
|
|
|
}
|
|
|
|
|
2004-01-26 19:26:34 +01:00
|
|
|
void
|
|
|
|
TsunamiIO::set_time(time_t t)
|
|
|
|
{
|
|
|
|
gmtime_r(&t, &tm);
|
|
|
|
DPRINTFN("Real-time clock set to %s", asctime(&tm));
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Fault
|
2004-02-03 22:59:40 +01:00
|
|
|
TsunamiIO::read(MemReqPtr &req, uint8_t *data)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2004-01-22 06:36:26 +01:00
|
|
|
DPRINTF(Tsunami, "io read va=%#x size=%d IOPorrt=%#x\n",
|
2004-01-22 02:14:10 +01:00
|
|
|
req->vaddr, req->size, req->vaddr & 0xfff);
|
|
|
|
|
2004-11-13 20:01:38 +01:00
|
|
|
Addr daddr = (req->paddr - (addr & EV5::PAddrImplMask));
|
2004-05-14 23:34:15 +02:00
|
|
|
|
2004-01-23 01:02:07 +01:00
|
|
|
|
|
|
|
switch(req->size) {
|
2004-02-06 00:23:16 +01:00
|
|
|
case sizeof(uint8_t):
|
|
|
|
switch(daddr) {
|
2004-05-14 23:34:15 +02:00
|
|
|
case TSDEV_PIC1_ISR:
|
|
|
|
// !!! If this is modified 64bit case needs to be too
|
|
|
|
// Pal code has to do a 64 bit physical read because there is
|
|
|
|
// no load physical byte instruction
|
|
|
|
*(uint8_t*)data = picr;
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_PIC2_ISR:
|
|
|
|
// PIC2 not implemnted... just return 0
|
|
|
|
*(uint8_t*)data = 0x00;
|
|
|
|
return No_Fault;
|
2004-02-06 00:23:16 +01:00
|
|
|
case TSDEV_TMR_CTL:
|
|
|
|
*(uint8_t*)data = timer2.Status();
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_RTC_DATA:
|
|
|
|
switch(RTCAddress) {
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_CNTRL_REGA:
|
2004-02-06 00:23:16 +01:00
|
|
|
*(uint8_t*)data = uip << 7 | 0x26;
|
|
|
|
uip = !uip;
|
|
|
|
return No_Fault;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_CNTRL_REGB:
|
2004-02-06 00:23:16 +01:00
|
|
|
// DM and 24/12 and UIE
|
|
|
|
*(uint8_t*)data = 0x46;
|
|
|
|
return No_Fault;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_CNTRL_REGC:
|
2004-02-06 00:23:16 +01:00
|
|
|
// If we want to support RTC user access in linux
|
|
|
|
// This won't work, but for now it's fine
|
|
|
|
*(uint8_t*)data = 0x00;
|
|
|
|
return No_Fault;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_CNTRL_REGD:
|
2004-02-06 00:23:16 +01:00
|
|
|
panic("RTC Control Register D not implemented");
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_SEC:
|
2004-02-06 00:23:16 +01:00
|
|
|
*(uint8_t *)data = tm.tm_sec;
|
|
|
|
return No_Fault;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_MIN:
|
2004-02-06 00:23:16 +01:00
|
|
|
*(uint8_t *)data = tm.tm_min;
|
|
|
|
return No_Fault;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_HR:
|
2004-02-06 00:23:16 +01:00
|
|
|
*(uint8_t *)data = tm.tm_hour;
|
|
|
|
return No_Fault;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_DOW:
|
2004-02-06 00:23:16 +01:00
|
|
|
*(uint8_t *)data = tm.tm_wday;
|
|
|
|
return No_Fault;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_DOM:
|
2004-02-06 00:23:16 +01:00
|
|
|
*(uint8_t *)data = tm.tm_mday;
|
2005-01-30 22:58:39 +01:00
|
|
|
case RTC_MON:
|
2004-02-06 00:23:16 +01:00
|
|
|
*(uint8_t *)data = tm.tm_mon + 1;
|
|
|
|
return No_Fault;
|
|
|
|
case RTC_YEAR:
|
|
|
|
*(uint8_t *)data = tm.tm_year - UNIX_YEAR_OFFSET;
|
|
|
|
return No_Fault;
|
|
|
|
default:
|
|
|
|
panic("Unknown RTC Address\n");
|
2004-01-23 01:02:07 +01:00
|
|
|
}
|
2004-02-06 00:23:16 +01:00
|
|
|
|
|
|
|
default:
|
|
|
|
panic("I/O Read - va%#x size %d\n", req->vaddr, req->size);
|
|
|
|
}
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
case sizeof(uint32_t):
|
2004-05-14 23:34:15 +02:00
|
|
|
panic("I/O Read - invalid size - va %#x size %d\n",
|
|
|
|
req->vaddr, req->size);
|
|
|
|
|
2004-02-06 00:23:16 +01:00
|
|
|
case sizeof(uint64_t):
|
2004-05-14 23:34:15 +02:00
|
|
|
switch(daddr) {
|
|
|
|
case TSDEV_PIC1_ISR:
|
|
|
|
// !!! If this is modified 8bit case needs to be too
|
|
|
|
// Pal code has to do a 64 bit physical read because there is
|
|
|
|
// no load physical byte instruction
|
|
|
|
*(uint64_t*)data = (uint64_t)picr;
|
|
|
|
return No_Fault;
|
|
|
|
default:
|
|
|
|
panic("I/O Read - invalid size - va %#x size %d\n",
|
|
|
|
req->vaddr, req->size);
|
|
|
|
}
|
|
|
|
|
2004-02-06 00:23:16 +01:00
|
|
|
default:
|
|
|
|
panic("I/O Read - invalid size - va %#x size %d\n",
|
|
|
|
req->vaddr, req->size);
|
2004-01-23 01:02:07 +01:00
|
|
|
}
|
2004-02-06 00:23:16 +01:00
|
|
|
panic("I/O Read - va%#x size %d\n", req->vaddr, req->size);
|
2004-01-22 02:14:10 +01:00
|
|
|
|
|
|
|
return No_Fault;
|
|
|
|
}
|
|
|
|
|
|
|
|
Fault
|
2004-02-03 22:59:40 +01:00
|
|
|
TsunamiIO::write(MemReqPtr &req, const uint8_t *data)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2004-06-17 00:20:10 +02:00
|
|
|
|
|
|
|
#if TRACING_ON
|
2004-01-30 21:24:50 +01:00
|
|
|
uint8_t dt = *(uint8_t*)data;
|
|
|
|
uint64_t dt64 = dt;
|
2004-06-17 00:20:10 +02:00
|
|
|
#endif
|
2004-01-30 21:24:50 +01:00
|
|
|
|
|
|
|
DPRINTF(Tsunami, "io write - va=%#x size=%d IOPort=%#x Data=%#x\n",
|
|
|
|
req->vaddr, req->size, req->vaddr & 0xfff, dt64);
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-11-13 20:01:38 +01:00
|
|
|
Addr daddr = (req->paddr - (addr & EV5::PAddrImplMask));
|
2004-01-22 06:08:48 +01:00
|
|
|
|
|
|
|
switch(req->size) {
|
2004-02-06 00:23:16 +01:00
|
|
|
case sizeof(uint8_t):
|
|
|
|
switch(daddr) {
|
|
|
|
case TSDEV_PIC1_MASK:
|
2004-05-14 23:34:15 +02:00
|
|
|
mask1 = ~(*(uint8_t*)data);
|
2004-02-06 00:23:16 +01:00
|
|
|
if ((picr & mask1) && !picInterrupting) {
|
|
|
|
picInterrupting = true;
|
2004-02-16 05:56:44 +01:00
|
|
|
tsunami->cchip->postDRIR(55);
|
2004-02-06 00:23:16 +01:00
|
|
|
DPRINTF(Tsunami, "posting pic interrupt to cchip\n");
|
|
|
|
}
|
2004-05-14 23:34:15 +02:00
|
|
|
if ((!(picr & mask1)) && picInterrupting) {
|
|
|
|
picInterrupting = false;
|
|
|
|
tsunami->cchip->clearDRIR(55);
|
|
|
|
DPRINTF(Tsunami, "clearing pic interrupt\n");
|
|
|
|
}
|
2004-02-06 00:23:16 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_PIC2_MASK:
|
|
|
|
mask2 = *(uint8_t*)data;
|
|
|
|
//PIC2 Not implemented to interrupt
|
|
|
|
return No_Fault;
|
2004-05-14 23:34:15 +02:00
|
|
|
case TSDEV_PIC1_ACK:
|
|
|
|
// clear the interrupt on the PIC
|
|
|
|
picr &= ~(1 << (*(uint8_t*)data & 0xF));
|
|
|
|
if (!(picr & mask1))
|
|
|
|
tsunami->cchip->clearDRIR(55);
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_PIC2_ACK:
|
|
|
|
return No_Fault;
|
2004-02-06 00:23:16 +01:00
|
|
|
case TSDEV_DMA1_RESET:
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_DMA2_RESET:
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_DMA1_MODE:
|
|
|
|
mode1 = *(uint8_t*)data;
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_DMA2_MODE:
|
|
|
|
mode2 = *(uint8_t*)data;
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_DMA1_MASK:
|
|
|
|
case TSDEV_DMA2_MASK:
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_TMR_CTL:
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_TMR2_CTL:
|
|
|
|
if ((*(uint8_t*)data & 0x30) != 0x30)
|
|
|
|
panic("Only L/M write supported\n");
|
|
|
|
|
|
|
|
switch(*(uint8_t*)data >> 6) {
|
|
|
|
case 0:
|
|
|
|
timer0.ChangeMode((*(uint8_t*)data & 0xF) >> 1);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
timer2.ChangeMode((*(uint8_t*)data & 0xF) >> 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("Read Back Command not implemented\n");
|
|
|
|
}
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_TMR2_DATA:
|
|
|
|
/* two writes before we actually start the Timer
|
|
|
|
so I set a flag in the timerData */
|
|
|
|
if(timerData & 0x1000) {
|
|
|
|
timerData &= 0x1000;
|
|
|
|
timerData += *(uint8_t*)data << 8;
|
|
|
|
timer2.Program(timerData);
|
|
|
|
} else {
|
|
|
|
timerData = *(uint8_t*)data;
|
|
|
|
timerData |= 0x1000;
|
|
|
|
}
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_TMR0_DATA:
|
|
|
|
/* two writes before we actually start the Timer
|
|
|
|
so I set a flag in the timerData */
|
|
|
|
if(timerData & 0x1000) {
|
|
|
|
timerData &= 0x1000;
|
|
|
|
timerData += *(uint8_t*)data << 8;
|
|
|
|
timer0.Program(timerData);
|
|
|
|
} else {
|
|
|
|
timerData = *(uint8_t*)data;
|
|
|
|
timerData |= 0x1000;
|
2004-01-22 06:08:48 +01:00
|
|
|
}
|
2004-02-06 00:23:16 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_RTC_ADDR:
|
|
|
|
RTCAddress = *(uint8_t*)data;
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_RTC_DATA:
|
|
|
|
panic("RTC Write not implmented (rtc.o won't work)\n");
|
|
|
|
default:
|
|
|
|
panic("I/O Write - va%#x size %d\n", req->vaddr, req->size);
|
|
|
|
}
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
case sizeof(uint64_t):
|
|
|
|
default:
|
|
|
|
panic("I/O Write - invalid size - va %#x size %d\n",
|
|
|
|
req->vaddr, req->size);
|
2004-01-22 06:08:48 +01:00
|
|
|
}
|
|
|
|
|
2004-01-22 02:14:10 +01:00
|
|
|
|
|
|
|
return No_Fault;
|
|
|
|
}
|
|
|
|
|
2004-01-29 01:18:29 +01:00
|
|
|
void
|
|
|
|
TsunamiIO::postPIC(uint8_t bitvector)
|
|
|
|
{
|
|
|
|
//PIC2 Is not implemented, because nothing of interest there
|
|
|
|
picr |= bitvector;
|
2004-05-14 23:34:15 +02:00
|
|
|
if (picr & mask1) {
|
2004-02-16 05:56:44 +01:00
|
|
|
tsunami->cchip->postDRIR(55);
|
2004-01-29 01:18:29 +01:00
|
|
|
DPRINTF(Tsunami, "posting pic interrupt to cchip\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiIO::clearPIC(uint8_t bitvector)
|
|
|
|
{
|
|
|
|
//PIC2 Is not implemented, because nothing of interest there
|
|
|
|
picr &= ~bitvector;
|
|
|
|
if (!(picr & mask1)) {
|
2004-02-16 05:56:44 +01:00
|
|
|
tsunami->cchip->clearDRIR(55);
|
2004-01-29 01:18:29 +01:00
|
|
|
DPRINTF(Tsunami, "clearing pic interrupt to cchip\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-10 19:30:58 +02:00
|
|
|
Tick
|
|
|
|
TsunamiIO::cacheAccess(MemReqPtr &req)
|
|
|
|
{
|
2004-07-13 04:58:22 +02:00
|
|
|
return curTick + pioLatency;
|
2004-06-10 19:30:58 +02:00
|
|
|
}
|
|
|
|
|
2004-01-22 02:14:10 +01:00
|
|
|
void
|
2004-01-22 06:36:26 +01:00
|
|
|
TsunamiIO::serialize(std::ostream &os)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2004-02-11 21:32:30 +01:00
|
|
|
SERIALIZE_SCALAR(timerData);
|
|
|
|
SERIALIZE_SCALAR(uip);
|
2004-06-04 20:26:17 +02:00
|
|
|
SERIALIZE_SCALAR(mask1);
|
|
|
|
SERIALIZE_SCALAR(mask2);
|
|
|
|
SERIALIZE_SCALAR(mode1);
|
|
|
|
SERIALIZE_SCALAR(mode2);
|
2004-02-11 21:32:30 +01:00
|
|
|
SERIALIZE_SCALAR(picr);
|
|
|
|
SERIALIZE_SCALAR(picInterrupting);
|
2004-06-04 20:26:17 +02:00
|
|
|
SERIALIZE_SCALAR(RTCAddress);
|
2004-02-11 21:32:30 +01:00
|
|
|
|
2004-06-17 01:47:07 +02:00
|
|
|
// Serialize the timers
|
|
|
|
nameOut(os, csprintf("%s.timer0", name()));
|
|
|
|
timer0.serialize(os);
|
|
|
|
nameOut(os, csprintf("%s.timer2", name()));
|
|
|
|
timer2.serialize(os);
|
|
|
|
nameOut(os, csprintf("%s.rtc", name()));
|
|
|
|
rtc.serialize(os);
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-01-22 06:36:26 +01:00
|
|
|
TsunamiIO::unserialize(Checkpoint *cp, const std::string §ion)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2004-02-11 21:32:30 +01:00
|
|
|
UNSERIALIZE_SCALAR(timerData);
|
|
|
|
UNSERIALIZE_SCALAR(uip);
|
2004-06-04 20:26:17 +02:00
|
|
|
UNSERIALIZE_SCALAR(mask1);
|
|
|
|
UNSERIALIZE_SCALAR(mask2);
|
|
|
|
UNSERIALIZE_SCALAR(mode1);
|
|
|
|
UNSERIALIZE_SCALAR(mode2);
|
2004-02-11 21:32:30 +01:00
|
|
|
UNSERIALIZE_SCALAR(picr);
|
|
|
|
UNSERIALIZE_SCALAR(picInterrupting);
|
2004-06-04 20:26:17 +02:00
|
|
|
UNSERIALIZE_SCALAR(RTCAddress);
|
2004-06-17 01:47:07 +02:00
|
|
|
|
|
|
|
// Unserialize the timers
|
|
|
|
timer0.unserialize(cp, csprintf("%s.timer0", section));
|
|
|
|
timer2.unserialize(cp, csprintf("%s.timer2", section));
|
|
|
|
rtc.unserialize(cp, csprintf("%s.rtc", section));
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
2004-01-22 06:36:26 +01:00
|
|
|
BEGIN_DECLARE_SIM_OBJECT_PARAMS(TsunamiIO)
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-01-28 03:36:46 +01:00
|
|
|
SimObjectParam<Tsunami *> tsunami;
|
2004-01-26 19:26:34 +01:00
|
|
|
Param<time_t> time;
|
2004-01-22 02:14:10 +01:00
|
|
|
SimObjectParam<MemoryController *> mmu;
|
|
|
|
Param<Addr> addr;
|
2004-06-10 19:30:58 +02:00
|
|
|
SimObjectParam<Bus*> io_bus;
|
2004-07-13 04:58:22 +02:00
|
|
|
Param<Tick> pio_latency;
|
2004-06-10 19:30:58 +02:00
|
|
|
SimObjectParam<HierParams *> hier;
|
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> frequency;
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-01-22 06:36:26 +01:00
|
|
|
END_DECLARE_SIM_OBJECT_PARAMS(TsunamiIO)
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-01-22 06:36:26 +01:00
|
|
|
BEGIN_INIT_SIM_OBJECT_PARAMS(TsunamiIO)
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-01-28 03:36:46 +01:00
|
|
|
INIT_PARAM(tsunami, "Tsunami"),
|
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(time, "System time to use (0 for actual time"),
|
2004-01-22 02:14:10 +01:00
|
|
|
INIT_PARAM(mmu, "Memory Controller"),
|
2004-06-10 19:30:58 +02:00
|
|
|
INIT_PARAM(addr, "Device Address"),
|
|
|
|
INIT_PARAM_DFLT(io_bus, "The IO Bus to attach to", NULL),
|
2004-07-13 04:58:22 +02:00
|
|
|
INIT_PARAM_DFLT(pio_latency, "Programmed IO latency in bus cycles", 1),
|
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_DFLT(hier, "Hierarchy global variables", &defaultHierParams),
|
|
|
|
INIT_PARAM(frequency, "clock interrupt frequency")
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-01-22 06:36:26 +01:00
|
|
|
END_INIT_SIM_OBJECT_PARAMS(TsunamiIO)
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-01-22 06:36:26 +01:00
|
|
|
CREATE_SIM_OBJECT(TsunamiIO)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2004-06-10 19:30:58 +02:00
|
|
|
return new TsunamiIO(getInstanceName(), tsunami, time, addr, mmu, hier,
|
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
|
|
|
io_bus, pio_latency, frequency);
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
2004-01-22 06:36:26 +01:00
|
|
|
REGISTER_SIM_OBJECT("TsunamiIO", TsunamiIO)
|