Merged head into linux tree
[gem5.git] / dev / tsunami_pchip.hh
1 /*
2 * Copyright (c) 2003 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 /* @file
30 * Tsunami PChip
31 */
32
33 #ifndef __TSUNAMI_PCHIP_HH__
34 #define __TSUNAMI_PCHIP_HH__
35
36 #include "mem/functional_mem/functional_memory.hh"
37 #include "dev/tsunami.hh"
38
39 /*
40 * Tsunami PChip
41 */
42 class TsunamiPChip : public FunctionalMemory
43 {
44 private:
45 /** The base address of this device */
46 Addr addr;
47
48 /** The size of mappad from the above address */
49 static const Addr size = 0xfff;
50
51 protected:
52 /**
53 * pointer to the tsunami object.
54 * This is our access to all the other tsunami
55 * devices.
56 */
57 Tsunami *tsunami;
58
59 /** Window Base addresses */
60 uint64_t wsba[4];
61
62 /** Window masks */
63 uint64_t wsm[4];
64
65 /** Translated Base Addresses */
66 uint64_t tba[4];
67
68 public:
69 /**
70 * Register the PChip with the mmu and init all wsba, wsm, and tba to 0
71 * @param name the name of thes device
72 * @param t a pointer to the tsunami device
73 * @param a the address which we respond to
74 * @param mmu the mmu we are to register with
75 */
76 TsunamiPChip(const std::string &name, Tsunami *t, Addr a,
77 MemoryController *mmu);
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 /**
88 * Process a read to the PChip.
89 * @param req Contains the address to read from.
90 * @param data A pointer to write the read data to.
91 * @return The fault condition of the access.
92 */
93 virtual Fault read(MemReqPtr &req, uint8_t *data);
94
95 /**
96 * Process a write to the PChip.
97 * @param req Contains the address to write to.
98 * @param data The data to write.
99 * @return The fault condition of the access.
100 */
101 virtual Fault write(MemReqPtr &req, const uint8_t *data);
102
103 /**
104 * Serialize this object to the given output stream.
105 * @param os The stream to serialize to.
106 */
107 virtual void serialize(std::ostream &os);
108
109 /**
110 * Reconstruct the state of this object from a checkpoint.
111 * @param cp The checkpoint use.
112 * @param section The section name of this object
113 */
114 virtual void unserialize(Checkpoint *cp, const std::string &section);
115 };
116
117 #endif // __TSUNAMI_PCHIP_HH__