iPXE
Data Structures | Functions
efi_pci.h File Reference

EFI driver interface. More...

#include <ipxe/pci.h>
#include <ipxe/efi/efi.h>
#include <ipxe/efi/Protocol/PciIo.h>

Go to the source code of this file.

Data Structures

struct  efi_pci_device
 An EFI PCI device. More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
static EFIAPI uint64_t LShiftU64 (UINT64 value, UINTN shift)
 
int efipci_info (EFI_HANDLE device, struct efi_pci_device *efipci)
 Get EFI PCI device information. More...
 

Detailed Description

EFI driver interface.

Definition in file efi_pci.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ LShiftU64()

static EFIAPI uint64_t LShiftU64 ( UINT64  value,
UINTN  shift 
)
inlinestatic

Definition at line 16 of file efi_pci.h.

16  {
17  return ( value << shift );
18 }
pseudo_bit_t value[0x00020]
Definition: arbel.h:13

References value.

◆ efipci_info()

int efipci_info ( EFI_HANDLE  device,
struct efi_pci_device efipci 
)

Get EFI PCI device information.

Parameters
deviceEFI device handle
efipciEFI PCI device to fill in
Return values
rcReturn status code

Definition at line 704 of file efi_pci.c.

704  {
705  EFI_PCI_IO_PROTOCOL *pci_io;
706  UINTN pci_segment, pci_bus, pci_dev, pci_fn;
707  unsigned int busdevfn;
708  EFI_STATUS efirc;
709  int rc;
710 
711  /* See if device is a PCI device */
713  &pci_io ) ) != 0 ) {
714  DBGCP ( device, "EFIPCI %s cannot open PCI protocols: %s\n",
715  efi_handle_name ( device ), strerror ( rc ) );
716  return rc;
717  }
718  efipci->io = pci_io;
719 
720  /* Get PCI bus:dev.fn address */
721  if ( ( efirc = pci_io->GetLocation ( pci_io, &pci_segment, &pci_bus,
722  &pci_dev, &pci_fn ) ) != 0 ) {
723  rc = -EEFI ( efirc );
724  DBGC ( device, "EFIPCI %s could not get PCI location: %s\n",
725  efi_handle_name ( device ), strerror ( rc ) );
726  return rc;
727  }
728  busdevfn = PCI_BUSDEVFN ( pci_segment, pci_bus, pci_dev, pci_fn );
729  pci_init ( &efipci->pci, busdevfn );
730  dma_init ( &efipci->pci.dma, &efipci_dma_operations );
731  DBGCP ( device, "EFIPCI " PCI_FMT " is %s\n",
732  PCI_ARGS ( &efipci->pci ), efi_handle_name ( device ) );
733 
734  /* Try to enable I/O cycles, memory cycles, and bus mastering.
735  * Some platforms will 'helpfully' report errors if these bits
736  * can't be enabled (for example, if the card doesn't actually
737  * support I/O cycles). Work around any such platforms by
738  * enabling bits individually and simply ignoring any errors.
739  */
746 
747  /* Populate PCI device */
748  if ( ( rc = pci_read_config ( &efipci->pci ) ) != 0 ) {
749  DBGC ( device, "EFIPCI " PCI_FMT " cannot read PCI "
750  "configuration: %s\n",
751  PCI_ARGS ( &efipci->pci ), strerror ( rc ) );
752  return rc;
753  }
754 
755  return 0;
756 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct dma_device dma
DMA device.
Definition: pci.h:214
#define EEFI(efirc)
Convert an EFI status code to an iPXE status code.
Definition: efi.h:174
struct pci_device pci
PCI device.
Definition: efi_pci.h:23
EFI_GUID efi_pci_io_protocol_guid
PCI I/O protocol GUID.
Definition: efi_guid.c:312
#define DBGC(...)
Definition: compiler.h:505
uint16_t busdevfn
PCI bus:dev.fn address.
Definition: ena.h:28
A hardware device.
Definition: device.h:76
#define EFI_PCI_IO_ATTRIBUTE_MEMORY
Enable the Memory decode bit in the PCI Config Header.
Definition: PciIo.h:60
EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes
Definition: PciIo.h:531
EFI_PCI_IO_PROTOCOL_GET_LOCATION GetLocation
Definition: PciIo.h:530
#define EFI_PCI_IO_ATTRIBUTE_BUS_MASTER
Enable the DMA bit in the PCI Config Header.
Definition: PciIo.h:61
const char * efi_handle_name(EFI_HANDLE handle)
Get name of an EFI handle.
Definition: efi_debug.c:652
#define PCI_BUSDEVFN(segment, bus, slot, func)
Definition: pci_io.h:29
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
#define PCI_FMT
PCI device debug message format.
Definition: pci.h:311
int pci_read_config(struct pci_device *pci)
Read PCI device configuration.
Definition: pci.c:268
#define efi_open(handle, protocol, interface)
Open protocol for ephemeral use.
Definition: efi.h:443
UINT64 UINTN
Unsigned value of native width.
#define EFI_PCI_IO_ATTRIBUTE_IO
Enable the I/O decode bit in the PCI Config Header.
Definition: PciIo.h:59
Enable the attributes specified by the bits that are set in Attributes for this PCI controller.
Definition: PciIo.h:113
EFI_PCI_IO_PROTOCOL * io
PCI I/O protocol.
Definition: efi_pci.h:25
static __always_inline void dma_init(struct dma_device *dma, struct dma_operations *op)
Initialise DMA device.
Definition: dma.h:453
RETURN_STATUS EFI_STATUS
Function return status for EFI API.
Definition: UefiBaseType.h:31
#define PCI_ARGS(pci)
PCI device debug message arguments.
Definition: pci.h:314
#define DBGCP(...)
Definition: compiler.h:539
static struct dma_operations efipci_dma_operations
EFI PCI DMA operations.
Definition: efi_pci.c:680
static void pci_init(struct pci_device *pci, unsigned int busdevfn)
Initialise PCI device.
Definition: pci.h:340
The EFI_PCI_IO_PROTOCOL provides the basic Memory, I/O, PCI configuration, and DMA interfaces used to...
Definition: PciIo.h:518
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References _EFI_PCI_IO_PROTOCOL::Attributes, busdevfn, DBGC, DBGCP, pci_device::dma, dma_init(), EEFI, efi_handle_name(), efi_open, EFI_PCI_IO_ATTRIBUTE_BUS_MASTER, EFI_PCI_IO_ATTRIBUTE_IO, EFI_PCI_IO_ATTRIBUTE_MEMORY, efi_pci_io_protocol_guid, efipci_dma_operations, EfiPciIoAttributeOperationEnable, _EFI_PCI_IO_PROTOCOL::GetLocation, efi_pci_device::io, NULL, efi_pci_device::pci, PCI_ARGS, PCI_BUSDEVFN, PCI_FMT, pci_init(), pci_read_config(), rc, and strerror().

Referenced by efi_bofm_start(), efi_bofm_supported(), efi_device_info_pci(), efipci_start(), and efipci_supported().