This one is a very accessible intro to err.. nearly everything. And I had some
[dragonfly.git] / sys / dev / agp / agp_i810.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 2000 Doug Rabson
3 * Copyright (c) 2000 Ruslan Ermilov
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: src/sys/dev/agp/agp_i810.c,v 1.43 2007/11/12 21:51:36 jhb Exp $
28 * $DragonFly: src/sys/dev/agp/agp_i810.c,v 1.16 2008/01/07 01:34:58 corecode Exp $
29 */
30
31/*
32 * Fixes for 830/845G support: David Dawes <dawes@xfree86.org>
33 * 852GM/855GM/865G support added by David Dawes <dawes@xfree86.org>
34 */
35
36#include "opt_bus.h"
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/malloc.h>
41#include <sys/kernel.h>
42#include <sys/bus.h>
43#include <sys/lock.h>
44#include <sys/rman.h>
45
46#include <bus/pci/pcivar.h>
47#include <bus/pci/pcireg.h>
48#include "agppriv.h"
49#include "agpreg.h"
50
51#include <vm/vm.h>
52#include <vm/vm_object.h>
53#include <vm/vm_page.h>
54#include <vm/vm_pageout.h>
55#include <vm/pmap.h>
56
57#include <machine/md_var.h>
58
59#define bus_read_1(r, o) \
60 bus_space_read_1((r)->r_bustag, (r)->r_bushandle, (o))
61#define bus_read_4(r, o) \
62 bus_space_read_4((r)->r_bustag, (r)->r_bushandle, (o))
63#define bus_write_4(r, o, v) \
64 bus_space_write_4((r)->r_bustag, (r)->r_bushandle, (o), (v))
65
66MALLOC_DECLARE(M_AGP);
67
68enum {
69 CHIP_I810, /* i810/i815 */
70 CHIP_I830, /* 830M/845G */
71 CHIP_I855, /* 852GM/855GM/865G */
72 CHIP_I915, /* 915G/915GM */
73 CHIP_I965, /* G965 */
74 CHIP_G33, /* G33/Q33/Q35 */
75};
76
77/* The i810 through i855 have the registers at BAR 1, and the GATT gets
78 * allocated by us. The i915 has registers in BAR 0 and the GATT is at the
79 * start of the stolen memory, and should only be accessed by the OS through
80 * BAR 3. The G965 has registers and GATT in the same BAR (0) -- first 512KB
81 * is registers, second 512KB is GATT.
82 */
83static struct resource_spec agp_i810_res_spec[] = {
84 { SYS_RES_MEMORY, AGP_I810_MMADR, RF_ACTIVE | RF_SHAREABLE },
85 { -1, 0 }
86};
87
88static struct resource_spec agp_i915_res_spec[] = {
89 { SYS_RES_MEMORY, AGP_I915_MMADR, RF_ACTIVE | RF_SHAREABLE },
90 { SYS_RES_MEMORY, AGP_I915_GTTADR, RF_ACTIVE | RF_SHAREABLE },
91 { -1, 0 }
92};
93
94static struct resource_spec agp_i965_res_spec[] = {
95 { SYS_RES_MEMORY, AGP_I965_GTTMMADR, RF_ACTIVE | RF_SHAREABLE },
96 { -1, 0 }
97};
98
99struct agp_i810_softc {
100 struct agp_softc agp;
101 u_int32_t initial_aperture; /* aperture size at startup */
102 struct agp_gatt *gatt;
103 int chiptype; /* i810-like or i830 */
104 u_int32_t dcache_size; /* i810 only */
105 u_int32_t stolen; /* number of i830/845 gtt entries for stolen memory */
106 device_t bdev; /* bridge device */
107
108 void *argb_cursor; /* contigmalloc area for ARGB cursor */
109
110 struct resource_spec * sc_res_spec;
111 struct resource *sc_res[2];
112};
113
114/* For adding new devices, devid is the id of the graphics controller
115 * (pci:0:2:0, for example). The placeholder (usually at pci:0:2:1) for the
116 * second head should never be added. The bridge_offset is the offset to
117 * subtract from devid to get the id of the hostb that the device is on.
118 */
119static const struct agp_i810_match {
120 int devid;
121 int chiptype;
122 int bridge_offset;
123 char *name;
124} agp_i810_matches[] = {
125 {0x71218086, CHIP_I810, 0x00010000,
126 "Intel 82810 (i810 GMCH) SVGA controller"},
127 {0x71238086, CHIP_I810, 0x00010000,
128 "Intel 82810-DC100 (i810-DC100 GMCH) SVGA controller"},
129 {0x71258086, CHIP_I810, 0x00010000,
130 "Intel 82810E (i810E GMCH) SVGA controller"},
131 {0x11328086, CHIP_I810, 0x00020000,
132 "Intel 82815 (i815 GMCH) SVGA controller"},
133 {0x35778086, CHIP_I830, 0x00020000,
134 "Intel 82830M (830M GMCH) SVGA controller"},
135 {0x25628086, CHIP_I830, 0x00020000,
136 "Intel 82845M (845M GMCH) SVGA controller"},
137 {0x35828086, CHIP_I855, 0x00020000,
138 "Intel 82852/5"},
139 {0x25728086, CHIP_I855, 0x00020000,
140 "Intel 82865G (865G GMCH) SVGA controller"},
141 {0x25828086, CHIP_I915, 0x00020000,
142 "Intel 82915G (915G GMCH) SVGA controller"},
143 {0x258A8086, CHIP_I915, 0x00020000,
144 "Intel E7221 SVGA controller"},
145 {0x25928086, CHIP_I915, 0x00020000,
146 "Intel 82915GM (915GM GMCH) SVGA controller"},
147 {0x27728086, CHIP_I915, 0x00020000,
148 "Intel 82945G (945G GMCH) SVGA controller"},
149 {0x27A28086, CHIP_I915, 0x00020000,
150 "Intel 82945GM (945GM GMCH) SVGA controller"},
151 {0x27A28086, CHIP_I915, 0x00020000,
152 "Intel 945GME SVGA controller"},
153 {0x29728086, CHIP_I965, 0x00020000,
154 "Intel 946GZ SVGA controller"},
155 {0x29828086, CHIP_I965, 0x00020000,
156 "Intel G965 SVGA controller"},
157 {0x29928086, CHIP_I965, 0x00020000,
158 "Intel Q965 SVGA controller"},
159 {0x29a28086, CHIP_I965, 0x00020000,
160 "Intel G965 SVGA controller"},
161/*
162 {0x29b28086, CHIP_G33, 0x00020000,
163 "Intel Q35 SVGA controller"},
164 {0x29c28086, CHIP_G33, 0x00020000,
165 "Intel G33 SVGA controller"},
166 {0x29d28086, CHIP_G33, 0x00020000,
167 "Intel Q33 SVGA controller"},
168*/
169 {0x2a028086, CHIP_I965, 0x00020000,
170 "Intel GM965 SVGA controller"},
171 {0x2a128086, CHIP_I965, 0x00020000,
172 "Intel GME965 SVGA controller"},
173 {0, 0, 0, NULL}
174};
175
176static const struct agp_i810_match*
177agp_i810_match(device_t dev)
178{
179 int i, devid;
180
181 if (pci_get_class(dev) != PCIC_DISPLAY
182 || pci_get_subclass(dev) != PCIS_DISPLAY_VGA)
183 return NULL;
184
185 devid = pci_get_devid(dev);
186 for (i = 0; agp_i810_matches[i].devid != 0; i++) {
187 if (agp_i810_matches[i].devid == devid)
188 break;
189 }
190 if (agp_i810_matches[i].devid == 0)
191 return NULL;
192 else
193 return &agp_i810_matches[i];
194}
195
196/*
197 * Find bridge device.
198 */
199static device_t
200agp_i810_find_bridge(device_t dev)
201{
202 device_t *children, child;
203 int nchildren, i;
204 u_int32_t devid;
205 const struct agp_i810_match *match;
206
207 match = agp_i810_match(dev);
208 devid = match->devid - match->bridge_offset;
209
210 if (device_get_children(device_get_parent(dev), &children, &nchildren))
211 return 0;
212
213 for (i = 0; i < nchildren; i++) {
214 child = children[i];
215
216 if (pci_get_devid(child) == devid) {
217 kfree(children, M_TEMP);
218 return child;
219 }
220 }
221 kfree(children, M_TEMP);
222 return 0;
223}
224
225static void
226agp_i810_identify(driver_t *driver, device_t parent)
227{
228
229 if (device_find_child(parent, "agp", -1) == NULL &&
230 agp_i810_match(parent))
231 device_add_child(parent, "agp", -1);
232}
233
234static int
235agp_i810_probe(device_t dev)
236{
237 device_t bdev;
238 const struct agp_i810_match *match;
239 u_int8_t smram;
240 int gcc1, deven;
241
242 if (resource_disabled("agp", device_get_unit(dev)))
243 return (ENXIO);
244 match = agp_i810_match(dev);
245 if (match == NULL)
246 return ENXIO;
247
248 bdev = agp_i810_find_bridge(dev);
249 if (!bdev) {
250 if (bootverbose)
251 kprintf("I810: can't find bridge device\n");
252 return ENXIO;
253 }
254
255 /*
256 * checking whether internal graphics device has been activated.
257 */
258 switch (match->chiptype) {
259 case CHIP_I810:
260 smram = pci_read_config(bdev, AGP_I810_SMRAM, 1);
261 if ((smram & AGP_I810_SMRAM_GMS) ==
262 AGP_I810_SMRAM_GMS_DISABLED) {
263 if (bootverbose)
264 kprintf("I810: disabled, not probing\n");
265 return ENXIO;
266 }
267 break;
268 case CHIP_I830:
269 case CHIP_I855:
270 gcc1 = pci_read_config(bdev, AGP_I830_GCC1, 1);
271 if ((gcc1 & AGP_I830_GCC1_DEV2) ==
272 AGP_I830_GCC1_DEV2_DISABLED) {
273 if (bootverbose)
274 kprintf("I830: disabled, not probing\n");
275 return ENXIO;
276 }
277 break;
278 case CHIP_I915:
279 case CHIP_I965:
280 case CHIP_G33:
281 deven = pci_read_config(bdev, AGP_I915_DEVEN, 4);
282 if ((deven & AGP_I915_DEVEN_D2F0) ==
283 AGP_I915_DEVEN_D2F0_DISABLED) {
284 if (bootverbose)
285 kprintf("I915: disabled, not probing\n");
286 return ENXIO;
287 }
288 break;
289 }
290
291 device_verbose(dev);
292 if (match->devid == 0x35828086) {
293 switch (pci_read_config(dev, AGP_I85X_CAPID, 1)) {
294 case AGP_I855_GME:
295 device_set_desc(dev,
296 "Intel 82855GME (855GME GMCH) SVGA controller");
297 break;
298 case AGP_I855_GM:
299 device_set_desc(dev,
300 "Intel 82855GM (855GM GMCH) SVGA controller");
301 break;
302 case AGP_I852_GME:
303 device_set_desc(dev,
304 "Intel 82852GME (852GME GMCH) SVGA controller");
305 break;
306 case AGP_I852_GM:
307 device_set_desc(dev,
308 "Intel 82852GM (852GM GMCH) SVGA controller");
309 break;
310 default:
311 device_set_desc(dev,
312 "Intel 8285xM (85xGM GMCH) SVGA controller");
313 break;
314 }
315 } else {
316 device_set_desc(dev, match->name);
317 }
318
319 return BUS_PROBE_DEFAULT;
320}
321
322static void
323agp_i810_dump_regs(device_t dev)
324{
325 struct agp_i810_softc *sc = device_get_softc(dev);
326
327 device_printf(dev, "AGP_I810_PGTBL_CTL: %08x\n",
328 bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL));
329
330 switch (sc->chiptype) {
331 case CHIP_I810:
332 device_printf(dev, "AGP_I810_MISCC: 0x%04x\n",
333 pci_read_config(sc->bdev, AGP_I810_MISCC, 2));
334 break;
335 case CHIP_I830:
336 device_printf(dev, "AGP_I830_GCC1: 0x%02x\n",
337 pci_read_config(sc->bdev, AGP_I830_GCC1, 1));
338 break;
339 case CHIP_I855:
340 device_printf(dev, "AGP_I855_GCC1: 0x%02x\n",
341 pci_read_config(sc->bdev, AGP_I855_GCC1, 1));
342 break;
343 case CHIP_I915:
344 case CHIP_I965:
345 case CHIP_G33:
346 device_printf(dev, "AGP_I855_GCC1: 0x%02x\n",
347 pci_read_config(sc->bdev, AGP_I855_GCC1, 1));
348 device_printf(dev, "AGP_I915_MSAC: 0x%02x\n",
349 pci_read_config(sc->bdev, AGP_I915_MSAC, 1));
350 break;
351 }
352 device_printf(dev, "Aperture resource size: %d bytes\n",
353 AGP_GET_APERTURE(dev));
354}
355
356static int
357agp_i810_attach(device_t dev)
358{
359 struct agp_i810_softc *sc = device_get_softc(dev);
360 struct agp_gatt *gatt;
361 const struct agp_i810_match *match;
362 int error;
363
364 sc->bdev = agp_i810_find_bridge(dev);
365 if (!sc->bdev)
366 return ENOENT;
367
368 match = agp_i810_match(dev);
369 sc->chiptype = match->chiptype;
370
371 switch (sc->chiptype) {
372 case CHIP_I810:
373 case CHIP_I830:
374 case CHIP_I855:
375 sc->sc_res_spec = agp_i810_res_spec;
376 agp_set_aperture_resource(dev, AGP_APBASE);
377 break;
378 case CHIP_I915:
379 case CHIP_G33:
380 sc->sc_res_spec = agp_i915_res_spec;
381 agp_set_aperture_resource(dev, AGP_I915_GMADR);
382 break;
383 case CHIP_I965:
384 sc->sc_res_spec = agp_i965_res_spec;
385 agp_set_aperture_resource(dev, AGP_I915_GMADR);
386 break;
387 }
388
389 error = agp_generic_attach(dev);
390 if (error)
391 return error;
392
393 if (sc->chiptype != CHIP_I965 && sc->chiptype != CHIP_G33 &&
394 ptoa((vm_paddr_t)Maxmem) > 0xfffffffful)
395 {
396 device_printf(dev, "agp_i810.c does not support physical "
397 "memory above 4GB.\n");
398 return ENOENT;
399 }
400
401 if (bus_alloc_resources(dev, sc->sc_res_spec, sc->sc_res)) {
402 agp_generic_detach(dev);
403 return ENODEV;
404 }
405
406 sc->initial_aperture = AGP_GET_APERTURE(dev);
407 if (sc->initial_aperture == 0) {
408 device_printf(dev, "bad initial aperture size, disabling\n");
409 return ENXIO;
410 }
411
412 gatt = kmalloc( sizeof(struct agp_gatt), M_AGP, M_INTWAIT);
413 sc->gatt = gatt;
414
415 gatt->ag_entries = AGP_GET_APERTURE(dev) >> AGP_PAGE_SHIFT;
416
417 if ( sc->chiptype == CHIP_I810 ) {
418 /* Some i810s have on-chip memory called dcache */
419 if (bus_read_1(sc->sc_res[0], AGP_I810_DRT) &
420 AGP_I810_DRT_POPULATED)
421 sc->dcache_size = 4 * 1024 * 1024;
422 else
423 sc->dcache_size = 0;
424
425 /* According to the specs the gatt on the i810 must be 64k */
426 gatt->ag_virtual = contigmalloc( 64 * 1024, M_AGP, 0,
427 0, ~0, PAGE_SIZE, 0);
428 if (!gatt->ag_virtual) {
429 if (bootverbose)
430 device_printf(dev, "contiguous allocation failed\n");
431 bus_release_resources(dev, sc->sc_res_spec,
432 sc->sc_res);
433 kfree(gatt, M_AGP);
434 agp_generic_detach(dev);
435 return ENOMEM;
436 }
437 bzero(gatt->ag_virtual, gatt->ag_entries * sizeof(u_int32_t));
438
439 gatt->ag_physical = vtophys((vm_offset_t) gatt->ag_virtual);
440 agp_flush_cache();
441 /* Install the GATT. */
442 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL,
443 gatt->ag_physical | 1);
444 } else if ( sc->chiptype == CHIP_I830 ) {
445 /* The i830 automatically initializes the 128k gatt on boot. */
446 unsigned int gcc1, pgtblctl;
447
448 gcc1 = pci_read_config(sc->bdev, AGP_I830_GCC1, 1);
449 switch (gcc1 & AGP_I830_GCC1_GMS) {
450 case AGP_I830_GCC1_GMS_STOLEN_512:
451 sc->stolen = (512 - 132) * 1024 / 4096;
452 break;
453 case AGP_I830_GCC1_GMS_STOLEN_1024:
454 sc->stolen = (1024 - 132) * 1024 / 4096;
455 break;
456 case AGP_I830_GCC1_GMS_STOLEN_8192:
457 sc->stolen = (8192 - 132) * 1024 / 4096;
458 break;
459 default:
460 sc->stolen = 0;
461 device_printf(dev, "unknown memory configuration, disabling\n");
462 bus_release_resources(dev, sc->sc_res_spec,
463 sc->sc_res);
464 kfree(gatt, M_AGP);
465 agp_generic_detach(dev);
466 return EINVAL;
467 }
468 if (sc->stolen > 0) {
469 device_printf(dev, "detected %dk stolen memory\n",
470 sc->stolen * 4);
471 }
472 device_printf(dev, "aperture size is %dM\n",
473 sc->initial_aperture / 1024 / 1024);
474
475 /* GATT address is already in there, make sure it's enabled */
476 pgtblctl = bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL);
477 pgtblctl |= 1;
478 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, pgtblctl);
479
480 gatt->ag_physical = pgtblctl & ~1;
481 } else if (sc->chiptype == CHIP_I855 || sc->chiptype == CHIP_I915 ||
482 sc->chiptype == CHIP_I965 || sc->chiptype == CHIP_G33) {
483 unsigned int gcc1, pgtblctl, stolen, gtt_size;
484
485 /* Stolen memory is set up at the beginning of the aperture by
486 * the BIOS, consisting of the GATT followed by 4kb for the
487 * BIOS display.
488 */
489 switch (sc->chiptype) {
490 case CHIP_I855:
491 gtt_size = 128;
492 break;
493 case CHIP_I915:
494 gtt_size = 256;
495 break;
496 case CHIP_I965:
497 case CHIP_G33:
498 switch (bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL) &
499 AGP_I810_PGTBL_SIZE_MASK) {
500 case AGP_I810_PGTBL_SIZE_128KB:
501 gtt_size = 128;
502 break;
503 case AGP_I810_PGTBL_SIZE_256KB:
504 gtt_size = 256;
505 break;
506 case AGP_I810_PGTBL_SIZE_512KB:
507 gtt_size = 512;
508 break;
509 default:
510 device_printf(dev, "Bad PGTBL size\n");
511 bus_release_resources(dev, sc->sc_res_spec,
512 sc->sc_res);
513 kfree(gatt, M_AGP);
514 agp_generic_detach(dev);
515 return EINVAL;
516 }
517 break;
518 default:
519 device_printf(dev, "Bad chiptype\n");
520 bus_release_resources(dev, sc->sc_res_spec,
521 sc->sc_res);
522 kfree(gatt, M_AGP);
523 agp_generic_detach(dev);
524 return EINVAL;
525 }
526
527 /* GCC1 is called MGGC on i915+ */
528 gcc1 = pci_read_config(sc->bdev, AGP_I855_GCC1, 1);
529 switch (gcc1 & AGP_I855_GCC1_GMS) {
530 case AGP_I855_GCC1_GMS_STOLEN_1M:
531 stolen = 1024;
532 break;
533 case AGP_I855_GCC1_GMS_STOLEN_4M:
534 stolen = 4096;
535 break;
536 case AGP_I855_GCC1_GMS_STOLEN_8M:
537 stolen = 8192;
538 break;
539 case AGP_I855_GCC1_GMS_STOLEN_16M:
540 stolen = 16384;
541 break;
542 case AGP_I855_GCC1_GMS_STOLEN_32M:
543 stolen = 32768;
544 break;
545 case AGP_I915_GCC1_GMS_STOLEN_48M:
546 stolen = 49152;
547 break;
548 case AGP_I915_GCC1_GMS_STOLEN_64M:
549 stolen = 65536;
550 break;
551 case AGP_G33_GCC1_GMS_STOLEN_128M:
552 stolen = 128 * 1024;
553 break;
554 case AGP_G33_GCC1_GMS_STOLEN_256M:
555 stolen = 256 * 1024;
556 break;
557 default:
558 device_printf(dev, "unknown memory configuration, "
559 "disabling\n");
560 bus_release_resources(dev, sc->sc_res_spec,
561 sc->sc_res);
562 kfree(gatt, M_AGP);
563 agp_generic_detach(dev);
564 return EINVAL;
565 }
566 sc->stolen = (stolen - gtt_size - 4) * 1024 / 4096;
567 if (sc->stolen > 0)
568 device_printf(dev, "detected %dk stolen memory\n", sc->stolen * 4);
569 device_printf(dev, "aperture size is %dM\n", sc->initial_aperture / 1024 / 1024);
570
571 /* GATT address is already in there, make sure it's enabled */
572 pgtblctl = bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL);
573 pgtblctl |= 1;
574 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, pgtblctl);
575
576 gatt->ag_physical = pgtblctl & ~1;
577 }
578
579 /* Add a device for the drm to attach to */
580 /* XXX This will go away once we have vgapci */
581 if (!device_add_child(dev, "drmsub", -1))
582 device_printf(dev, "could not add drm subdevice\n");
583
584 if (0)
585 agp_i810_dump_regs(dev);
586
587 return 0;
588}
589
590static int
591agp_i810_detach(device_t dev)
592{
593 struct agp_i810_softc *sc = device_get_softc(dev);
594 device_t child;
595
596 agp_free_cdev(dev);
597
598 /* Clear the GATT base. */
599 if ( sc->chiptype == CHIP_I810 ) {
600 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, 0);
601 } else {
602 unsigned int pgtblctl;
603 pgtblctl = bus_read_4(sc->sc_res[0], AGP_I810_PGTBL_CTL);
604 pgtblctl &= ~1;
605 bus_write_4(sc->sc_res[0], AGP_I810_PGTBL_CTL, pgtblctl);
606 }
607
608 /* Put the aperture back the way it started. */
609 AGP_SET_APERTURE(dev, sc->initial_aperture);
610
611 if ( sc->chiptype == CHIP_I810 ) {
612 contigfree(sc->gatt->ag_virtual, 64 * 1024, M_AGP);
613 }
614 kfree(sc->gatt, M_AGP);
615
616 bus_release_resources(dev, sc->sc_res_spec, sc->sc_res);
617 agp_free_res(dev);
618
619 /* XXX This will go away once we have vgapci */
620 child = device_find_child(dev, "drmsub", 0);
621 if (child != NULL)
622 device_delete_child(dev, child);
623
624 return 0;
625}
626
627/**
628 * Sets the PCI resource size of the aperture on i830-class and below chipsets,
629 * while returning failure on later chipsets when an actual change is
630 * requested.
631 *
632 * This whole function is likely bogus, as the kernel would probably need to
633 * reconfigure the placement of the AGP aperture if a larger size is requested,
634 * which doesn't happen currently.
635 */
636static int
637agp_i810_set_aperture(device_t dev, u_int32_t aperture)
638{
639 struct agp_i810_softc *sc = device_get_softc(dev);
640 u_int16_t miscc, gcc1;
641
642 switch (sc->chiptype) {
643 case CHIP_I810:
644 /*
645 * Double check for sanity.
646 */
647 if (aperture != 32 * 1024 * 1024 && aperture != 64 * 1024 * 1024) {
648 device_printf(dev, "bad aperture size %d\n", aperture);
649 return EINVAL;
650 }
651
652 miscc = pci_read_config(sc->bdev, AGP_I810_MISCC, 2);
653 miscc &= ~AGP_I810_MISCC_WINSIZE;
654 if (aperture == 32 * 1024 * 1024)
655 miscc |= AGP_I810_MISCC_WINSIZE_32;
656 else
657 miscc |= AGP_I810_MISCC_WINSIZE_64;
658
659 pci_write_config(sc->bdev, AGP_I810_MISCC, miscc, 2);
660 break;
661 case CHIP_I830:
662 if (aperture != 64 * 1024 * 1024 &&
663 aperture != 128 * 1024 * 1024) {
664 device_printf(dev, "bad aperture size %d\n", aperture);
665 return EINVAL;
666 }
667 gcc1 = pci_read_config(sc->bdev, AGP_I830_GCC1, 2);
668 gcc1 &= ~AGP_I830_GCC1_GMASIZE;
669 if (aperture == 64 * 1024 * 1024)
670 gcc1 |= AGP_I830_GCC1_GMASIZE_64;
671 else
672 gcc1 |= AGP_I830_GCC1_GMASIZE_128;
673
674 pci_write_config(sc->bdev, AGP_I830_GCC1, gcc1, 2);
675 break;
676 case CHIP_I855:
677 case CHIP_I915:
678 case CHIP_I965:
679 case CHIP_G33:
680 return agp_generic_set_aperture(dev, aperture);
681 }
682
683 return 0;
684}
685
686/**
687 * Writes a GTT entry mapping the page at the given offset from the beginning
688 * of the aperture to the given physical address.
689 */
690static void
691agp_i810_write_gtt_entry(device_t dev, int offset, vm_offset_t physical,
692 int enabled)
693{
694 struct agp_i810_softc *sc = device_get_softc(dev);
695 u_int32_t pte;
696
697 pte = (u_int32_t)physical | 1;
698 if (sc->chiptype == CHIP_I965 || sc->chiptype == CHIP_G33) {
699 pte |= (physical & 0x0000000f00000000ull) >> 28;
700 } else {
701 /* If we do actually have memory above 4GB on an older system,
702 * crash cleanly rather than scribble on system memory,
703 * so we know we need to fix it.
704 */
705 KASSERT((pte & 0x0000000f00000000ull) == 0,
706 (">4GB physical address in agp"));
707 }
708
709 switch (sc->chiptype) {
710 case CHIP_I810:
711 case CHIP_I830:
712 case CHIP_I855:
713 bus_write_4(sc->sc_res[0],
714 AGP_I810_GTT + (offset >> AGP_PAGE_SHIFT) * 4, pte);
715 break;
716 case CHIP_I915:
717 case CHIP_G33:
718 bus_write_4(sc->sc_res[1],
719 (offset >> AGP_PAGE_SHIFT) * 4, pte);
720 break;
721 case CHIP_I965:
722 bus_write_4(sc->sc_res[0],
723 (offset >> AGP_PAGE_SHIFT) * 4 + (512 * 1024), pte);
724 break;
725 }
726}
727
728static int
729agp_i810_bind_page(device_t dev, int offset, vm_offset_t physical)
730{
731 struct agp_i810_softc *sc = device_get_softc(dev);
732
733 if (offset < 0 || offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT)) {
734 device_printf(dev, "failed: offset is 0x%08x, shift is %d, entries is %d\n", offset, AGP_PAGE_SHIFT, sc->gatt->ag_entries);
735 return EINVAL;
736 }
737
738 if ( sc->chiptype != CHIP_I810 ) {
739 if ( (offset >> AGP_PAGE_SHIFT) < sc->stolen ) {
740 device_printf(dev, "trying to bind into stolen memory");
741 return EINVAL;
742 }
743 }
744
745 agp_i810_write_gtt_entry(dev, offset, physical, 1);
746
747 return 0;
748}
749
750static int
751agp_i810_unbind_page(device_t dev, int offset)
752{
753 struct agp_i810_softc *sc = device_get_softc(dev);
754
755 if (offset < 0 || offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT))
756 return EINVAL;
757
758 if ( sc->chiptype != CHIP_I810 ) {
759 if ( (offset >> AGP_PAGE_SHIFT) < sc->stolen ) {
760 device_printf(dev, "trying to unbind from stolen memory");
761 return EINVAL;
762 }
763 }
764
765 agp_i810_write_gtt_entry(dev, offset, 0, 0);
766
767 return 0;
768}
769
770/*
771 * Writing via memory mapped registers already flushes all TLBs.
772 */
773static void
774agp_i810_flush_tlb(device_t dev)
775{
776}
777
778static int
779agp_i810_enable(device_t dev, u_int32_t mode)
780{
781
782 return 0;
783}
784
785static struct agp_memory *
786agp_i810_alloc_memory(device_t dev, int type, vm_size_t size)
787{
788 struct agp_i810_softc *sc = device_get_softc(dev);
789 struct agp_memory *mem;
790
791 if ((size & (AGP_PAGE_SIZE - 1)) != 0)
792 return 0;
793
794 if (sc->agp.as_allocated + size > sc->agp.as_maxmem)
795 return 0;
796
797 if (type == 1) {
798 /*
799 * Mapping local DRAM into GATT.
800 */
801 if ( sc->chiptype != CHIP_I810 )
802 return 0;
803 if (size != sc->dcache_size)
804 return 0;
805 } else if (type == 2) {
806 /*
807 * Type 2 is the contiguous physical memory type, that hands
808 * back a physical address. This is used for cursors on i810.
809 * Hand back as many single pages with physical as the user
810 * wants, but only allow one larger allocation (ARGB cursor)
811 * for simplicity.
812 */
813 if (size != AGP_PAGE_SIZE) {
814 if (sc->argb_cursor != NULL)
815 return 0;
816
817 /* Allocate memory for ARGB cursor, if we can. */
818 sc->argb_cursor = contigmalloc(size, M_AGP,
819 0, 0, ~0, PAGE_SIZE, 0);
820 if (sc->argb_cursor == NULL)
821 return 0;
822 }
823 }
824
825 mem = kmalloc(sizeof *mem, M_AGP, M_INTWAIT);
826 mem->am_id = sc->agp.as_nextid++;
827 mem->am_size = size;
828 mem->am_type = type;
829 if (type != 1 && (type != 2 || size == AGP_PAGE_SIZE))
830 mem->am_obj = vm_object_allocate(OBJT_DEFAULT,
831 atop(round_page(size)));
832 else
833 mem->am_obj = 0;
834
835 if (type == 2) {
836 if (size == AGP_PAGE_SIZE) {
837 /*
838 * Allocate and wire down the page now so that we can
839 * get its physical address.
840 */
841 vm_page_t m;
842
843 m = vm_page_grab(mem->am_obj, 0,
844 VM_ALLOC_NORMAL|VM_ALLOC_ZERO|VM_ALLOC_RETRY);
845 if ((m->flags & PG_ZERO) == 0)
846 vm_page_zero_fill(m);
847 vm_page_wire(m);
848 mem->am_physical = VM_PAGE_TO_PHYS(m);
849 vm_page_wakeup(m);
850 } else {
851 /* Our allocation is already nicely wired down for us.
852 * Just grab the physical address.
853 */
854 mem->am_physical = vtophys(sc->argb_cursor);
855 }
856 } else {
857 mem->am_physical = 0;
858 }
859
860 mem->am_offset = 0;
861 mem->am_is_bound = 0;
862 TAILQ_INSERT_TAIL(&sc->agp.as_memory, mem, am_link);
863 sc->agp.as_allocated += size;
864
865 return mem;
866}
867
868static int
869agp_i810_free_memory(device_t dev, struct agp_memory *mem)
870{
871 struct agp_i810_softc *sc = device_get_softc(dev);
872
873 if (mem->am_is_bound)
874 return EBUSY;
875
876 if (mem->am_type == 2) {
877 if (mem->am_size == AGP_PAGE_SIZE) {
878 /*
879 * Unwire the page which we wired in alloc_memory.
880 */
881 vm_page_t m = vm_page_lookup(mem->am_obj, 0);
882 vm_page_unwire(m, 0);
883 } else {
884 contigfree(sc->argb_cursor, mem->am_size, M_AGP);
885 sc->argb_cursor = NULL;
886 }
887 }
888
889 sc->agp.as_allocated -= mem->am_size;
890 TAILQ_REMOVE(&sc->agp.as_memory, mem, am_link);
891 if (mem->am_obj)
892 vm_object_deallocate(mem->am_obj);
893 kfree(mem, M_AGP);
894 return 0;
895}
896
897static int
898agp_i810_bind_memory(device_t dev, struct agp_memory *mem,
899 vm_offset_t offset)
900{
901 struct agp_i810_softc *sc = device_get_softc(dev);
902 vm_offset_t i;
903
904 /* Do some sanity checks first. */
905 if (offset < 0 || (offset & (AGP_PAGE_SIZE - 1)) != 0 ||
906 offset + mem->am_size > AGP_GET_APERTURE(dev)) {
907 device_printf(dev, "binding memory at bad offset %#x\n",
908 (int)offset);
909 return EINVAL;
910 }
911
912 if (mem->am_type == 2 && mem->am_size != AGP_PAGE_SIZE) {
913 lockmgr(&sc->agp.as_lock, LK_EXCLUSIVE);
914 if (mem->am_is_bound) {
915 lockmgr(&sc->agp.as_lock, LK_RELEASE);
916 return EINVAL;
917 }
918 /* The memory's already wired down, just stick it in the GTT. */
919 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
920 agp_i810_write_gtt_entry(dev, offset + i,
921 mem->am_physical + i, 1);
922 }
923 agp_flush_cache();
924 mem->am_offset = offset;
925 mem->am_is_bound = 1;
926 lockmgr(&sc->agp.as_lock, LK_RELEASE);
927 return 0;
928 }
929
930 if (mem->am_type != 1)
931 return agp_generic_bind_memory(dev, mem, offset);
932
933 if ( sc->chiptype != CHIP_I810 )
934 return EINVAL;
935
936 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
937 bus_write_4(sc->sc_res[0],
938 AGP_I810_GTT + (i >> AGP_PAGE_SHIFT) * 4, i | 3);
939 }
940
941 return 0;
942}
943
944static int
945agp_i810_unbind_memory(device_t dev, struct agp_memory *mem)
946{
947 struct agp_i810_softc *sc = device_get_softc(dev);
948 vm_offset_t i;
949
950 if (mem->am_type == 2 && mem->am_size != AGP_PAGE_SIZE) {
951 lockmgr(&sc->agp.as_lock, LK_EXCLUSIVE);
952 if (!mem->am_is_bound) {
953 lockmgr(&sc->agp.as_lock, LK_RELEASE);
954 return EINVAL;
955 }
956
957 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
958 agp_i810_write_gtt_entry(dev, mem->am_offset + i,
959 0, 0);
960 }
961 agp_flush_cache();
962 mem->am_is_bound = 0;
963 lockmgr(&sc->agp.as_lock, LK_RELEASE);
964 return 0;
965 }
966
967 if (mem->am_type != 1)
968 return agp_generic_unbind_memory(dev, mem);
969
970 if ( sc->chiptype != CHIP_I810 )
971 return EINVAL;
972
973 for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
974 bus_write_4(sc->sc_res[0],
975 AGP_I810_GTT + (i >> AGP_PAGE_SHIFT) * 4, 0);
976 }
977
978 return 0;
979}
980
981static device_method_t agp_i810_methods[] = {
982 /* Device interface */
983 DEVMETHOD(device_identify, agp_i810_identify),
984 DEVMETHOD(device_probe, agp_i810_probe),
985 DEVMETHOD(device_attach, agp_i810_attach),
986 DEVMETHOD(device_detach, agp_i810_detach),
987
988 /* AGP interface */
989 DEVMETHOD(agp_get_aperture, agp_generic_get_aperture),
990 DEVMETHOD(agp_set_aperture, agp_i810_set_aperture),
991 DEVMETHOD(agp_bind_page, agp_i810_bind_page),
992 DEVMETHOD(agp_unbind_page, agp_i810_unbind_page),
993 DEVMETHOD(agp_flush_tlb, agp_i810_flush_tlb),
994 DEVMETHOD(agp_enable, agp_i810_enable),
995 DEVMETHOD(agp_alloc_memory, agp_i810_alloc_memory),
996 DEVMETHOD(agp_free_memory, agp_i810_free_memory),
997 DEVMETHOD(agp_bind_memory, agp_i810_bind_memory),
998 DEVMETHOD(agp_unbind_memory, agp_i810_unbind_memory),
999
1000 { 0, 0 }
1001};
1002
1003static driver_t agp_i810_driver = {
1004 "agp",
1005 agp_i810_methods,
1006 sizeof(struct agp_i810_softc),
1007};
1008
1009static devclass_t agp_devclass;
1010
1011DRIVER_MODULE(agp_i810, pci, agp_i810_driver, agp_devclass, 0, 0);
1012MODULE_DEPEND(agp_i810, agp, 1, 1, 1);
1013MODULE_DEPEND(agp_i810, pci, 1, 1, 1);