Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
[gem5.git] / dev / pcidev.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 * A single PCI device configuration space entry.
31 */
32
33 #include <list>
34 #include <sstream>
35 #include <string>
36 #include <vector>
37
38 #include "base/inifile.hh"
39 #include "base/misc.hh"
40 #include "base/str.hh" // for to_number
41 #include "base/trace.hh"
42 #include "dev/pciareg.h"
43 #include "dev/pcidev.hh"
44 #include "dev/pciconfigall.hh"
45 #include "mem/functional_mem/memory_control.hh"
46 #include "sim/builder.hh"
47 #include "sim/param.hh"
48 #include "sim/universe.hh"
49 #include "dev/tsunamireg.h"
50
51 using namespace std;
52
53 PciDev::PciDev(const string &name, MemoryController *mmu, PciConfigAll *cf,
54 PciConfigData *cd, uint32_t bus, uint32_t dev, uint32_t func)
55 : DmaDevice(name), mmu(mmu), configSpace(cf), configData(cd), busNum(bus),
56 deviceNum(dev), functionNum(func)
57 {
58 // copy the config data from the PciConfigData object
59 if (cd) {
60 memcpy(config.data, cd->config.data, sizeof(config.data));
61 memcpy(BARSize, cd->BARSize, sizeof(BARSize));
62 memcpy(BARAddrs, cd->BARAddrs, sizeof(BARAddrs));
63 } else
64 panic("NULL pointer to configuration data");
65
66 // Setup pointer in config space to point to this entry
67 if (cf->deviceExists(dev,func))
68 panic("Two PCI devices occuping same dev: %#x func: %#x", dev, func);
69 else
70 cf->registerDevice(dev, func, this);
71 }
72
73 void
74 PciDev::ReadConfig(int offset, int size, uint8_t *data)
75 {
76 switch(size) {
77 case sizeof(uint32_t):
78 memcpy((uint8_t*)data, config.data + offset, sizeof(uint32_t));
79 *(uint32_t*)data = htoa(*(uint32_t*)data);
80 DPRINTF(PCIDEV,
81 "read device: %#x function: %#x register: %#x %d bytes: data: %#x\n",
82 deviceNum, functionNum, offset, size,
83 *(uint32_t*)(config.data + offset));
84 break;
85
86 case sizeof(uint16_t):
87 memcpy((uint8_t*)data, config.data + offset, sizeof(uint16_t));
88 *(uint16_t*)data = htoa(*(uint16_t*)data);
89 DPRINTF(PCIDEV,
90 "read device: %#x function: %#x register: %#x %d bytes: data: %#x\n",
91 deviceNum, functionNum, offset, size,
92 *(uint16_t*)(config.data + offset));
93 break;
94
95 case sizeof(uint8_t):
96 memcpy((uint8_t*)data, config.data + offset, sizeof(uint8_t));
97 DPRINTF(PCIDEV,
98 "read device: %#x function: %#x register: %#x %d bytes: data: %#x\n",
99 deviceNum, functionNum, offset, size,
100 (uint16_t)(*(uint8_t*)(config.data + offset)));
101 break;
102
103 default:
104 panic("Invalid Read Size");
105 }
106 }
107
108 void
109 PciDev::WriteConfig(int offset, int size, uint32_t data)
110 {
111 uint32_t barnum;
112
113 union {
114 uint8_t byte_value;
115 uint16_t half_value;
116 uint32_t word_value;
117 };
118 word_value = data;
119
120 DPRINTF(PCIDEV,
121 "write device: %#x function: %#x reg: %#x size: %d data: %#x\n",
122 deviceNum, functionNum, offset, size, word_value);
123
124 barnum = (offset - PCI0_BASE_ADDR0) >> 2;
125
126 switch (size) {
127 case sizeof(uint8_t): // 1-byte access
128 switch (offset) {
129 case PCI0_INTERRUPT_LINE:
130 case PCI_CACHE_LINE_SIZE:
131 case PCI_LATENCY_TIMER:
132 *(uint8_t *)&config.data[offset] = byte_value;
133 break;
134
135 default:
136 panic("writing to a read only register");
137 }
138 break;
139
140 case sizeof(uint16_t): // 2-byte access
141 switch (offset) {
142 case PCI_COMMAND:
143 case PCI_STATUS:
144 case PCI_CACHE_LINE_SIZE:
145 *(uint16_t *)&config.data[offset] = half_value;
146 break;
147
148 default:
149 panic("writing to a read only register");
150 }
151 break;
152
153 case sizeof(uint16_t)+1: // 3-byte access
154 panic("invalid access size");
155
156 case sizeof(uint32_t): // 4-byte access
157 switch (offset) {
158 case PCI0_BASE_ADDR0:
159 case PCI0_BASE_ADDR1:
160 case PCI0_BASE_ADDR2:
161 case PCI0_BASE_ADDR3:
162 case PCI0_BASE_ADDR4:
163 case PCI0_BASE_ADDR5:
164 // Writing 0xffffffff to a BAR tells the card to set the
165 // value of the bar
166 // to size of memory it needs
167 if (word_value == 0xffffffff) {
168 // This is I/O Space, bottom two bits are read only
169 if (config.data[offset] & 0x1) {
170 *(uint32_t *)&config.data[offset] =
171 ~(BARSize[barnum] - 1) |
172 (config.data[offset] & 0x3);
173 } else {
174 // This is memory space, bottom four bits are read only
175 *(uint32_t *)&config.data[offset] =
176 ~(BARSize[barnum] - 1) |
177 (config.data[offset] & 0xF);
178 }
179 } else {
180 // This is I/O Space, bottom two bits are read only
181 if(config.data[offset] & 0x1) {
182 *(uint32_t *)&config.data[offset] = (word_value & ~0x3) |
183 (config.data[offset] & 0x3);
184
185 if (word_value & ~0x1) {
186 Addr base_addr = (word_value & ~0x1) + TSUNAMI_PCI0_IO;
187 Addr base_size = BARSize[barnum]-1;
188
189 // It's never been set
190 if (BARAddrs[barnum] == 0)
191 mmu->add_child((FunctionalMemory *)this,
192 Range<Addr>(base_addr,
193 base_addr + base_size));
194 else
195 mmu->update_child((FunctionalMemory *)this,
196 Range<Addr>(BARAddrs[barnum],
197 BARAddrs[barnum] +
198 base_size),
199 Range<Addr>(base_addr,
200 base_addr +
201 base_size));
202
203 BARAddrs[barnum] = base_addr;
204 }
205
206 } else {
207 // This is memory space, bottom four bits are read only
208 *(uint32_t *)&config.data[offset] = (word_value & ~0xF) |
209 (config.data[offset] & 0xF);
210
211 if (word_value & ~0x3) {
212 Addr base_addr = (word_value & ~0x3) +
213 TSUNAMI_PCI0_MEMORY;
214
215 Addr base_size = BARSize[barnum]-1;
216
217 // It's never been set
218 if (BARAddrs[barnum] == 0)
219 mmu->add_child((FunctionalMemory *)this,
220 Range<Addr>(base_addr,
221 base_addr + base_size));
222 else
223 mmu->update_child((FunctionalMemory *)this,
224 Range<Addr>(BARAddrs[barnum],
225 BARAddrs[barnum] +
226 base_size),
227 Range<Addr>(base_addr,
228 base_addr +
229 base_size));
230
231 BARAddrs[barnum] = base_addr;
232 }
233 }
234 }
235 break;
236
237 case PCI0_ROM_BASE_ADDR:
238 if (word_value == 0xfffffffe)
239 *(uint32_t *)&config.data[offset] = 0xffffffff;
240 else
241 *(uint32_t *)&config.data[offset] = word_value;
242 break;
243
244 case PCI_COMMAND:
245 // This could also clear some of the error bits in the Status
246 // register. However they should never get set, so lets ignore
247 // it for now
248 *(uint16_t *)&config.data[offset] = half_value;
249 break;
250
251 default:
252 DPRINTF(PCIDEV, "Writing to a read only register");
253 }
254 break;
255 }
256 }
257
258 void
259 PciDev::serialize(ostream &os)
260 {
261 SERIALIZE_ARRAY(BARSize, 6);
262 SERIALIZE_ARRAY(BARAddrs, 6);
263 SERIALIZE_ARRAY(config.data, 64);
264 }
265
266 void
267 PciDev::unserialize(Checkpoint *cp, const std::string &section)
268 {
269 UNSERIALIZE_ARRAY(BARSize, 6);
270 UNSERIALIZE_ARRAY(BARAddrs, 6);
271 UNSERIALIZE_ARRAY(config.data, 64);
272
273 // Add the MMU mappings for the BARs
274 for (int i=0; i < 6; i++) {
275 if (BARAddrs[i] != 0)
276 mmu->add_child((FunctionalMemory *)this,
277 Range<Addr>(BARAddrs[i],
278 BARAddrs[i] +
279 BARSize[i] - 1));
280 }
281 }
282
283 #ifndef DOXYGEN_SHOULD_SKIP_THIS
284
285 BEGIN_DECLARE_SIM_OBJECT_PARAMS(PciConfigData)
286
287 Param<uint16_t> VendorID;
288 Param<uint16_t> DeviceID;
289 Param<uint16_t> Command;
290 Param<uint16_t> Status;
291 Param<uint8_t> Revision;
292 Param<uint8_t> ProgIF;
293 Param<uint8_t> SubClassCode;
294 Param<uint8_t> ClassCode;
295 Param<uint8_t> CacheLineSize;
296 Param<uint8_t> LatencyTimer;
297 Param<uint8_t> HeaderType;
298 Param<uint8_t> BIST;
299 Param<uint32_t> BAR0;
300 Param<uint32_t> BAR1;
301 Param<uint32_t> BAR2;
302 Param<uint32_t> BAR3;
303 Param<uint32_t> BAR4;
304 Param<uint32_t> BAR5;
305 Param<uint32_t> CardbusCIS;
306 Param<uint16_t> SubsystemVendorID;
307 Param<uint16_t> SubsystemID;
308 Param<uint32_t> ExpansionROM;
309 Param<uint8_t> InterruptLine;
310 Param<uint8_t> InterruptPin;
311 Param<uint8_t> MinimumGrant;
312 Param<uint8_t> MaximumLatency;
313 Param<uint32_t> BAR0Size;
314 Param<uint32_t> BAR1Size;
315 Param<uint32_t> BAR2Size;
316 Param<uint32_t> BAR3Size;
317 Param<uint32_t> BAR4Size;
318 Param<uint32_t> BAR5Size;
319
320 END_DECLARE_SIM_OBJECT_PARAMS(PciConfigData)
321
322 BEGIN_INIT_SIM_OBJECT_PARAMS(PciConfigData)
323
324 INIT_PARAM(VendorID, "Vendor ID"),
325 INIT_PARAM(DeviceID, "Device ID"),
326 INIT_PARAM_DFLT(Command, "Command Register", 0x00),
327 INIT_PARAM_DFLT(Status, "Status Register", 0x00),
328 INIT_PARAM_DFLT(Revision, "Device Revision", 0x00),
329 INIT_PARAM_DFLT(ProgIF, "Programming Interface", 0x00),
330 INIT_PARAM(SubClassCode, "Sub-Class Code"),
331 INIT_PARAM(ClassCode, "Class Code"),
332 INIT_PARAM_DFLT(CacheLineSize, "System Cacheline Size", 0x00),
333 INIT_PARAM_DFLT(LatencyTimer, "PCI Latency Timer", 0x00),
334 INIT_PARAM_DFLT(HeaderType, "PCI Header Type", 0x00),
335 INIT_PARAM_DFLT(BIST, "Built In Self Test", 0x00),
336 INIT_PARAM_DFLT(BAR0, "Base Address Register 0", 0x00),
337 INIT_PARAM_DFLT(BAR1, "Base Address Register 1", 0x00),
338 INIT_PARAM_DFLT(BAR2, "Base Address Register 2", 0x00),
339 INIT_PARAM_DFLT(BAR3, "Base Address Register 3", 0x00),
340 INIT_PARAM_DFLT(BAR4, "Base Address Register 4", 0x00),
341 INIT_PARAM_DFLT(BAR5, "Base Address Register 5", 0x00),
342 INIT_PARAM_DFLT(CardbusCIS, "Cardbus Card Information Structure", 0x00),
343 INIT_PARAM_DFLT(SubsystemVendorID, "Subsystem Vendor ID", 0x00),
344 INIT_PARAM_DFLT(SubsystemID, "Subsystem ID", 0x00),
345 INIT_PARAM_DFLT(ExpansionROM, "Expansion ROM Base Address Register", 0x00),
346 INIT_PARAM(InterruptLine, "Interrupt Line Register"),
347 INIT_PARAM(InterruptPin, "Interrupt Pin Register"),
348 INIT_PARAM_DFLT(MinimumGrant, "Minimum Grant", 0x00),
349 INIT_PARAM_DFLT(MaximumLatency, "Maximum Latency", 0x00),
350 INIT_PARAM_DFLT(BAR0Size, "Base Address Register 0 Size", 0x00),
351 INIT_PARAM_DFLT(BAR1Size, "Base Address Register 1 Size", 0x00),
352 INIT_PARAM_DFLT(BAR2Size, "Base Address Register 2 Size", 0x00),
353 INIT_PARAM_DFLT(BAR3Size, "Base Address Register 3 Size", 0x00),
354 INIT_PARAM_DFLT(BAR4Size, "Base Address Register 4 Size", 0x00),
355 INIT_PARAM_DFLT(BAR5Size, "Base Address Register 5 Size", 0x00)
356
357 END_INIT_SIM_OBJECT_PARAMS(PciConfigData)
358
359 CREATE_SIM_OBJECT(PciConfigData)
360 {
361 PciConfigData *data = new PciConfigData(getInstanceName());
362
363 data->config.hdr.vendor = htoa(VendorID);
364 data->config.hdr.device = htoa(DeviceID);
365 data->config.hdr.command = htoa(Command);
366 data->config.hdr.status = htoa(Status);
367 data->config.hdr.revision = htoa(Revision);
368 data->config.hdr.progIF = htoa(ProgIF);
369 data->config.hdr.subClassCode = htoa(SubClassCode);
370 data->config.hdr.classCode = htoa(ClassCode);
371 data->config.hdr.cacheLineSize = htoa(CacheLineSize);
372 data->config.hdr.latencyTimer = htoa(LatencyTimer);
373 data->config.hdr.headerType = htoa(HeaderType);
374 data->config.hdr.bist = htoa(BIST);
375
376 data->config.hdr.pci0.baseAddr0 = htoa(BAR0);
377 data->config.hdr.pci0.baseAddr1 = htoa(BAR1);
378 data->config.hdr.pci0.baseAddr2 = htoa(BAR2);
379 data->config.hdr.pci0.baseAddr3 = htoa(BAR3);
380 data->config.hdr.pci0.baseAddr4 = htoa(BAR4);
381 data->config.hdr.pci0.baseAddr5 = htoa(BAR5);
382 data->config.hdr.pci0.cardbusCIS = htoa(CardbusCIS);
383 data->config.hdr.pci0.subsystemVendorID = htoa(SubsystemVendorID);
384 data->config.hdr.pci0.subsystemID = htoa(SubsystemVendorID);
385 data->config.hdr.pci0.expansionROM = htoa(ExpansionROM);
386 data->config.hdr.pci0.interruptLine = htoa(InterruptLine);
387 data->config.hdr.pci0.interruptPin = htoa(InterruptPin);
388 data->config.hdr.pci0.minimumGrant = htoa(MinimumGrant);
389 data->config.hdr.pci0.maximumLatency = htoa(MaximumLatency);
390
391 data->BARSize[0] = BAR0Size;
392 data->BARSize[1] = BAR1Size;
393 data->BARSize[2] = BAR2Size;
394 data->BARSize[3] = BAR3Size;
395 data->BARSize[4] = BAR4Size;
396 data->BARSize[5] = BAR5Size;
397
398 return data;
399 }
400
401 REGISTER_SIM_OBJECT("PciConfigData", PciConfigData)
402
403 #endif // DOXYGEN_SHOULD_SKIP_THIS