Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/arch/x86/cpu/
H A Dpci.c28 *valuep = inb(PCI_REG_DATA + (offset & 3)); in pci_x86_read_config()
31 *valuep = inw(PCI_REG_DATA + (offset & 2)); in pci_x86_read_config()
34 *valuep = inl(PCI_REG_DATA); in pci_x86_read_config()
47 outb(value, PCI_REG_DATA + (offset & 3)); in pci_x86_write_config()
50 outw(value, PCI_REG_DATA + (offset & 2)); in pci_x86_write_config()
53 outl(value, PCI_REG_DATA); in pci_x86_write_config()
/OK3568_Linux_fs/u-boot/arch/x86/cpu/quark/
H A Dcar.S62 mov $PCI_REG_DATA, %dx
70 mov $PCI_REG_DATA, %dx
93 mov $PCI_REG_DATA, %dx
101 mov $PCI_REG_DATA, %dx
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/arch-quark/
H A Dquark.h213 *valuep = inl(PCI_REG_DATA); in qrk_pci_read_config_dword()
229 outl(value, PCI_REG_DATA); in qrk_pci_write_config_dword()
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/
H A Dpci.h15 #define PCI_REG_DATA 0xcfc macro