Home
last modified time | relevance | path

Searched refs:PCI_REG_DATA (Results 1 – 4 of 4) sorted by relevance

/openbmc/u-boot/arch/x86/cpu/
H A Dpci.c25 *valuep = inb(PCI_REG_DATA + (offset & 3)); in pci_x86_read_config()
28 *valuep = inw(PCI_REG_DATA + (offset & 2)); in pci_x86_read_config()
31 *valuep = inl(PCI_REG_DATA); in pci_x86_read_config()
44 outb(value, PCI_REG_DATA + (offset & 3)); in pci_x86_write_config()
47 outw(value, PCI_REG_DATA + (offset & 2)); in pci_x86_write_config()
50 outl(value, PCI_REG_DATA); in pci_x86_write_config()
/openbmc/u-boot/arch/x86/cpu/quark/
H A Dcar.S61 mov $PCI_REG_DATA, %dx
69 mov $PCI_REG_DATA, %dx
92 mov $PCI_REG_DATA, %dx
100 mov $PCI_REG_DATA, %dx
/openbmc/u-boot/arch/x86/include/asm/arch-quark/
H A Dquark.h212 *valuep = inl(PCI_REG_DATA); in qrk_pci_read_config_dword()
228 outl(value, PCI_REG_DATA); in qrk_pci_write_config_dword()
/openbmc/u-boot/arch/x86/include/asm/
H A Dpci.h14 #define PCI_REG_DATA 0xcfc macro