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

Go to the source code of this file.

Functions

static void gl9763e_init (struct device *dev)
 

Variables

static struct device_operations gl9763e_ops
 
static const unsigned short pci_device_ids []
 
static const struct pci_driver genesyslogic_gl9763e __pci_driver
 
struct chip_operations drivers_generic_genesyslogic_ops
 

Function Documentation

◆ gl9763e_init()

Variable Documentation

◆ __pci_driver

const struct pci_driver genesyslogic_gl9763e __pci_driver
static
Initial value:
= {
.ops = &gl9763e_ops,
.vendor = PCI_VID_GLI,
.devices = pci_device_ids,
}
static struct device_operations gl9763e_ops
Definition: gl9763e.c:49
static const unsigned short pci_device_ids[]
Definition: gl9763e.c:57
#define PCI_VID_GLI
Definition: pci_ids.h:2086

Definition at line 57 of file gl9763e.c.

◆ drivers_generic_genesyslogic_ops

struct chip_operations drivers_generic_genesyslogic_ops
Initial value:
= {
}

Definition at line 57 of file gl9763e.c.

◆ gl9763e_ops

struct device_operations gl9763e_ops
static
Initial value:
= {
.read_resources = pci_dev_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = pci_dev_enable_resources,
.ops_pci = &pci_dev_ops_pci,
.init = gl9763e_init,
}
static void gl9763e_init(struct device *dev)
Definition: gl9763e.c:13
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
struct pci_operations pci_dev_ops_pci
Default device operation for PCI devices.
Definition: pci_device.c:911
void pci_dev_set_resources(struct device *dev)
Definition: pci_device.c:691

Definition at line 13 of file gl9763e.c.

◆ pci_device_ids

const unsigned short pci_device_ids[]
static
Initial value:
= {
0
}
#define PCI_DID_GLI_9763E
Definition: pci_ids.h:2089

Definition at line 57 of file gl9763e.c.