coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
xhci.c File Reference
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <device/pci_ops.h>
#include <soc/pci_devs.h>
#include <soc/ramstage.h>
Include dependency graph for xhci.c:

Go to the source code of this file.

Functions

static void usb_xhci_init (struct device *dev)
 

Variables

static struct device_operations usb_xhci_ops
 
static const struct pci_driver pch_usb_xhci __pci_driver
 

Function Documentation

◆ usb_xhci_init()

static void usb_xhci_init ( struct device dev)
static

Definition at line 12 of file xhci.c.

Variable Documentation

◆ __pci_driver

const struct pci_driver pch_usb_xhci __pci_driver
static
Initial value:
= {
.ops = &usb_xhci_ops,
.vendor = PCI_VID_INTEL,
}
#define PCI_DID_INTEL_DNV_XHCI
Definition: pci_ids.h:2774
#define PCI_VID_INTEL
Definition: pci_ids.h:2157
static struct device_operations usb_xhci_ops
Definition: xhci.c:23

Definition at line 12 of file xhci.c.

◆ usb_xhci_ops

struct device_operations usb_xhci_ops
static
Initial value:
= {
.read_resources = pci_dev_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = pci_dev_enable_resources,
.init = usb_xhci_init,
.ops_pci = &soc_pci_ops,
}
void pci_dev_enable_resources(struct device *dev)
Definition: pci_device.c:721
void pci_dev_read_resources(struct device *dev)
Definition: pci_device.c:534
void pci_dev_set_resources(struct device *dev)
Definition: pci_device.c:691
struct pci_operations soc_pci_ops
Definition: chip.c:51
static void usb_xhci_init(struct device *dev)
Definition: xhci.c:12

Definition at line 12 of file xhci.c.