summary refs log blame commit diff
path: root/devices/src/pci/mod.rs
blob: 07147b4b9481b33c781b19c5f1476532eb9aaa8b (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                                         



                    
                      
               
             
 
                            



                                                                                  
                                                  
                                    
                                                              
 













                                     
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Implements pci devices and busses.

mod ac97;
mod ac97_bus_master;
mod ac97_mixer;
mod ac97_regs;
mod pci_configuration;
mod pci_device;
mod pci_root;

pub use self::ac97::Ac97Dev;
pub use self::pci_configuration::{
    PciCapability, PciCapabilityID, PciClassCode, PciConfiguration, PciHeaderType,
    PciProgrammingInterface, PciSubclass,
};
pub use self::pci_device::Error as PciDeviceError;
pub use self::pci_device::PciDevice;
pub use self::pci_root::{PciConfigIo, PciConfigMmio, PciRoot};

/// PCI has four interrupt pins A->D.
#[derive(Copy, Clone)]
pub enum PciInterruptPin {
    IntA,
    IntB,
    IntC,
    IntD,
}

impl PciInterruptPin {
    pub fn to_mask(self) -> u32 {
        self as u32
    }
}