L4Re Operating System Framework – Interface and Usage Documentation
Loading...
Searching...
No Matches
L4virtio::Driver::Device Class Reference

Client-side implementation for a general virtio device. More...

#include <l4virtio>

+ Inheritance diagram for L4virtio::Driver::Device:
+ Collaboration diagram for L4virtio::Driver::Device:

Public Member Functions

void driver_connect (L4::Cap< L4virtio::Device > srvcap, bool manage_notify=true)
 Contacts the device and starts the initial handshake.
 
int bind_notification_irq (unsigned index, L4::Cap< L4::Triggerable > irq) const
 Register a triggerable to receive notifications from the device.
 
bool fail_state () const
 Return true if the device is in a fail state.
 
bool feature_negotiated (unsigned int feat) const
 Check if a particular feature bit was negotiated with the device.
 
int driver_acknowledge ()
 Finalize handshake with the device.
 
int register_ds (L4::Cap< L4Re::Dataspace > ds, l4_umword_t offset, l4_umword_t size, l4_uint64_t *devaddr)
 Share a dataspace with the device.
 
int config_queue (int num, unsigned size, l4_uint64_t desc_addr, l4_uint64_t avail_addr, l4_uint64_t used_addr)
 Send the virtqueue configuration to the device.
 
int max_queue_size (int num) const
 Maximum queue size allowed by the device.
 
int send_and_wait (Virtqueue &queue, l4_uint16_t descno)
 Send a request to the device and wait for it to be processed.
 
int wait (int index) const
 Wait for a notification from the device.
 
int wait_for_next_used (Virtqueue &queue, l4_uint32_t *len=nullptr) const
 Wait for the next item to arrive in the used queue and return it.
 
void send (Virtqueue &queue, l4_uint16_t descno)
 Send a request to the device.
 

Detailed Description

Client-side implementation for a general virtio device.

Definition at line 31 of file l4virtio.

Member Function Documentation

◆ bind_notification_irq()

int L4virtio::Driver::Device::bind_notification_irq ( unsigned  index,
L4::Cap< L4::Triggerable irq 
) const
inline

Register a triggerable to receive notifications from the device.

Parameters
indexIndex of the interrupt.
[out]irqTriggerable to register for notifications.

Definition at line 129 of file l4virtio.

References L4::Icu::bind(), and l4_error().

+ Here is the call graph for this function:

◆ config_queue()

int L4virtio::Driver::Device::config_queue ( int  num,
unsigned  size,
l4_uint64_t  desc_addr,
l4_uint64_t  avail_addr,
l4_uint64_t  used_addr 
)
inline

Send the virtqueue configuration to the device.

Parameters
numNumber of queue to configure.
sizeSize of rings in the queue, must be a power of 2)
desc_addrAddress of descriptor table (device address)
avail_addrAddress of available ring (device address)
used_addrAddress of used ring (device address)

Definition at line 212 of file l4virtio.

References L4virtio::Device::config_queue().

Referenced by L4virtio::Driver::Virtio_net_device::setup_device(), and L4virtio::Driver::Block_device::setup_device().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ driver_acknowledge()

int L4virtio::Driver::Device::driver_acknowledge ( )
inline

Finalize handshake with the device.

Must be called after all queues have been set up and before the first request is sent. It is still possible to add more shared dataspaces after the handshake has been finished.

Definition at line 156 of file l4virtio.

References L4Re::chksys(), L4_EINVAL, L4_EIO, L4_ENODEV, L4_EOK, L4VIRTIO_FEATURE_VERSION_1, l4virtio_get_feature(), L4VIRTIO_STATUS_DRIVER_OK, L4VIRTIO_STATUS_FEATURES_OK, and L4virtio::Device::set_status().

Referenced by L4virtio::Driver::Virtio_net_device::setup_device(), and L4virtio::Driver::Block_device::setup_device().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ driver_connect()

void L4virtio::Driver::Device::driver_connect ( L4::Cap< L4virtio::Device srvcap,
bool  manage_notify = true 
)
inline

Contacts the device and starts the initial handshake.

Parameters
srvcapCapability for device communication.
manage_notifySet up a semaphore for notifications from the device. See below.
Exceptions
L4::Runtime_errorif the initialisation fails

This function contacts the server, sets up the notification channels and the configuration dataspace. After this is done, the caller can set up any dataspaces it needs. The initialisation then needs to be finished by calling driver_acknowledge().

Per default this function creates and registers a semaphore for receiving notification from the device. This semaphore is used in the blocking functions send_and_wait(), wait() and next_used().

When manage_notify is false, then the caller may manually register and handle notification interrupts from the device. This is for example useful, when the client runs in an application with a server loop.

Definition at line 56 of file l4virtio.

References L4::Icu::bind(), L4Re::chkcap(), L4Re::chksys(), L4virtio::Device::device_config(), L4virtio::Device::device_notification_irq(), L4Re::Env::env(), L4_EINVAL, L4_EIO, L4_ENODEV, l4_error(), L4_PAGEMASK, L4_PAGESHIFT, L4_PAGESIZE, L4_SUPERPAGESIZE, L4VIRTIO_STATUS_ACKNOWLEDGE, L4VIRTIO_STATUS_DRIVER, L4::Ipc::make_cap_rw(), L4Re::Rm::F::RW, L4Re::Rm::F::Search_addr, and L4virtio::Device::set_status().

Referenced by L4virtio::Driver::Virtio_net_device::setup_device(), and L4virtio::Driver::Block_device::setup_device().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ feature_negotiated()

bool L4virtio::Driver::Device::feature_negotiated ( unsigned int  feat) const
inline

Check if a particular feature bit was negotiated with the device.

The result is only valid after driver_acknowledge() was called (when the handshake with the device was completed).

Parameters
featThe feature bit.
Return values
trueThe feature is supported by both driver and device.
falseThe feature is not supported by the driver and/or device.

Definition at line 145 of file l4virtio.

References l4virtio_get_feature().

+ Here is the call graph for this function:

◆ max_queue_size()

int L4virtio::Driver::Device::max_queue_size ( int  num) const
inline

Maximum queue size allowed by the device.

Parameters
numNumber of queue for which to determine the maximum size.

Definition at line 230 of file l4virtio.

Referenced by L4virtio::Driver::Virtio_net_device::rx_queue_size(), L4virtio::Driver::Block_device::setup_device(), and L4virtio::Driver::Virtio_net_device::tx_queue_size().

+ Here is the caller graph for this function:

◆ register_ds()

int L4virtio::Driver::Device::register_ds ( L4::Cap< L4Re::Dataspace ds,
l4_umword_t  offset,
l4_umword_t  size,
l4_uint64_t devaddr 
)
inline

Share a dataspace with the device.

Parameters
dsDataspace to share with the device.
offsetOffset in dataspace where the shared part starts.
sizeTotal size in bytes of the shared space.
devaddrStart of shared space in the device address space.

Although this function allows to share only a part of the given dataspace for convenience, the granularity of sharing is always the dataspace level. Thus, the remainder of the dataspace is not protected from the device.

When communicating with the device, addresses must be given with respect to the device address space. This is not the same as the virtual address space of the client in order to not leak information about the address space layout.

Definition at line 196 of file l4virtio.

References L4::Ipc::make_cap_rw(), and L4virtio::Device::register_ds().

Referenced by L4virtio::Driver::Virtio_net_device::setup_device(), and L4virtio::Driver::Block_device::setup_device().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ send()

void L4virtio::Driver::Device::send ( Virtqueue queue,
l4_uint16_t  descno 
)
inline

Send a request to the device.

Parameters
queueQueue that contains the request in its descriptor table
descnoIndex of first entry in descriptor table where

Definition at line 312 of file l4virtio.

References L4virtio::Driver::Virtqueue::enqueue_descriptor().

Referenced by send_and_wait(), L4virtio::Driver::Block_device::send_request(), and L4virtio::Driver::Virtio_net_device::tx().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ send_and_wait()

int L4virtio::Driver::Device::send_and_wait ( Virtqueue queue,
l4_uint16_t  descno 
)
inline

Send a request to the device and wait for it to be processed.

Parameters
queueQueue that contains the request in its descriptor table
descnoIndex of first entry in descriptor table where

This function provides a simple mechanism to send requests synchronously. It must not be used with other requests at the same time as it directly waits for a notification on the device irq cap.

Precondition
driver_connect() was called with manage_notify.

Definition at line 247 of file l4virtio.

References L4_EINVAL, L4_EOK, send(), and wait_for_next_used().

Referenced by L4virtio::Driver::Block_device::process_request().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ wait()

int L4virtio::Driver::Device::wait ( int  index) const
inline

Wait for a notification from the device.

Parameters
indexNotification slot to wait for.
Precondition
driver_connect() was called with manage_notify.

Definition at line 268 of file l4virtio.

References L4_EEXIST, l4_ipc_error(), and l4_utcb().

Referenced by wait_for_next_used().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ wait_for_next_used()

int L4virtio::Driver::Device::wait_for_next_used ( Virtqueue queue,
l4_uint32_t len = nullptr 
) const
inline

Wait for the next item to arrive in the used queue and return it.

Parameters
queueA queue.
[out]len(optional) Size of valid data in finished block. Note that this is the value reported by the device, which may set it to a value that is larger than the original buffer size.
Return values
>=0Descriptor number of item removed from used queue.
<0IPC error while waiting for notification.

The call blocks until the next item is available in the used queue.

Precondition
driver_connect() was called with manage_notify.

Definition at line 291 of file l4virtio.

References L4virtio::Driver::Virtqueue::find_next_used(), and wait().

Referenced by send_and_wait(), and L4virtio::Driver::Virtio_net_device::wait_rx().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: