1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
/* Copyright (c) [2023] [Syswonder Community]
* [Rukos] is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
//! Device driver interfaces used by [ArceOS][1]. It provides common traits and
//! types for implementing a device driver.
//!
//! You have to use this crate with the following crates for corresponding
//! device types:
//!
//! - [`driver_block`][2]: Common traits for block storage drivers.
//! - [`driver_display`][3]: Common traits and types for graphics display drivers.
//! - [`driver_net`][4]: Common traits and types for network (NIC) drivers.
//!
//! [1]: https://github.com/rcore-os/arceos
//! [2]: ../driver_block/index.html
//! [3]: ../driver_display/index.html
//! [4]: ../driver_net/index.html
#![no_std]
#![feature(const_trait_impl)]
/// All supported device types.
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub enum DeviceType {
/// Block storage device (e.g., disk).
Block,
/// Character device (e.g., serial port).
Char,
/// Network device (e.g., ethernet card).
Net,
/// Graphic display device (e.g., GPU)
Display,
/// Plan-9 device (e.g. 9pfs)
_9P,
}
/// The error type for device operation failures.
#[derive(Debug)]
pub enum DevError {
/// An entity already exists.
AlreadyExists,
/// Try again, for non-blocking APIs.
Again,
/// Bad internal state.
BadState,
/// Invalid parameter/argument.
InvalidParam,
/// Input/output error.
Io,
/// Not enough space/cannot allocate memory (DMA).
NoMemory,
/// Device or resource is busy.
ResourceBusy,
/// This operation is unsupported or unimplemented.
Unsupported,
}
/// A specialized `Result` type for device operations.
pub type DevResult<T = ()> = Result<T, DevError>;
/// Common operations that require all device drivers to implement.
#[const_trait]
pub trait BaseDriverOps: Send + Sync {
/// The name of the device.
fn device_name(&self) -> &str;
/// The type of the device.
fn device_type(&self) -> DeviceType;
}