gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
system.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Authors: Ali Saidi
29  * Lisa Hsu
30  * Nathan Binkert
31  * Steve Reinhardt
32  */
33 
44 
45 #include "arch/alpha/idle_event.hh"
46 #include "arch/alpha/system.hh"
48 #include "arch/vtophys.hh"
49 #include "base/loader/symtab.hh"
50 #include "cpu/base.hh"
51 #include "cpu/thread_context.hh"
52 #include "debug/Thread.hh"
53 #include "kern/linux/events.hh"
54 #include "kern/linux/printk.hh"
55 #include "mem/physical.hh"
56 #include "mem/port.hh"
57 #include "sim/arguments.hh"
58 #include "sim/byteswap.hh"
59 
60 using namespace std;
61 using namespace AlphaISA;
62 using namespace Linux;
63 
65  : AlphaSystem(p)
66 {
67 }
68 
69 void
71 {
72  // Moved from the constructor to here since it relies on the
73  // address map being resolved in the interconnect
74 
75  // Call the initialisation of the super class
77 
78  Addr addr = 0;
79 
84  if (!kernelSymtab->findAddress("swapper_pg_dir", KernelStart)) {
85  panic("Could not determine start location of kernel");
86  }
87 
93  (uint8_t*)params()->boot_osflags.c_str(),
94  params()->boot_osflags.length()+1);
95 
101  if (kernelSymtab->findAddress("est_cycle_freq", addr))
102  virtProxy.write(addr, (uint64_t)(SimClock::Frequency /
103  params()->boot_cpu_frequency));
104 
105 
112  if (kernelSymtab->findAddress("dp264_mv", addr))
113  virtProxy.write(addr + 0x18, LittleEndianGuest::htog((uint32_t)127));
114  else
115  panic("could not find dp264_mv\n");
116 
117 }
118 
119 void
121 {
123 #ifndef NDEBUG
124  kernelPanicEvent = addKernelFuncEventOrPanic<BreakPCEvent>("panic");
125 
126 #if 0
127  kernelDieEvent = addKernelFuncEventOrPanic<BreakPCEvent>("die_if_kernel");
128 #endif
129 
130 #endif
131 
141  addKernelFuncEvent<SkipFuncEvent>("ide_delay_50ms");
143  addKernelFuncEvent<SkipDelayLoopEvent>("calibrate_delay");
145  addKernelFuncEvent<SkipFuncEvent>("determine_cpu_caches");
146  debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
147  idleStartEvent = addKernelFuncEvent<IdleStartEvent>("cpu_idle");
148 
149  // Disable for now as it runs into panic() calls in VPTr methods
150  // (see sim/vptr.hh). Once those bugs are fixed, we can
151  // re-enable, but we should find a better way to turn it on than
152  // using DTRACE(Thread), since looking at a trace flag at tick 0
153  // leads to non-intuitive behavior with --trace-start.
154  Addr addr = 0;
155  if (false && kernelSymtab->findAddress("alpha_switch_to", addr)) {
156  printThreadEvent = new PrintThreadInfo(&pcEventQueue, "threadinfo",
157  addr + sizeof(MachInst) * 6);
158  } else {
159  printThreadEvent = NULL;
160  }
161 }
162 
164 {
165 #ifndef NDEBUG
166  delete kernelPanicEvent;
167 #endif
168  delete skipIdeDelay50msEvent;
169  delete skipDelayLoopEvent;
170  delete skipCacheProbeEvent;
171  delete debugPrintkEvent;
172  delete idleStartEvent;
173  delete printThreadEvent;
174 }
175 
176 void
178 {
179  Addr addr = 0;
180  if (kernelSymtab->findAddress("loops_per_jiffy", addr)) {
181  Tick cpuFreq = tc->getCpuPtr()->frequency();
182  assert(intrFreq);
184  vp.writeHtoG(addr, (uint32_t)((cpuFreq / intrFreq) * 0.9988));
185  }
186 }
187 
188 void
190 {
192  // calculate and set loops_per_jiffy
194 }
195 
196 void
198 {
199  Linux::ThreadInfo ti(tc);
200 
201  DPRINTF(Thread, "Currently Executing Thread %s, pid %d, started at: %d\n",
202  ti.curTaskName(), ti.curTaskPID(), ti.curTaskStart());
203 }
204 
206 LinuxAlphaSystemParams::create()
207 {
208  return new LinuxAlphaSystem(this);
209 }
#define DPRINTF(x,...)
Definition: trace.hh:212
A TranslatingPortProxy in FS mode translates a virtual address to a physical address and then calls t...
virtual void setupFuncEvents()
Setup all the function events.
Definition: system.cc:149
virtual System * getSystemPtr()=0
BreakPCEvent * kernelPanicEvent
Event to halt the simulator if the kernel calls panic()
Definition: system.hh:90
#define panic(...)
Definition: misc.hh:153
LinuxAlphaSystemParams Params
Definition: system.hh:136
int64_t curTaskStart(Addr thread_info=0)
Definition: threadinfo.hh:138
void write(Addr address, T data) const
Write object T to address.
Definition: port_proxy.hh:155
ip6_addr_t addr
Definition: inet.hh:335
virtual void process(ThreadContext *tc)
Definition: system.cc:189
virtual void setupFuncEvents()
Setup all the function events.
Definition: system.cc:120
Port Object Declaration.
virtual BaseCPU * getCpuPtr()=0
bool findAddress(const std::string &symbol, Addr &address) const
Definition: symtab.hh:97
Bitfield< 30 > ti
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
Definition: core.cc:47
ThreadContext is the external interface to all thread state for anything outside of the CPU...
SkipDelayLoopEvent * skipDelayLoopEvent
Skip calculate_delay_loop() rather than waiting for this to be calculated.
Definition: system.hh:118
uint32_t MachInst
Definition: types.hh:40
virtual void writeBlob(Addr addr, const uint8_t *p, int size) const
Version of writeBlob that translates virt->phys and deals with page boundries.
This class encapsulates the types, structures, constants, functions, and syscall-number mappings spec...
Definition: linux.hh:48
uint64_t Tick
Tick count type.
Definition: types.hh:63
PrintThreadInfo * printThreadEvent
Event to print information about thread switches if the trace flag Thread is set. ...
Definition: system.hh:124
SkipFuncEvent * skipIdeDelay50msEvent
PC based event to skip the ide_delay_50ms() call.
Definition: system.hh:106
IdleStartEvent * idleStartEvent
Grab the PCBB of the idle process when it starts.
Definition: system.hh:127
void initState() override
Initialise the state of the system.
Definition: system.cc:101
Addr CommandLine() const
Definition: system.hh:82
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
SymbolTable * kernelSymtab
kernel symbol table
Definition: system.hh:227
Tick intrFreq
Definition: system.hh:93
virtual void initState()
Initialise the system.
Definition: system.cc:70
virtual FSTranslatingPortProxy & getVirtProxy()=0
const Params * params() const
Definition: system.hh:147
FSTranslatingPortProxy virtProxy
Proxy used to copy arguments directly into kernel memory.
Definition: system.hh:98
int32_t curTaskPID(Addr thread_info=0)
Definition: threadinfo.hh:112
virtual void process(ThreadContext *tc)
void setDelayLoop(ThreadContext *tc)
Definition: system.cc:177
LinuxAlphaSystem(Params *p)
Definition: system.cc:64
This class contains linux specific system code (Loading, Events).
Definition: system.hh:51
std::string curTaskName(Addr thread_info=0)
Definition: threadinfo.hh:153
Addr KernelStart
Addresses defining where the kernel bootloader places various elements.
Definition: system.hh:72
Bitfield< 0 > p
SkipFuncEvent * skipCacheProbeEvent
Event to skip determine_cpu_caches() because we don't support the IPRs that the code can access to fi...
Definition: system.hh:103
Linux::DebugPrintkEvent * debugPrintkEvent
PC based event to skip the dprink() call and emulate its functionality.
Definition: system.hh:112
T htog(T value)
Definition: byteswap.hh:194
virtual void process(ThreadContext *tc)
Definition: system.cc:197

Generated on Fri Jun 9 2017 13:03:34 for gem5 by doxygen 1.8.6