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

Go to the source code of this file.

Functions

static void pcixx12_init (struct device *dev)
 
static void pcixx12_read_resources (struct device *dev)
 
static void pcixx12_set_resources (struct device *dev)
 

Variables

static struct device_operations ti_pcixx12_ops
 
static const struct pci_driver ti_pcixx12_driver __pci_driver
 

Function Documentation

◆ pcixx12_init()

static void pcixx12_init ( struct device dev)
static

Definition at line 8 of file pcixx12.c.

References BIOS_DEBUG, and printk.

◆ pcixx12_read_resources()

static void pcixx12_read_resources ( struct device dev)
static

Definition at line 14 of file pcixx12.c.

References cardbus_read_resources().

Here is the call graph for this function:

◆ pcixx12_set_resources()

static void pcixx12_set_resources ( struct device dev)
static

Definition at line 19 of file pcixx12.c.

Variable Documentation

◆ __pci_driver

const struct pci_driver ti_pcixx12_driver __pci_driver
static
Initial value:
= {
.ops = &ti_pcixx12_ops,
.vendor = 0x104c,
.device = 0x8039,
}
static struct device_operations ti_pcixx12_ops
Definition: pcixx12.c:28

Definition at line 19 of file pcixx12.c.

◆ ti_pcixx12_ops

struct device_operations ti_pcixx12_ops
static
Initial value:
= {
.read_resources = pcixx12_read_resources,
.set_resources = pcixx12_set_resources,
.enable_resources = cardbus_enable_resources,
.init = pcixx12_init,
.scan_bus = pci_scan_bridge,
}
void cardbus_enable_resources(struct device *dev)
void pci_scan_bridge(struct device *dev)
Scan a PCI bridge and the buses behind the bridge.
Definition: pci_device.c:1598
static void pcixx12_set_resources(struct device *dev)
Definition: pcixx12.c:19
static void pcixx12_read_resources(struct device *dev)
Definition: pcixx12.c:14
static void pcixx12_init(struct device *dev)
Definition: pcixx12.c:8

Definition at line 19 of file pcixx12.c.