gem5  v22.1.0.0
vio_mmio.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2018 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/arm/vio_mmio.hh"
39 
40 #include "debug/VIOIface.hh"
41 #include "dev/arm/base_gic.hh"
42 #include "mem/packet_access.hh"
43 #include "params/MmioVirtIO.hh"
44 
45 namespace gem5
46 {
47 
48 MmioVirtIO::MmioVirtIO(const MmioVirtIOParams &params)
49  : BasicPioDevice(params, params.pio_size),
50  hostFeaturesSelect(0), guestFeaturesSelect(0), pageSize(0),
51  interruptStatus(0), vio(*params.vio),
52  interrupt(params.interrupt->get())
53 {
54  fatal_if(!interrupt, "No MMIO VirtIO interrupt specified\n");
55 
56  vio.registerKickCallback([this]() { kick(); });
57 }
58 
60 {
61 }
62 
63 Tick
65 {
66  const Addr offset = pkt->getAddr() - pioAddr;
67  const unsigned size(pkt->getSize());
68 
69  DPRINTF(VIOIface, "Reading %u bytes @ 0x%x:\n", size, offset);
70 
71  // Forward device configuration writes to the device VirtIO model
72  if (offset >= OFF_CONFIG) {
74  return 0;
75  }
76 
77  panic_if(size != 4, "Unexpected read size: %u\n", size);
78 
79  const uint32_t value = read(offset);
80  DPRINTF(VIOIface, " value: 0x%x\n", value);
81  pkt->makeResponse();
82  pkt->setLE<uint32_t>(value);
83 
84  return 0;
85 }
86 
87 uint32_t
89 {
90  switch(offset) {
91  case OFF_MAGIC:
92  return MAGIC;
93 
94  case OFF_VERSION:
95  return VERSION;
96 
97  case OFF_DEVICE_ID:
98  return vio.deviceId;
99 
100  case OFF_VENDOR_ID:
101  return VENDOR_ID;
102 
103  case OFF_HOST_FEATURES:
104  // We only implement 32 bits of this register
105  if (hostFeaturesSelect == 0)
106  return vio.deviceFeatures;
107  else
108  return 0;
109 
111  return hostFeaturesSelect;
112 
113  case OFF_GUEST_FEATURES:
114  // We only implement 32 bits of this register
115  if (guestFeaturesSelect == 0)
116  return vio.getGuestFeatures();
117  else
118  return 0;
119 
121  return hostFeaturesSelect;
122 
123  case OFF_GUEST_PAGE_SIZE:
124  return pageSize;
125 
126  case OFF_QUEUE_SELECT:
127  return vio.getQueueSelect();
128 
129  case OFF_QUEUE_NUM_MAX:
130  return vio.getQueueSize();
131 
132  case OFF_QUEUE_NUM:
133  // TODO: We don't support queue resizing, so ignore this for now.
134  return vio.getQueueSize();
135 
136  case OFF_QUEUE_ALIGN:
137  // TODO: Implement this once we support other alignment sizes
138  return VirtQueue::ALIGN_SIZE;
139 
140  case OFF_QUEUE_PFN:
141  return vio.getQueueAddress();
142 
144  return interruptStatus;
145 
146  case OFF_STATUS:
147  return vio.getDeviceStatus();
148 
149  // Write-only registers
150  case OFF_QUEUE_NOTIFY:
151  case OFF_INTERRUPT_ACK:
152  warn("Guest is trying to read to write-only register 0x%\n",
153  offset);
154  return 0;
155 
156  default:
157  panic("Unhandled read offset (0x%x)\n", offset);
158  }
159 }
160 
161 Tick
163 {
164  const Addr offset = pkt->getAddr() - pioAddr;
165  const unsigned size(pkt->getSize());
166 
167  DPRINTF(VIOIface, "Writing %u bytes @ 0x%x:\n", size, offset);
168 
169  // Forward device configuration writes to the device VirtIO model
170  if (offset >= OFF_CONFIG) {
172  return 0;
173  }
174 
175  panic_if(size != 4, "Unexpected write size @ 0x%x: %u\n", offset, size);
176  DPRINTF(VIOIface, " value: 0x%x\n", pkt->getLE<uint32_t>());
177  pkt->makeResponse();
178  write(offset, pkt->getLE<uint32_t>());
179  return 0;
180 }
181 
182 void
183 MmioVirtIO::write(Addr offset, uint32_t value)
184 {
185  switch(offset) {
187  hostFeaturesSelect = value;
188  return;
189 
190  case OFF_GUEST_FEATURES:
191  if (guestFeaturesSelect == 0) {
192  vio.setGuestFeatures(value);
193  } else if (value != 0) {
194  warn("Setting unimplemented guest features register %u: %u\n",
195  guestFeaturesSelect, value);
196  }
197  return;
198 
200  guestFeaturesSelect = value;
201  return;
202 
203  case OFF_GUEST_PAGE_SIZE:
204  // TODO: We only support 4096 byte pages at the moment
206  "Unhandled VirtIO page size: %u", value);
207  pageSize = value;
208  return;
209 
210  case OFF_QUEUE_SELECT:
211  vio.setQueueSelect(value);
212  return;
213 
214  case OFF_QUEUE_NUM:
215  // TODO: We don't support queue resizing, so ignore this for now.
216  warn_once("Ignoring queue resize hint. Requested size: %u\n", value);
217  return;
218 
219  case OFF_QUEUE_ALIGN:
220  // TODO: We currently only support the hard-coded 4k alignment used
221  // in legacy VirtIO.
223  "Unhandled VirtIO alignment size: %u", value);
224  return;
225 
226  case OFF_QUEUE_PFN:
227  vio.setQueueAddress(value);
228  return;
229 
230  case OFF_QUEUE_NOTIFY:
231  vio.onNotify(value);
232  return;
233 
234  case OFF_INTERRUPT_ACK:
235  setInterrupts(interruptStatus & (~value));
236  return;
237 
238  case OFF_STATUS:
239  panic_if(value > 0xff, "Unexpected status: 0x%x\n", value);
240  vio.setDeviceStatus(value);
241  return;
242 
243  /* Read-only registers */
244  case OFF_MAGIC:
245  case OFF_VERSION:
246  case OFF_DEVICE_ID:
247  case OFF_VENDOR_ID:
248  case OFF_HOST_FEATURES:
249  case OFF_QUEUE_NUM_MAX:
251  warn("Guest is trying to write to read-only register 0x%\n",
252  offset);
253  return;
254 
255  default:
256  panic("Unhandled read offset (0x%x)\n", offset);
257  }
258 }
259 
260 void
262 {
263  DPRINTF(VIOIface, "kick(): Sending interrupt...\n");
265 }
266 
267 void
269 {
270  const uint32_t old_ints = interruptStatus;
271  interruptStatus = value;
272 
273  if (!old_ints && interruptStatus) {
274  interrupt->raise();
275  } else if (old_ints && !interruptStatus) {
276  interrupt->clear();
277  }
278 }
279 
280 } // namespace gem5
#define DPRINTF(x,...)
Definition: trace.hh:186
Base class for ARM GIC implementations.
virtual void clear()=0
Clear a signalled interrupt.
virtual void raise()=0
Signal an interrupt.
Addr pioAddr
Address that the device listens to.
Definition: io_device.hh:151
MmioVirtIO(const MmioVirtIOParams &params)
Definition: vio_mmio.cc:48
uint32_t pageSize
Definition: vio_mmio.hh:108
static const uint32_t VERSION
Definition: vio_mmio.hh:96
void setInterrupts(uint32_t value)
Definition: vio_mmio.cc:268
ArmInterruptPin *const interrupt
Definition: vio_mmio.hh:113
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: vio_mmio.cc:64
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: vio_mmio.cc:162
static const uint32_t MAGIC
Definition: vio_mmio.hh:95
uint32_t guestFeaturesSelect
Definition: vio_mmio.hh:107
@ OFF_HOST_FEATURES_SELECT
Definition: vio_mmio.hh:71
@ OFF_GUEST_FEATURES_SELECT
Definition: vio_mmio.hh:73
virtual ~MmioVirtIO()
Definition: vio_mmio.cc:59
uint32_t interruptStatus
Definition: vio_mmio.hh:109
uint32_t hostFeaturesSelect
Definition: vio_mmio.hh:106
VirtIODeviceBase & vio
Definition: vio_mmio.hh:112
static const uint32_t VENDOR_ID
Definition: vio_mmio.hh:97
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
Addr getAddr() const
Definition: packet.hh:805
void setLE(T v)
Set the value in the data pointer to v as little endian.
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
Definition: packet.hh:1059
unsigned getSize() const
Definition: packet.hh:815
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
void setDeviceStatus(DeviceStatus status)
Update device status and optionally reset device.
Definition: base.cc:412
virtual void writeConfig(PacketPtr pkt, Addr cfgOffset)
Write to the configuration space of a device.
Definition: base.cc:428
FeatureBits getGuestFeatures() const
Get features accepted by the guest driver.
Definition: base.hh:870
QueueID getQueueSelect() const
Get the currently active queue.
Definition: base.hh:800
DeviceStatus getDeviceStatus() const
Retrieve the device status.
Definition: base.hh:855
uint32_t getQueueAddress() const
Get the host physical address of the currently active queue.
Definition: base.cc:483
const FeatureBits deviceFeatures
Feature set offered by the device.
Definition: base.hh:879
void onNotify(QueueID index)
Driver is requesting service.
Definition: base.cc:386
void setQueueSelect(QueueID idx)
Change currently active queue.
Definition: base.hh:790
uint16_t getQueueSize() const
Get the size (descriptors) of the currently active queue.
Definition: base.hh:838
void registerKickCallback(const std::function< void()> &callback)
Register a callback to kick the guest through the transport interface.
Definition: base.hh:762
virtual void readConfig(PacketPtr pkt, Addr cfgOffset)
Read from the configuration space of a device.
Definition: base.cc:422
void setQueueAddress(uint32_t address)
Change the host physical address of the currently active queue.
Definition: base.cc:477
const DeviceId deviceId
Device ID (sometimes known as subsystem ID)
Definition: base.hh:873
void setGuestFeatures(FeatureBits features)
Set feature bits accepted by the guest driver.
Definition: base.cc:398
static const Addr ALIGN_SIZE
Definition: base.hh:431
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
#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
#define warn(...)
Definition: logging.hh:246
#define warn_once(...)
Definition: logging.hh:250
Bitfield< 23, 0 > offset
Definition: types.hh:144
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
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

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