-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate initial virtio console implementation #217
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ edition = "2018" | |
|
||
[dependencies] | ||
vm-fdt = "0.2.0" | ||
vm-memory = "0.7.0" | ||
vm-memory = "0.8.0" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
// Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause | ||
|
||
use crate::virtio::console::CONSOLE_DEVICE_ID; | ||
use crate::virtio::features::{VIRTIO_F_IN_ORDER, VIRTIO_F_RING_EVENT_IDX, VIRTIO_F_VERSION_1}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: can we group together the |
||
|
||
use std::borrow::{Borrow, BorrowMut}; | ||
use std::io::stdout; | ||
use std::ops::DerefMut; | ||
use std::sync::{Arc, Mutex}; | ||
use virtio_console::console; | ||
|
||
use super::inorder_handler::InOrderQueueHandler; | ||
use crate::virtio::console::queue_handler::QueueHandler; | ||
use crate::virtio::{CommonConfig, Env, SingleFdSignalQueue, QUEUE_MAX_SIZE}; | ||
use virtio_device::{VirtioConfig, VirtioDeviceActions, VirtioDeviceType, VirtioMmioDevice}; | ||
use virtio_queue::Queue; | ||
use vm_device::bus::MmioAddress; | ||
use vm_device::device_manager::MmioManager; | ||
use vm_device::{DeviceMmio, MutDeviceMmio}; | ||
use vm_memory::GuestAddressSpace; | ||
|
||
use super::{Error, Result}; | ||
|
||
pub struct Console<M: GuestAddressSpace> { | ||
cfg: CommonConfig<M>, | ||
} | ||
|
||
impl<M> Console<M> | ||
where | ||
M: GuestAddressSpace + Clone + Send + 'static, | ||
{ | ||
pub fn new<B>(env: &mut Env<M, B>) -> Result<Arc<Mutex<Self>>> | ||
where | ||
// We're using this (more convoluted) bound so we can pass both references and smart | ||
// pointers such as mutex guards here. | ||
B: DerefMut, | ||
B::Target: MmioManager<D = Arc<dyn DeviceMmio + Send + Sync>>, | ||
{ | ||
let device_features = | ||
(1 << VIRTIO_F_VERSION_1) | (1 << VIRTIO_F_IN_ORDER) | (1 << VIRTIO_F_RING_EVENT_IDX); | ||
let queues = vec![ | ||
Queue::new(env.mem.clone(), QUEUE_MAX_SIZE), | ||
Queue::new(env.mem.clone(), QUEUE_MAX_SIZE), | ||
]; | ||
// TODO: Add a config space to implement the optional features of the console. | ||
// For basic operation it can be left empty. | ||
let config_space = Vec::new(); | ||
lauralt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
let virtio_cfg = VirtioConfig::new(device_features, queues, config_space); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: too many whitespaces. Why do we need them? |
||
let common_cfg = CommonConfig::new(virtio_cfg, env).map_err(Error::Virtio)?; | ||
let console = Arc::new(Mutex::new(Console { cfg: common_cfg })); | ||
|
||
env.register_mmio_device(console.clone()) | ||
.map_err(Error::Virtio)?; | ||
|
||
Ok(console) | ||
} | ||
} | ||
|
||
impl<M: GuestAddressSpace + Clone + Send + 'static> VirtioDeviceType for Console<M> { | ||
fn device_type(&self) -> u32 { | ||
CONSOLE_DEVICE_ID | ||
} | ||
} | ||
|
||
impl<M: GuestAddressSpace + Clone + Send + 'static> Borrow<VirtioConfig<M>> for Console<M> { | ||
fn borrow(&self) -> &VirtioConfig<M> { | ||
&self.cfg.virtio | ||
} | ||
} | ||
|
||
impl<M: GuestAddressSpace + Clone + Send + 'static> BorrowMut<VirtioConfig<M>> for Console<M> { | ||
fn borrow_mut(&mut self) -> &mut VirtioConfig<M> { | ||
&mut self.cfg.virtio | ||
} | ||
} | ||
|
||
impl<M: GuestAddressSpace + Clone + Send + 'static> VirtioDeviceActions for Console<M> { | ||
type E = Error; | ||
|
||
fn activate(&mut self) -> Result<()> { | ||
let driver_notify = SingleFdSignalQueue { | ||
irqfd: self.cfg.irqfd.clone(), | ||
interrupt_status: self.cfg.virtio.interrupt_status.clone(), | ||
}; | ||
|
||
let mut ioevents = self.cfg.prepare_activate().map_err(Error::Virtio)?; | ||
|
||
let inner = InOrderQueueHandler { | ||
driver_notify, | ||
receiveq: self.cfg.virtio.queues.remove(0), | ||
transmitq: self.cfg.virtio.queues.remove(0), | ||
console: console::Console::new_with_capacity(console::DEFAULT_CAPACITY, stdout()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we can use here the |
||
.map_err(Error::Console)?, | ||
}; | ||
|
||
let handler = Arc::new(Mutex::new(QueueHandler { | ||
inner, | ||
receiveqfd: ioevents.remove(0), | ||
transmitqfd: ioevents.remove(0), | ||
})); | ||
|
||
self.cfg.finalize_activate(handler).map_err(Error::Virtio) | ||
} | ||
|
||
fn reset(&mut self) -> Result<()> { | ||
// Not implemented for now. | ||
Ok(()) | ||
} | ||
} | ||
|
||
impl<M: GuestAddressSpace + Clone + Send + 'static> VirtioMmioDevice<M> for Console<M> {} | ||
|
||
impl<M: GuestAddressSpace + Clone + Send + 'static> MutDeviceMmio for Console<M> { | ||
fn mmio_read(&mut self, _base: MmioAddress, offset: u64, data: &mut [u8]) { | ||
self.read(offset, data); | ||
} | ||
|
||
fn mmio_write(&mut self, _base: MmioAddress, offset: u64, data: &[u8]) { | ||
self.write(offset, data); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be uart?