1a9804f795969858ddc103fc4e284dcd09d7c9b8
[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 DPRINTF(PciConfigAll, "read va=%#x size=%d\n",
102 req->vaddr, req->size);
103
104 Addr daddr = (req->paddr - (addr & EV5::PAddrImplMask));
105
106 int device = (daddr >> 11) & 0x1F;
107 int func = (daddr >> 8) & 0x7;
108 int reg = daddr & 0xFF;
109
110 if (devices[device][func] == NULL) {
111 switch (req->size) {
112 // case sizeof(uint64_t):
113 // *(uint64_t*)data = 0xFFFFFFFFFFFFFFFF;
114 // return No_Fault;
115 case sizeof(uint32_t):
116 *(uint32_t*)data = 0xFFFFFFFF;
117 return No_Fault;
118 case sizeof(uint16_t):
119 *(uint16_t*)data = 0xFFFF;
120 return No_Fault;
121 case sizeof(uint8_t):
122 *(uint8_t*)data = 0xFF;
123 return No_Fault;
124 default:
125 panic("invalid access size(?) for PCI configspace!\n");
126 }
127 } else {
128 switch (req->size) {
129 case sizeof(uint32_t):
130 case sizeof(uint16_t):
131 case sizeof(uint8_t):
132 devices[device][func]->ReadConfig(reg, req->size, data);
133 return No_Fault;
134 default:
135 panic("invalid access size(?) for PCI configspace!\n");
136 }
137 }
138
139 DPRINTFN("PCI Configspace ERROR: read daddr=%#x size=%d\n",
140 daddr, req->size);
141
142 return No_Fault;
143 }
144
145 Fault
146 PciConfigAll::write(MemReqPtr &req, const uint8_t *data)
147 {
148 Addr daddr = (req->paddr - (addr & EV5::PAddrImplMask));
149
150 int device = (daddr >> 11) & 0x1F;
151 int func = (daddr >> 8) & 0x7;
152 int reg = daddr & 0xFF;
153
154 union {
155 uint8_t byte_value;
156 uint16_t half_value;
157 uint32_t word_value;
158 };
159
160 if (devices[device][func] == NULL)
161 panic("Attempting to write to config space on non-existant device\n");
162 else {
163 switch (req->size) {
164 case sizeof(uint8_t):
165 byte_value = *(uint8_t*)data;
166 break;
167 case sizeof(uint16_t):
168 half_value = *(uint16_t*)data;
169 break;
170 case sizeof(uint32_t):
171 word_value = *(uint32_t*)data;
172 break;
173 default:
174 panic("invalid access size(?) for PCI configspace!\n");
175 }
176 }
177
178 DPRINTF(PciConfigAll, "write - va=%#x size=%d data=%#x\n",
179 req->vaddr, req->size, word_value);
180
181 devices[device][func]->WriteConfig(reg, req->size, word_value);
182
183 return No_Fault;
184 }
185
186 void
187 PciConfigAll::serialize(std::ostream &os)
188 {
189 /*
190 * There is no state associated with this object that requires
191 * serialization. The only real state are the device pointers
192 * which are all setup by the constructor of the PciDev class
193 */
194 }
195
196 void
197 PciConfigAll::unserialize(Checkpoint *cp, const std::string &section)
198 {
199 /*
200 * There is no state associated with this object that requires
201 * serialization. The only real state are the device pointers
202 * which are all setup by the constructor of the PciDev class
203 */
204 }
205
206 Tick
207 PciConfigAll::cacheAccess(MemReqPtr &req)
208 {
209 return curTick + pioLatency;
210 }
211
212 #ifndef DOXYGEN_SHOULD_SKIP_THIS
213
214 BEGIN_DECLARE_SIM_OBJECT_PARAMS(PciConfigAll)
215
216 SimObjectParam<MemoryController *> mmu;
217 Param<Addr> addr;
218 Param<Addr> mask;
219 SimObjectParam<Bus*> io_bus;
220 Param<Tick> pio_latency;
221 SimObjectParam<HierParams *> hier;
222
223 END_DECLARE_SIM_OBJECT_PARAMS(PciConfigAll)
224
225 BEGIN_INIT_SIM_OBJECT_PARAMS(PciConfigAll)
226
227 INIT_PARAM(mmu, "Memory Controller"),
228 INIT_PARAM(addr, "Device Address"),
229 INIT_PARAM(mask, "Address Mask"),
230 INIT_PARAM_DFLT(io_bus, "The IO Bus to attach to", NULL),
231 INIT_PARAM_DFLT(pio_latency, "Programmed IO latency in bus cycles", 1),
232 INIT_PARAM_DFLT(hier, "Hierarchy global variables", &defaultHierParams)
233
234 END_INIT_SIM_OBJECT_PARAMS(PciConfigAll)
235
236 CREATE_SIM_OBJECT(PciConfigAll)
237 {
238 return new PciConfigAll(getInstanceName(), addr, mmu, hier, io_bus,
239 pio_latency);
240 }
241
242 REGISTER_SIM_OBJECT("PciConfigAll", PciConfigAll)
243
244 #endif // DOXYGEN_SHOULD_SKIP_THIS