License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / arch / x86 / include / asm / pci_64.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1965aae3
PA
2#ifndef _ASM_X86_PCI_64_H
3#define _ASM_X86_PCI_64_H
1da177e4 4
1da177e4
LT
5#ifdef __KERNEL__
6
08f1c192 7#ifdef CONFIG_CALGARY_IOMMU
3cb47d79 8static inline void *pci_iommu(struct pci_bus *bus)
08f1c192
MBY
9{
10 struct pci_sysdata *sd = bus->sysdata;
11 return sd->iommu;
12}
13
14static inline void set_pci_iommu(struct pci_bus *bus, void *val)
15{
16 struct pci_sysdata *sd = bus->sysdata;
17 sd->iommu = val;
18}
19#endif /* CONFIG_CALGARY_IOMMU */
20
3cb47d79
JP
21extern int (*pci_config_read)(int seg, int bus, int dev, int fn,
22 int reg, int len, u32 *value);
23extern int (*pci_config_write)(int seg, int bus, int dev, int fn,
24 int reg, int len, u32 value);
1da177e4 25
1da177e4
LT
26#endif /* __KERNEL__ */
27
1965aae3 28#endif /* _ASM_X86_PCI_64_H */