gem5  v22.1.0.0
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 namespace gem5
49 {
50 
51 PciHost::PciHost(const PciHostParams &p)
52  : PioDevice(p)
53 {
54 }
55 
57 {
58 }
59 
62 {
63  auto map_entry = devices.emplace(bus_addr, device);
64 
65  DPRINTF(PciHost, "%02x:%02x.%i: Registering device\n",
66  bus_addr.bus, bus_addr.dev, bus_addr.func);
67 
68  fatal_if(!map_entry.second,
69  "%02x:%02x.%i: PCI bus ID collision\n",
70  bus_addr.bus, bus_addr.dev, bus_addr.func);
71 
72  return DeviceInterface(*this, bus_addr, pin);
73 }
74 
75 PciDevice *
77 {
78  auto device = devices.find(addr);
79  return device != devices.end() ? device->second : nullptr;
80 }
81 
82 const PciDevice *
84 {
85  auto device = devices.find(addr);
86  return device != devices.end() ? device->second : nullptr;
87 }
88 
90  PciHost &_host,
91  PciBusAddr &bus_addr, PciIntPin interrupt_pin)
92  : host(_host),
93  busAddr(bus_addr), interruptPin(interrupt_pin)
94 {
95 }
96 
97 const std::string
99 {
100  return csprintf("%s.interface[%02x:%02x.%i]",
101  host.name(), busAddr.bus, busAddr.dev, busAddr.func);
102 }
103 
104 void
106 {
107  DPRINTF(PciHost, "postInt\n");
108 
109  host.postInt(busAddr, interruptPin);
110 }
111 
112 void
114 {
115  DPRINTF(PciHost, "clearInt\n");
116 
117  host.clearInt(busAddr, interruptPin);
118 }
119 
120 
121 GenericPciHost::GenericPciHost(const GenericPciHostParams &p)
122  : PciHost(p),
123  platform(*p.platform),
124  confBase(p.conf_base), confSize(p.conf_size),
125  confDeviceBits(p.conf_device_bits),
126  pciPioBase(p.pci_pio_base), pciMemBase(p.pci_mem_base),
127  pciDmaBase(p.pci_dma_base)
128 {
129 }
130 
132 {
133 }
134 
135 
136 Tick
138 {
139  const auto dev_addr(decodeAddress(pkt->getAddr() - confBase));
140  const Addr size(pkt->getSize());
141 
142  DPRINTF(PciHost, "%02x:%02x.%i: read: offset=0x%x, size=0x%x\n",
143  dev_addr.first.bus, dev_addr.first.dev, dev_addr.first.func,
144  dev_addr.second,
145  size);
146 
147  PciDevice *const pci_dev(getDevice(dev_addr.first));
148  if (pci_dev) {
149  // @todo Remove this after testing
150  pkt->headerDelay = pkt->payloadDelay = 0;
151  return pci_dev->readConfig(pkt);
152  } else {
153  uint8_t *pkt_data(pkt->getPtr<uint8_t>());
154  std::fill(pkt_data, pkt_data + size, 0xFF);
155  pkt->makeAtomicResponse();
156  return 0;
157  }
158 }
159 
160 Tick
162 {
163  const auto dev_addr(decodeAddress(pkt->getAddr() - confBase));
164 
165  DPRINTF(PciHost, "%02x:%02x.%i: write: offset=0x%x, size=0x%x\n",
166  dev_addr.first.bus, dev_addr.first.dev, dev_addr.first.func,
167  dev_addr.second,
168  pkt->getSize());
169 
170  PciDevice *const pci_dev(getDevice(dev_addr.first));
171  panic_if(!pci_dev,
172  "%02x:%02x.%i: Write to config space on non-existent PCI device\n",
173  dev_addr.first.bus, dev_addr.first.dev, dev_addr.first.func);
174 
175  // @todo Remove this after testing
176  pkt->headerDelay = pkt->payloadDelay = 0;
177 
178  return pci_dev->writeConfig(pkt);
179 }
180 
183 {
185 }
186 
189 {
190  const Addr offset(addr & mask(confDeviceBits));
191  const Addr bus_addr(addr >> confDeviceBits);
192 
193  return std::make_pair(
194  PciBusAddr(bits(bus_addr, 15, 8),
195  bits(bus_addr, 7, 3),
196  bits(bus_addr, 2, 0)),
197  offset);
198 }
199 
200 
201 void
203 {
204  platform.postPciInt(mapPciInterrupt(addr, pin));
205 }
206 
207 void
209 {
210  platform.clearPciInt(mapPciInterrupt(addr, pin));
211 }
212 
213 
214 uint32_t
216 {
217  const PciDevice *dev(getDevice(addr));
218  assert(dev);
219 
220  return dev->interruptLine();
221 }
222 
223 } // namespace gem5
#define DPRINTF(x,...)
Definition: trace.hh:186
const uint8_t confDeviceBits
Definition: host.hh:324
virtual uint32_t mapPciInterrupt(const PciBusAddr &bus_addr, PciIntPin pin) const
Definition: host.cc:215
const Addr confBase
Definition: host.hh:322
AddrRangeList getAddrRanges() const override
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
Definition: host.cc:182
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: host.cc:161
GenericPciHost(const GenericPciHostParams &p)
Definition: host.cc:121
virtual std::pair< PciBusAddr, Addr > decodeAddress(Addr address)
Decode a configuration space address.
Definition: host.cc:188
const Addr confSize
Definition: host.hh:323
virtual ~GenericPciHost()
Definition: host.cc:131
void postInt(const PciBusAddr &addr, PciIntPin pin) override
Post an interrupt to the CPU.
Definition: host.cc:202
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: host.cc:137
Platform & platform
Definition: host.hh:320
void clearInt(const PciBusAddr &addr, PciIntPin pin) override
Post an interrupt to the CPU.
Definition: host.cc:208
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1212
Addr getAddr() const
Definition: packet.hh:805
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
Definition: packet.hh:448
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
Definition: packet.hh:430
unsigned getSize() const
Definition: packet.hh:815
void makeAtomicResponse()
Definition: packet.hh:1071
PCI device, base implementation is only config space.
Definition: device.hh:270
virtual Tick readConfig(PacketPtr pkt)
Read from the PCI config space data that is stored locally.
Definition: device.cc:212
virtual Tick writeConfig(PacketPtr pkt)
Write to the PCI config space data that is stored locally.
Definition: device.cc:283
uint8_t interruptLine() const
Definition: device.hh:367
Callback interface from PCI devices to the host.
Definition: host.hh:95
void postInt()
Post a PCI interrupt to the CPU.
Definition: host.cc:105
const std::string name() const
Definition: host.cc:98
void clearInt()
Clear a posted PCI interrupt.
Definition: host.cc:113
The PCI host describes the interface between PCI devices and a simulated system.
Definition: host.hh:76
std::map< PciBusAddr, PciDevice * > devices
Currently registered PCI devices.
Definition: host.hh:245
PciHost(const PciHostParams &p)
Definition: host.cc:51
virtual ~PciHost()
Definition: host.cc:56
PciDevice * getDevice(const PciBusAddr &addr)
Retrieve a PCI device from its bus address.
Definition: host.cc:76
virtual DeviceInterface registerDevice(PciDevice *device, PciBusAddr bus_addr, PciIntPin pin)
Register a PCI device with the host.
Definition: host.cc:61
This device is the base class which all devices senstive to an address range inherit from.
Definition: io_device.hh:103
STL pair class.
Definition: stl.hh:58
AddrRange RangeSize(Addr start, Addr size)
Definition: addr_range.hh:815
std::list< AddrRange > AddrRangeList
Convenience typedef for a collection of address ranges.
Definition: addr_range.hh:57
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:76
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
Definition: bitfield.hh:63
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:226
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:204
Bitfield< 23, 0 > offset
Definition: types.hh:144
Bitfield< 54 > p
Definition: pagetable.hh:70
Bitfield< 3 > addr
Definition: types.hh:84
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
PciIntPin
Definition: types.hh:67
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
uint64_t Tick
Tick count type.
Definition: types.hh:58
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:161
Generic interface for platforms.
uint8_t func
Definition: types.hh:58
uint8_t bus
Definition: types.hh:56
uint8_t dev
Definition: types.hh:57

Generated on Wed Dec 21 2022 10:22:34 for gem5 by doxygen 1.9.1