rename AlphaConsole to AlphaBackdoor
[gem5.git] / src / dev / pcidev.cc
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 * Andrew Schultz
30 * Miguel Serrano
31 */
32
33 /* @file
34 * A single PCI device configuration space entry.
35 */
36
37 #include <list>
38 #include <string>
39 #include <vector>
40
41 #include "base/inifile.hh"
42 #include "base/intmath.hh" // for isPowerOf2(
43 #include "base/misc.hh"
44 #include "base/str.hh" // for to_number
45 #include "base/trace.hh"
46 #include "dev/pciconfigall.hh"
47 #include "dev/pcidev.hh"
48 #include "dev/alpha/tsunamireg.h"
49 #include "mem/packet.hh"
50 #include "mem/packet_access.hh"
51 #include "sim/byteswap.hh"
52 #include "sim/core.hh"
53
54 using namespace std;
55
56
57 PciDev::PciConfigPort::PciConfigPort(PciDev *dev, int busid, int devid,
58 int funcid, Platform *p)
59 : SimpleTimingPort(dev->name() + "-pciconf"), device(dev), platform(p),
60 busId(busid), deviceId(devid), functionId(funcid)
61 {
62 configAddr = platform->calcConfigAddr(busId, deviceId, functionId);
63 }
64
65
66 Tick
67 PciDev::PciConfigPort::recvAtomic(PacketPtr pkt)
68 {
69 assert(pkt->getAddr() >= configAddr &&
70 pkt->getAddr() < configAddr + PCI_CONFIG_SIZE);
71 return pkt->isRead() ? device->readConfig(pkt) : device->writeConfig(pkt);
72 }
73
74 void
75 PciDev::PciConfigPort::getDeviceAddressRanges(AddrRangeList &resp,
76 bool &snoop)
77 {
78 snoop = false;;
79 resp.push_back(RangeSize(configAddr, PCI_CONFIG_SIZE+1));
80 }
81
82
83 PciDev::PciDev(const Params *p)
84 : DmaDevice(p), plat(p->platform), pioDelay(p->pio_latency),
85 configDelay(p->config_latency), configPort(NULL)
86 {
87 config.vendor = htole(p->VendorID);
88 config.device = htole(p->DeviceID);
89 config.command = htole(p->Command);
90 config.status = htole(p->Status);
91 config.revision = htole(p->Revision);
92 config.progIF = htole(p->ProgIF);
93 config.subClassCode = htole(p->SubClassCode);
94 config.classCode = htole(p->ClassCode);
95 config.cacheLineSize = htole(p->CacheLineSize);
96 config.latencyTimer = htole(p->LatencyTimer);
97 config.headerType = htole(p->HeaderType);
98 config.bist = htole(p->BIST);
99
100 config.baseAddr[0] = htole(p->BAR0);
101 config.baseAddr[1] = htole(p->BAR1);
102 config.baseAddr[2] = htole(p->BAR2);
103 config.baseAddr[3] = htole(p->BAR3);
104 config.baseAddr[4] = htole(p->BAR4);
105 config.baseAddr[5] = htole(p->BAR5);
106 config.cardbusCIS = htole(p->CardbusCIS);
107 config.subsystemVendorID = htole(p->SubsystemVendorID);
108 config.subsystemID = htole(p->SubsystemID);
109 config.expansionROM = htole(p->ExpansionROM);
110 config.reserved0 = 0;
111 config.reserved1 = 0;
112 config.interruptLine = htole(p->InterruptLine);
113 config.interruptPin = htole(p->InterruptPin);
114 config.minimumGrant = htole(p->MinimumGrant);
115 config.maximumLatency = htole(p->MaximumLatency);
116
117 BARSize[0] = p->BAR0Size;
118 BARSize[1] = p->BAR1Size;
119 BARSize[2] = p->BAR2Size;
120 BARSize[3] = p->BAR3Size;
121 BARSize[4] = p->BAR4Size;
122 BARSize[5] = p->BAR5Size;
123
124 for (int i = 0; i < 6; ++i) {
125 uint32_t barsize = BARSize[i];
126 if (barsize != 0 && !isPowerOf2(barsize)) {
127 fatal("BAR %d size %d is not a power of 2\n", i, BARSize[i]);
128 }
129 }
130
131 memset(BARAddrs, 0, sizeof(BARAddrs));
132
133 plat->registerPciDevice(0, p->pci_dev, p->pci_func,
134 letoh(config.interruptLine));
135 }
136
137 void
138 PciDev::init()
139 {
140 if (!configPort)
141 panic("pci config port not connected to anything!");
142 configPort->sendStatusChange(Port::RangeChange);
143 PioDevice::init();
144 }
145
146 unsigned int
147 PciDev::drain(Event *de)
148 {
149 unsigned int count;
150 count = pioPort->drain(de) + dmaPort->drain(de) + configPort->drain(de);
151 if (count)
152 changeState(Draining);
153 else
154 changeState(Drained);
155 return count;
156 }
157
158 Tick
159 PciDev::readConfig(PacketPtr pkt)
160 {
161 int offset = pkt->getAddr() & PCI_CONFIG_SIZE;
162 if (offset >= PCI_DEVICE_SPECIFIC)
163 panic("Device specific PCI config space not implemented!\n");
164
165 pkt->allocate();
166
167 switch (pkt->getSize()) {
168 case sizeof(uint8_t):
169 pkt->set<uint8_t>(config.data[offset]);
170 DPRINTF(PCIDEV,
171 "readConfig: dev %#x func %#x reg %#x 1 bytes: data = %#x\n",
172 params()->pci_dev, params()->pci_func, offset,
173 (uint32_t)pkt->get<uint8_t>());
174 break;
175 case sizeof(uint16_t):
176 pkt->set<uint16_t>(*(uint16_t*)&config.data[offset]);
177 DPRINTF(PCIDEV,
178 "readConfig: dev %#x func %#x reg %#x 2 bytes: data = %#x\n",
179 params()->pci_dev, params()->pci_func, offset,
180 (uint32_t)pkt->get<uint16_t>());
181 break;
182 case sizeof(uint32_t):
183 pkt->set<uint32_t>(*(uint32_t*)&config.data[offset]);
184 DPRINTF(PCIDEV,
185 "readConfig: dev %#x func %#x reg %#x 4 bytes: data = %#x\n",
186 params()->pci_dev, params()->pci_func, offset,
187 (uint32_t)pkt->get<uint32_t>());
188 break;
189 default:
190 panic("invalid access size(?) for PCI configspace!\n");
191 }
192 pkt->makeAtomicResponse();
193 return configDelay;
194
195 }
196
197 void
198 PciDev::addressRanges(AddrRangeList &range_list)
199 {
200 int x = 0;
201 range_list.clear();
202 for (x = 0; x < 6; x++)
203 if (BARAddrs[x] != 0)
204 range_list.push_back(RangeSize(BARAddrs[x],BARSize[x]));
205 }
206
207 Tick
208 PciDev::writeConfig(PacketPtr pkt)
209 {
210 int offset = pkt->getAddr() & PCI_CONFIG_SIZE;
211 if (offset >= PCI_DEVICE_SPECIFIC)
212 panic("Device specific PCI config space not implemented!\n");
213
214 switch (pkt->getSize()) {
215 case sizeof(uint8_t):
216 switch (offset) {
217 case PCI0_INTERRUPT_LINE:
218 config.interruptLine = pkt->get<uint8_t>();
219 case PCI_CACHE_LINE_SIZE:
220 config.cacheLineSize = pkt->get<uint8_t>();
221 case PCI_LATENCY_TIMER:
222 config.latencyTimer = pkt->get<uint8_t>();
223 break;
224 /* Do nothing for these read-only registers */
225 case PCI0_INTERRUPT_PIN:
226 case PCI0_MINIMUM_GRANT:
227 case PCI0_MAXIMUM_LATENCY:
228 case PCI_CLASS_CODE:
229 case PCI_REVISION_ID:
230 break;
231 default:
232 panic("writing to a read only register");
233 }
234 DPRINTF(PCIDEV,
235 "writeConfig: dev %#x func %#x reg %#x 1 bytes: data = %#x\n",
236 params()->pci_dev, params()->pci_func, offset,
237 (uint32_t)pkt->get<uint8_t>());
238 break;
239 case sizeof(uint16_t):
240 switch (offset) {
241 case PCI_COMMAND:
242 config.command = pkt->get<uint8_t>();
243 case PCI_STATUS:
244 config.status = pkt->get<uint8_t>();
245 case PCI_CACHE_LINE_SIZE:
246 config.cacheLineSize = pkt->get<uint8_t>();
247 break;
248 default:
249 panic("writing to a read only register");
250 }
251 DPRINTF(PCIDEV,
252 "writeConfig: dev %#x func %#x reg %#x 2 bytes: data = %#x\n",
253 params()->pci_dev, params()->pci_func, offset,
254 (uint32_t)pkt->get<uint16_t>());
255 break;
256 case sizeof(uint32_t):
257 switch (offset) {
258 case PCI0_BASE_ADDR0:
259 case PCI0_BASE_ADDR1:
260 case PCI0_BASE_ADDR2:
261 case PCI0_BASE_ADDR3:
262 case PCI0_BASE_ADDR4:
263 case PCI0_BASE_ADDR5:
264 {
265 int barnum = BAR_NUMBER(offset);
266
267 // convert BAR values to host endianness
268 uint32_t he_old_bar = letoh(config.baseAddr[barnum]);
269 uint32_t he_new_bar = letoh(pkt->get<uint32_t>());
270
271 uint32_t bar_mask =
272 BAR_IO_SPACE(he_old_bar) ? BAR_IO_MASK : BAR_MEM_MASK;
273
274 // Writing 0xffffffff to a BAR tells the card to set the
275 // value of the bar to a bitmask indicating the size of
276 // memory it needs
277 if (he_new_bar == 0xffffffff) {
278 he_new_bar = ~(BARSize[barnum] - 1);
279 } else {
280 // does it mean something special to write 0 to a BAR?
281 he_new_bar &= ~bar_mask;
282 if (he_new_bar) {
283 Addr space_base = BAR_IO_SPACE(he_old_bar) ?
284 TSUNAMI_PCI0_IO : TSUNAMI_PCI0_MEMORY;
285 BARAddrs[barnum] = he_new_bar + space_base;
286 pioPort->sendStatusChange(Port::RangeChange);
287 }
288 }
289 config.baseAddr[barnum] = htole((he_new_bar & ~bar_mask) |
290 (he_old_bar & bar_mask));
291 }
292 break;
293
294 case PCI0_ROM_BASE_ADDR:
295 if (letoh(pkt->get<uint32_t>()) == 0xfffffffe)
296 config.expansionROM = htole((uint32_t)0xffffffff);
297 else
298 config.expansionROM = pkt->get<uint32_t>();
299 break;
300
301 case PCI_COMMAND:
302 // This could also clear some of the error bits in the Status
303 // register. However they should never get set, so lets ignore
304 // it for now
305 config.command = pkt->get<uint32_t>();
306 break;
307
308 default:
309 DPRINTF(PCIDEV, "Writing to a read only register");
310 }
311 DPRINTF(PCIDEV,
312 "writeConfig: dev %#x func %#x reg %#x 4 bytes: data = %#x\n",
313 params()->pci_dev, params()->pci_func, offset,
314 (uint32_t)pkt->get<uint32_t>());
315 break;
316 default:
317 panic("invalid access size(?) for PCI configspace!\n");
318 }
319 pkt->makeAtomicResponse();
320 return configDelay;
321 }
322
323 void
324 PciDev::serialize(ostream &os)
325 {
326 SERIALIZE_ARRAY(BARSize, sizeof(BARSize) / sizeof(BARSize[0]));
327 SERIALIZE_ARRAY(BARAddrs, sizeof(BARAddrs) / sizeof(BARAddrs[0]));
328 SERIALIZE_ARRAY(config.data, sizeof(config.data) / sizeof(config.data[0]));
329 }
330
331 void
332 PciDev::unserialize(Checkpoint *cp, const std::string &section)
333 {
334 UNSERIALIZE_ARRAY(BARSize, sizeof(BARSize) / sizeof(BARSize[0]));
335 UNSERIALIZE_ARRAY(BARAddrs, sizeof(BARAddrs) / sizeof(BARAddrs[0]));
336 UNSERIALIZE_ARRAY(config.data,
337 sizeof(config.data) / sizeof(config.data[0]));
338 pioPort->sendStatusChange(Port::RangeChange);
339
340 }
341