onboard pci rom
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1857 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
515f6c729e
commit
7715f26590
|
@ -0,0 +1,4 @@
|
||||||
|
config chip.h
|
||||||
|
|
||||||
|
object onboard.o
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
#ifndef PCI_ONBOARD_H
|
||||||
|
#define PCI_ONBOARD_H
|
||||||
|
|
||||||
|
struct drivers_pci_onboard_config
|
||||||
|
{
|
||||||
|
unsigned long rom_address;
|
||||||
|
};
|
||||||
|
struct chip_operations;
|
||||||
|
extern struct chip_operations drivers_pci_onboard_ops;
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,19 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2004 Tyan Computer
|
||||||
|
* by yhlu@tyan.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <console/console.h>
|
||||||
|
|
||||||
|
#include <device/device.h>
|
||||||
|
#include <device/pci.h>
|
||||||
|
#include <device/pci_ids.h>
|
||||||
|
#include <device/pci_ops.h>
|
||||||
|
#include "chip.h"
|
||||||
|
|
||||||
|
|
||||||
|
struct chip_operations drivers_pci_onboard_ops = {
|
||||||
|
#if CONFIG_CHIP_NAME == 1
|
||||||
|
CHIP_NAME("Onboard PCI")
|
||||||
|
#endif
|
||||||
|
};
|
Loading…
Reference in New Issue