gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
malta.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 
33 #include "dev/mips/malta.hh"
34 
35 #include <deque>
36 #include <string>
37 #include <vector>
38 
39 #include "cpu/intr_control.hh"
40 #include "debug/Malta.hh"
41 #include "dev/mips/malta_cchip.hh"
42 #include "dev/mips/malta_io.hh"
43 #include "params/Malta.hh"
44 #include "sim/system.hh"
45 
47  : Platform(p), system(p.system)
48 {
49  for (int i = 0; i < Malta::Max_CPUs; i++)
50  intr_sum_type[i] = 0;
51 }
52 
53 void
55 {
56  //see {Linux-src}/arch/mips/mips-boards/sim/sim_setup.c
57  io->postIntr(0x10/*HW4*/);
58 }
59 
60 void
62 {
63  //FIXME: implement clearConsoleInt()
64  io->clearIntr(0x10/*HW4*/);
65 }
66 
67 void
69 {
70  panic("Malta::postPciInt() has not been implemented.");
71 }
72 
73 void
75 {
76  panic("Malta::clearPciInt() has not been implemented.");
77 }
78 
79 Addr
80 Malta::pciToDma(Addr pciAddr) const
81 {
82  panic("Malta::pciToDma() has not been implemented.");
83 }
84 
85 void
87 {
89 }
90 
91 void
93 {
95 }
Malta::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: malta.cc:86
MaltaIO::clearIntr
void clearIntr(uint8_t interrupt)
Clear an Interrupt to the CPU.
Definition: malta_io.cc:100
malta.hh
system.hh
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
malta_io.hh
Malta::intr_sum_type
int intr_sum_type[Malta::Max_CPUs]
Definition: malta.hh:71
Malta::pciToDma
virtual Addr pciToDma(Addr pciAddr) const
Definition: malta.cc:80
Malta::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: malta.cc:92
malta_cchip.hh
Malta::clearPciInt
void clearPciInt(int line) override
Clear a posted PCI->CPU interrupt.
Definition: malta.cc:74
Malta::Max_CPUs
static const int Max_CPUs
Max number of CPUs in a Malta.
Definition: malta.hh:57
X86ISA::system
Bitfield< 15 > system
Definition: misc.hh:997
cp
Definition: cprintf.cc:37
Malta::Malta
Malta(const Params &p)
Definition: malta.cc:46
SERIALIZE_ARRAY
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:626
Platform
Definition: platform.hh:49
Malta::postConsoleInt
void postConsoleInt() override
Cause the cpu to post a serial interrupt to the CPU.
Definition: malta.cc:54
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
MaltaIO::postIntr
void postIntr(uint8_t interrupt)
Post an Interrupt to the CPU.
Definition: malta_io.cc:93
UNSERIALIZE_ARRAY
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:634
intr_control.hh
Malta::postPciInt
void postPciInt(int line) override
Cause the chipset to post a cpi interrupt to the CPU.
Definition: malta.cc:68
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Malta::io
MaltaIO * io
Pointer to the MaltaIO device which has the RTC.
Definition: malta.hh:63
Malta::clearConsoleInt
void clearConsoleInt() override
Clear a posted CPU interrupt (id=55)
Definition: malta.cc:61
CheckpointIn
Definition: serialize.hh:68
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
Malta::Params
MaltaParams Params
Constructor for the Malta Class.
Definition: malta.hh:81

Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17