41 #include "params/SerialDevice.hh" 42 #include "params/SerialNullDevice.hh" 45 :
SimObject(p), interfaceCallback(nullptr)
60 fatal(
"A UART has already been associated with this device.\n");
84 panic(
"SerialNullDevice does not have pending data.\n");
90 SerialNullDeviceParams::create()
#define panic(...)
This implements a cprintf based panic() function.
virtual void process()=0
virtual process function that is invoked when the callback queue is executed.
#define fatal(...)
This implements a cprintf based fatal() function.
void regInterfaceCallback(Callback *c)
Register a data available callback into the host interface layer.
void notifyInterface()
Notify the host interface of pending data.
SerialDevice(const SerialDeviceParams *p)
uint8_t readData() override
Read a character from the device.
Base class for serial devices such as terminals.
SerialNullDevice(const SerialNullDeviceParams *p)
virtual bool dataAvailable() const =0
Check if there is pending data from the serial device.
Abstract superclass for simulation objects.
Dummy serial device that discards all data sent to it.
Callback * interfaceCallback
Currently regisxtered host interface layer callback.