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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Types and constants specified by the PCI spec.
//!
//! This module MUST NOT contain any vendor-specific constants!
pub mod hwid {
//! Hardware ID types and constants
#![allow(missing_docs)] // constants/fields are self-explanatory
use core::fmt;
use inspect::Inspect;
/// A collection of hard-coded hardware IDs specific to a particular PCI
/// device, as reflected in their corresponding PCI configuration space
/// registers.
///
/// See PCI 2.3 Spec - 6.2.1 for details on each of these fields.
#[derive(Debug, Copy, Clone, Inspect)]
pub struct HardwareIds {
#[inspect(hex)]
pub vendor_id: u16,
#[inspect(hex)]
pub device_id: u16,
#[inspect(hex)]
pub revision_id: u8,
pub prog_if: ProgrammingInterface,
pub sub_class: Subclass,
pub base_class: ClassCode,
// TODO: this struct should be re-jigged when adding support for other
// header types (e.g: type 1)
#[inspect(hex)]
pub type0_sub_vendor_id: u16,
#[inspect(hex)]
pub type0_sub_system_id: u16,
}
open_enum::open_enum! {
/// ClassCode identifies the PCI device's type.
///
/// Values pulled from <https://wiki.osdev.org/PCI#Class_Codes>.
#[derive(Inspect)]
#[inspect(display)]
pub enum ClassCode: u8 {
UNCLASSIFIED = 0x00,
MASS_STORAGE_CONTROLLER = 0x01,
NETWORK_CONTROLLER = 0x02,
DISPLAY_CONTROLLER = 0x03,
MULTIMEDIA_CONTROLLER = 0x04,
MEMORY_CONTROLLER = 0x05,
BRIDGE = 0x06,
SIMPLE_COMMUNICATION_CONTROLLER = 0x07,
BASE_SYSTEM_PERIPHERAL = 0x08,
INPUT_DEVICE_CONTROLLER = 0x09,
DOCKING_STATION = 0x0A,
PROCESSOR = 0x0B,
SERIAL_BUS_CONTROLLER = 0x0C,
WIRELESS_CONTROLLER = 0x0D,
INTELLIGENT_CONTROLLER = 0x0E,
SATELLITE_COMMUNICATION_CONTROLLER = 0x0F,
ENCRYPTION_CONTROLLER = 0x10,
SIGNAL_PROCESSING_CONTROLLER = 0x11,
PROCESSING_ACCELERATOR = 0x12,
NONESSENTIAL_INSTRUMENTATION = 0x13,
// 0x14 - 0x3F: Reserved
CO_PROCESSOR = 0x40,
// 0x41 - 0xFE: Reserved
/// Vendor specific
UNASSIGNED = 0xFF,
}
}
impl ClassCode {
pub fn is_reserved(&self) -> bool {
let c = &self.0;
(0x14..=0x3f).contains(c) || (0x41..=0xfe).contains(c)
}
}
impl fmt::Display for ClassCode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if self.is_reserved() {
return write!(f, "RESERVED({:#04x})", self.0);
}
fmt::Debug::fmt(self, f)
}
}
impl From<u8> for ClassCode {
fn from(c: u8) -> Self {
Self(c)
}
}
impl From<ClassCode> for u8 {
fn from(c: ClassCode) -> Self {
c.0
}
}
// Most subclass/programming interface values aren't used, and don't have names that can easily be made into variable
// identifiers (eg, "ISA Compatibility mode controller, supports both channels switched to PCI native mode, supports bus mastering").
//
// Therefore, only add values as needed.
open_enum::open_enum! {
/// SubclassCode identifies the PCI device's function.
///
/// Values pulled from <https://wiki.osdev.org/PCI#Class_Codes>.
#[derive(Inspect)]
#[inspect(transparent(hex))]
pub enum Subclass: u8 {
// TODO: As more values are used, add them here.
NONE = 0x00,
// Mass Storage Controller (Class code: 0x01)
MASS_STORAGE_CONTROLLER_NON_VOLATILE_MEMORY = 0x08,
// Network Controller (Class code: 0x02)
// Other values: 0x01 - 0x08, 0x80
NETWORK_CONTROLLER_ETHERNET = 0x00,
// Bridge (Class code: 0x06)
// Other values: 0x02 - 0x0A
BRIDGE_HOST = 0x00,
BRIDGE_ISA = 0x01,
BRIDGE_OTHER = 0x80,
// Base System Peripheral (Class code: 0x08)
// Other values: 0x00 - 0x06
BASE_SYSTEM_PERIPHERAL_OTHER = 0x80,
}
}
impl From<u8> for Subclass {
fn from(c: u8) -> Self {
Self(c)
}
}
impl From<Subclass> for u8 {
fn from(c: Subclass) -> Self {
c.0
}
}
open_enum::open_enum! {
/// ProgrammingInterface (aka, program interface byte) identifies the PCI device's
/// register-level programming interface.
///
/// Values pulled from <https://wiki.osdev.org/PCI#Class_Codes>.
#[derive(Inspect)]
#[inspect(transparent(hex))]
pub enum ProgrammingInterface: u8{
// TODO: As more values are used, add them here.
NONE = 0x00,
// Non-Volatile Memory Controller (Class code:0x01, Subclass: 0x08)
// Other values: 0x01
MASS_STORAGE_CONTROLLER_NON_VOLATILE_MEMORY_NVME = 0x02,
// Ethernet Controller (Class code: 0x02, Subclass: 0x00)
NETWORK_CONTROLLER_ETHERNET_GDMA = 0x01,
}
}
impl From<u8> for ProgrammingInterface {
fn from(c: u8) -> Self {
Self(c)
}
}
impl From<ProgrammingInterface> for u8 {
fn from(c: ProgrammingInterface) -> Self {
c.0
}
}
}
/// Configuration Space
///
/// Sources: PCI 2.3 Spec - Chapter 6
#[allow(missing_docs)] // primarily enums/structs with self-explanatory variants
pub mod cfg_space {
use inspect::Inspect;
use zerocopy::AsBytes;
use zerocopy::FromBytes;
use zerocopy::FromZeroes;
open_enum::open_enum! {
/// Offsets into the type 00h configuration space header.
///
/// Table pulled from <https://wiki.osdev.org/PCI>
///
/// | Offset | Bits 31-24 | Bits 23-16 | Bits 15-8 | Bits 7-0 |
/// |--------|----------------------------|-------------|---------------------|--------------------- |
/// | 0x0 | Device ID | | Vendor ID | |
/// | 0x4 | Status | | Command | |
/// | 0x8 | Class code | | | Revision ID |
/// | 0xC | BIST | Header type | Latency Timer | Cache Line Size |
/// | 0x10 | Base address #0 (BAR0) | | | |
/// | 0x14 | Base address #1 (BAR1) | | | |
/// | 0x18 | Base address #2 (BAR2) | | | |
/// | 0x1C | Base address #3 (BAR3) | | | |
/// | 0x20 | Base address #4 (BAR4) | | | |
/// | 0x24 | Base address #5 (BAR5) | | | |
/// | 0x28 | Cardbus CIS Pointer | | | |
/// | 0x2C | Subsystem ID | | Subsystem Vendor ID | |
/// | 0x30 | Expansion ROM base address | | | |
/// | 0x34 | Reserved | | | Capabilities Pointer |
/// | 0x38 | Reserved | | | |
/// | 0x3C | Max latency | Min Grant | Interrupt PIN | Interrupt Line |
pub enum HeaderType00: u16 {
DEVICE_VENDOR = 0x00,
STATUS_COMMAND = 0x04,
CLASS_REVISION = 0x08,
BIST_HEADER = 0x0C,
BAR0 = 0x10,
BAR1 = 0x14,
BAR2 = 0x18,
BAR3 = 0x1C,
BAR4 = 0x20,
BAR5 = 0x24,
CARDBUS_CIS_PTR = 0x28,
SUBSYSTEM_ID = 0x2C,
EXPANSION_ROM_BASE = 0x30,
RESERVED_CAP_PTR = 0x34,
RESERVED = 0x38,
LATENCY_INTERRUPT = 0x3C,
}
}
pub const HEADER_TYPE_00_SIZE: u16 = 0x40;
bitflags::bitflags! {
/// BAR in-band encoding bits.
///
/// The low bits of the BAR are not actually part of the address.
/// Instead, they are used to in-band encode various bits of
/// metadata about the BAR, and are masked off when determining the
/// actual address.
pub struct BarEncodingBits: u32 {
const USE_PIO = 1 << 0;
// only used in MMIO
const TYPE_32_BIT = 0b00 << 1;
const TYPE_64_BIT = 0b10 << 1;
const PREFETCHABLE = 1 << 3;
}
}
bitflags::bitflags! {
/// Command Register
#[derive(AsBytes, FromBytes, FromZeroes, Inspect)]
#[repr(transparent)]
#[inspect(debug)]
pub struct Command: u16 {
const PIO_ENABLED = 1 << 0;
const MMIO_ENABLED = 1 << 1;
const BUS_MASTER = 1 << 2;
const SPECIAL_CYCLES = 1 << 3;
const ENABLE_MEMORY_WRITE_INVALIDATE = 1 << 4;
const VGA_PALETTE_SNOOP = 1 << 5;
const PARITY_ERROR_RESPONSE = 1 << 6;
// const RESERVED = 1 << 7; // must be 0
const ENABLE_SERR = 1 << 8;
const ENABLE_FAST_B2B = 1 << 9;
const INTX_DISABLE = 1 << 10;
// rest of bits are reserved
}
}
bitflags::bitflags! {
/// Status Register
#[derive(AsBytes, FromBytes, FromZeroes)]
#[repr(transparent)]
pub struct Status: u16 {
// const RESERVED = 0b000 << 0;
const INTERRUPT_STATUS = 1 << 3;
const CAPABILITIES_LIST = 1 << 4;
const CAPABLE_MHZ_66 = 1 << 5;
// const RESERVED = 1 << 6;
const CAPABLE_FAST_B2B = 1 << 7;
const ERR_MASTER_PARITY = 1 << 8;
const DEVSEL_FAST = 0b00 << 10;
const DEVSEL_MED = 0b01 << 10;
const DEVSEL_SLOW = 0b10 << 10;
const ABORT_TARGET_SIGNALED = 1 << 11;
const ABORT_TARGET_RECEIVED = 1 << 12;
const ABORT_MASTER_RECEIVED = 1 << 13;
const ERR_SIGNALED = 1 << 14;
const ERR_DETECTED_PARITY = 1 << 15;
}
}
}
/// Capabilities
pub mod caps {
open_enum::open_enum! {
/// Capability IDs
///
/// Sources: PCI 2.3 Spec - Appendix H
///
/// NOTE: this is a non-exhaustive list, so don't be afraid to add new
/// variants on an as-needed basis!
pub enum CapabilityId: u8 {
#![allow(missing_docs)] // self explanatory variants
VENDOR_SPECIFIC = 0x09,
MSIX = 0x11,
}
}
/// MSI-X
#[allow(missing_docs)] // primarily enums/structs with self-explanatory variants
pub mod msix {
open_enum::open_enum! {
/// Offsets into the MSI-X Capability Header
///
/// Table pulled from <https://wiki.osdev.org/PCI>
///
/// | Offset | Bits 31-24 | Bits 23-16 | Bits 15-8 | Bits 7-3 | Bits 2-0 |
/// |-----------|--------------------|------------|--------------|----------------------|----------|
/// | Cap + 0x0 | Message Control | | Next Pointer | Capability ID (0x11) | |
/// | Cap + 0x4 | Table Offset | | | | BIR |
/// | Cap + 0x8 | Pending Bit Offset | | | | BIR |
pub enum MsixCapabilityHeader: u16 {
CONTROL_CAPS = 0x00,
OFFSET_TABLE = 0x04,
OFFSET_PBA = 0x08,
}
}
open_enum::open_enum! {
/// Offsets into a single MSI-X Table Entry
pub enum MsixTableEntryIdx: u16 {
MSG_ADDR_LO = 0x00,
MSG_ADDR_HI = 0x04,
MSG_DATA = 0x08,
VECTOR_CTL = 0x0C,
}
}
}
}