2020-07-02 21:32:22 +00:00
|
|
|
/*
|
|
|
|
* \brief VirtIO MMIO device
|
|
|
|
* \author Piotr Tworek
|
|
|
|
* \date 2019-09-27
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Genode Labs GmbH
|
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__VIRTIO__MMIO_DEVICE_H_
|
|
|
|
#define _INCLUDE__VIRTIO__MMIO_DEVICE_H_
|
|
|
|
|
2022-02-03 14:15:05 +00:00
|
|
|
#include <platform_session/connection.h>
|
2021-04-16 13:08:21 +00:00
|
|
|
#include <platform_session/device.h>
|
2020-07-02 21:32:22 +00:00
|
|
|
#include <virtio/queue.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Virtio {
|
|
|
|
using namespace Genode;
|
|
|
|
class Device;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
mmio: upper-bounds checks
The classes Genode::Mmio, Genode::Register_set, Genode::Attached_mmio, and
Platform::Device::Mmio now receive a template parameter 'size_t SIZE'. In each
type that derives from one of these classes, it is now statically checked that
the range of each Genode::Register::Register- and
Genode::Register_set::Register_array-deriving sub-type is within [0..SIZE).
That said, SIZE is the minimum size of the memory region provided to the above
mentioned Mmio classes in order to avoid page faults or memory corruption when
accessing the registers and register arrays declared inside.
Note, that the range end of a register array is not the end of the last item
but the end of integer access that is used for accessing the last bit in the
last item.
The constructors of Genode::Mmio, Genode::Attached_mmio, and
Platform::Device::Mmio now receive an argument 'Byte_range_ptr range' that is
expected to be the range of the backing memory region. In each type that derives
from on of these classes, it is now dynamically checked that 'range.num_bytes
>= SIZE', thereby implementing the above mention protection against page faults
and memory corruption.
The rest of the commit adapts the code throughout the Genode Labs repositories
regarding the changes. Note that for that code inside Core, the commits mostly
uses a simplified approach by constructing MMIO objects with range
[base..base+SIZE) and not with a mapping- or specification-related range size.
This should be fixed in the future.
Furthermore, there are types that derive from an MMIO class but don't declare
any registers or register arrays (especially with Platform::Device::Mmio). In
this case SIZE is set to 0. This way, the parameters must be actively corrected
by someone who later wants to add registers or register arrays, plus the places
can be easily found by grep'ing for Mmio<0>.
Fix #4081
2024-01-10 14:08:53 +00:00
|
|
|
class Virtio::Device : Platform::Device::Mmio<0x200>
|
2020-07-02 21:32:22 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
struct Invalid_device : Genode::Exception { };
|
|
|
|
|
|
|
|
enum Status : uint8_t
|
|
|
|
{
|
|
|
|
RESET = 0,
|
|
|
|
ACKNOWLEDGE = 1 << 0,
|
|
|
|
DRIVER = 1 << 1,
|
|
|
|
DRIVER_OK = 1 << 2,
|
|
|
|
FEATURES_OK = 1 << 3,
|
|
|
|
FAILED = 1 << 7,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Access_size : uint8_t
|
|
|
|
{
|
|
|
|
ACCESS_8BIT,
|
|
|
|
ACCESS_16BIT,
|
|
|
|
ACCESS_32BIT,
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
enum { VIRTIO_MMIO_MAGIC = 0x74726976 };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Some of the registers are actually 8 bits wide, but according to
|
|
|
|
* section 4.2.2.2 of VIRTIO 1.0 spec "The driver MUST use only 32 bit
|
|
|
|
* wide and aligned reads and writes".
|
|
|
|
*/
|
|
|
|
struct Magic : Register<0x000, 32> { };
|
|
|
|
struct Version : Register<0x004, 32> { };
|
|
|
|
struct DeviceID : Register<0x008, 32> { };
|
|
|
|
struct VendorID : Register<0x00C, 32> { };
|
|
|
|
struct DeviceFeatures : Register<0x010, 32> { };
|
|
|
|
struct DeviceFeaturesSel : Register<0x014, 32> { };
|
|
|
|
struct DriverFeatures : Register<0x020, 32> { };
|
|
|
|
struct DriverFeaturesSel : Register<0x024, 32> { };
|
|
|
|
struct QueueSel : Register<0x030, 32> { };
|
|
|
|
struct QueueNumMax : Register<0x034, 32> { };
|
|
|
|
struct QueueNum : Register<0x038, 32> { };
|
|
|
|
struct QueueReady : Register<0x044, 32> { };
|
|
|
|
struct QueueNotify : Register<0x050, 32> { };
|
|
|
|
struct InterruptStatus : Register<0x060, 32> { };
|
|
|
|
struct InterruptAck : Register<0x064, 32> { };
|
|
|
|
struct StatusReg : Register<0x070, 32> { };
|
|
|
|
struct QueueDescLow : Register<0x080, 32> { };
|
|
|
|
struct QueueDescHigh : Register<0x084, 32> { };
|
|
|
|
struct QueueAvailLow : Register<0x090, 32> { };
|
|
|
|
struct QueueAvailHigh : Register<0x094, 32> { };
|
|
|
|
struct QueueUsedLow : Register<0x0A0, 32> { };
|
|
|
|
struct QueueUsedHigh : Register<0x0A4, 32> { };
|
|
|
|
struct ConfigGeneration : Register<0x0FC, 32> { };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Different views on device configuration space. According to the
|
|
|
|
* VIRTIO 1.0 spec 64 bit wide registers are supposed to be read as
|
|
|
|
* two 32 bit values.
|
|
|
|
*/
|
2023-02-20 14:58:24 +00:00
|
|
|
template <typename T> class Config :
|
|
|
|
public Register_array<0x100, sizeof(T)*8,
|
|
|
|
256/sizeof(T), sizeof(T)*8> {};
|
2020-07-02 21:32:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Noncopyable
|
|
|
|
*/
|
|
|
|
Device(Device const &) = delete;
|
|
|
|
Device &operator = (Device const &) = delete;
|
|
|
|
|
2021-04-16 13:08:21 +00:00
|
|
|
Platform::Device::Irq _irq;
|
|
|
|
|
2020-07-02 21:32:22 +00:00
|
|
|
public:
|
|
|
|
|
2021-04-16 13:08:21 +00:00
|
|
|
Device(Platform::Device & device)
|
|
|
|
:
|
mmio: upper-bounds checks
The classes Genode::Mmio, Genode::Register_set, Genode::Attached_mmio, and
Platform::Device::Mmio now receive a template parameter 'size_t SIZE'. In each
type that derives from one of these classes, it is now statically checked that
the range of each Genode::Register::Register- and
Genode::Register_set::Register_array-deriving sub-type is within [0..SIZE).
That said, SIZE is the minimum size of the memory region provided to the above
mentioned Mmio classes in order to avoid page faults or memory corruption when
accessing the registers and register arrays declared inside.
Note, that the range end of a register array is not the end of the last item
but the end of integer access that is used for accessing the last bit in the
last item.
The constructors of Genode::Mmio, Genode::Attached_mmio, and
Platform::Device::Mmio now receive an argument 'Byte_range_ptr range' that is
expected to be the range of the backing memory region. In each type that derives
from on of these classes, it is now dynamically checked that 'range.num_bytes
>= SIZE', thereby implementing the above mention protection against page faults
and memory corruption.
The rest of the commit adapts the code throughout the Genode Labs repositories
regarding the changes. Note that for that code inside Core, the commits mostly
uses a simplified approach by constructing MMIO objects with range
[base..base+SIZE) and not with a mapping- or specification-related range size.
This should be fixed in the future.
Furthermore, there are types that derive from an MMIO class but don't declare
any registers or register arrays (especially with Platform::Device::Mmio). In
this case SIZE is set to 0. This way, the parameters must be actively corrected
by someone who later wants to add registers or register arrays, plus the places
can be easily found by grep'ing for Mmio<0>.
Fix #4081
2024-01-10 14:08:53 +00:00
|
|
|
Platform::Device::Mmio<SIZE>(device), _irq(device, {0})
|
2020-07-02 21:32:22 +00:00
|
|
|
{
|
|
|
|
if (read<Magic>() != VIRTIO_MMIO_MAGIC) {
|
|
|
|
throw Invalid_device(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t vendor_id() { return read<VendorID>(); }
|
|
|
|
uint32_t device_id() { return read<DeviceID>(); }
|
|
|
|
uint8_t get_status() { return read<StatusReg>() & 0xff; }
|
|
|
|
|
|
|
|
bool set_status(uint8_t status)
|
|
|
|
{
|
|
|
|
write<StatusReg>(status);
|
|
|
|
return read<StatusReg>() == status;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t get_features(uint32_t selection)
|
|
|
|
{
|
|
|
|
write<DeviceFeaturesSel>(selection);
|
|
|
|
return read<DeviceFeatures>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_features(uint32_t selection, uint32_t features)
|
|
|
|
{
|
|
|
|
write<DriverFeaturesSel>(selection);
|
|
|
|
write<DriverFeatures>(features);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t get_config_generation() {
|
|
|
|
return read<ConfigGeneration>() & 0xff; }
|
|
|
|
|
|
|
|
uint16_t get_max_queue_size(uint16_t queue_index)
|
|
|
|
{
|
|
|
|
write<QueueSel>(queue_index);
|
|
|
|
if (read<QueueReady>() != 0) {
|
|
|
|
return 0; }
|
2021-12-02 10:23:38 +00:00
|
|
|
return (uint16_t)read<QueueNumMax>();
|
2020-07-02 21:32:22 +00:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:58:24 +00:00
|
|
|
template <typename T>
|
|
|
|
T read_config(const uint8_t offset)
|
2020-07-02 21:32:22 +00:00
|
|
|
{
|
2023-02-20 14:58:24 +00:00
|
|
|
static_assert(sizeof(T) <= 4);
|
|
|
|
return read<Config<T>>(offset >> log2(sizeof(T)));
|
2020-07-02 21:32:22 +00:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:58:24 +00:00
|
|
|
template <typename T>
|
|
|
|
void write_config(const uint8_t offset, const T value)
|
2020-07-02 21:32:22 +00:00
|
|
|
{
|
2023-02-20 14:58:24 +00:00
|
|
|
static_assert(sizeof(T) <= 4);
|
|
|
|
write<Config<T>>(value, (offset >> log2(sizeof(T))));
|
2020-07-02 21:32:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool configure_queue(uint16_t queue_index,
|
|
|
|
Virtio::Queue_description desc)
|
|
|
|
{
|
|
|
|
write<QueueSel>(queue_index);
|
|
|
|
|
|
|
|
if (read<QueueReady>() != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
write<QueueNum>(desc.size);
|
|
|
|
|
|
|
|
uint64_t addr = desc.desc;
|
|
|
|
write<QueueDescLow>((uint32_t)addr);
|
|
|
|
write<QueueDescHigh>((uint32_t)(addr >> 32));
|
|
|
|
|
|
|
|
addr = desc.avail;
|
|
|
|
write<QueueAvailLow>((uint32_t)addr);
|
|
|
|
write<QueueAvailHigh>((uint32_t)(addr >> 32));
|
|
|
|
|
|
|
|
addr = desc.used;
|
|
|
|
write<QueueUsedLow>((uint32_t)addr);
|
|
|
|
write<QueueUsedHigh>((uint32_t)(addr >> 32));
|
|
|
|
|
|
|
|
write<QueueReady>(1);
|
|
|
|
return read<QueueReady>() != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void notify_buffers_available(uint16_t queue_index) {
|
|
|
|
write<QueueNotify>(queue_index); }
|
|
|
|
|
|
|
|
uint32_t read_isr()
|
|
|
|
{
|
|
|
|
uint32_t isr = read<InterruptStatus>();
|
|
|
|
write<InterruptAck>(isr);
|
|
|
|
return isr;
|
|
|
|
}
|
2021-04-16 13:08:21 +00:00
|
|
|
|
|
|
|
void irq_sigh(Signal_context_capability cap) {
|
|
|
|
_irq.sigh(cap); }
|
|
|
|
|
|
|
|
void irq_ack() { _irq.ack(); }
|
2020-07-02 21:32:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__VIRTIO__MMIO_DEVICE_H_ */
|