aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/gart.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/gart.h')
-rw-r--r--arch/x86/include/asm/gart.h106
1 files changed, 106 insertions, 0 deletions
diff --git a/arch/x86/include/asm/gart.h b/arch/x86/include/asm/gart.h
new file mode 100644
index 000000000000..6cfdafa409d8
--- /dev/null
+++ b/arch/x86/include/asm/gart.h
@@ -0,0 +1,106 @@
1#ifndef _ASM_X86_GART_H
2#define _ASM_X86_GART_H
3
4#include <asm/e820.h>
5
6extern void set_up_gart_resume(u32, u32);
7
8extern int fallback_aper_order;
9extern int fallback_aper_force;
10extern int fix_aperture;
11
12/* PTE bits. */
13#define GPTE_VALID 1
14#define GPTE_COHERENT 2
15
16/* Aperture control register bits. */
17#define GARTEN (1<<0)
18#define DISGARTCPU (1<<4)
19#define DISGARTIO (1<<5)
20
21/* GART cache control register bits. */
22#define INVGART (1<<0)
23#define GARTPTEERR (1<<1)
24
25/* K8 On-cpu GART registers */
26#define AMD64_GARTAPERTURECTL 0x90
27#define AMD64_GARTAPERTUREBASE 0x94
28#define AMD64_GARTTABLEBASE 0x98
29#define AMD64_GARTCACHECTL 0x9c
30#define AMD64_GARTEN (1<<0)
31
32#ifdef CONFIG_GART_IOMMU
33extern int gart_iommu_aperture;
34extern int gart_iommu_aperture_allowed;
35extern int gart_iommu_aperture_disabled;
36
37extern void early_gart_iommu_check(void);
38extern void gart_iommu_init(void);
39extern void gart_iommu_shutdown(void);
40extern void __init gart_parse_options(char *);
41extern void gart_iommu_hole_init(void);
42
43#else
44#define gart_iommu_aperture 0
45#define gart_iommu_aperture_allowed 0
46#define gart_iommu_aperture_disabled 1
47
48static inline void early_gart_iommu_check(void)
49{
50}
51static inline void gart_iommu_init(void)
52{
53}
54static inline void gart_iommu_shutdown(void)
55{
56}
57static inline void gart_parse_options(char *options)
58{
59}
60static inline void gart_iommu_hole_init(void)
61{
62}
63#endif
64
65extern int agp_amd64_init(void);
66
67static inline void enable_gart_translation(struct pci_dev *dev, u64 addr)
68{
69 u32 tmp, ctl;
70
71 /* address of the mappings table */
72 addr >>= 12;
73 tmp = (u32) addr<<4;
74 tmp &= ~0xf;
75 pci_write_config_dword(dev, AMD64_GARTTABLEBASE, tmp);
76
77 /* Enable GART translation for this hammer. */
78 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &ctl);
79 ctl |= GARTEN;
80 ctl &= ~(DISGARTCPU | DISGARTIO);
81 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, ctl);
82}
83
84static inline int aperture_valid(u64 aper_base, u32 aper_size, u32 min_size)
85{
86 if (!aper_base)
87 return 0;
88
89 if (aper_base + aper_size > 0x100000000ULL) {
90 printk(KERN_INFO "Aperture beyond 4GB. Ignoring.\n");
91 return 0;
92 }
93 if (e820_any_mapped(aper_base, aper_base + aper_size, E820_RAM)) {
94 printk(KERN_INFO "Aperture pointing to e820 RAM. Ignoring.\n");
95 return 0;
96 }
97 if (aper_size < min_size) {
98 printk(KERN_INFO "Aperture too small (%d MB) than (%d MB)\n",
99 aper_size>>20, min_size>>20);
100 return 0;
101 }
102
103 return 1;
104}
105
106#endif /* _ASM_X86_GART_H */