mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Marc Jones <marc.jones@amd.com> git-svn-id: svn://coreboot.org/repository/coreboot-v3@602 f3766cd6-281f-0410-b1cd-43a5c92072e9
13 lines
302 B
C
13 lines
302 B
C
#ifndef ARCH_X86_PCICONF_H
|
|
#define ARCH_X86_PCICONF_H
|
|
|
|
#ifndef PCI_CONF_REG_INDEX
|
|
|
|
// These are defined in the PCI spec, and hence are theoretically
|
|
// inclusive of ANYTHING that uses a PCI bus.
|
|
#define PCI_CONF_REG_INDEX 0xcf8
|
|
#define PCI_CONF_REG_DATA 0xcfc
|
|
|
|
#endif
|
|
|
|
#endif /* ARCH_X86_PCICONF_H */
|