Some hand merges
[gem5.git] / dev / pciconfigall.cc
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 /* @file
30 * PCI Configspace implementation
31 */
32
33 #include <deque>
34 #include <string>
35 #include <vector>
36 #include <bitset>
37
38 #include "base/trace.hh"
39 #include "dev/pciconfigall.hh"
40 #include "dev/pcidev.hh"
41 #include "dev/pcireg.h"
42 #include "mem/bus/bus.hh"
43 #include "mem/bus/pio_interface.hh"
44 #include "mem/bus/pio_interface_impl.hh"
45 #include "mem/functional_mem/memory_control.hh"
46 #include "sim/builder.hh"
47 #include "sim/system.hh"
48
49 using namespace std;
50
51 PciConfigAll::PciConfigAll(const string &name,
52 Addr a, MemoryController *mmu,
53 HierParams *hier, Bus *bus, Tick pio_latency)
54 : PioDevice(name, NULL), addr(a)
55 {
56 mmu->add_child(this, RangeSize(addr, size));
57
58 if (bus) {
59 pioInterface = newPioInterface(name, hier, bus, this,
60 &PciConfigAll::cacheAccess);
61 pioInterface->addAddrRange(RangeSize(addr, size));
62 pioLatency = pio_latency * bus->clockRatio;
63 }
64
65 // Make all the pointers to devices null
66 for(int x=0; x < MAX_PCI_DEV; x++)
67 for(int y=0; y < MAX_PCI_FUNC; y++)
68 devices[x][y] = NULL;
69 }
70
71 // If two interrupts share the same line largely bad things will happen.
72 // Since we don't track how many times an interrupt was set and correspondingly
73 // cleared two devices on the same interrupt line and assert and deassert each
74 // others interrupt "line". Interrupts will not work correctly.
75 void
76 PciConfigAll::startup()
77 {
78 bitset<256> intLines;
79 PciDev *tempDev;
80 uint8_t intline;
81
82 for (int x = 0; x < MAX_PCI_DEV; x++) {
83 for (int y = 0; y < MAX_PCI_FUNC; y++) {
84 if (devices[x][y] != NULL) {
85 tempDev = devices[x][y];
86 intline = tempDev->interruptLine();
87 if (intLines.test(intline))
88 warn("Interrupt line %#X is used multiple times"
89 "(You probably want to fix this).\n", (uint32_t)intline);
90 else
91 intLines.set(intline);
92 } // devices != NULL
93 } // PCI_FUNC
94 } // PCI_DEV
95
96 }
97
98 Fault
99 PciConfigAll::read(MemReqPtr &req, uint8_t *data)
100 {
101
102 Addr daddr = (req->paddr - (addr & EV5::PAddrImplMask));
103
104 DPRINTF(PciConfigAll, "read va=%#x da=%#x size=%d\n",
105 req->vaddr, daddr, req->size);
106
107 int device = (daddr >> 11) & 0x1F;
108 int func = (daddr >> 8) & 0x7;
109 int reg = daddr & 0xFF;
110
111 if (devices[device][func] == NULL) {
112 switch (req->size) {
113 // case sizeof(uint64_t):
114 // *(uint64_t*)data = 0xFFFFFFFFFFFFFFFF;
115 // return No_Fault;
116 case sizeof(uint32_t):
117 *(uint32_t*)data = 0xFFFFFFFF;
118 return No_Fault;
119 case sizeof(uint16_t):
120 *(uint16_t*)data = 0xFFFF;
121 return No_Fault;
122 case sizeof(uint8_t):
123 *(uint8_t*)data = 0xFF;
124 return No_Fault;
125 default:
126 panic("invalid access size(?) for PCI configspace!\n");
127 }
128 } else {
129 switch (req->size) {
130 case sizeof(uint32_t):
131 case sizeof(uint16_t):
132 case sizeof(uint8_t):
133 devices[device][func]->ReadConfig(reg, req->size, data);
134 return No_Fault;
135 default:
136 panic("invalid access size(?) for PCI configspace!\n");
137 }
138 }
139
140 DPRINTFN("PCI Configspace ERROR: read daddr=%#x size=%d\n",
141 daddr, req->size);
142
143 return No_Fault;
144 }
145
146 Fault
147 PciConfigAll::write(MemReqPtr &req, const uint8_t *data)
148 {
149 Addr daddr = (req->paddr - (addr & EV5::PAddrImplMask));
150
151 int device = (daddr >> 11) & 0x1F;
152 int func = (daddr >> 8) & 0x7;
153 int reg = daddr & 0xFF;
154
155 union {
156 uint8_t byte_value;
157 uint16_t half_value;
158 uint32_t word_value;
159 };
160
161 if (devices[device][func] == NULL)
162 panic("Attempting to write to config space on non-existant device\n");
163 else {
164 switch (req->size) {
165 case sizeof(uint8_t):
166 byte_value = *(uint8_t*)data;
167 break;
168 case sizeof(uint16_t):
169 half_value = *(uint16_t*)data;
170 break;
171 case sizeof(uint32_t):
172 word_value = *(uint32_t*)data;
173 break;
174 default:
175 panic("invalid access size(?) for PCI configspace!\n");
176 }
177 }
178
179 DPRINTF(PciConfigAll, "write - va=%#x size=%d data=%#x\n",
180 req->vaddr, req->size, word_value);
181
182 devices[device][func]->WriteConfig(reg, req->size, word_value);
183
184 return No_Fault;
185 }
186
187 void
188 PciConfigAll::serialize(std::ostream &os)
189 {
190 /*
191 * There is no state associated with this object that requires
192 * serialization. The only real state are the device pointers
193 * which are all setup by the constructor of the PciDev class
194 */
195 }
196
197 void
198 PciConfigAll::unserialize(Checkpoint *cp, const std::string &section)
199 {
200 /*
201 * There is no state associated with this object that requires
202 * serialization. The only real state are the device pointers
203 * which are all setup by the constructor of the PciDev class
204 */
205 }
206
207 Tick
208 PciConfigAll::cacheAccess(MemReqPtr &req)
209 {
210 return curTick + pioLatency;
211 }
212
213 #ifndef DOXYGEN_SHOULD_SKIP_THIS
214
215 BEGIN_DECLARE_SIM_OBJECT_PARAMS(PciConfigAll)
216
217 SimObjectParam<MemoryController *> mmu;
218 Param<Addr> addr;
219 Param<Addr> mask;
220 SimObjectParam<Bus*> io_bus;
221 Param<Tick> pio_latency;
222 SimObjectParam<HierParams *> hier;
223
224 END_DECLARE_SIM_OBJECT_PARAMS(PciConfigAll)
225
226 BEGIN_INIT_SIM_OBJECT_PARAMS(PciConfigAll)
227
228 INIT_PARAM(mmu, "Memory Controller"),
229 INIT_PARAM(addr, "Device Address"),
230 INIT_PARAM(mask, "Address Mask"),
231 INIT_PARAM_DFLT(io_bus, "The IO Bus to attach to", NULL),
232 INIT_PARAM_DFLT(pio_latency, "Programmed IO latency in bus cycles", 1),
233 INIT_PARAM_DFLT(hier, "Hierarchy global variables", &defaultHierParams)
234
235 END_INIT_SIM_OBJECT_PARAMS(PciConfigAll)
236
237 CREATE_SIM_OBJECT(PciConfigAll)
238 {
239 return new PciConfigAll(getInstanceName(), addr, mmu, hier, io_bus,
240 pio_latency);
241 }
242
243 REGISTER_SIM_OBJECT("PciConfigAll", PciConfigAll)
244
245 #endif // DOXYGEN_SHOULD_SKIP_THIS