2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_PCI_64_H
|
|
|
|
#define _ASM_X86_PCI_64_H
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2007-07-21 21:23:39 +00:00
|
|
|
#ifdef CONFIG_CALGARY_IOMMU
|
2008-03-23 08:03:02 +00:00
|
|
|
static inline void *pci_iommu(struct pci_bus *bus)
|
2007-07-21 21:23:39 +00:00
|
|
|
{
|
|
|
|
struct pci_sysdata *sd = bus->sysdata;
|
|
|
|
return sd->iommu;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_pci_iommu(struct pci_bus *bus, void *val)
|
|
|
|
{
|
|
|
|
struct pci_sysdata *sd = bus->sysdata;
|
|
|
|
sd->iommu = val;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CALGARY_IOMMU */
|
|
|
|
|
2008-03-23 08:03:02 +00:00
|
|
|
extern int (*pci_config_read)(int seg, int bus, int dev, int fn,
|
|
|
|
int reg, int len, u32 *value);
|
|
|
|
extern int (*pci_config_write)(int seg, int bus, int dev, int fn,
|
|
|
|
int reg, int len, u32 value);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-03-07 23:02:50 +00:00
|
|
|
extern void dma32_reserve_bootmem(void);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_PCI_64_H */
|