system.hh revision 1492
1/*
2 * Copyright (c) 2004 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
29#ifndef __KERN_LINUX_LINUX_SYSTEM_HH__
30#define __KERN_LINUX_LINUX_SYSTEM_HH__
31
32#include "sim/host.hh"
33#include "sim/system.hh"
34#include "targetarch/isa_traits.hh"
35
36/**
37 * MAGIC address where the kernel arguments should go. Defined as
38 * PARAM in linux kernel alpha-asm.
39 */
40const Addr PARAM_ADDR = ULL(0xfffffc000030a000);
41
42class ExecContext;
43
44class BreakPCEvent;
45class DebugPrintkEvent;
46class BreakPCEvent;
47class LinuxSkipDelayLoopEvent;
48class SkipFuncEvent;
49class IdleStartEvent;
50class PrintThreadInfo;
51
52/**
53 * This class contains linux specific system code (Loading, Events, Binning).
54 * It points to objects that are the system binaries to load and patches them
55 * appropriately to work in simulator.
56 */
57class LinuxSystem : public System
58{
59  private:
60#ifndef NDEBUG
61    /** Event to halt the simulator if the kernel calls panic()  */
62    BreakPCEvent *kernelPanicEvent;
63
64    /** Event to halt the simulator if the kernel calls die_if_kernel  */
65    BreakPCEvent *kernelDieEvent;
66#endif
67
68    /**
69     * Event to skip determine_cpu_caches() because we don't support
70     * the IPRs that the code can access to figure out cache sizes
71     */
72    SkipFuncEvent *skipCacheProbeEvent;
73
74    /** PC based event to skip the ide_delay_50ms() call */
75    SkipFuncEvent *skipIdeDelay50msEvent;
76
77    /**
78     * PC based event to skip the dprink() call and emulate its
79     * functionality
80     */
81    DebugPrintkEvent *debugPrintkEvent;
82
83    /**
84     * Skip calculate_delay_loop() rather than waiting for this to be
85     * calculated
86     */
87    LinuxSkipDelayLoopEvent *skipDelayLoopEvent;
88
89    /**
90     * Event to print information about thread switches if the trace flag
91     * Thread is set
92     */
93    PrintThreadInfo *printThreadEvent;
94
95    /**
96     * Event to bin Interrupts seperately from kernel code
97     */
98    InterruptStartEvent *intStartEvent;
99
100    /**
101     * Event to bin Interrupts seperately from kernel code
102     */
103    InterruptEndEvent *intEndEvent;
104    InterruptEndEvent *intEndEvent2;
105    InterruptEndEvent *intEndEvent3;
106
107    /** Grab the PCBB of the idle process when it starts */
108    IdleStartEvent *idleStartEvent;
109
110  public:
111    LinuxSystem(Params *p);
112    ~LinuxSystem();
113
114    void setDelayLoop(ExecContext *xc);
115};
116
117#endif // __KERN_LINUX_LINUX_SYSTEM_HH__
118