38 #ifndef __DEV_VIRTIO_CONSOLE_HH__ 39 #define __DEV_VIRTIO_CONSOLE_HH__ 44 struct VirtIOConsoleParams;
111 :
VirtQueue(proxy, bo, size), parent(_parent) {}
119 std::string
name()
const {
return parent.name() +
".qRecv"; }
136 :
VirtQueue(proxy, bo, size), parent(_parent) {}
141 std::string
name()
const {
return parent.name() +
".qTrans"; }
155 #endif // __DEV_VIRTIO_CONSOLE_HH__ Base class for all VirtIO-based devices.
struct VirtIOConsole::Config M5_ATTR_PACKED
VirtIOConsole(Params *params)
Virtqueue for data going from the guest to the host.
void onNotify()
Notify queue of pending events.
static const DeviceId ID_CONSOLE
VirtIO device ID.
TermRecvQueue(PortProxy &proxy, ByteOrder bo, uint16_t size, VirtIOConsole &_parent)
Console configuration structure.
Config config
Currently active configuration (host byte order)
TermTransQueue qTrans
Transmit queue for port 0.
TermTransQueue(PortProxy &proxy, ByteOrder bo, uint16_t size, VirtIOConsole &_parent)
void readConfig(PacketPtr pkt, Addr cfgOffset)
Read from the configuration space of a device.
VirtIO descriptor (chain) wrapper.
Base class for serial devices such as terminals.
const Params * params() const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
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...
static const FeatureBits F_MULTIPORT
Supports the multi-port interface.
uint16_t DeviceId
Device Type (sometimes known as subsystem ID)
TermRecvQueue qRecv
Receive queue for port 0.
MakeCallback< VirtIOConsole::TermRecvQueue, &VirtIOConsole::TermRecvQueue::trySend > callbackDataAvail
void trySend()
Try to send data pending data from the terminal.
VirtIOConsoleParams Params
static const FeatureBits F_SIZE
Provides the size information.
Virtqueue for data going from the host to the guest.
Helper template class to turn a simple class member function into a callback.
virtual ~TermTransQueue()
Base wrapper around a virtqueue.