mem: Fix guest corruption when caches handle uncacheable accesses
[gem5.git] / src / dev / pciconfigall.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: Andrew Schultz
29 * Ali Saidi
30 */
31
32 /* @file
33 * PCI Configspace implementation
34 */
35
36 #include "base/trace.hh"
37 #include "debug/PciConfigAll.hh"
38 #include "dev/pciconfigall.hh"
39 #include "dev/pcireg.h"
40 #include "dev/platform.hh"
41 #include "mem/packet.hh"
42 #include "mem/packet_access.hh"
43 #include "params/PciConfigAll.hh"
44 #include "sim/system.hh"
45
46 PciConfigAll::PciConfigAll(const Params *p)
47 : PioDevice(p)
48 {
49 pioAddr = p->platform->calcPciConfigAddr(params()->bus,0,0);
50 }
51
52
53 Tick
54 PciConfigAll::read(PacketPtr pkt)
55 {
56
57 pkt->allocate();
58
59 DPRINTF(PciConfigAll, "read va=%#x size=%d\n", pkt->getAddr(),
60 pkt->getSize());
61
62 switch (pkt->getSize()) {
63 case sizeof(uint32_t):
64 pkt->set<uint32_t>(0xFFFFFFFF);
65 break;
66 case sizeof(uint16_t):
67 pkt->set<uint16_t>(0xFFFF);
68 break;
69 case sizeof(uint8_t):
70 pkt->set<uint8_t>(0xFF);
71 break;
72 default:
73 panic("invalid access size(?) for PCI configspace!\n");
74 }
75 pkt->makeAtomicResponse();
76 return params()->pio_latency;
77 }
78
79 Tick
80 PciConfigAll::write(PacketPtr pkt)
81 {
82 panic("Attempting to write to config space on non-existant device\n");
83 M5_DUMMY_RETURN
84 }
85
86
87 AddrRangeList
88 PciConfigAll::getAddrRanges() const
89 {
90 AddrRangeList ranges;
91 ranges.push_back(RangeSize(pioAddr, params()->size));
92 return ranges;
93 }
94
95
96 #ifndef DOXYGEN_SHOULD_SKIP_THIS
97
98 PciConfigAll *
99 PciConfigAllParams::create()
100 {
101 return new PciConfigAll(this);
102 }
103
104 #endif // DOXYGEN_SHOULD_SKIP_THIS