agp_amd.c revision 1.5 1 1.5 fvdl /* $NetBSD: agp_amd.c,v 1.5 2001/10/01 21:54:48 fvdl Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*-
4 1.1 fvdl * Copyright (c) 2000 Doug Rabson
5 1.1 fvdl * All rights reserved.
6 1.1 fvdl *
7 1.1 fvdl * Redistribution and use in source and binary forms, with or without
8 1.1 fvdl * modification, are permitted provided that the following conditions
9 1.1 fvdl * are met:
10 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
11 1.1 fvdl * notice, this list of conditions and the following disclaimer.
12 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
14 1.1 fvdl * documentation and/or other materials provided with the distribution.
15 1.1 fvdl *
16 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 1.1 fvdl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 1.1 fvdl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 1.1 fvdl * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 1.1 fvdl * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 1.1 fvdl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 1.1 fvdl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 1.1 fvdl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 1.1 fvdl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 fvdl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 fvdl * SUCH DAMAGE.
27 1.1 fvdl *
28 1.1 fvdl * $FreeBSD: src/sys/pci/agp_amd.c,v 1.6 2001/07/05 21:28:46 jhb Exp $
29 1.1 fvdl */
30 1.1 fvdl
31 1.1 fvdl #include <sys/param.h>
32 1.1 fvdl #include <sys/systm.h>
33 1.1 fvdl #include <sys/malloc.h>
34 1.1 fvdl #include <sys/kernel.h>
35 1.1 fvdl #include <sys/lock.h>
36 1.1 fvdl #include <sys/proc.h>
37 1.1 fvdl #include <sys/conf.h>
38 1.1 fvdl #include <sys/device.h>
39 1.1 fvdl #include <sys/agpio.h>
40 1.1 fvdl
41 1.1 fvdl #include <uvm/uvm_extern.h>
42 1.1 fvdl
43 1.1 fvdl #include <dev/pci/pcivar.h>
44 1.1 fvdl #include <dev/pci/pcireg.h>
45 1.1 fvdl #include <dev/pci/agpvar.h>
46 1.1 fvdl #include <dev/pci/agpreg.h>
47 1.1 fvdl
48 1.1 fvdl #include <dev/pci/pcidevs.h>
49 1.1 fvdl
50 1.1 fvdl #define READ2(off) bus_space_read_2(asc->iot, asc->ioh, off)
51 1.1 fvdl #define READ4(off) bus_space_read_4(asc->iot, asc->ioh, off)
52 1.1 fvdl #define WRITE2(off,v) bus_space_write_2(asc->iot, asc->ioh, off, v)
53 1.1 fvdl #define WRITE4(off,v) bus_space_write_4(asc->iot, asc->ioh, off, v)
54 1.1 fvdl
55 1.1 fvdl struct agp_amd_gatt {
56 1.1 fvdl bus_dmamap_t ag_dmamap;
57 1.1 fvdl bus_dma_segment_t ag_dmaseg;
58 1.1 fvdl int ag_nseg;
59 1.1 fvdl u_int32_t ag_entries;
60 1.1 fvdl u_int32_t *ag_vdir; /* virtual address of page dir */
61 1.1 fvdl bus_addr_t ag_pdir; /* bus address of page dir */
62 1.1 fvdl u_int32_t *ag_virtual; /* virtual address of gatt */
63 1.1 fvdl bus_addr_t ag_physical; /* bus address of gatt */
64 1.1 fvdl size_t ag_size;
65 1.1 fvdl };
66 1.1 fvdl
67 1.1 fvdl struct agp_amd_softc {
68 1.1 fvdl u_int32_t initial_aperture; /* aperture size at startup */
69 1.1 fvdl struct agp_amd_gatt *gatt;
70 1.1 fvdl bus_space_handle_t ioh;
71 1.1 fvdl bus_space_tag_t iot;
72 1.1 fvdl };
73 1.1 fvdl
74 1.1 fvdl static u_int32_t agp_amd_get_aperture(struct agp_softc *);
75 1.1 fvdl static int agp_amd_set_aperture(struct agp_softc *, u_int32_t);
76 1.1 fvdl static int agp_amd_bind_page(struct agp_softc *, off_t, bus_addr_t);
77 1.1 fvdl static int agp_amd_unbind_page(struct agp_softc *, off_t);
78 1.1 fvdl static void agp_amd_flush_tlb(struct agp_softc *);
79 1.1 fvdl
80 1.1 fvdl
81 1.1 fvdl struct agp_methods agp_amd_methods = {
82 1.1 fvdl agp_amd_get_aperture,
83 1.1 fvdl agp_amd_set_aperture,
84 1.1 fvdl agp_amd_bind_page,
85 1.1 fvdl agp_amd_unbind_page,
86 1.1 fvdl agp_amd_flush_tlb,
87 1.1 fvdl agp_generic_enable,
88 1.1 fvdl agp_generic_alloc_memory,
89 1.1 fvdl agp_generic_free_memory,
90 1.1 fvdl agp_generic_bind_memory,
91 1.1 fvdl agp_generic_unbind_memory,
92 1.1 fvdl };
93 1.1 fvdl
94 1.1 fvdl
95 1.1 fvdl static struct agp_amd_gatt *
96 1.1 fvdl agp_amd_alloc_gatt(struct agp_softc *sc)
97 1.1 fvdl {
98 1.1 fvdl u_int32_t apsize = AGP_GET_APERTURE(sc);
99 1.1 fvdl u_int32_t entries = apsize >> AGP_PAGE_SHIFT;
100 1.1 fvdl struct agp_amd_gatt *gatt;
101 1.1 fvdl int i, npages;
102 1.4 fvdl caddr_t vdir;
103 1.1 fvdl
104 1.1 fvdl gatt = malloc(sizeof(struct agp_amd_gatt), M_AGP, M_NOWAIT);
105 1.1 fvdl if (!gatt)
106 1.1 fvdl return 0;
107 1.1 fvdl
108 1.1 fvdl if (agp_alloc_dmamem(sc->as_dmat,
109 1.1 fvdl AGP_PAGE_SIZE + entries * sizeof(u_int32_t), 0,
110 1.4 fvdl &gatt->ag_dmamap, (caddr_t *)&vdir, &gatt->ag_pdir,
111 1.1 fvdl &gatt->ag_dmaseg, 1, &gatt->ag_nseg) != 0) {
112 1.1 fvdl printf("failed to allocate GATT\n");
113 1.1 fvdl return NULL;
114 1.1 fvdl }
115 1.1 fvdl
116 1.4 fvdl gatt->ag_vdir = (u_int32_t *)vdir;
117 1.1 fvdl gatt->ag_entries = entries;
118 1.4 fvdl gatt->ag_virtual = (u_int32_t *)(vdir + AGP_PAGE_SIZE);
119 1.1 fvdl gatt->ag_physical = gatt->ag_pdir + AGP_PAGE_SIZE;
120 1.1 fvdl gatt->ag_size = AGP_PAGE_SIZE + entries * sizeof(u_int32_t);
121 1.1 fvdl
122 1.1 fvdl memset(gatt->ag_vdir, 0, AGP_PAGE_SIZE);
123 1.1 fvdl memset(gatt->ag_virtual, 0, entries * sizeof(u_int32_t));
124 1.1 fvdl
125 1.1 fvdl /*
126 1.1 fvdl * Map the pages of the GATT into the page directory.
127 1.1 fvdl */
128 1.1 fvdl npages = ((entries * sizeof(u_int32_t) + AGP_PAGE_SIZE - 1)
129 1.1 fvdl >> AGP_PAGE_SHIFT);
130 1.1 fvdl
131 1.1 fvdl for (i = 0; i < npages; i++)
132 1.1 fvdl gatt->ag_vdir[i] = (gatt->ag_physical + i * AGP_PAGE_SIZE) | 1;
133 1.1 fvdl
134 1.1 fvdl /*
135 1.1 fvdl * Make sure the chipset can see everything.
136 1.1 fvdl */
137 1.1 fvdl agp_flush_cache();
138 1.1 fvdl
139 1.1 fvdl return gatt;
140 1.1 fvdl }
141 1.1 fvdl
142 1.1 fvdl #if 0
143 1.1 fvdl static void
144 1.1 fvdl agp_amd_free_gatt(struct agp_softc *sc, struct agp_amd_gatt *gatt)
145 1.1 fvdl {
146 1.1 fvdl agp_free_dmamem(sc->as_dmat, gatt->ag_size,
147 1.1 fvdl gatt->ag_dmamap, (caddr_t)gatt->ag_virtual, &gatt->ag_dmaseg,
148 1.1 fvdl gatt->ag_nseg);
149 1.1 fvdl free(gatt, M_AGP);
150 1.1 fvdl }
151 1.1 fvdl #endif
152 1.1 fvdl
153 1.1 fvdl int
154 1.2 thorpej agp_amd_match(const struct pci_attach_args *pa)
155 1.1 fvdl {
156 1.1 fvdl
157 1.1 fvdl switch (PCI_PRODUCT(pa->pa_id)) {
158 1.1 fvdl case PCI_PRODUCT_AMD_SC751_SC:
159 1.5 fvdl case PCI_PRODUCT_AMD_SC762_NB:
160 1.1 fvdl return 1;
161 1.1 fvdl }
162 1.1 fvdl
163 1.1 fvdl return 0;
164 1.1 fvdl }
165 1.1 fvdl
166 1.1 fvdl int
167 1.1 fvdl agp_amd_attach(struct device *parent, struct device *self, void *aux)
168 1.1 fvdl {
169 1.1 fvdl struct agp_softc *sc = (void *)self;
170 1.1 fvdl struct agp_amd_softc *asc;
171 1.1 fvdl struct pci_attach_args *pa = aux;
172 1.1 fvdl struct agp_amd_gatt *gatt;
173 1.1 fvdl pcireg_t reg;
174 1.1 fvdl int error;
175 1.1 fvdl
176 1.1 fvdl asc = malloc(sizeof *asc, M_AGP, M_NOWAIT);
177 1.1 fvdl if (asc == NULL) {
178 1.1 fvdl printf(": can't allocate softc\n");
179 1.1 fvdl /* agp_generic_detach(sc) */
180 1.1 fvdl return ENOMEM;
181 1.1 fvdl }
182 1.1 fvdl memset(asc, 0, sizeof *asc);
183 1.1 fvdl
184 1.3 thorpej error = pci_mapreg_map(pa, AGP_AMD751_REGISTERS, PCI_MAPREG_TYPE_MEM, 0,
185 1.1 fvdl &asc->iot, &asc->ioh, NULL, NULL);
186 1.1 fvdl if (error != 0) {
187 1.3 thorpej printf(": can't map AGP registers\n");
188 1.1 fvdl agp_generic_detach(sc);
189 1.1 fvdl return error;
190 1.1 fvdl }
191 1.1 fvdl
192 1.1 fvdl if (agp_map_aperture(pa, sc) != 0) {
193 1.1 fvdl printf(": can't map aperture\n");
194 1.1 fvdl agp_generic_detach(sc);
195 1.1 fvdl free(asc, M_AGP);
196 1.1 fvdl return ENXIO;
197 1.1 fvdl }
198 1.1 fvdl pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_AGP, &sc->as_capoff,
199 1.1 fvdl NULL);
200 1.1 fvdl sc->as_methods = &agp_amd_methods;
201 1.1 fvdl sc->as_chipc = asc;
202 1.1 fvdl asc->initial_aperture = AGP_GET_APERTURE(sc);
203 1.1 fvdl
204 1.1 fvdl for (;;) {
205 1.1 fvdl gatt = agp_amd_alloc_gatt(sc);
206 1.1 fvdl if (gatt)
207 1.1 fvdl break;
208 1.1 fvdl
209 1.1 fvdl /*
210 1.1 fvdl * Probably contigmalloc failure. Try reducing the
211 1.1 fvdl * aperture so that the gatt size reduces.
212 1.1 fvdl */
213 1.1 fvdl if (AGP_SET_APERTURE(sc, AGP_GET_APERTURE(sc) / 2)) {
214 1.1 fvdl printf(": can't set aperture\n");
215 1.1 fvdl return ENOMEM;
216 1.1 fvdl }
217 1.1 fvdl }
218 1.1 fvdl asc->gatt = gatt;
219 1.1 fvdl
220 1.1 fvdl /* Install the gatt. */
221 1.1 fvdl WRITE4(AGP_AMD751_ATTBASE, gatt->ag_physical);
222 1.1 fvdl
223 1.1 fvdl /* Enable synchronisation between host and agp. */
224 1.1 fvdl reg = pci_conf_read(pa->pa_pc, pa->pa_tag, AGP_AMD751_MODECTRL);
225 1.1 fvdl reg &= ~0x00ff00ff;
226 1.1 fvdl reg |= (AGP_AMD751_MODECTRL_SYNEN) | (AGP_AMD751_MODECTRL2_GPDCE << 16);
227 1.1 fvdl pci_conf_write(pa->pa_pc, pa->pa_tag, AGP_AMD751_MODECTRL, reg);
228 1.1 fvdl /* Enable the TLB and flush */
229 1.1 fvdl WRITE2(AGP_AMD751_STATUS,
230 1.1 fvdl READ2(AGP_AMD751_STATUS) | AGP_AMD751_STATUS_GCE);
231 1.1 fvdl AGP_FLUSH_TLB(sc);
232 1.1 fvdl
233 1.1 fvdl return 0;
234 1.1 fvdl }
235 1.1 fvdl
236 1.1 fvdl #if 0
237 1.1 fvdl static int
238 1.1 fvdl agp_amd_detach(struct agp_softc *sc)
239 1.1 fvdl {
240 1.1 fvdl pcireg_t reg;
241 1.1 fvdl struct agp_amd_softc *asc = sc->as_chipc;
242 1.1 fvdl
243 1.1 fvdl /* Disable the TLB.. */
244 1.1 fvdl WRITE2(AGP_AMD751_STATUS,
245 1.1 fvdl READ2(AGP_AMD751_STATUS) & ~AGP_AMD751_STATUS_GCE);
246 1.1 fvdl
247 1.1 fvdl /* Disable host-agp sync */
248 1.1 fvdl reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_AMD751_MODECTRL);
249 1.1 fvdl reg &= 0xffffff00;
250 1.1 fvdl pci_conf_write(sc->as_pc, sc->as_tag, AGP_AMD751_MODECTRL, reg);
251 1.1 fvdl
252 1.1 fvdl /* Clear the GATT base */
253 1.1 fvdl WRITE4(AGP_AMD751_ATTBASE, 0);
254 1.1 fvdl
255 1.1 fvdl /* Put the aperture back the way it started. */
256 1.1 fvdl AGP_SET_APERTURE(sc, asc->initial_aperture);
257 1.1 fvdl
258 1.1 fvdl agp_amd_free_gatt(sc, asc->gatt);
259 1.1 fvdl
260 1.1 fvdl /* XXXfvdl no pci_mapreg_unmap */
261 1.1 fvdl
262 1.1 fvdl return 0;
263 1.1 fvdl }
264 1.1 fvdl #endif
265 1.1 fvdl
266 1.1 fvdl static u_int32_t
267 1.1 fvdl agp_amd_get_aperture(struct agp_softc *sc)
268 1.1 fvdl {
269 1.1 fvdl int vas;
270 1.1 fvdl
271 1.1 fvdl vas = (pci_conf_read(sc->as_pc, sc->as_tag, AGP_AMD751_APCTRL) & 0x06);
272 1.1 fvdl vas >>= 1;
273 1.1 fvdl /*
274 1.1 fvdl * The aperture size is equal to 32M<<vas.
275 1.1 fvdl */
276 1.1 fvdl return (32*1024*1024) << vas;
277 1.1 fvdl }
278 1.1 fvdl
279 1.1 fvdl static int
280 1.1 fvdl agp_amd_set_aperture(struct agp_softc *sc, u_int32_t aperture)
281 1.1 fvdl {
282 1.1 fvdl int vas;
283 1.1 fvdl pcireg_t reg;
284 1.1 fvdl
285 1.1 fvdl /*
286 1.1 fvdl * Check for a power of two and make sure its within the
287 1.1 fvdl * programmable range.
288 1.1 fvdl */
289 1.1 fvdl if (aperture & (aperture - 1)
290 1.1 fvdl || aperture < 32*1024*1024
291 1.1 fvdl || aperture > 2U*1024*1024*1024)
292 1.1 fvdl return EINVAL;
293 1.1 fvdl
294 1.1 fvdl vas = ffs(aperture / 32*1024*1024) - 1;
295 1.1 fvdl
296 1.1 fvdl reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_AMD751_APCTRL);
297 1.1 fvdl reg = (reg & ~0x06) | (vas << 1);
298 1.1 fvdl pci_conf_write(sc->as_pc, sc->as_tag, AGP_AMD751_APCTRL, reg);
299 1.1 fvdl
300 1.1 fvdl return 0;
301 1.1 fvdl }
302 1.1 fvdl
303 1.1 fvdl static int
304 1.1 fvdl agp_amd_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
305 1.1 fvdl {
306 1.1 fvdl struct agp_amd_softc *asc = sc->as_chipc;
307 1.1 fvdl
308 1.1 fvdl if (offset < 0 || offset >= (asc->gatt->ag_entries << AGP_PAGE_SHIFT))
309 1.1 fvdl return EINVAL;
310 1.1 fvdl
311 1.1 fvdl asc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = physical | 1;
312 1.1 fvdl return 0;
313 1.1 fvdl }
314 1.1 fvdl
315 1.1 fvdl static int
316 1.1 fvdl agp_amd_unbind_page(struct agp_softc *sc, off_t offset)
317 1.1 fvdl {
318 1.1 fvdl struct agp_amd_softc *asc = sc->as_chipc;
319 1.1 fvdl
320 1.1 fvdl if (offset < 0 || offset >= (asc->gatt->ag_entries << AGP_PAGE_SHIFT))
321 1.1 fvdl return EINVAL;
322 1.1 fvdl
323 1.1 fvdl asc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = 0;
324 1.1 fvdl return 0;
325 1.1 fvdl }
326 1.1 fvdl
327 1.1 fvdl static void
328 1.1 fvdl agp_amd_flush_tlb(struct agp_softc *sc)
329 1.1 fvdl {
330 1.1 fvdl struct agp_amd_softc *asc = sc->as_chipc;
331 1.1 fvdl
332 1.1 fvdl /* Set the cache invalidate bit and wait for the chipset to clear */
333 1.1 fvdl WRITE4(AGP_AMD751_TLBCTRL, 1);
334 1.1 fvdl do {
335 1.1 fvdl DELAY(1);
336 1.1 fvdl } while (READ4(AGP_AMD751_TLBCTRL));
337 1.1 fvdl }
338