gem5  v20.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 
46 using namespace std;
47 
49  : Platform(p), system(p->system)
50 {
51  for (int i = 0; i < Malta::Max_CPUs; i++)
52  intr_sum_type[i] = 0;
53 }
54 
55 void
57 {
58  //see {Linux-src}/arch/mips/mips-boards/sim/sim_setup.c
59  io->postIntr(0x10/*HW4*/);
60 }
61 
62 void
64 {
65  //FIXME: implement clearConsoleInt()
66  io->clearIntr(0x10/*HW4*/);
67 }
68 
69 void
71 {
72  panic("Malta::postPciInt() has not been implemented.");
73 }
74 
75 void
77 {
78  panic("Malta::clearPciInt() has not been implemented.");
79 }
80 
81 Addr
82 Malta::pciToDma(Addr pciAddr) const
83 {
84  panic("Malta::pciToDma() has not been implemented.");
85 }
86 
87 void
89 {
91 }
92 
93 void
95 {
97 }
98 
99 Malta *
100 MaltaParams::create()
101 {
102  return new Malta(this);
103 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
Emulation of the Malta CChip CSRs.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: malta.cc:94
Bitfield< 7 > i
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: malta.cc:88
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
Definition: cprintf.cc:40
void postIntr(uint8_t interrupt)
Post an Interrupt to the CPU.
Definition: malta_io.cc:95
void clearIntr(uint8_t interrupt)
Clear an Interrupt to the CPU.
Definition: malta_io.cc:102
void clearPciInt(int line) override
Clear a posted PCI->CPU interrupt.
Definition: malta.cc:76
static const int Max_CPUs
Max number of CPUs in a Malta.
Definition: malta.hh:57
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:805
void postPciInt(int line) override
Cause the chipset to post a cpi interrupt to the CPU.
Definition: malta.cc:70
MaltaIO * io
Pointer to the MaltaIO device which has the RTC.
Definition: malta.hh:63
Bitfield< 15 > system
Definition: misc.hh:997
Top level class for Malta Chipset emulation.
Definition: malta.hh:53
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:813
std::ostream CheckpointOut
Definition: serialize.hh:63
void clearConsoleInt() override
Clear a posted CPU interrupt (id=55)
Definition: malta.cc:63
Malta(const Params *p)
Definition: malta.cc:48
MaltaParams Params
Constructor for the Malta Class.
Definition: malta.hh:81
void postConsoleInt() override
Cause the cpu to post a serial interrupt to the CPU.
Definition: malta.cc:56
Bitfield< 0 > p
int intr_sum_type[Malta::Max_CPUs]
Definition: malta.hh:71
virtual Addr pciToDma(Addr pciAddr) const
Definition: malta.cc:82
Malta I/O Space mapping including RTC/timer interrupts.
Declaration of top level class for the Malta chipset.

Generated on Thu May 28 2020 16:21:32 for gem5 by doxygen 1.8.13