Devices: Add support for legacy fixed IO locations in BARs.
[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 "dev/pciconfigall.hh"
38 #include "dev/pcireg.h"
39 #include "dev/platform.hh"
40 #include "mem/packet.hh"
41 #include "mem/packet_access.hh"
42 #include "params/PciConfigAll.hh"
43 #include "sim/system.hh"
44
45 using namespace std;
46
47 PciConfigAll::PciConfigAll(const Params *p)
48 : PioDevice(p)
49 {
50 pioAddr = p->platform->calcPciConfigAddr(params()->bus,0,0);
51 }
52
53
54 Tick
55 PciConfigAll::read(PacketPtr pkt)
56 {
57
58 pkt->allocate();
59
60 DPRINTF(PciConfigAll, "read va=%#x size=%d\n", pkt->getAddr(),
61 pkt->getSize());
62
63 switch (pkt->getSize()) {
64 case sizeof(uint32_t):
65 pkt->set<uint32_t>(0xFFFFFFFF);
66 break;
67 case sizeof(uint16_t):
68 pkt->set<uint16_t>(0xFFFF);
69 break;
70 case sizeof(uint8_t):
71 pkt->set<uint8_t>(0xFF);
72 break;
73 default:
74 panic("invalid access size(?) for PCI configspace!\n");
75 }
76 pkt->makeAtomicResponse();
77 return params()->pio_latency;
78 }
79
80 Tick
81 PciConfigAll::write(PacketPtr pkt)
82 {
83 panic("Attempting to write to config space on non-existant device\n");
84 M5_DUMMY_RETURN
85 }
86
87
88 void
89 PciConfigAll::addressRanges(AddrRangeList &range_list)
90 {
91 range_list.clear();
92 range_list.push_back(RangeSize(pioAddr, params()->size));
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