1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_PCI_64_H
3 #define _ASM_X86_PCI_64_H
7 #ifdef CONFIG_CALGARY_IOMMU
8 static inline void *pci_iommu(struct pci_bus
*bus
)
10 struct pci_sysdata
*sd
= bus
->sysdata
;
14 static inline void set_pci_iommu(struct pci_bus
*bus
, void *val
)
16 struct pci_sysdata
*sd
= bus
->sysdata
;
19 #endif /* CONFIG_CALGARY_IOMMU */
21 extern int (*pci_config_read
)(int seg
, int bus
, int dev
, int fn
,
22 int reg
, int len
, u32
*value
);
23 extern int (*pci_config_write
)(int seg
, int bus
, int dev
, int fn
,
24 int reg
, int len
, u32 value
);
26 #endif /* __KERNEL__ */
28 #endif /* _ASM_X86_PCI_64_H */