gart.h 717 字节
Newer Older
J
Joerg Roedel 已提交
1 2 3 4 5 6 7
#ifndef _ASM_X8664_IOMMU_H
#define _ASM_X8664_IOMMU_H 1

extern void pci_iommu_shutdown(void);
extern void no_iommu_init(void);
extern int force_iommu, no_iommu;
extern int iommu_detected;
8
#ifdef CONFIG_GART_IOMMU
J
Joerg Roedel 已提交
9 10 11
extern void gart_iommu_init(void);
extern void gart_iommu_shutdown(void);
extern void __init gart_parse_options(char *);
12
extern void gart_iommu_hole_init(void);
J
Joerg Roedel 已提交
13 14
extern int fallback_aper_order;
extern int fallback_aper_force;
15 16 17
extern int gart_iommu_aperture;
extern int gart_iommu_aperture_allowed;
extern int gart_iommu_aperture_disabled;
J
Joerg Roedel 已提交
18 19
extern int fix_aperture;
#else
20 21
#define gart_iommu_aperture 0
#define gart_iommu_aperture_allowed 0
J
Joerg Roedel 已提交
22 23 24 25 26 27 28 29

static inline void gart_iommu_shutdown(void)
{
}

#endif

#endif