gem5  v20.0.0.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
host.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "dev/pci/host.hh"
39 
40 #include <utility>
41 
42 #include "debug/PciHost.hh"
43 #include "dev/pci/device.hh"
44 #include "dev/platform.hh"
45 #include "params/GenericPciHost.hh"
46 #include "params/PciHost.hh"
47 
48 PciHost::PciHost(const PciHostParams *p)
49  : PioDevice(p)
50 {
51 }
52 
54 {
55 }
56 
59 {
60  auto map_entry = devices.emplace(bus_addr, device);
61 
62  DPRINTF(PciHost, "%02x:%02x.%i: Registering device\n",
63  bus_addr.bus, bus_addr.dev, bus_addr.func);
64 
65  fatal_if(!map_entry.second,
66  "%02x:%02x.%i: PCI bus ID collision\n",
67  bus_addr.bus, bus_addr.dev, bus_addr.func);
68 
69  return DeviceInterface(*this, bus_addr, pin);
70 }
71 
72 PciDevice *
74 {
75  auto device = devices.find(addr);
76  return device != devices.end() ? device->second : nullptr;
77 }
78 
79 const PciDevice *
81 {
82  auto device = devices.find(addr);
83  return device != devices.end() ? device->second : nullptr;
84 }
85 
87  PciHost &_host,
88  PciBusAddr &bus_addr, PciIntPin interrupt_pin)
89  : host(_host),
90  busAddr(bus_addr), interruptPin(interrupt_pin)
91 {
92 }
93 
94 const std::string
96 {
97  return csprintf("%s.interface[%02x:%02x.%i]",
99 }
100 
101 void
103 {
104  DPRINTF(PciHost, "postInt\n");
105 
107 }
108 
109 void
111 {
112  DPRINTF(PciHost, "clearInt\n");
113 
115 }
116 
117 
118 GenericPciHost::GenericPciHost(const GenericPciHostParams *p)
119  : PciHost(p),
120  platform(*p->platform),
121  confBase(p->conf_base), confSize(p->conf_size),
122  confDeviceBits(p->conf_device_bits),
123  pciPioBase(p->pci_pio_base), pciMemBase(p->pci_mem_base),
124  pciDmaBase(p->pci_dma_base)
125 {
126 }
127 
129 {
130 }
131 
132 
133 Tick
135 {
136  const auto dev_addr(decodeAddress(pkt->getAddr() - confBase));
137  const Addr size(pkt->getSize());
138 
139  DPRINTF(PciHost, "%02x:%02x.%i: read: offset=0x%x, size=0x%x\n",
140  dev_addr.first.bus, dev_addr.first.dev, dev_addr.first.func,
141  dev_addr.second,
142  size);
143 
144  PciDevice *const pci_dev(getDevice(dev_addr.first));
145  if (pci_dev) {
146  // @todo Remove this after testing
147  pkt->headerDelay = pkt->payloadDelay = 0;
148  return pci_dev->readConfig(pkt);
149  } else {
150  uint8_t *pkt_data(pkt->getPtr<uint8_t>());
151  std::fill(pkt_data, pkt_data + size, 0xFF);
152  pkt->makeAtomicResponse();
153  return 0;
154  }
155 }
156 
157 Tick
159 {
160  const auto dev_addr(decodeAddress(pkt->getAddr() - confBase));
161 
162  DPRINTF(PciHost, "%02x:%02x.%i: write: offset=0x%x, size=0x%x\n",
163  dev_addr.first.bus, dev_addr.first.dev, dev_addr.first.func,
164  dev_addr.second,
165  pkt->getSize());
166 
167  PciDevice *const pci_dev(getDevice(dev_addr.first));
168  panic_if(!pci_dev,
169  "%02x:%02x.%i: Write to config space on non-existent PCI device\n",
170  dev_addr.first.bus, dev_addr.first.dev, dev_addr.first.func);
171 
172  // @todo Remove this after testing
173  pkt->headerDelay = pkt->payloadDelay = 0;
174 
175  return pci_dev->writeConfig(pkt);
176 }
177 
180 {
182 }
183 
186 {
187  const Addr offset(addr & mask(confDeviceBits));
188  const Addr bus_addr(addr >> confDeviceBits);
189 
190  return std::make_pair(
191  PciBusAddr(bits(bus_addr, 15, 8),
192  bits(bus_addr, 7, 3),
193  bits(bus_addr, 2, 0)),
194  offset);
195 }
196 
197 
198 void
200 {
201  platform.postPciInt(mapPciInterrupt(addr, pin));
202 }
203 
204 void
206 {
208 }
209 
210 
211 uint32_t
213 {
214  const PciDevice *dev(getDevice(addr));
215  assert(dev);
216 
217  return dev->interruptLine();
218 }
219 
220 
222 GenericPciHostParams::create()
223 {
224  return new GenericPciHost(this);
225 }
#define DPRINTF(x,...)
Definition: trace.hh:222
const std::string name() const
Definition: host.cc:95
AddrRange RangeSize(Addr start, Addr size)
Definition: addr_range.hh:580
void postInt(const PciBusAddr &addr, PciIntPin pin) override
Post an interrupt to the CPU.
Definition: host.cc:199
uint8_t bus
Definition: types.hh:53
virtual ~PciHost()
Definition: host.cc:53
Configurable generic PCI host interface.
Definition: host.hh:273
uint8_t dev
Definition: types.hh:54
STL pair class.
Definition: stl.hh:58
std::list< AddrRange > AddrRangeList
Convenience typedef for a collection of address ranges.
Definition: addr_range.hh:569
PCI device, base implementation is only config space.
Definition: device.hh:66
virtual void postInt(const PciBusAddr &bus_addr, PciIntPin pin)=0
Post an interrupt to the CPU.
PciDevice * getDevice(const PciBusAddr &addr)
Retrieve a PCI device from its bus address.
Definition: host.cc:73
virtual DeviceInterface registerDevice(PciDevice *device, PciBusAddr bus_addr, PciIntPin pin)
Register a PCI device with the host.
Definition: host.cc:58
ip6_addr_t addr
Definition: inet.hh:330
const PciBusAddr busAddr
Definition: host.hh:151
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: host.cc:158
Bitfield< 23, 0 > offset
Definition: types.hh:152
virtual void postPciInt(int line)
Cause the chipset to post a cpi interrupt to the CPU.
Definition: platform.cc:46
virtual void clearPciInt(int line)
Clear a posted PCI->CPU interrupt.
Definition: platform.cc:52
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1084
AddrRangeList getAddrRanges() const override
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
Definition: host.cc:179
void clearInt(const PciBusAddr &addr, PciIntPin pin) override
Post an interrupt to the CPU.
Definition: host.cc:205
unsigned getSize() const
Definition: packet.hh:730
const Addr confBase
Definition: host.hh:319
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
Definition: packet.hh:360
virtual void clearInt(const PciBusAddr &bus_addr, PciIntPin pin)=0
Post an interrupt to the CPU.
void clearInt()
Clear a posted PCI interrupt.
Definition: host.cc:110
void makeAtomicResponse()
Definition: packet.hh:943
uint64_t Tick
Tick count type.
Definition: types.hh:61
uint8_t interruptLine() const
Definition: device.hh:201
Addr getAddr() const
Definition: packet.hh:720
virtual Tick readConfig(PacketPtr pkt)
Read from the PCI config space data that is stored locally.
Definition: device.cc:216
const Addr confSize
Definition: host.hh:320
const PciIntPin interruptPin
Definition: host.hh:152
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:199
This device is the base class which all devices senstive to an address range inherit from...
Definition: io_device.hh:99
PciHost(const PciHostParams *p)
Definition: host.cc:48
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
Definition: packet.hh:378
The PCI host describes the interface between PCI devices and a simulated system.
Definition: host.hh:72
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
virtual const std::string name() const
Definition: sim_object.hh:128
Generic interface for platforms.
Platform & platform
Definition: host.hh:317
uint8_t func
Definition: types.hh:55
virtual std::pair< PciBusAddr, Addr > decodeAddress(Addr address)
Decode a configuration space address.
Definition: host.cc:185
Callback interface from PCI devices to the host.
Definition: host.hh:91
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: host.cc:134
GenericPciHost(const GenericPciHostParams *p)
Definition: host.cc:118
Bitfield< 3, 0 > mask
Definition: types.hh:62
PciIntPin
Definition: types.hh:63
virtual uint32_t mapPciInterrupt(const PciBusAddr &bus_addr, PciIntPin pin) const
Definition: host.cc:212
const uint8_t confDeviceBits
Definition: host.hh:321
T bits(T val, int first, int last)
Extract the bitfield from position &#39;first&#39; to &#39;last&#39; (inclusive) from &#39;val&#39; and right justify it...
Definition: bitfield.hh:71
std::map< PciBusAddr, PciDevice * > devices
Currently registered PCI devices.
Definition: host.hh:242
void postInt()
Post a PCI interrupt to the CPU.
Definition: host.cc:102
Bitfield< 0 > p
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
virtual ~GenericPciHost()
Definition: host.cc:128

Generated on Mon Jun 8 2020 15:45:10 for gem5 by doxygen 1.8.13