Go to the documentation of this file.
44 #include "debug/VIORng.hh"
45 #include "params/VirtIORng.hh"
54 params.entropy_source, *this)
64 uint16_t size,
const std::string &rng_file_path,
68 rng_fd = open(rng_file_path.c_str(), O_RDONLY);
70 DPRINTF(VIORng,
"error when open entropy source: %s\n",
71 rng_file_path.c_str());
88 while ((
d = consumeDescriptor())) {
89 DPRINTF(VIORng,
"Got descriptor (len: %i)\n",
d->size());
91 while (len < d->size()) {
93 bool rng_read_success =
false;
95 ssize_t result = read(rng_fd, &
byte,
sizeof(uint8_t));
96 rng_read_success = (result > 0);
98 if (!rng_read_success) {
100 byte =
dist(rd_device);
102 d->chainWrite(
len, &
byte,
sizeof(uint8_t));
107 produceDescriptor(
d,
len);
void trySend()
Try to send data pending data from the terminal.
void readConfig(PacketPtr pkt, Addr cfgOffset)
Read from the configuration space of a device.
RngQueue(PortProxy &proxy, ByteOrder bo, uint16_t size, const std::string &rng_file_path, VirtIORng &_parent)
ByteOrder byteOrder(const ThreadContext *tc)
const FlagsType dist
Print the distribution.
Base wrapper around a virtqueue.
void registerQueue(VirtQueue &queue)
Register a new VirtQueue with the device model.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
This object is a proxy for a port or other object which implements the functional response protocol,...
Base class for all VirtIO-based devices.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
VirtIORng(const Params ¶ms)
VirtIO descriptor (chain) wrapper.
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
RngQueue qReq
Receive queue for port 0.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Generated on Wed May 4 2022 12:13:58 for gem5 by doxygen 1.8.17