blob: 0a21daed5b6251edd8136bc014d073ab734a2a0a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel AGPGART routines.
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/module.h>
6#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
Ahmed S. Darwish1eaf1222007-02-06 18:08:28 +02009#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/pagemap.h>
11#include <linux/agp_backend.h>
Borislav Petkov48a719c2010-01-22 16:01:04 +010012#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "agp.h"
Daniel Vetterff7cdd62010-04-14 00:29:51 +020014#include "intel-agp.h"
Daniel Vetter14be93d2012-06-08 15:55:40 +020015#include <drm/intel-gtt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017static int intel_fetch_size(void)
18{
19 int i;
20 u16 temp;
21 struct aper_size_info_16 *values;
22
23 pci_read_config_word(agp_bridge->dev, INTEL_APSIZE, &temp);
24 values = A_SIZE_16(agp_bridge->driver->aperture_sizes);
25
26 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
27 if (temp == values[i].size_value) {
28 agp_bridge->previous_size = agp_bridge->current_size = (void *) (values + i);
29 agp_bridge->aperture_size_idx = i;
30 return values[i].size;
31 }
32 }
33
34 return 0;
35}
36
37static int __intel_8xx_fetch_size(u8 temp)
38{
39 int i;
40 struct aper_size_info_8 *values;
41
42 values = A_SIZE_8(agp_bridge->driver->aperture_sizes);
43
44 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
45 if (temp == values[i].size_value) {
46 agp_bridge->previous_size =
47 agp_bridge->current_size = (void *) (values + i);
48 agp_bridge->aperture_size_idx = i;
49 return values[i].size;
50 }
51 }
52 return 0;
53}
54
55static int intel_8xx_fetch_size(void)
56{
57 u8 temp;
58
59 pci_read_config_byte(agp_bridge->dev, INTEL_APSIZE, &temp);
60 return __intel_8xx_fetch_size(temp);
61}
62
63static int intel_815_fetch_size(void)
64{
65 u8 temp;
66
67 /* Intel 815 chipsets have a _weird_ APSIZE register with only
68 * one non-reserved bit, so mask the others out ... */
69 pci_read_config_byte(agp_bridge->dev, INTEL_APSIZE, &temp);
70 temp &= (1 << 3);
71
72 return __intel_8xx_fetch_size(temp);
73}
74
75static void intel_tlbflush(struct agp_memory *mem)
76{
77 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2200);
78 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2280);
79}
80
81
82static void intel_8xx_tlbflush(struct agp_memory *mem)
83{
84 u32 temp;
85 pci_read_config_dword(agp_bridge->dev, INTEL_AGPCTRL, &temp);
86 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, temp & ~(1 << 7));
87 pci_read_config_dword(agp_bridge->dev, INTEL_AGPCTRL, &temp);
88 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, temp | (1 << 7));
89}
90
91
92static void intel_cleanup(void)
93{
94 u16 temp;
95 struct aper_size_info_16 *previous_size;
96
97 previous_size = A_SIZE_16(agp_bridge->previous_size);
98 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp);
99 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp & ~(1 << 9));
100 pci_write_config_word(agp_bridge->dev, INTEL_APSIZE, previous_size->size_value);
101}
102
103
104static void intel_8xx_cleanup(void)
105{
106 u16 temp;
107 struct aper_size_info_8 *previous_size;
108
109 previous_size = A_SIZE_8(agp_bridge->previous_size);
110 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp);
111 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp & ~(1 << 9));
112 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, previous_size->size_value);
113}
114
115
116static int intel_configure(void)
117{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 u16 temp2;
119 struct aper_size_info_16 *current_size;
120
121 current_size = A_SIZE_16(agp_bridge->current_size);
122
123 /* aperture size */
124 pci_write_config_word(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
125
126 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700127 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
128 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 /* attbase - aperture base */
131 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
132
133 /* agpctrl */
134 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2280);
135
136 /* paccfg/nbxcfg */
137 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp2);
138 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG,
139 (temp2 & ~(1 << 10)) | (1 << 9));
140 /* clear any possible error conditions */
141 pci_write_config_byte(agp_bridge->dev, INTEL_ERRSTS + 1, 7);
142 return 0;
143}
144
145static int intel_815_configure(void)
146{
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700147 u32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 u8 temp2;
149 struct aper_size_info_8 *current_size;
150
151 /* attbase - aperture base */
152 /* the Intel 815 chipset spec. says that bits 29-31 in the
153 * ATTBASE register are reserved -> try not to write them */
154 if (agp_bridge->gatt_bus_addr & INTEL_815_ATTBASE_MASK) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700155 dev_emerg(&agp_bridge->dev->dev, "gatt bus addr too high");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return -EINVAL;
157 }
158
159 current_size = A_SIZE_8(agp_bridge->current_size);
160
161 /* aperture size */
162 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE,
163 current_size->size_value);
164
165 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700166 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
167 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 pci_read_config_dword(agp_bridge->dev, INTEL_ATTBASE, &addr);
170 addr &= INTEL_815_ATTBASE_MASK;
171 addr |= agp_bridge->gatt_bus_addr;
172 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, addr);
173
174 /* agpctrl */
175 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
176
177 /* apcont */
178 pci_read_config_byte(agp_bridge->dev, INTEL_815_APCONT, &temp2);
179 pci_write_config_byte(agp_bridge->dev, INTEL_815_APCONT, temp2 | (1 << 1));
180
181 /* clear any possible error conditions */
182 /* Oddness : this chipset seems to have no ERRSTS register ! */
183 return 0;
184}
185
186static void intel_820_tlbflush(struct agp_memory *mem)
187{
188 return;
189}
190
191static void intel_820_cleanup(void)
192{
193 u8 temp;
194 struct aper_size_info_8 *previous_size;
195
196 previous_size = A_SIZE_8(agp_bridge->previous_size);
197 pci_read_config_byte(agp_bridge->dev, INTEL_I820_RDCR, &temp);
198 pci_write_config_byte(agp_bridge->dev, INTEL_I820_RDCR,
199 temp & ~(1 << 1));
200 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE,
201 previous_size->size_value);
202}
203
204
205static int intel_820_configure(void)
206{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 u8 temp2;
208 struct aper_size_info_8 *current_size;
209
210 current_size = A_SIZE_8(agp_bridge->current_size);
211
212 /* aperture size */
213 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
214
215 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700216 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
217 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 /* attbase - aperture base */
220 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
221
222 /* agpctrl */
223 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
224
225 /* global enable aperture access */
226 /* This flag is not accessed through MCHCFG register as in */
227 /* i850 chipset. */
228 pci_read_config_byte(agp_bridge->dev, INTEL_I820_RDCR, &temp2);
229 pci_write_config_byte(agp_bridge->dev, INTEL_I820_RDCR, temp2 | (1 << 1));
230 /* clear any possible AGP-related error conditions */
231 pci_write_config_word(agp_bridge->dev, INTEL_I820_ERRSTS, 0x001c);
232 return 0;
233}
234
235static int intel_840_configure(void)
236{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 u16 temp2;
238 struct aper_size_info_8 *current_size;
239
240 current_size = A_SIZE_8(agp_bridge->current_size);
241
242 /* aperture size */
243 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
244
245 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700246 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
247 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /* attbase - aperture base */
250 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
251
252 /* agpctrl */
253 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
254
255 /* mcgcfg */
256 pci_read_config_word(agp_bridge->dev, INTEL_I840_MCHCFG, &temp2);
257 pci_write_config_word(agp_bridge->dev, INTEL_I840_MCHCFG, temp2 | (1 << 9));
258 /* clear any possible error conditions */
259 pci_write_config_word(agp_bridge->dev, INTEL_I840_ERRSTS, 0xc000);
260 return 0;
261}
262
263static int intel_845_configure(void)
264{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 u8 temp2;
266 struct aper_size_info_8 *current_size;
267
268 current_size = A_SIZE_8(agp_bridge->current_size);
269
270 /* aperture size */
271 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
272
Matthew Garrettb0825482005-07-29 14:03:39 -0700273 if (agp_bridge->apbase_config != 0) {
274 pci_write_config_dword(agp_bridge->dev, AGP_APBASE,
275 agp_bridge->apbase_config);
276 } else {
277 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700278 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
279 AGP_APERTURE_BAR);
280 agp_bridge->apbase_config = agp_bridge->gart_bus_addr;
Matthew Garrettb0825482005-07-29 14:03:39 -0700281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /* attbase - aperture base */
284 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
285
286 /* agpctrl */
287 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
288
289 /* agpm */
290 pci_read_config_byte(agp_bridge->dev, INTEL_I845_AGPM, &temp2);
291 pci_write_config_byte(agp_bridge->dev, INTEL_I845_AGPM, temp2 | (1 << 1));
292 /* clear any possible error conditions */
293 pci_write_config_word(agp_bridge->dev, INTEL_I845_ERRSTS, 0x001c);
294 return 0;
295}
296
297static int intel_850_configure(void)
298{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 u16 temp2;
300 struct aper_size_info_8 *current_size;
301
302 current_size = A_SIZE_8(agp_bridge->current_size);
303
304 /* aperture size */
305 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
306
307 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700308 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
309 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* attbase - aperture base */
312 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
313
314 /* agpctrl */
315 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
316
317 /* mcgcfg */
318 pci_read_config_word(agp_bridge->dev, INTEL_I850_MCHCFG, &temp2);
319 pci_write_config_word(agp_bridge->dev, INTEL_I850_MCHCFG, temp2 | (1 << 9));
320 /* clear any possible AGP-related error conditions */
321 pci_write_config_word(agp_bridge->dev, INTEL_I850_ERRSTS, 0x001c);
322 return 0;
323}
324
325static int intel_860_configure(void)
326{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 u16 temp2;
328 struct aper_size_info_8 *current_size;
329
330 current_size = A_SIZE_8(agp_bridge->current_size);
331
332 /* aperture size */
333 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
334
335 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700336 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
337 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* attbase - aperture base */
340 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
341
342 /* agpctrl */
343 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
344
345 /* mcgcfg */
346 pci_read_config_word(agp_bridge->dev, INTEL_I860_MCHCFG, &temp2);
347 pci_write_config_word(agp_bridge->dev, INTEL_I860_MCHCFG, temp2 | (1 << 9));
348 /* clear any possible AGP-related error conditions */
349 pci_write_config_word(agp_bridge->dev, INTEL_I860_ERRSTS, 0xf700);
350 return 0;
351}
352
353static int intel_830mp_configure(void)
354{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 u16 temp2;
356 struct aper_size_info_8 *current_size;
357
358 current_size = A_SIZE_8(agp_bridge->current_size);
359
360 /* aperture size */
361 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
362
363 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700364 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
365 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /* attbase - aperture base */
368 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
369
370 /* agpctrl */
371 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
372
373 /* gmch */
374 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp2);
375 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp2 | (1 << 9));
376 /* clear any possible AGP-related error conditions */
377 pci_write_config_word(agp_bridge->dev, INTEL_I830_ERRSTS, 0x1c);
378 return 0;
379}
380
381static int intel_7505_configure(void)
382{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 u16 temp2;
384 struct aper_size_info_8 *current_size;
385
386 current_size = A_SIZE_8(agp_bridge->current_size);
387
388 /* aperture size */
389 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
390
391 /* address to map to */
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700392 agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
393 AGP_APERTURE_BAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* attbase - aperture base */
396 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
397
398 /* agpctrl */
399 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
400
401 /* mchcfg */
402 pci_read_config_word(agp_bridge->dev, INTEL_I7505_MCHCFG, &temp2);
403 pci_write_config_word(agp_bridge->dev, INTEL_I7505_MCHCFG, temp2 | (1 << 9));
404
405 return 0;
406}
407
408/* Setup function */
Dave Jonese5524f32007-02-22 18:41:28 -0500409static const struct gatt_mask intel_generic_masks[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 {.mask = 0x00000017, .type = 0}
412};
413
Dave Jonese5524f32007-02-22 18:41:28 -0500414static const struct aper_size_info_8 intel_815_sizes[2] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 {64, 16384, 4, 0},
417 {32, 8192, 3, 8},
418};
419
Dave Jonese5524f32007-02-22 18:41:28 -0500420static const struct aper_size_info_8 intel_8xx_sizes[7] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 {256, 65536, 6, 0},
423 {128, 32768, 5, 32},
424 {64, 16384, 4, 48},
425 {32, 8192, 3, 56},
426 {16, 4096, 2, 60},
427 {8, 2048, 1, 62},
428 {4, 1024, 0, 63}
429};
430
Dave Jonese5524f32007-02-22 18:41:28 -0500431static const struct aper_size_info_16 intel_generic_sizes[7] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 {256, 65536, 6, 0},
434 {128, 32768, 5, 32},
435 {64, 16384, 4, 48},
436 {32, 8192, 3, 56},
437 {16, 4096, 2, 60},
438 {8, 2048, 1, 62},
439 {4, 1024, 0, 63}
440};
441
Dave Jonese5524f32007-02-22 18:41:28 -0500442static const struct aper_size_info_8 intel_830mp_sizes[4] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 {256, 65536, 6, 0},
445 {128, 32768, 5, 32},
446 {64, 16384, 4, 48},
447 {32, 8192, 3, 56}
448};
449
Dave Jonese5524f32007-02-22 18:41:28 -0500450static const struct agp_bridge_driver intel_generic_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 .owner = THIS_MODULE,
452 .aperture_sizes = intel_generic_sizes,
453 .size_type = U16_APER_SIZE,
454 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200455 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 .configure = intel_configure,
457 .fetch_size = intel_fetch_size,
458 .cleanup = intel_cleanup,
459 .tlb_flush = intel_tlbflush,
460 .mask_memory = agp_generic_mask_memory,
461 .masks = intel_generic_masks,
462 .agp_enable = agp_generic_enable,
463 .cache_flush = global_cache_flush,
464 .create_gatt_table = agp_generic_create_gatt_table,
465 .free_gatt_table = agp_generic_free_gatt_table,
466 .insert_memory = agp_generic_insert_memory,
467 .remove_memory = agp_generic_remove_memory,
468 .alloc_by_type = agp_generic_alloc_by_type,
469 .free_by_type = agp_generic_free_by_type,
470 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800471 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800473 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100474 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475};
476
Dave Jonese5524f32007-02-22 18:41:28 -0500477static const struct agp_bridge_driver intel_815_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 .owner = THIS_MODULE,
479 .aperture_sizes = intel_815_sizes,
480 .size_type = U8_APER_SIZE,
481 .num_aperture_sizes = 2,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200482 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 .configure = intel_815_configure,
484 .fetch_size = intel_815_fetch_size,
485 .cleanup = intel_8xx_cleanup,
486 .tlb_flush = intel_8xx_tlbflush,
487 .mask_memory = agp_generic_mask_memory,
488 .masks = intel_generic_masks,
489 .agp_enable = agp_generic_enable,
490 .cache_flush = global_cache_flush,
491 .create_gatt_table = agp_generic_create_gatt_table,
492 .free_gatt_table = agp_generic_free_gatt_table,
493 .insert_memory = agp_generic_insert_memory,
494 .remove_memory = agp_generic_remove_memory,
495 .alloc_by_type = agp_generic_alloc_by_type,
496 .free_by_type = agp_generic_free_by_type,
497 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800498 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800500 .agp_destroy_pages = agp_generic_destroy_pages,
Dave Airlie62c96b92008-06-19 14:27:53 +1000501 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502};
503
Dave Jonese5524f32007-02-22 18:41:28 -0500504static const struct agp_bridge_driver intel_820_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 .owner = THIS_MODULE,
506 .aperture_sizes = intel_8xx_sizes,
507 .size_type = U8_APER_SIZE,
508 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200509 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 .configure = intel_820_configure,
511 .fetch_size = intel_8xx_fetch_size,
512 .cleanup = intel_820_cleanup,
513 .tlb_flush = intel_820_tlbflush,
514 .mask_memory = agp_generic_mask_memory,
515 .masks = intel_generic_masks,
516 .agp_enable = agp_generic_enable,
517 .cache_flush = global_cache_flush,
518 .create_gatt_table = agp_generic_create_gatt_table,
519 .free_gatt_table = agp_generic_free_gatt_table,
520 .insert_memory = agp_generic_insert_memory,
521 .remove_memory = agp_generic_remove_memory,
522 .alloc_by_type = agp_generic_alloc_by_type,
523 .free_by_type = agp_generic_free_by_type,
524 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800525 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800527 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100528 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529};
530
Dave Jonese5524f32007-02-22 18:41:28 -0500531static const struct agp_bridge_driver intel_830mp_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 .owner = THIS_MODULE,
533 .aperture_sizes = intel_830mp_sizes,
534 .size_type = U8_APER_SIZE,
535 .num_aperture_sizes = 4,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200536 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 .configure = intel_830mp_configure,
538 .fetch_size = intel_8xx_fetch_size,
539 .cleanup = intel_8xx_cleanup,
540 .tlb_flush = intel_8xx_tlbflush,
541 .mask_memory = agp_generic_mask_memory,
542 .masks = intel_generic_masks,
543 .agp_enable = agp_generic_enable,
544 .cache_flush = global_cache_flush,
545 .create_gatt_table = agp_generic_create_gatt_table,
546 .free_gatt_table = agp_generic_free_gatt_table,
547 .insert_memory = agp_generic_insert_memory,
548 .remove_memory = agp_generic_remove_memory,
549 .alloc_by_type = agp_generic_alloc_by_type,
550 .free_by_type = agp_generic_free_by_type,
551 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800552 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800554 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100555 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556};
557
Dave Jonese5524f32007-02-22 18:41:28 -0500558static const struct agp_bridge_driver intel_840_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 .owner = THIS_MODULE,
560 .aperture_sizes = intel_8xx_sizes,
561 .size_type = U8_APER_SIZE,
562 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200563 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .configure = intel_840_configure,
565 .fetch_size = intel_8xx_fetch_size,
566 .cleanup = intel_8xx_cleanup,
567 .tlb_flush = intel_8xx_tlbflush,
568 .mask_memory = agp_generic_mask_memory,
569 .masks = intel_generic_masks,
570 .agp_enable = agp_generic_enable,
571 .cache_flush = global_cache_flush,
572 .create_gatt_table = agp_generic_create_gatt_table,
573 .free_gatt_table = agp_generic_free_gatt_table,
574 .insert_memory = agp_generic_insert_memory,
575 .remove_memory = agp_generic_remove_memory,
576 .alloc_by_type = agp_generic_alloc_by_type,
577 .free_by_type = agp_generic_free_by_type,
578 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800579 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800581 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100582 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583};
584
Dave Jonese5524f32007-02-22 18:41:28 -0500585static const struct agp_bridge_driver intel_845_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 .owner = THIS_MODULE,
587 .aperture_sizes = intel_8xx_sizes,
588 .size_type = U8_APER_SIZE,
589 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200590 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 .configure = intel_845_configure,
592 .fetch_size = intel_8xx_fetch_size,
593 .cleanup = intel_8xx_cleanup,
594 .tlb_flush = intel_8xx_tlbflush,
595 .mask_memory = agp_generic_mask_memory,
596 .masks = intel_generic_masks,
597 .agp_enable = agp_generic_enable,
598 .cache_flush = global_cache_flush,
599 .create_gatt_table = agp_generic_create_gatt_table,
600 .free_gatt_table = agp_generic_free_gatt_table,
601 .insert_memory = agp_generic_insert_memory,
602 .remove_memory = agp_generic_remove_memory,
603 .alloc_by_type = agp_generic_alloc_by_type,
604 .free_by_type = agp_generic_free_by_type,
605 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800606 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800608 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100609 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610};
611
Dave Jonese5524f32007-02-22 18:41:28 -0500612static const struct agp_bridge_driver intel_850_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 .owner = THIS_MODULE,
614 .aperture_sizes = intel_8xx_sizes,
615 .size_type = U8_APER_SIZE,
616 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200617 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 .configure = intel_850_configure,
619 .fetch_size = intel_8xx_fetch_size,
620 .cleanup = intel_8xx_cleanup,
621 .tlb_flush = intel_8xx_tlbflush,
622 .mask_memory = agp_generic_mask_memory,
623 .masks = intel_generic_masks,
624 .agp_enable = agp_generic_enable,
625 .cache_flush = global_cache_flush,
626 .create_gatt_table = agp_generic_create_gatt_table,
627 .free_gatt_table = agp_generic_free_gatt_table,
628 .insert_memory = agp_generic_insert_memory,
629 .remove_memory = agp_generic_remove_memory,
630 .alloc_by_type = agp_generic_alloc_by_type,
631 .free_by_type = agp_generic_free_by_type,
632 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800633 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800635 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100636 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637};
638
Dave Jonese5524f32007-02-22 18:41:28 -0500639static const struct agp_bridge_driver intel_860_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 .owner = THIS_MODULE,
641 .aperture_sizes = intel_8xx_sizes,
642 .size_type = U8_APER_SIZE,
643 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200644 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 .configure = intel_860_configure,
646 .fetch_size = intel_8xx_fetch_size,
647 .cleanup = intel_8xx_cleanup,
648 .tlb_flush = intel_8xx_tlbflush,
649 .mask_memory = agp_generic_mask_memory,
650 .masks = intel_generic_masks,
651 .agp_enable = agp_generic_enable,
652 .cache_flush = global_cache_flush,
653 .create_gatt_table = agp_generic_create_gatt_table,
654 .free_gatt_table = agp_generic_free_gatt_table,
655 .insert_memory = agp_generic_insert_memory,
656 .remove_memory = agp_generic_remove_memory,
657 .alloc_by_type = agp_generic_alloc_by_type,
658 .free_by_type = agp_generic_free_by_type,
659 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800660 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800662 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100663 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664};
665
Dave Jonese5524f32007-02-22 18:41:28 -0500666static const struct agp_bridge_driver intel_7505_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .owner = THIS_MODULE,
668 .aperture_sizes = intel_8xx_sizes,
669 .size_type = U8_APER_SIZE,
670 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200671 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 .configure = intel_7505_configure,
673 .fetch_size = intel_8xx_fetch_size,
674 .cleanup = intel_8xx_cleanup,
675 .tlb_flush = intel_8xx_tlbflush,
676 .mask_memory = agp_generic_mask_memory,
677 .masks = intel_generic_masks,
678 .agp_enable = agp_generic_enable,
679 .cache_flush = global_cache_flush,
680 .create_gatt_table = agp_generic_create_gatt_table,
681 .free_gatt_table = agp_generic_free_gatt_table,
682 .insert_memory = agp_generic_insert_memory,
683 .remove_memory = agp_generic_remove_memory,
684 .alloc_by_type = agp_generic_alloc_by_type,
685 .free_by_type = agp_generic_free_by_type,
686 .agp_alloc_page = agp_generic_alloc_page,
Shaohua Li37acee12008-08-21 10:46:11 +0800687 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 .agp_destroy_page = agp_generic_destroy_page,
Shaohua Libd079282008-08-21 10:46:17 +0800689 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100690 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691};
692
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800693/* Table to describe Intel GMCH and AGP/PCIE GART drivers. At least one of
694 * driver and gmch_driver must be non-null, and find_gmch will determine
695 * which one should be used if a gmch_chip_id is present.
696 */
Daniel Vetter02c026c2010-08-24 19:39:48 +0200697static const struct intel_agp_driver_description {
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800698 unsigned int chip_id;
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800699 char *name;
700 const struct agp_bridge_driver *driver;
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800701} intel_agp_chipsets[] = {
Daniel Vetter02c026c2010-08-24 19:39:48 +0200702 { PCI_DEVICE_ID_INTEL_82443LX_0, "440LX", &intel_generic_driver },
703 { PCI_DEVICE_ID_INTEL_82443BX_0, "440BX", &intel_generic_driver },
704 { PCI_DEVICE_ID_INTEL_82443GX_0, "440GX", &intel_generic_driver },
705 { PCI_DEVICE_ID_INTEL_82815_MC, "i815", &intel_815_driver },
706 { PCI_DEVICE_ID_INTEL_82820_HB, "i820", &intel_820_driver },
707 { PCI_DEVICE_ID_INTEL_82820_UP_HB, "i820", &intel_820_driver },
708 { PCI_DEVICE_ID_INTEL_82830_HB, "830M", &intel_830mp_driver },
709 { PCI_DEVICE_ID_INTEL_82840_HB, "i840", &intel_840_driver },
Oswald Buddenhagen53371ed2010-06-19 23:08:37 +0200710 { PCI_DEVICE_ID_INTEL_82845_HB, "i845", &intel_845_driver },
711 { PCI_DEVICE_ID_INTEL_82845G_HB, "845G", &intel_845_driver },
Daniel Vetter02c026c2010-08-24 19:39:48 +0200712 { PCI_DEVICE_ID_INTEL_82850_HB, "i850", &intel_850_driver },
713 { PCI_DEVICE_ID_INTEL_82854_HB, "854", &intel_845_driver },
714 { PCI_DEVICE_ID_INTEL_82855PM_HB, "855PM", &intel_845_driver },
715 { PCI_DEVICE_ID_INTEL_82855GM_HB, "855GM", &intel_845_driver },
716 { PCI_DEVICE_ID_INTEL_82860_HB, "i860", &intel_860_driver },
717 { PCI_DEVICE_ID_INTEL_82865_HB, "865", &intel_845_driver },
718 { PCI_DEVICE_ID_INTEL_82875_HB, "i875", &intel_845_driver },
719 { PCI_DEVICE_ID_INTEL_7505_0, "E7505", &intel_7505_driver },
720 { PCI_DEVICE_ID_INTEL_7205_0, "E7205", &intel_7505_driver },
721 { 0, NULL, NULL }
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800722};
723
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800724static int agp_intel_probe(struct pci_dev *pdev,
725 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct agp_bridge_data *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 u8 cap_ptr = 0;
729 struct resource *r;
Zhenyu Wang1f7a6e32010-02-23 14:05:24 +0800730 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
733
734 bridge = agp_alloc_bridge();
735 if (!bridge)
736 return -ENOMEM;
737
Daniel Vetter22dd82a2010-04-14 00:29:55 +0200738 bridge->capndx = cap_ptr;
739
Daniel Vetter14be93d2012-06-08 15:55:40 +0200740 if (intel_gmch_probe(pdev, NULL, bridge))
Daniel Vetter22dd82a2010-04-14 00:29:55 +0200741 goto found_gmch;
742
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800743 for (i = 0; intel_agp_chipsets[i].name != NULL; i++) {
744 /* In case that multiple models of gfx chip may
745 stand on same host bridge type, this can be
746 sure we detect the right IGD. */
Wang Zhenyu88889852007-06-14 10:01:04 +0800747 if (pdev->device == intel_agp_chipsets[i].chip_id) {
Daniel Vetter22dd82a2010-04-14 00:29:55 +0200748 bridge->driver = intel_agp_chipsets[i].driver;
749 break;
Wang Zhenyu88889852007-06-14 10:01:04 +0800750 }
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800751 }
752
Daniel Vetter02c026c2010-08-24 19:39:48 +0200753 if (!bridge->driver) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (cap_ptr)
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700755 dev_warn(&pdev->dev, "unsupported Intel chipset [%04x/%04x]\n",
756 pdev->vendor, pdev->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 agp_put_bridge(bridge);
758 return -ENODEV;
Wang Zhenyu9614ece2007-05-30 09:45:58 +0800759 }
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 bridge->dev = pdev;
Daniel Vetter22dd82a2010-04-14 00:29:55 +0200762 bridge->dev_private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700764 dev_info(&pdev->dev, "Intel %s Chipset\n", intel_agp_chipsets[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /*
767 * The following fixes the case where the BIOS has "forgotten" to
768 * provide an address range for the GART.
769 * 20030610 - hamish@zot.org
Stephen Kitta70b95c2011-01-31 14:25:43 -0800770 * This happens before pci_enable_device() intentionally;
771 * calling pci_enable_device() before assigning the resource
772 * will result in the GART being disabled on machines with such
773 * BIOSs (the GART ends up with a BAR starting at 0, which
774 * conflicts a lot of other devices).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 */
776 r = &pdev->resource[0];
777 if (!r->start && r->end) {
Dave Jones6a92a4e2006-02-28 00:54:25 -0500778 if (pci_assign_resource(pdev, 0)) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700779 dev_err(&pdev->dev, "can't assign resource 0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 agp_put_bridge(bridge);
781 return -ENODEV;
782 }
783 }
784
Stephen Kitta70b95c2011-01-31 14:25:43 -0800785 /*
786 * If the device has not been properly setup, the following will catch
787 * the problem and should stop the system from crashing.
788 * 20030610 - hamish@zot.org
789 */
790 if (pci_enable_device(pdev)) {
791 dev_err(&pdev->dev, "can't enable PCI device\n");
792 agp_put_bridge(bridge);
793 return -ENODEV;
794 }
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /* Fill in the mode register */
797 if (cap_ptr) {
798 pci_read_config_dword(pdev,
799 bridge->capndx+PCI_AGP_STATUS,
800 &bridge->mode);
801 }
802
Daniel Vetter22dd82a2010-04-14 00:29:55 +0200803found_gmch:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 pci_set_drvdata(pdev, bridge);
Zhenyu Wang1f7a6e32010-02-23 14:05:24 +0800805 err = agp_add_bridge(bridge);
Zhenyu Wang1f7a6e32010-02-23 14:05:24 +0800806 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Bill Pemberton39af33f2012-11-19 13:26:26 -0500809static void agp_intel_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
812
813 agp_remove_bridge(bridge);
814
Daniel Vetter14be93d2012-06-08 15:55:40 +0200815 intel_gmch_remove();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 agp_put_bridge(bridge);
818}
819
Alexey Dobriyan85be7d62006-08-12 02:02:02 +0400820#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821static int agp_intel_resume(struct pci_dev *pdev)
822{
823 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
824
Daniel Vettere5a04d52010-04-14 00:29:53 +0200825 bridge->driver->configure();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 return 0;
828}
Alexey Dobriyan85be7d62006-08-12 02:02:02 +0400829#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831static struct pci_device_id agp_intel_pci_table[] = {
832#define ID(x) \
833 { \
834 .class = (PCI_CLASS_BRIDGE_HOST << 8), \
835 .class_mask = ~0, \
836 .vendor = PCI_VENDOR_ID_INTEL, \
837 .device = x, \
838 .subvendor = PCI_ANY_ID, \
839 .subdevice = PCI_ANY_ID, \
840 }
Ben Widawsky6b2d5902012-01-04 14:04:33 -0800841 ID(PCI_DEVICE_ID_INTEL_82441), /* for HAS2 support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 ID(PCI_DEVICE_ID_INTEL_82443LX_0),
843 ID(PCI_DEVICE_ID_INTEL_82443BX_0),
844 ID(PCI_DEVICE_ID_INTEL_82443GX_0),
845 ID(PCI_DEVICE_ID_INTEL_82810_MC1),
846 ID(PCI_DEVICE_ID_INTEL_82810_MC3),
847 ID(PCI_DEVICE_ID_INTEL_82810E_MC),
848 ID(PCI_DEVICE_ID_INTEL_82815_MC),
849 ID(PCI_DEVICE_ID_INTEL_82820_HB),
850 ID(PCI_DEVICE_ID_INTEL_82820_UP_HB),
851 ID(PCI_DEVICE_ID_INTEL_82830_HB),
852 ID(PCI_DEVICE_ID_INTEL_82840_HB),
853 ID(PCI_DEVICE_ID_INTEL_82845_HB),
854 ID(PCI_DEVICE_ID_INTEL_82845G_HB),
855 ID(PCI_DEVICE_ID_INTEL_82850_HB),
Stefan Husemann347486b2009-04-13 14:40:10 -0700856 ID(PCI_DEVICE_ID_INTEL_82854_HB),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 ID(PCI_DEVICE_ID_INTEL_82855PM_HB),
858 ID(PCI_DEVICE_ID_INTEL_82855GM_HB),
859 ID(PCI_DEVICE_ID_INTEL_82860_HB),
860 ID(PCI_DEVICE_ID_INTEL_82865_HB),
861 ID(PCI_DEVICE_ID_INTEL_82875_HB),
862 ID(PCI_DEVICE_ID_INTEL_7505_0),
863 ID(PCI_DEVICE_ID_INTEL_7205_0),
Carlos Martíne914a362008-01-24 10:34:09 +1000864 ID(PCI_DEVICE_ID_INTEL_E7221_HB),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 ID(PCI_DEVICE_ID_INTEL_82915G_HB),
866 ID(PCI_DEVICE_ID_INTEL_82915GM_HB),
Alan Hourihaned0de98f2005-05-31 19:50:49 +0100867 ID(PCI_DEVICE_ID_INTEL_82945G_HB),
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +0000868 ID(PCI_DEVICE_ID_INTEL_82945GM_HB),
Zhenyu Wangdde47872007-07-26 09:18:09 +0800869 ID(PCI_DEVICE_ID_INTEL_82945GME_HB),
Adam Jackson107f5172009-12-03 17:14:41 -0500870 ID(PCI_DEVICE_ID_INTEL_PINEVIEW_M_HB),
871 ID(PCI_DEVICE_ID_INTEL_PINEVIEW_HB),
Eric Anholt65c25aa2006-09-06 11:57:18 -0400872 ID(PCI_DEVICE_ID_INTEL_82946GZ_HB),
Zhenyu Wang9119f852008-01-23 15:49:26 +1000873 ID(PCI_DEVICE_ID_INTEL_82G35_HB),
Eric Anholt65c25aa2006-09-06 11:57:18 -0400874 ID(PCI_DEVICE_ID_INTEL_82965Q_HB),
875 ID(PCI_DEVICE_ID_INTEL_82965G_HB),
Wang Zhenyu4598af32007-04-09 08:51:36 +0800876 ID(PCI_DEVICE_ID_INTEL_82965GM_HB),
Zhenyu Wangdde47872007-07-26 09:18:09 +0800877 ID(PCI_DEVICE_ID_INTEL_82965GME_HB),
Wang Zhenyu874808c62007-06-06 11:16:25 +0800878 ID(PCI_DEVICE_ID_INTEL_G33_HB),
879 ID(PCI_DEVICE_ID_INTEL_Q35_HB),
880 ID(PCI_DEVICE_ID_INTEL_Q33_HB),
Zhenyu Wang99d32bd2008-07-30 12:26:50 -0700881 ID(PCI_DEVICE_ID_INTEL_GM45_HB),
Adam Jackson107f5172009-12-03 17:14:41 -0500882 ID(PCI_DEVICE_ID_INTEL_EAGLELAKE_HB),
Zhenyu Wang25ce77a2008-06-19 14:17:58 +1000883 ID(PCI_DEVICE_ID_INTEL_Q45_HB),
884 ID(PCI_DEVICE_ID_INTEL_G45_HB),
Zhenyu Wanga50ccc62008-11-17 14:39:00 +0800885 ID(PCI_DEVICE_ID_INTEL_G41_HB),
Fabian Henze38d8a952009-09-08 00:59:58 +0800886 ID(PCI_DEVICE_ID_INTEL_B43_HB),
Chris Wilson3dde04b2010-10-14 16:30:41 +0100887 ID(PCI_DEVICE_ID_INTEL_B43_1_HB),
Adam Jackson107f5172009-12-03 17:14:41 -0500888 ID(PCI_DEVICE_ID_INTEL_IRONLAKE_D_HB),
Eugeni Dodonov67384fe2012-06-06 11:59:06 -0300889 ID(PCI_DEVICE_ID_INTEL_IRONLAKE_D2_HB),
Adam Jackson107f5172009-12-03 17:14:41 -0500890 ID(PCI_DEVICE_ID_INTEL_IRONLAKE_M_HB),
891 ID(PCI_DEVICE_ID_INTEL_IRONLAKE_MA_HB),
Dave Airlie3ff99162009-12-08 14:03:47 +1000892 ID(PCI_DEVICE_ID_INTEL_IRONLAKE_MC2_HB),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 { }
894};
895
896MODULE_DEVICE_TABLE(pci, agp_intel_pci_table);
897
898static struct pci_driver agp_intel_pci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 .name = "agpgart-intel",
900 .id_table = agp_intel_pci_table,
901 .probe = agp_intel_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800902 .remove = agp_intel_remove,
Alexey Dobriyan85be7d62006-08-12 02:02:02 +0400903#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 .resume = agp_intel_resume,
Alexey Dobriyan85be7d62006-08-12 02:02:02 +0400905#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906};
907
908static int __init agp_intel_init(void)
909{
910 if (agp_off)
911 return -EINVAL;
912 return pci_register_driver(&agp_intel_pci_driver);
913}
914
915static void __exit agp_intel_cleanup(void)
916{
917 pci_unregister_driver(&agp_intel_pci_driver);
918}
919
920module_init(agp_intel_init);
921module_exit(agp_intel_cleanup);
922
Dave Jonesbd8136d2014-12-19 11:23:50 -0500923MODULE_AUTHOR("Dave Jones, Various @Intel");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924MODULE_LICENSE("GPL and additional rights");