agp_i810.c revision 1.46 1 1.46 markd /* $NetBSD: agp_i810.c,v 1.46 2007/11/24 02:19:37 markd Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*-
4 1.1 fvdl * Copyright (c) 2000 Doug Rabson
5 1.1 fvdl * Copyright (c) 2000 Ruslan Ermilov
6 1.1 fvdl * All rights reserved.
7 1.1 fvdl *
8 1.1 fvdl * Redistribution and use in source and binary forms, with or without
9 1.1 fvdl * modification, are permitted provided that the following conditions
10 1.1 fvdl * are met:
11 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
12 1.1 fvdl * notice, this list of conditions and the following disclaimer.
13 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
15 1.1 fvdl * documentation and/or other materials provided with the distribution.
16 1.1 fvdl *
17 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 1.1 fvdl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 1.1 fvdl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 1.1 fvdl * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 1.1 fvdl * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 1.1 fvdl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 1.1 fvdl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 1.1 fvdl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 1.1 fvdl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 1.1 fvdl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 1.1 fvdl * SUCH DAMAGE.
28 1.1 fvdl *
29 1.1 fvdl * $FreeBSD: src/sys/pci/agp_i810.c,v 1.4 2001/07/05 21:28:47 jhb Exp $
30 1.1 fvdl */
31 1.9 lukem
32 1.9 lukem #include <sys/cdefs.h>
33 1.46 markd __KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.46 2007/11/24 02:19:37 markd Exp $");
34 1.1 fvdl
35 1.1 fvdl #include <sys/param.h>
36 1.1 fvdl #include <sys/systm.h>
37 1.1 fvdl #include <sys/malloc.h>
38 1.1 fvdl #include <sys/kernel.h>
39 1.1 fvdl #include <sys/lock.h>
40 1.1 fvdl #include <sys/proc.h>
41 1.1 fvdl #include <sys/device.h>
42 1.1 fvdl #include <sys/conf.h>
43 1.1 fvdl
44 1.1 fvdl #include <uvm/uvm_extern.h>
45 1.1 fvdl
46 1.1 fvdl #include <dev/pci/pcivar.h>
47 1.1 fvdl #include <dev/pci/pcireg.h>
48 1.1 fvdl #include <dev/pci/pcidevs.h>
49 1.1 fvdl #include <dev/pci/agpvar.h>
50 1.1 fvdl #include <dev/pci/agpreg.h>
51 1.1 fvdl
52 1.1 fvdl #include <sys/agpio.h>
53 1.1 fvdl
54 1.43 ad #include <sys/bus.h>
55 1.1 fvdl
56 1.20 tron #include "agp_intel.h"
57 1.20 tron
58 1.1 fvdl #define READ1(off) bus_space_read_1(isc->bst, isc->bsh, off)
59 1.14 scw #define READ4(off) bus_space_read_4(isc->bst, isc->bsh, off)
60 1.1 fvdl #define WRITE4(off,v) bus_space_write_4(isc->bst, isc->bsh, off, v)
61 1.28 christos #define WRITEGTT(off, v) \
62 1.28 christos do { \
63 1.45 joerg if (isc->chiptype == CHIP_I915 || isc->chiptype == CHIP_G33) { \
64 1.28 christos bus_space_write_4(isc->gtt_bst, isc->gtt_bsh, \
65 1.28 christos (u_int32_t)((off) >> AGP_PAGE_SHIFT) * 4, \
66 1.28 christos (v)); \
67 1.42 markd } else if (isc->chiptype == CHIP_I965) { \
68 1.42 markd WRITE4(AGP_I965_GTT + \
69 1.42 markd (u_int32_t)((off) >> AGP_PAGE_SHIFT) * 4, \
70 1.42 markd (v)); \
71 1.28 christos } else { \
72 1.28 christos WRITE4(AGP_I810_GTT + \
73 1.28 christos (u_int32_t)((off) >> AGP_PAGE_SHIFT) * 4, \
74 1.28 christos (v)); \
75 1.28 christos } \
76 1.28 christos } while (0)
77 1.1 fvdl
78 1.14 scw #define CHIP_I810 0 /* i810/i815 */
79 1.17 hannken #define CHIP_I830 1 /* 830M/845G */
80 1.17 hannken #define CHIP_I855 2 /* 852GM/855GM/865G */
81 1.32 simonb #define CHIP_I915 3 /* 915G/915GM/945G/945GM */
82 1.45 joerg #define CHIP_I965 4 /* 965Q/965PM */
83 1.45 joerg #define CHIP_G33 5 /* G33/Q33/Q35 */
84 1.14 scw
85 1.1 fvdl struct agp_i810_softc {
86 1.1 fvdl u_int32_t initial_aperture; /* aperture size at startup */
87 1.1 fvdl struct agp_gatt *gatt;
88 1.14 scw int chiptype; /* i810-like or i830 */
89 1.14 scw u_int32_t dcache_size; /* i810 only */
90 1.14 scw u_int32_t stolen; /* number of i830/845 gtt entries
91 1.14 scw for stolen memory */
92 1.28 christos bus_space_tag_t bst; /* register bus_space tag */
93 1.28 christos bus_space_handle_t bsh; /* register bus_space handle */
94 1.28 christos bus_space_tag_t gtt_bst; /* GTT bus_space tag */
95 1.28 christos bus_space_handle_t gtt_bsh; /* GTT bus_space handle */
96 1.1 fvdl struct pci_attach_args vga_pa;
97 1.24 jmcneill
98 1.24 jmcneill void *sc_powerhook;
99 1.24 jmcneill struct pci_conf_state sc_pciconf;
100 1.1 fvdl };
101 1.1 fvdl
102 1.1 fvdl static u_int32_t agp_i810_get_aperture(struct agp_softc *);
103 1.1 fvdl static int agp_i810_set_aperture(struct agp_softc *, u_int32_t);
104 1.1 fvdl static int agp_i810_bind_page(struct agp_softc *, off_t, bus_addr_t);
105 1.1 fvdl static int agp_i810_unbind_page(struct agp_softc *, off_t);
106 1.1 fvdl static void agp_i810_flush_tlb(struct agp_softc *);
107 1.1 fvdl static int agp_i810_enable(struct agp_softc *, u_int32_t mode);
108 1.1 fvdl static struct agp_memory *agp_i810_alloc_memory(struct agp_softc *, int,
109 1.1 fvdl vsize_t);
110 1.1 fvdl static int agp_i810_free_memory(struct agp_softc *, struct agp_memory *);
111 1.1 fvdl static int agp_i810_bind_memory(struct agp_softc *, struct agp_memory *, off_t);
112 1.1 fvdl static int agp_i810_unbind_memory(struct agp_softc *, struct agp_memory *);
113 1.24 jmcneill static void agp_i810_powerhook(int, void *);
114 1.1 fvdl
115 1.45 joerg static int agp_i810_init(struct agp_softc *);
116 1.45 joerg
117 1.26 thorpej static struct agp_methods agp_i810_methods = {
118 1.1 fvdl agp_i810_get_aperture,
119 1.1 fvdl agp_i810_set_aperture,
120 1.1 fvdl agp_i810_bind_page,
121 1.1 fvdl agp_i810_unbind_page,
122 1.1 fvdl agp_i810_flush_tlb,
123 1.1 fvdl agp_i810_enable,
124 1.1 fvdl agp_i810_alloc_memory,
125 1.1 fvdl agp_i810_free_memory,
126 1.1 fvdl agp_i810_bind_memory,
127 1.1 fvdl agp_i810_unbind_memory,
128 1.1 fvdl };
129 1.1 fvdl
130 1.6 thorpej /* XXXthorpej -- duplicated code (see arch/i386/pci/pchb.c) */
131 1.1 fvdl static int
132 1.1 fvdl agp_i810_vgamatch(struct pci_attach_args *pa)
133 1.1 fvdl {
134 1.6 thorpej
135 1.2 fvdl if (PCI_CLASS(pa->pa_class) != PCI_CLASS_DISPLAY ||
136 1.2 fvdl PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_DISPLAY_VGA)
137 1.6 thorpej return (0);
138 1.6 thorpej
139 1.1 fvdl switch (PCI_PRODUCT(pa->pa_id)) {
140 1.1 fvdl case PCI_PRODUCT_INTEL_82810_GC:
141 1.1 fvdl case PCI_PRODUCT_INTEL_82810_DC100_GC:
142 1.1 fvdl case PCI_PRODUCT_INTEL_82810E_GC:
143 1.1 fvdl case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
144 1.14 scw case PCI_PRODUCT_INTEL_82830MP_IV:
145 1.14 scw case PCI_PRODUCT_INTEL_82845G_IGD:
146 1.17 hannken case PCI_PRODUCT_INTEL_82855GM_IGD:
147 1.18 tron case PCI_PRODUCT_INTEL_82865_IGD:
148 1.28 christos case PCI_PRODUCT_INTEL_82915G_IGD:
149 1.28 christos case PCI_PRODUCT_INTEL_82915GM_IGD:
150 1.32 simonb case PCI_PRODUCT_INTEL_82945P_IGD:
151 1.32 simonb case PCI_PRODUCT_INTEL_82945GM_IGD:
152 1.32 simonb case PCI_PRODUCT_INTEL_82945GM_IGD_1:
153 1.42 markd case PCI_PRODUCT_INTEL_82965Q_IGD:
154 1.42 markd case PCI_PRODUCT_INTEL_82965Q_IGD_1:
155 1.45 joerg case PCI_PRODUCT_INTEL_82965PM_IGD:
156 1.45 joerg case PCI_PRODUCT_INTEL_82965PM_IGD_1:
157 1.45 joerg case PCI_PRODUCT_INTEL_82G33_IGD:
158 1.45 joerg case PCI_PRODUCT_INTEL_82G33_IGD_1:
159 1.44 jnemeth case PCI_PRODUCT_INTEL_82965G_IGD:
160 1.44 jnemeth case PCI_PRODUCT_INTEL_82965G_IGD_1:
161 1.46 markd case PCI_PRODUCT_INTEL_82Q35_IGD:
162 1.46 markd case PCI_PRODUCT_INTEL_82Q35_IGD_1:
163 1.46 markd case PCI_PRODUCT_INTEL_82Q33_IGD:
164 1.46 markd case PCI_PRODUCT_INTEL_82Q33_IGD_1:
165 1.6 thorpej return (1);
166 1.1 fvdl }
167 1.1 fvdl
168 1.6 thorpej return (0);
169 1.1 fvdl }
170 1.1 fvdl
171 1.42 markd static int
172 1.42 markd agp_i965_map_aperture(struct pci_attach_args *pa, struct agp_softc *sc, int reg)
173 1.42 markd {
174 1.42 markd /*
175 1.42 markd * Find the aperture. Don't map it (yet), this would
176 1.42 markd * eat KVA.
177 1.42 markd */
178 1.42 markd if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, reg,
179 1.42 markd PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_64BIT, &sc->as_apaddr, &sc->as_apsize,
180 1.42 markd &sc->as_apflags) != 0)
181 1.42 markd return ENXIO;
182 1.42 markd
183 1.42 markd sc->as_apt = pa->pa_memt;
184 1.42 markd
185 1.42 markd return 0;
186 1.42 markd }
187 1.42 markd
188 1.1 fvdl int
189 1.1 fvdl agp_i810_attach(struct device *parent, struct device *self, void *aux)
190 1.1 fvdl {
191 1.1 fvdl struct agp_softc *sc = (void *)self;
192 1.1 fvdl struct agp_i810_softc *isc;
193 1.1 fvdl struct agp_gatt *gatt;
194 1.28 christos int error, apbase;
195 1.37 drochner bus_size_t mmadrsize;
196 1.1 fvdl
197 1.10 tsutsui isc = malloc(sizeof *isc, M_AGP, M_NOWAIT|M_ZERO);
198 1.1 fvdl if (isc == NULL) {
199 1.15 thorpej aprint_error(": can't allocate chipset-specific softc\n");
200 1.1 fvdl return ENOMEM;
201 1.1 fvdl }
202 1.1 fvdl sc->as_chipc = isc;
203 1.1 fvdl sc->as_methods = &agp_i810_methods;
204 1.1 fvdl
205 1.1 fvdl if (pci_find_device(&isc->vga_pa, agp_i810_vgamatch) == 0) {
206 1.20 tron #if NAGP_INTEL > 0
207 1.19 tron const struct pci_attach_args *pa = aux;
208 1.19 tron
209 1.19 tron switch (PCI_PRODUCT(pa->pa_id)) {
210 1.19 tron case PCI_PRODUCT_INTEL_82840_HB:
211 1.19 tron case PCI_PRODUCT_INTEL_82865_HB:
212 1.21 tron case PCI_PRODUCT_INTEL_82845G_DRAM:
213 1.23 xtraeme case PCI_PRODUCT_INTEL_82815_FULL_HUB:
214 1.19 tron return agp_intel_attach(parent, self, aux);
215 1.20 tron }
216 1.20 tron #endif
217 1.15 thorpej aprint_error(": can't find internal VGA device config space\n");
218 1.1 fvdl free(isc, M_AGP);
219 1.1 fvdl return ENOENT;
220 1.1 fvdl }
221 1.1 fvdl
222 1.1 fvdl /* XXXfvdl */
223 1.1 fvdl sc->as_dmat = isc->vga_pa.pa_dmat;
224 1.1 fvdl
225 1.14 scw switch (PCI_PRODUCT(isc->vga_pa.pa_id)) {
226 1.14 scw case PCI_PRODUCT_INTEL_82810_GC:
227 1.14 scw case PCI_PRODUCT_INTEL_82810_DC100_GC:
228 1.14 scw case PCI_PRODUCT_INTEL_82810E_GC:
229 1.14 scw case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
230 1.14 scw isc->chiptype = CHIP_I810;
231 1.14 scw break;
232 1.14 scw case PCI_PRODUCT_INTEL_82830MP_IV:
233 1.14 scw case PCI_PRODUCT_INTEL_82845G_IGD:
234 1.14 scw isc->chiptype = CHIP_I830;
235 1.14 scw break;
236 1.17 hannken case PCI_PRODUCT_INTEL_82855GM_IGD:
237 1.18 tron case PCI_PRODUCT_INTEL_82865_IGD:
238 1.17 hannken isc->chiptype = CHIP_I855;
239 1.17 hannken break;
240 1.28 christos case PCI_PRODUCT_INTEL_82915G_IGD:
241 1.28 christos case PCI_PRODUCT_INTEL_82915GM_IGD:
242 1.32 simonb case PCI_PRODUCT_INTEL_82945P_IGD:
243 1.32 simonb case PCI_PRODUCT_INTEL_82945GM_IGD:
244 1.32 simonb case PCI_PRODUCT_INTEL_82945GM_IGD_1:
245 1.28 christos isc->chiptype = CHIP_I915;
246 1.28 christos break;
247 1.42 markd case PCI_PRODUCT_INTEL_82965Q_IGD:
248 1.42 markd case PCI_PRODUCT_INTEL_82965Q_IGD_1:
249 1.45 joerg case PCI_PRODUCT_INTEL_82965PM_IGD:
250 1.45 joerg case PCI_PRODUCT_INTEL_82965PM_IGD_1:
251 1.44 jnemeth case PCI_PRODUCT_INTEL_82965G_IGD:
252 1.44 jnemeth case PCI_PRODUCT_INTEL_82965G_IGD_1:
253 1.42 markd isc->chiptype = CHIP_I965;
254 1.42 markd break;
255 1.46 markd case PCI_PRODUCT_INTEL_82Q35_IGD:
256 1.46 markd case PCI_PRODUCT_INTEL_82Q35_IGD_1:
257 1.45 joerg case PCI_PRODUCT_INTEL_82G33_IGD:
258 1.45 joerg case PCI_PRODUCT_INTEL_82G33_IGD_1:
259 1.46 markd case PCI_PRODUCT_INTEL_82Q33_IGD:
260 1.46 markd case PCI_PRODUCT_INTEL_82Q33_IGD_1:
261 1.45 joerg isc->chiptype = CHIP_G33;
262 1.45 joerg break;
263 1.14 scw }
264 1.14 scw
265 1.45 joerg switch (isc->chiptype) {
266 1.45 joerg case CHIP_I915:
267 1.45 joerg case CHIP_G33:
268 1.45 joerg apbase = AGP_I915_GMADR;
269 1.45 joerg break;
270 1.45 joerg default:
271 1.45 joerg apbase = AGP_I810_GMADR;
272 1.45 joerg break;
273 1.45 joerg }
274 1.42 markd if (isc->chiptype == CHIP_I965) {
275 1.42 markd error = agp_i965_map_aperture(&isc->vga_pa, sc, AGP_I965_GMADR);
276 1.42 markd } else {
277 1.42 markd error = agp_map_aperture(&isc->vga_pa, sc, apbase);
278 1.42 markd }
279 1.1 fvdl if (error != 0) {
280 1.28 christos aprint_error(": can't map aperture\n");
281 1.28 christos free(isc, M_AGP);
282 1.1 fvdl return error;
283 1.1 fvdl }
284 1.1 fvdl
285 1.45 joerg if (isc->chiptype == CHIP_I915 || isc->chiptype == CHIP_G33) {
286 1.28 christos error = pci_mapreg_map(&isc->vga_pa, AGP_I915_MMADR,
287 1.39 drochner PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh,
288 1.39 drochner NULL, &mmadrsize);
289 1.28 christos if (error != 0) {
290 1.28 christos aprint_error(": can't map mmadr registers\n");
291 1.28 christos agp_generic_detach(sc);
292 1.28 christos return error;
293 1.28 christos }
294 1.28 christos error = pci_mapreg_map(&isc->vga_pa, AGP_I915_GTTADR,
295 1.28 christos PCI_MAPREG_TYPE_MEM, 0, &isc->gtt_bst, &isc->gtt_bsh,
296 1.28 christos NULL, NULL);
297 1.28 christos if (error != 0) {
298 1.28 christos aprint_error(": can't map gttadr registers\n");
299 1.28 christos /* XXX we should release mmadr here */
300 1.28 christos agp_generic_detach(sc);
301 1.28 christos return error;
302 1.28 christos }
303 1.42 markd } else if (isc->chiptype == CHIP_I965) {
304 1.42 markd error = pci_mapreg_map(&isc->vga_pa, AGP_I965_MMADR,
305 1.42 markd PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh,
306 1.42 markd NULL, &mmadrsize);
307 1.42 markd if (error != 0) {
308 1.42 markd aprint_error(": can't map mmadr registers\n");
309 1.42 markd agp_generic_detach(sc);
310 1.42 markd return error;
311 1.42 markd }
312 1.28 christos } else {
313 1.28 christos error = pci_mapreg_map(&isc->vga_pa, AGP_I810_MMADR,
314 1.39 drochner PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh,
315 1.39 drochner NULL, &mmadrsize);
316 1.28 christos if (error != 0) {
317 1.28 christos aprint_error(": can't map mmadr registers\n");
318 1.28 christos agp_generic_detach(sc);
319 1.28 christos return error;
320 1.28 christos }
321 1.28 christos }
322 1.28 christos
323 1.1 fvdl isc->initial_aperture = AGP_GET_APERTURE(sc);
324 1.1 fvdl
325 1.14 scw gatt = malloc(sizeof(struct agp_gatt), M_AGP, M_NOWAIT);
326 1.14 scw if (!gatt) {
327 1.14 scw agp_generic_detach(sc);
328 1.14 scw return ENOMEM;
329 1.14 scw }
330 1.14 scw isc->gatt = gatt;
331 1.14 scw
332 1.14 scw gatt->ag_entries = AGP_GET_APERTURE(sc) >> AGP_PAGE_SHIFT;
333 1.1 fvdl
334 1.45 joerg return agp_i810_init(sc);
335 1.45 joerg }
336 1.45 joerg
337 1.45 joerg static int agp_i810_init(struct agp_softc *sc)
338 1.45 joerg {
339 1.45 joerg struct agp_i810_softc *isc;
340 1.45 joerg struct agp_gatt *gatt;
341 1.45 joerg
342 1.45 joerg isc = sc->as_chipc;
343 1.45 joerg gatt = isc->gatt;
344 1.45 joerg
345 1.14 scw if (isc->chiptype == CHIP_I810) {
346 1.36 christos void *virtual;
347 1.14 scw int dummyseg;
348 1.31 tron
349 1.14 scw /* Some i810s have on-chip memory called dcache */
350 1.14 scw if (READ1(AGP_I810_DRT) & AGP_I810_DRT_POPULATED)
351 1.14 scw isc->dcache_size = 4 * 1024 * 1024;
352 1.14 scw else
353 1.14 scw isc->dcache_size = 0;
354 1.14 scw
355 1.14 scw /* According to the specs the gatt on the i810 must be 64k */
356 1.14 scw if (agp_alloc_dmamem(sc->as_dmat, 64 * 1024,
357 1.31 tron 0, &gatt->ag_dmamap, &virtual, &gatt->ag_physical,
358 1.31 tron &gatt->ag_dmaseg, 1, &dummyseg) != 0) {
359 1.14 scw free(gatt, M_AGP);
360 1.1 fvdl agp_generic_detach(sc);
361 1.1 fvdl return ENOMEM;
362 1.1 fvdl }
363 1.31 tron gatt->ag_virtual = (uint32_t *)virtual;
364 1.14 scw gatt->ag_size = gatt->ag_entries * sizeof(u_int32_t);
365 1.14 scw memset(gatt->ag_virtual, 0, gatt->ag_size);
366 1.25 perry
367 1.14 scw agp_flush_cache();
368 1.14 scw /* Install the GATT. */
369 1.14 scw WRITE4(AGP_I810_PGTBL_CTL, gatt->ag_physical | 1);
370 1.17 hannken } else if (isc->chiptype == CHIP_I830) {
371 1.14 scw /* The i830 automatically initializes the 128k gatt on boot. */
372 1.14 scw pcireg_t reg;
373 1.14 scw u_int32_t pgtblctl;
374 1.14 scw u_int16_t gcc1;
375 1.14 scw
376 1.14 scw reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
377 1.14 scw gcc1 = (u_int16_t)(reg >> 16);
378 1.14 scw switch (gcc1 & AGP_I830_GCC1_GMS) {
379 1.14 scw case AGP_I830_GCC1_GMS_STOLEN_512:
380 1.14 scw isc->stolen = (512 - 132) * 1024 / 4096;
381 1.14 scw break;
382 1.25 perry case AGP_I830_GCC1_GMS_STOLEN_1024:
383 1.14 scw isc->stolen = (1024 - 132) * 1024 / 4096;
384 1.14 scw break;
385 1.25 perry case AGP_I830_GCC1_GMS_STOLEN_8192:
386 1.14 scw isc->stolen = (8192 - 132) * 1024 / 4096;
387 1.14 scw break;
388 1.14 scw default:
389 1.14 scw isc->stolen = 0;
390 1.15 thorpej aprint_error(
391 1.15 thorpej ": unknown memory configuration, disabling\n");
392 1.14 scw agp_generic_detach(sc);
393 1.14 scw return EINVAL;
394 1.14 scw }
395 1.45 joerg
396 1.14 scw if (isc->stolen > 0) {
397 1.17 hannken aprint_error(": detected %dk stolen memory\n%s",
398 1.17 hannken isc->stolen * 4, sc->as_dev.dv_xname);
399 1.14 scw }
400 1.17 hannken
401 1.17 hannken /* GATT address is already in there, make sure it's enabled */
402 1.17 hannken pgtblctl = READ4(AGP_I810_PGTBL_CTL);
403 1.17 hannken pgtblctl |= 1;
404 1.17 hannken WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
405 1.17 hannken
406 1.17 hannken gatt->ag_physical = pgtblctl & ~1;
407 1.42 markd } else if (isc->chiptype == CHIP_I855 || isc->chiptype == CHIP_I915 ||
408 1.45 joerg isc->chiptype == CHIP_I965 || isc->chiptype == CHIP_G33) {
409 1.17 hannken pcireg_t reg;
410 1.42 markd u_int32_t pgtblctl, stolen;
411 1.17 hannken u_int16_t gcc1;
412 1.17 hannken
413 1.45 joerg reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I855_GCC1);
414 1.45 joerg gcc1 = (u_int16_t)(reg >> 16);
415 1.45 joerg
416 1.42 markd /* Stolen memory is set up at the beginning of the aperture by
417 1.42 markd * the BIOS, consisting of the GATT followed by 4kb for the
418 1.42 markd * BIOS display.
419 1.42 markd */
420 1.42 markd switch (isc->chiptype) {
421 1.42 markd case CHIP_I855:
422 1.42 markd stolen = 128 + 4;
423 1.42 markd break;
424 1.42 markd case CHIP_I915:
425 1.42 markd stolen = 256 + 4;
426 1.42 markd break;
427 1.42 markd case CHIP_I965:
428 1.42 markd stolen = 512 + 4;
429 1.42 markd break;
430 1.45 joerg case CHIP_G33:
431 1.45 joerg switch (gcc1 & AGP_G33_PGTBL_SIZE_MASK) {
432 1.45 joerg case AGP_G33_PGTBL_SIZE_1M:
433 1.45 joerg stolen = 1024 + 4;
434 1.45 joerg break;
435 1.45 joerg case AGP_G33_PGTBL_SIZE_2M:
436 1.45 joerg stolen = 2048 + 4;
437 1.45 joerg break;
438 1.45 joerg default:
439 1.45 joerg aprint_error(": bad gtt size\n");
440 1.45 joerg agp_generic_detach(sc);
441 1.45 joerg return EINVAL;
442 1.45 joerg }
443 1.45 joerg break;
444 1.42 markd default:
445 1.42 markd aprint_error(": bad chiptype\n");
446 1.42 markd agp_generic_detach(sc);
447 1.42 markd return EINVAL;
448 1.42 markd }
449 1.42 markd
450 1.17 hannken switch (gcc1 & AGP_I855_GCC1_GMS) {
451 1.17 hannken case AGP_I855_GCC1_GMS_STOLEN_1M:
452 1.42 markd isc->stolen = (1024 - stolen) * 1024 / 4096;
453 1.17 hannken break;
454 1.17 hannken case AGP_I855_GCC1_GMS_STOLEN_4M:
455 1.42 markd isc->stolen = (4096 - stolen) * 1024 / 4096;
456 1.17 hannken break;
457 1.17 hannken case AGP_I855_GCC1_GMS_STOLEN_8M:
458 1.42 markd isc->stolen = (8192 - stolen) * 1024 / 4096;
459 1.17 hannken break;
460 1.17 hannken case AGP_I855_GCC1_GMS_STOLEN_16M:
461 1.42 markd isc->stolen = (16384 - stolen) * 1024 / 4096;
462 1.17 hannken break;
463 1.17 hannken case AGP_I855_GCC1_GMS_STOLEN_32M:
464 1.42 markd isc->stolen = (32768 - stolen) * 1024 / 4096;
465 1.41 sborrill break;
466 1.41 sborrill case AGP_I915_GCC1_GMS_STOLEN_48M:
467 1.42 markd isc->stolen = (49152 - stolen) * 1024 / 4096;
468 1.41 sborrill break;
469 1.41 sborrill case AGP_I915_GCC1_GMS_STOLEN_64M:
470 1.42 markd isc->stolen = (65536 - stolen) * 1024 / 4096;
471 1.41 sborrill break;
472 1.46 markd case AGP_G33_GCC1_GMS_STOLEN_128M:
473 1.46 markd isc->stolen = ((128 * 1024) - stolen) * 1024 / 4096;
474 1.46 markd break;
475 1.46 markd case AGP_G33_GCC1_GMS_STOLEN_256M:
476 1.46 markd isc->stolen = ((256 * 1024) - stolen) * 1024 / 4096;
477 1.46 markd break;
478 1.28 christos default:
479 1.28 christos isc->stolen = 0;
480 1.28 christos aprint_error(
481 1.28 christos ": unknown memory configuration, disabling\n");
482 1.28 christos agp_generic_detach(sc);
483 1.28 christos return EINVAL;
484 1.28 christos }
485 1.28 christos if (isc->stolen > 0) {
486 1.28 christos aprint_error(": detected %dk stolen memory\n%s",
487 1.28 christos isc->stolen * 4, sc->as_dev.dv_xname);
488 1.28 christos }
489 1.28 christos
490 1.28 christos /* GATT address is already in there, make sure it's enabled */
491 1.28 christos pgtblctl = READ4(AGP_I810_PGTBL_CTL);
492 1.28 christos pgtblctl |= 1;
493 1.28 christos WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
494 1.28 christos
495 1.28 christos gatt->ag_physical = pgtblctl & ~1;
496 1.1 fvdl }
497 1.1 fvdl
498 1.1 fvdl /*
499 1.1 fvdl * Make sure the chipset can see everything.
500 1.1 fvdl */
501 1.1 fvdl agp_flush_cache();
502 1.14 scw
503 1.33 jmcneill isc->sc_powerhook = powerhook_establish(sc->as_dev.dv_xname,
504 1.33 jmcneill agp_i810_powerhook, sc);
505 1.24 jmcneill if (isc->sc_powerhook == NULL)
506 1.24 jmcneill printf("%s: WARNING: unable to establish PCI power hook\n",
507 1.24 jmcneill sc->as_dev.dv_xname);
508 1.24 jmcneill
509 1.40 christos #if 0
510 1.37 drochner /*
511 1.37 drochner * another device (drm) may need access to this region
512 1.37 drochner * we do not need it anymore
513 1.37 drochner */
514 1.37 drochner bus_space_unmap(isc->bst, isc->bsh, mmadrsize);
515 1.40 christos #endif
516 1.37 drochner
517 1.1 fvdl return 0;
518 1.1 fvdl }
519 1.1 fvdl
520 1.1 fvdl #if 0
521 1.1 fvdl static int
522 1.1 fvdl agp_i810_detach(struct agp_softc *sc)
523 1.1 fvdl {
524 1.1 fvdl int error;
525 1.1 fvdl struct agp_i810_softc *isc = sc->as_chipc;
526 1.1 fvdl
527 1.1 fvdl error = agp_generic_detach(sc);
528 1.1 fvdl if (error)
529 1.1 fvdl return error;
530 1.1 fvdl
531 1.1 fvdl /* Clear the GATT base. */
532 1.14 scw if (sc->chiptype == CHIP_I810) {
533 1.14 scw WRITE4(AGP_I810_PGTBL_CTL, 0);
534 1.14 scw } else {
535 1.14 scw unsigned int pgtblctl;
536 1.14 scw pgtblctl = READ4(AGP_I810_PGTBL_CTL);
537 1.14 scw pgtblctl &= ~1;
538 1.14 scw WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
539 1.14 scw }
540 1.1 fvdl
541 1.1 fvdl /* Put the aperture back the way it started. */
542 1.1 fvdl AGP_SET_APERTURE(sc, isc->initial_aperture);
543 1.1 fvdl
544 1.14 scw if (sc->chiptype == CHIP_I810) {
545 1.14 scw agp_free_dmamem(sc->as_dmat, gatt->ag_size, gatt->ag_dmamap,
546 1.36 christos (void *)gatt->ag_virtual, &gatt->ag_dmaseg, 1);
547 1.14 scw }
548 1.14 scw free(sc->gatt, M_AGP);
549 1.1 fvdl
550 1.1 fvdl return 0;
551 1.1 fvdl }
552 1.1 fvdl #endif
553 1.1 fvdl
554 1.1 fvdl static u_int32_t
555 1.1 fvdl agp_i810_get_aperture(struct agp_softc *sc)
556 1.1 fvdl {
557 1.14 scw struct agp_i810_softc *isc = sc->as_chipc;
558 1.14 scw pcireg_t reg;
559 1.42 markd u_int16_t miscc, gcc1, msac;
560 1.14 scw
561 1.42 markd switch (isc->chiptype) {
562 1.42 markd case CHIP_I810:
563 1.14 scw reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM);
564 1.14 scw miscc = (u_int16_t)(reg >> 16);
565 1.14 scw if ((miscc & AGP_I810_MISCC_WINSIZE) ==
566 1.14 scw AGP_I810_MISCC_WINSIZE_32)
567 1.14 scw return 32 * 1024 * 1024;
568 1.14 scw else
569 1.14 scw return 64 * 1024 * 1024;
570 1.42 markd case CHIP_I830:
571 1.14 scw reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
572 1.14 scw gcc1 = (u_int16_t)(reg >> 16);
573 1.14 scw if ((gcc1 & AGP_I830_GCC1_GMASIZE) == AGP_I830_GCC1_GMASIZE_64)
574 1.14 scw return 64 * 1024 * 1024;
575 1.14 scw else
576 1.14 scw return 128 * 1024 * 1024;
577 1.42 markd case CHIP_I855:
578 1.17 hannken return 128 * 1024 * 1024;
579 1.42 markd case CHIP_I915:
580 1.45 joerg case CHIP_G33:
581 1.28 christos reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I915_MSAC);
582 1.28 christos msac = (u_int16_t)(reg >> 16);
583 1.28 christos if (msac & AGP_I915_MSAC_APER_128M)
584 1.28 christos return 128 * 1024 * 1024;
585 1.28 christos else
586 1.28 christos return 256 * 1024 * 1024;
587 1.42 markd case CHIP_I965:
588 1.42 markd return 512 * 1024 * 1024;
589 1.42 markd default:
590 1.42 markd aprint_error(": Unknown chipset\n");
591 1.14 scw }
592 1.42 markd
593 1.42 markd return 0;
594 1.1 fvdl }
595 1.1 fvdl
596 1.1 fvdl static int
597 1.1 fvdl agp_i810_set_aperture(struct agp_softc *sc, u_int32_t aperture)
598 1.1 fvdl {
599 1.14 scw struct agp_i810_softc *isc = sc->as_chipc;
600 1.14 scw pcireg_t reg;
601 1.42 markd u_int16_t miscc, gcc1;
602 1.14 scw
603 1.42 markd switch (isc->chiptype) {
604 1.42 markd case CHIP_I810:
605 1.14 scw /*
606 1.14 scw * Double check for sanity.
607 1.14 scw */
608 1.14 scw if (aperture != (32 * 1024 * 1024) &&
609 1.14 scw aperture != (64 * 1024 * 1024)) {
610 1.14 scw printf("%s: bad aperture size %d\n",
611 1.14 scw sc->as_dev.dv_xname, aperture);
612 1.14 scw return EINVAL;
613 1.14 scw }
614 1.1 fvdl
615 1.14 scw reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM);
616 1.14 scw miscc = (u_int16_t)(reg >> 16);
617 1.14 scw miscc &= ~AGP_I810_MISCC_WINSIZE;
618 1.14 scw if (aperture == 32 * 1024 * 1024)
619 1.14 scw miscc |= AGP_I810_MISCC_WINSIZE_32;
620 1.14 scw else
621 1.14 scw miscc |= AGP_I810_MISCC_WINSIZE_64;
622 1.14 scw
623 1.14 scw reg &= 0x0000ffff;
624 1.14 scw reg |= ((pcireg_t)miscc) << 16;
625 1.14 scw pci_conf_write(sc->as_pc, sc->as_tag, AGP_I810_SMRAM, reg);
626 1.42 markd break;
627 1.42 markd case CHIP_I830:
628 1.14 scw if (aperture != (64 * 1024 * 1024) &&
629 1.14 scw aperture != (128 * 1024 * 1024)) {
630 1.14 scw printf("%s: bad aperture size %d\n",
631 1.14 scw sc->as_dev.dv_xname, aperture);
632 1.14 scw return EINVAL;
633 1.14 scw }
634 1.14 scw reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
635 1.14 scw gcc1 = (u_int16_t)(reg >> 16);
636 1.14 scw gcc1 &= ~AGP_I830_GCC1_GMASIZE;
637 1.14 scw if (aperture == 64 * 1024 * 1024)
638 1.14 scw gcc1 |= AGP_I830_GCC1_GMASIZE_64;
639 1.14 scw else
640 1.14 scw gcc1 |= AGP_I830_GCC1_GMASIZE_128;
641 1.14 scw
642 1.14 scw reg &= 0x0000ffff;
643 1.14 scw reg |= ((pcireg_t)gcc1) << 16;
644 1.14 scw pci_conf_write(sc->as_pc, sc->as_tag, AGP_I830_GCC0, reg);
645 1.42 markd break;
646 1.42 markd case CHIP_I855:
647 1.42 markd case CHIP_I915:
648 1.28 christos if (aperture != agp_i810_get_aperture(sc)) {
649 1.17 hannken printf("%s: bad aperture size %d\n",
650 1.17 hannken sc->as_dev.dv_xname, aperture);
651 1.17 hannken return EINVAL;
652 1.17 hannken }
653 1.42 markd break;
654 1.42 markd case CHIP_I965:
655 1.42 markd if (aperture != 512 * 1024 * 1024) {
656 1.42 markd printf("%s: bad aperture size %d\n",
657 1.42 markd sc->as_dev.dv_xname, aperture);
658 1.42 markd return EINVAL;
659 1.42 markd }
660 1.42 markd break;
661 1.1 fvdl }
662 1.1 fvdl
663 1.1 fvdl return 0;
664 1.1 fvdl }
665 1.1 fvdl
666 1.1 fvdl static int
667 1.1 fvdl agp_i810_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
668 1.1 fvdl {
669 1.1 fvdl struct agp_i810_softc *isc = sc->as_chipc;
670 1.1 fvdl
671 1.14 scw if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT)) {
672 1.29 rpaulo #ifdef AGP_DEBUG
673 1.14 scw printf("%s: failed: offset 0x%08x, shift %d, entries %d\n",
674 1.14 scw sc->as_dev.dv_xname, (int)offset, AGP_PAGE_SHIFT,
675 1.14 scw isc->gatt->ag_entries);
676 1.14 scw #endif
677 1.1 fvdl return EINVAL;
678 1.14 scw }
679 1.14 scw
680 1.17 hannken if (isc->chiptype != CHIP_I830) {
681 1.14 scw if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
682 1.29 rpaulo #ifdef AGP_DEBUG
683 1.14 scw printf("%s: trying to bind into stolen memory",
684 1.14 scw sc->as_dev.dv_xname);
685 1.14 scw #endif
686 1.14 scw return EINVAL;
687 1.14 scw }
688 1.14 scw }
689 1.1 fvdl
690 1.28 christos WRITEGTT(offset, physical | 1);
691 1.1 fvdl return 0;
692 1.1 fvdl }
693 1.1 fvdl
694 1.1 fvdl static int
695 1.1 fvdl agp_i810_unbind_page(struct agp_softc *sc, off_t offset)
696 1.1 fvdl {
697 1.1 fvdl struct agp_i810_softc *isc = sc->as_chipc;
698 1.1 fvdl
699 1.1 fvdl if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT))
700 1.1 fvdl return EINVAL;
701 1.1 fvdl
702 1.17 hannken if (isc->chiptype != CHIP_I810 ) {
703 1.14 scw if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
704 1.29 rpaulo #ifdef AGP_DEBUG
705 1.14 scw printf("%s: trying to unbind from stolen memory",
706 1.14 scw sc->as_dev.dv_xname);
707 1.14 scw #endif
708 1.14 scw return EINVAL;
709 1.14 scw }
710 1.14 scw }
711 1.14 scw
712 1.28 christos WRITEGTT(offset, 0);
713 1.1 fvdl return 0;
714 1.1 fvdl }
715 1.1 fvdl
716 1.1 fvdl /*
717 1.1 fvdl * Writing via memory mapped registers already flushes all TLBs.
718 1.1 fvdl */
719 1.1 fvdl static void
720 1.35 christos agp_i810_flush_tlb(struct agp_softc *sc)
721 1.1 fvdl {
722 1.1 fvdl }
723 1.1 fvdl
724 1.1 fvdl static int
725 1.35 christos agp_i810_enable(struct agp_softc *sc, u_int32_t mode)
726 1.1 fvdl {
727 1.1 fvdl
728 1.1 fvdl return 0;
729 1.1 fvdl }
730 1.1 fvdl
731 1.1 fvdl static struct agp_memory *
732 1.1 fvdl agp_i810_alloc_memory(struct agp_softc *sc, int type, vsize_t size)
733 1.1 fvdl {
734 1.1 fvdl struct agp_i810_softc *isc = sc->as_chipc;
735 1.1 fvdl struct agp_memory *mem;
736 1.1 fvdl
737 1.29 rpaulo #ifdef AGP_DEBUG
738 1.28 christos printf("AGP: alloc(%d, 0x%x)\n", type, (int) size);
739 1.28 christos #endif
740 1.28 christos
741 1.1 fvdl if ((size & (AGP_PAGE_SIZE - 1)) != 0)
742 1.1 fvdl return 0;
743 1.1 fvdl
744 1.1 fvdl if (sc->as_allocated + size > sc->as_maxmem)
745 1.1 fvdl return 0;
746 1.1 fvdl
747 1.1 fvdl if (type == 1) {
748 1.1 fvdl /*
749 1.1 fvdl * Mapping local DRAM into GATT.
750 1.1 fvdl */
751 1.17 hannken if (isc->chiptype != CHIP_I810 )
752 1.14 scw return 0;
753 1.1 fvdl if (size != isc->dcache_size)
754 1.1 fvdl return 0;
755 1.1 fvdl } else if (type == 2) {
756 1.1 fvdl /*
757 1.28 christos * Bogus mapping for the hardware cursor.
758 1.1 fvdl */
759 1.28 christos if (size != AGP_PAGE_SIZE && size != 4 * AGP_PAGE_SIZE)
760 1.1 fvdl return 0;
761 1.1 fvdl }
762 1.1 fvdl
763 1.10 tsutsui mem = malloc(sizeof *mem, M_AGP, M_WAITOK|M_ZERO);
764 1.1 fvdl if (mem == NULL)
765 1.1 fvdl return NULL;
766 1.1 fvdl mem->am_id = sc->as_nextid++;
767 1.1 fvdl mem->am_size = size;
768 1.1 fvdl mem->am_type = type;
769 1.1 fvdl
770 1.1 fvdl if (type == 2) {
771 1.1 fvdl /*
772 1.28 christos * Allocate and wire down the memory now so that we can
773 1.1 fvdl * get its physical address.
774 1.1 fvdl */
775 1.1 fvdl mem->am_dmaseg = malloc(sizeof *mem->am_dmaseg, M_AGP,
776 1.1 fvdl M_WAITOK);
777 1.1 fvdl if (mem->am_dmaseg == NULL) {
778 1.1 fvdl free(mem, M_AGP);
779 1.1 fvdl return NULL;
780 1.1 fvdl }
781 1.1 fvdl if (agp_alloc_dmamem(sc->as_dmat, size, 0,
782 1.1 fvdl &mem->am_dmamap, &mem->am_virtual, &mem->am_physical,
783 1.1 fvdl mem->am_dmaseg, 1, &mem->am_nseg) != 0) {
784 1.1 fvdl free(mem->am_dmaseg, M_AGP);
785 1.1 fvdl free(mem, M_AGP);
786 1.1 fvdl return NULL;
787 1.1 fvdl }
788 1.28 christos memset(mem->am_virtual, 0, size);
789 1.1 fvdl } else if (type != 1) {
790 1.4 drochner if (bus_dmamap_create(sc->as_dmat, size, size / PAGE_SIZE + 1,
791 1.4 drochner size, 0, BUS_DMA_NOWAIT,
792 1.4 drochner &mem->am_dmamap) != 0) {
793 1.1 fvdl free(mem, M_AGP);
794 1.1 fvdl return NULL;
795 1.1 fvdl }
796 1.1 fvdl }
797 1.1 fvdl
798 1.1 fvdl TAILQ_INSERT_TAIL(&sc->as_memory, mem, am_link);
799 1.1 fvdl sc->as_allocated += size;
800 1.1 fvdl
801 1.1 fvdl return mem;
802 1.1 fvdl }
803 1.1 fvdl
804 1.1 fvdl static int
805 1.1 fvdl agp_i810_free_memory(struct agp_softc *sc, struct agp_memory *mem)
806 1.1 fvdl {
807 1.1 fvdl if (mem->am_is_bound)
808 1.1 fvdl return EBUSY;
809 1.1 fvdl
810 1.1 fvdl if (mem->am_type == 2) {
811 1.1 fvdl agp_free_dmamem(sc->as_dmat, mem->am_size, mem->am_dmamap,
812 1.1 fvdl mem->am_virtual, mem->am_dmaseg, mem->am_nseg);
813 1.1 fvdl free(mem->am_dmaseg, M_AGP);
814 1.1 fvdl }
815 1.1 fvdl
816 1.1 fvdl sc->as_allocated -= mem->am_size;
817 1.1 fvdl TAILQ_REMOVE(&sc->as_memory, mem, am_link);
818 1.1 fvdl free(mem, M_AGP);
819 1.1 fvdl return 0;
820 1.1 fvdl }
821 1.1 fvdl
822 1.1 fvdl static int
823 1.1 fvdl agp_i810_bind_memory(struct agp_softc *sc, struct agp_memory *mem,
824 1.1 fvdl off_t offset)
825 1.1 fvdl {
826 1.1 fvdl struct agp_i810_softc *isc = sc->as_chipc;
827 1.4 drochner u_int32_t regval, i;
828 1.4 drochner
829 1.4 drochner /*
830 1.4 drochner * XXX evil hack: the PGTBL_CTL appearently gets overwritten by the
831 1.4 drochner * X server for mysterious reasons which leads to crashes if we write
832 1.4 drochner * to the GTT through the MMIO window.
833 1.4 drochner * Until the issue is solved, simply restore it.
834 1.4 drochner */
835 1.37 drochner
836 1.37 drochner #if 0
837 1.4 drochner regval = bus_space_read_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL);
838 1.4 drochner if (regval != (isc->gatt->ag_physical | 1)) {
839 1.4 drochner printf("agp_i810_bind_memory: PGTBL_CTL is 0x%x - fixing\n",
840 1.4 drochner regval);
841 1.4 drochner bus_space_write_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL,
842 1.4 drochner isc->gatt->ag_physical | 1);
843 1.4 drochner }
844 1.37 drochner #endif
845 1.37 drochner regval = 0;
846 1.1 fvdl
847 1.5 drochner if (mem->am_type == 2) {
848 1.28 christos WRITEGTT(offset, mem->am_physical | 1);
849 1.5 drochner mem->am_offset = offset;
850 1.5 drochner mem->am_is_bound = 1;
851 1.1 fvdl return 0;
852 1.5 drochner }
853 1.5 drochner
854 1.1 fvdl if (mem->am_type != 1)
855 1.1 fvdl return agp_generic_bind_memory(sc, mem, offset);
856 1.1 fvdl
857 1.17 hannken if (isc->chiptype != CHIP_I810)
858 1.14 scw return EINVAL;
859 1.14 scw
860 1.28 christos for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
861 1.28 christos WRITEGTT(offset, i | 3);
862 1.13 drochner mem->am_is_bound = 1;
863 1.1 fvdl return 0;
864 1.1 fvdl }
865 1.1 fvdl
866 1.1 fvdl static int
867 1.1 fvdl agp_i810_unbind_memory(struct agp_softc *sc, struct agp_memory *mem)
868 1.1 fvdl {
869 1.1 fvdl struct agp_i810_softc *isc = sc->as_chipc;
870 1.1 fvdl u_int32_t i;
871 1.1 fvdl
872 1.5 drochner if (mem->am_type == 2) {
873 1.28 christos WRITEGTT(mem->am_offset, 0);
874 1.5 drochner mem->am_offset = 0;
875 1.5 drochner mem->am_is_bound = 0;
876 1.1 fvdl return 0;
877 1.5 drochner }
878 1.1 fvdl
879 1.1 fvdl if (mem->am_type != 1)
880 1.1 fvdl return agp_generic_unbind_memory(sc, mem);
881 1.14 scw
882 1.17 hannken if (isc->chiptype != CHIP_I810)
883 1.14 scw return EINVAL;
884 1.1 fvdl
885 1.1 fvdl for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
886 1.28 christos WRITEGTT(i, 0);
887 1.13 drochner mem->am_is_bound = 0;
888 1.1 fvdl return 0;
889 1.1 fvdl }
890 1.24 jmcneill
891 1.24 jmcneill static void
892 1.24 jmcneill agp_i810_powerhook(int why, void *arg)
893 1.24 jmcneill {
894 1.24 jmcneill struct agp_softc *sc = (struct agp_softc *)arg;
895 1.24 jmcneill struct agp_i810_softc *isc = sc->as_chipc;
896 1.24 jmcneill
897 1.24 jmcneill if (why == PWR_RESUME) {
898 1.24 jmcneill pci_conf_restore(sc->as_pc, sc->as_tag, &isc->sc_pciconf);
899 1.24 jmcneill agp_flush_cache();
900 1.24 jmcneill } else if ((why == PWR_STANDBY) || (why == PWR_SUSPEND))
901 1.24 jmcneill pci_conf_capture(sc->as_pc, sc->as_tag, &isc->sc_pciconf);
902 1.24 jmcneill
903 1.24 jmcneill return;
904 1.24 jmcneill }
905