SimObjects: Clean up handling of C++ namespaces.
[gem5.git] / src / dev / mips / malta_pchip.hh
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 */
30
31 /** @file
32 * Malta PCI interface CSRs
33 */
34
35 #ifndef __MALTA_PCHIP_HH__
36 #define __MALTA_PCHIP_HH__
37
38 #include "dev/mips/malta.hh"
39 #include "base/range.hh"
40 #include "dev/io_device.hh"
41 #include "params/MaltaPChip.hh"
42
43 /**
44 * A very simple implementation of the Malta PCI interface chips.
45 */
46 class MaltaPChip : public BasicPioDevice
47 {
48 protected:
49
50 static const Addr MaltaPciBus0Config = ULL(0x801fe000000);
51
52 /** Pchip control register */
53 uint64_t pctl;
54
55 /** Window Base addresses */
56 uint64_t wsba[4];
57
58 /** Window masks */
59 uint64_t wsm[4];
60
61 /** Translated Base Addresses */
62 uint64_t tba[4];
63
64 public:
65 typedef MaltaPChipParams Params;
66
67 const Params *
68 params() const
69 {
70 return dynamic_cast<const Params *>(_params);
71 }
72 public:
73 /**
74 * Register the PChip with the mmu and init all wsba, wsm, and tba to 0
75 * @param p pointer to the parameters struct
76 */
77 MaltaPChip(const Params *p);
78
79 /**
80 * Translate a PCI bus address to a memory address for DMA.
81 * @todo Andrew says this needs to be fixed. What's wrong with it?
82 * @param busAddr PCI address to translate.
83 * @return memory system address
84 */
85 Addr translatePciToDma(Addr busAddr);
86
87 Addr calcConfigAddr(int bus, int dev, int func);
88
89 virtual Tick read(PacketPtr pkt);
90 virtual Tick write(PacketPtr pkt);
91
92 /**
93 * Serialize this object to the given output stream.
94 * @param os The stream to serialize to.
95 */
96 virtual void serialize(std::ostream &os);
97
98 /**
99 * Reconstruct the state of this object from a checkpoint.
100 * @param cp The checkpoint use.
101 * @param section The section name of this object
102 */
103 virtual void unserialize(Checkpoint *cp, const std::string &section);
104 };
105
106 #endif // __TSUNAMI_PCHIP_HH__