agp_apple.c revision 1.7 1 1.7 christos /* $NetBSD: agp_apple.c,v 1.7 2014/11/02 00:05:03 christos Exp $ */
2 1.1 macallan
3 1.1 macallan /*-
4 1.1 macallan * Copyright (c) 2007 Michael Lorenz
5 1.1 macallan * All rights reserved.
6 1.1 macallan *
7 1.1 macallan * Redistribution and use in source and binary forms, with or without
8 1.1 macallan * modification, are permitted provided that the following conditions
9 1.1 macallan * are met:
10 1.1 macallan * 1. Redistributions of source code must retain the above copyright
11 1.1 macallan * notice, this list of conditions and the following disclaimer.
12 1.1 macallan * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 macallan * notice, this list of conditions and the following disclaimer in the
14 1.1 macallan * documentation and/or other materials provided with the distribution.
15 1.1 macallan *
16 1.1 macallan * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 macallan * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 macallan * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 macallan * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 macallan * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 macallan * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 macallan * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 macallan * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 macallan * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 macallan * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 macallan * POSSIBILITY OF SUCH DAMAGE.
27 1.1 macallan */
28 1.1 macallan
29 1.1 macallan #include <sys/cdefs.h>
30 1.7 christos __KERNEL_RCSID(0, "$NetBSD: agp_apple.c,v 1.7 2014/11/02 00:05:03 christos Exp $");
31 1.1 macallan #include <sys/param.h>
32 1.1 macallan #include <sys/systm.h>
33 1.1 macallan #include <sys/malloc.h>
34 1.1 macallan #include <sys/kernel.h>
35 1.1 macallan #include <sys/proc.h>
36 1.1 macallan #include <sys/conf.h>
37 1.1 macallan #include <sys/device.h>
38 1.1 macallan #include <sys/agpio.h>
39 1.1 macallan
40 1.1 macallan #include <dev/pci/pcivar.h>
41 1.1 macallan #include <dev/pci/pcireg.h>
42 1.1 macallan #include <dev/pci/agpvar.h>
43 1.1 macallan #include <dev/pci/agpreg.h>
44 1.1 macallan
45 1.2 ad #include <sys/bus.h>
46 1.1 macallan
47 1.7 christos #define APPLE_UNINORTH_GART_BASE 0x8c
48 1.7 christos #define APPLE_UNINORTH_GART_BASE_ADDR 0x90
49 1.7 christos #define APPLE_UNINORTH_GART_CTRL 0x94
50 1.7 christos #define APPLE_UNINORTH_GART_INVAL 0x00000001
51 1.7 christos #define APPLE_UNINORTH_GART_ENABLE 0x00000100
52 1.7 christos #define APPLE_UNINORTH_GART_2XRESET 0x00010000
53 1.7 christos #define APPLE_UNINORTH_GART_PERFRD 0x00080000
54 1.7 christos
55 1.1 macallan static u_int32_t agp_apple_get_aperture(struct agp_softc *);
56 1.1 macallan static int agp_apple_set_aperture(struct agp_softc *, u_int32_t);
57 1.1 macallan static int agp_apple_bind_page(struct agp_softc *, off_t, bus_addr_t);
58 1.1 macallan static int agp_apple_unbind_page(struct agp_softc *, off_t);
59 1.1 macallan static void agp_apple_flush_tlb(struct agp_softc *);
60 1.1 macallan
61 1.1 macallan static struct agp_methods agp_apple_methods = {
62 1.1 macallan agp_apple_get_aperture,
63 1.1 macallan agp_apple_set_aperture,
64 1.1 macallan agp_apple_bind_page,
65 1.1 macallan agp_apple_unbind_page,
66 1.1 macallan agp_apple_flush_tlb,
67 1.1 macallan agp_generic_enable,
68 1.1 macallan agp_generic_alloc_memory,
69 1.1 macallan agp_generic_free_memory,
70 1.1 macallan agp_generic_bind_memory,
71 1.1 macallan agp_generic_unbind_memory,
72 1.1 macallan };
73 1.1 macallan
74 1.1 macallan struct agp_apple_softc {
75 1.1 macallan u_int32_t initial_aperture; /* aperture size at startup */
76 1.1 macallan struct agp_gatt *gatt;
77 1.1 macallan };
78 1.1 macallan
79 1.1 macallan int
80 1.5 freza agp_apple_attach(device_t parent, device_t self, void *aux)
81 1.1 macallan {
82 1.1 macallan struct pci_attach_args *pa = aux;
83 1.5 freza struct agp_softc *sc = device_private(self);
84 1.1 macallan struct agp_apple_softc *asc;
85 1.1 macallan struct agp_gatt *gatt;
86 1.1 macallan
87 1.1 macallan asc = malloc(sizeof *asc, M_AGP, M_NOWAIT|M_ZERO);
88 1.1 macallan if (asc == NULL) {
89 1.1 macallan aprint_error(": can't allocate chipset-specific softc\n");
90 1.1 macallan return ENOMEM;
91 1.1 macallan }
92 1.1 macallan sc->as_chipc = asc;
93 1.1 macallan sc->as_methods = &agp_apple_methods;
94 1.1 macallan pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_AGP, &sc->as_capoff,
95 1.1 macallan NULL);
96 1.1 macallan
97 1.1 macallan sc->as_apaddr = 0;
98 1.1 macallan sc->as_apsize = 8 * 1024 * 1024;
99 1.1 macallan sc->as_apflags = 0;
100 1.1 macallan sc->as_pc = pa->pa_pc;
101 1.1 macallan sc->as_tag = pa->pa_tag;
102 1.1 macallan sc->as_apt = pa->pa_memt;
103 1.1 macallan
104 1.1 macallan asc->initial_aperture = sc->as_apsize;
105 1.1 macallan
106 1.1 macallan for (;;) {
107 1.1 macallan gatt = agp_alloc_gatt(sc);
108 1.1 macallan if (gatt)
109 1.1 macallan break;
110 1.1 macallan sc->as_apsize = sc->as_apsize >> 1;
111 1.1 macallan if (sc->as_apsize == 0) {
112 1.1 macallan aprint_error(": can't set aperture size\n");
113 1.1 macallan return ENOMEM;
114 1.1 macallan }
115 1.1 macallan }
116 1.1 macallan asc->gatt = gatt;
117 1.1 macallan
118 1.1 macallan /* Install the gatt. */
119 1.7 christos aprint_error("gatt: %08jx %ju MB\n", (uintmax_t)gatt->ag_physical,
120 1.7 christos (uintmax_t)(sc->as_apsize >> 20));
121 1.1 macallan pci_conf_write(pa->pa_pc, pa->pa_tag, APPLE_UNINORTH_GART_BASE,
122 1.1 macallan (gatt->ag_physical & 0xfffff000) |
123 1.1 macallan (sc->as_apsize >> 22));
124 1.1 macallan
125 1.1 macallan /* Enable the aperture. */
126 1.1 macallan pci_conf_write(pa->pa_pc, pa->pa_tag, APPLE_UNINORTH_GART_CTRL,
127 1.7 christos APPLE_UNINORTH_GART_ENABLE);
128 1.1 macallan pci_conf_write(pa->pa_pc, pa->pa_tag, APPLE_UNINORTH_GART_CTRL,
129 1.7 christos APPLE_UNINORTH_GART_ENABLE | APPLE_UNINORTH_GART_INVAL);
130 1.1 macallan pci_conf_write(pa->pa_pc, pa->pa_tag, APPLE_UNINORTH_GART_CTRL,
131 1.7 christos APPLE_UNINORTH_GART_ENABLE);
132 1.1 macallan return 0;
133 1.1 macallan }
134 1.1 macallan
135 1.1 macallan static u_int32_t
136 1.1 macallan agp_apple_get_aperture(struct agp_softc *sc)
137 1.1 macallan {
138 1.1 macallan #if 0
139 1.1 macallan u_int32_t apsize = 0;
140 1.1 macallan
141 1.1 macallan aprint_error("%s: ", __func__);
142 1.1 macallan apsize = pci_conf_read(sc->as_pc, sc->as_tag,
143 1.1 macallan APPLE_UNINORTH_GART_BASE) & 0x0000ffff;
144 1.1 macallan aprint_error("%08x\n", apsize);
145 1.1 macallan return (apsize << 22);
146 1.1 macallan #else
147 1.1 macallan return sc->as_apsize;
148 1.1 macallan #endif
149 1.1 macallan }
150 1.1 macallan
151 1.1 macallan static int
152 1.1 macallan agp_apple_set_aperture(struct agp_softc *sc, u_int32_t aperture)
153 1.1 macallan {
154 1.1 macallan pcireg_t reg;
155 1.1 macallan
156 1.1 macallan aprint_error("%s: %08x\n", __func__, aperture);
157 1.1 macallan reg = pci_conf_read(sc->as_pc, sc->as_tag, APPLE_UNINORTH_GART_BASE)
158 1.1 macallan & 0xfffff000;
159 1.1 macallan reg |= ((aperture >> 22) & 0xfff);
160 1.1 macallan pci_conf_write(sc->as_pc, sc->as_tag, APPLE_UNINORTH_GART_BASE, reg);
161 1.1 macallan sc->as_apsize = aperture;
162 1.1 macallan return 0;
163 1.1 macallan }
164 1.1 macallan
165 1.1 macallan static int
166 1.1 macallan agp_apple_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
167 1.1 macallan {
168 1.1 macallan struct agp_apple_softc *asc = sc->as_chipc;
169 1.1 macallan
170 1.1 macallan if (offset < 0 || offset >= (asc->gatt->ag_entries << AGP_PAGE_SHIFT))
171 1.1 macallan return EINVAL;
172 1.1 macallan
173 1.1 macallan asc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = htole32(physical);
174 1.1 macallan return 0;
175 1.1 macallan }
176 1.1 macallan
177 1.1 macallan static int
178 1.1 macallan agp_apple_unbind_page(struct agp_softc *sc, off_t offset)
179 1.1 macallan {
180 1.1 macallan struct agp_apple_softc *asc = sc->as_chipc;
181 1.1 macallan
182 1.1 macallan if (offset < 0 || offset >= (asc->gatt->ag_entries << AGP_PAGE_SHIFT))
183 1.1 macallan return EINVAL;
184 1.1 macallan
185 1.1 macallan asc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = 0;
186 1.1 macallan return 0;
187 1.1 macallan }
188 1.1 macallan
189 1.1 macallan static void
190 1.1 macallan agp_apple_flush_tlb(struct agp_softc *sc)
191 1.1 macallan {
192 1.1 macallan
193 1.1 macallan pci_conf_write(sc->as_pc, sc->as_tag, APPLE_UNINORTH_GART_CTRL,
194 1.7 christos APPLE_UNINORTH_GART_ENABLE);
195 1.1 macallan pci_conf_write(sc->as_pc, sc->as_tag, APPLE_UNINORTH_GART_CTRL,
196 1.7 christos APPLE_UNINORTH_GART_ENABLE | APPLE_UNINORTH_GART_INVAL);
197 1.1 macallan pci_conf_write(sc->as_pc, sc->as_tag, APPLE_UNINORTH_GART_CTRL,
198 1.7 christos APPLE_UNINORTH_GART_ENABLE);
199 1.1 macallan }
200