coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
isa.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/pci_ids.h>
#include <pc80/isa-dma.h>
#include <pc80/mc146818rtc.h>
#include <arch/ioapic.h>
#include "i82371eb.h"
#include "chip.h"
Include dependency graph for isa.c:

Go to the source code of this file.

Functions

static void isa_init (struct device *dev)
 
static void sb_read_resources (struct device *dev)
 

Variables

static const struct device_operations isa_ops
 
static const struct pci_driver isa_driver __pci_driver
 

Function Documentation

◆ isa_init()

◆ sb_read_resources()

static void sb_read_resources ( struct device dev)
static

Definition at line 70 of file isa.c.

Variable Documentation

◆ __pci_driver

static const struct pci_driver isa_SB_driver __pci_driver
static
Initial value:
= {
.ops = &isa_ops,
.vendor = PCI_VID_INTEL,
}
static const struct device_operations isa_ops
Definition: isa.c:95
#define PCI_DID_INTEL_82371AB_ISA
Definition: pci_ids.h:2203
#define PCI_VID_INTEL
Definition: pci_ids.h:2157

Definition at line 70 of file isa.c.

◆ isa_ops

const struct device_operations isa_ops
static
Initial value:
= {
.read_resources = sb_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = pci_dev_enable_resources,
.init = isa_init,
.scan_bus = scan_static_bus,
.ops_pci = 0,
}
static void isa_init(struct device *dev)
Definition: isa.c:19
static void sb_read_resources(struct device *dev)
Definition: isa.c:70
void pci_dev_enable_resources(struct device *dev)
Definition: pci_device.c:721
void pci_dev_set_resources(struct device *dev)
Definition: pci_device.c:691
void scan_static_bus(struct device *bus)
Definition: root_device.c:89

Definition at line 70 of file isa.c.