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

Go to the source code of this file.

Functions

static void pci7xx1_enable (struct device *const dev)
 

Variables

static struct device_operations device_ops
 
static const struct pci_driver ti_pci7xx1 __pci_driver
 

Function Documentation

◆ pci7xx1_enable()

static void pci7xx1_enable ( struct device *const  dev)
static

Definition at line 10 of file ti_pci7xx1.c.

Variable Documentation

◆ __pci_driver

const struct pci_driver ti_pci7xx1 __pci_driver
static
Initial value:
= {
.ops = &device_ops,
.vendor = 0x104c,
.device = 0x8031,
}
static struct device_operations device_ops
Definition: ti_pci7xx1.c:38

Definition at line 10 of file ti_pci7xx1.c.

◆ device_ops

struct device_operations device_ops
static
Initial value:
= {
.read_resources = cardbus_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = cardbus_enable_resources,
.init = 0,
.scan_bus = pci_scan_bridge,
.enable = pci7xx1_enable,
.reset_bus = pci_bus_reset,
}
void cardbus_enable_resources(struct device *dev)
void cardbus_read_resources(struct device *dev)
void pci_bus_reset(struct bus *bus)
Definition: pci_device.c:777
void pci_scan_bridge(struct device *dev)
Scan a PCI bridge and the buses behind the bridge.
Definition: pci_device.c:1598
void pci_dev_set_resources(struct device *dev)
Definition: pci_device.c:691
static void pci7xx1_enable(struct device *const dev)
Definition: ti_pci7xx1.c:10

Definition at line 10 of file ti_pci7xx1.c.