grf_nubus.c revision 1.23 1 1.23 briggs /* $NetBSD: grf_nubus.c,v 1.23 1997/05/02 00:54:29 briggs Exp $ */
2 1.1 briggs
3 1.1 briggs /*
4 1.1 briggs * Copyright (c) 1995 Allen Briggs. All rights reserved.
5 1.1 briggs *
6 1.1 briggs * Redistribution and use in source and binary forms, with or without
7 1.1 briggs * modification, are permitted provided that the following conditions
8 1.1 briggs * are met:
9 1.1 briggs * 1. Redistributions of source code must retain the above copyright
10 1.1 briggs * notice, this list of conditions and the following disclaimer.
11 1.1 briggs * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 briggs * notice, this list of conditions and the following disclaimer in the
13 1.1 briggs * documentation and/or other materials provided with the distribution.
14 1.1 briggs * 3. All advertising materials mentioning features or use of this software
15 1.1 briggs * must display the following acknowledgement:
16 1.1 briggs * This product includes software developed by Allen Briggs.
17 1.1 briggs * 4. The name of the author may not be used to endorse or promote products
18 1.1 briggs * derived from this software without specific prior written permission.
19 1.1 briggs *
20 1.1 briggs * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.1 briggs * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.1 briggs * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.1 briggs * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.1 briggs * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.1 briggs * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.1 briggs * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.1 briggs * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.1 briggs * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.1 briggs * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.1 briggs */
31 1.1 briggs /*
32 1.1 briggs * Device-specific routines for handling Nubus-based video cards.
33 1.1 briggs */
34 1.1 briggs
35 1.1 briggs #include <sys/param.h>
36 1.1 briggs
37 1.1 briggs #include <sys/device.h>
38 1.1 briggs #include <sys/ioctl.h>
39 1.1 briggs #include <sys/file.h>
40 1.1 briggs #include <sys/malloc.h>
41 1.1 briggs #include <sys/mman.h>
42 1.1 briggs #include <sys/proc.h>
43 1.8 briggs #include <sys/systm.h>
44 1.1 briggs
45 1.16 scottr #include <machine/bus.h>
46 1.8 briggs #include <machine/cpu.h>
47 1.1 briggs #include <machine/grfioctl.h>
48 1.8 briggs #include <machine/viareg.h>
49 1.1 briggs
50 1.1 briggs #include "nubus.h"
51 1.1 briggs #include "grfvar.h"
52 1.1 briggs
53 1.8 briggs static void load_image_data __P((caddr_t data, struct image_data *image));
54 1.1 briggs
55 1.18 briggs static void grfmv_intr_generic __P((void *vsc, int slot));
56 1.23 briggs static void grfmv_intr_radius __P((void *vsc, int slot));
57 1.18 briggs static void grfmv_intr_cti __P((void *vsc, int slot));
58 1.18 briggs static void grfmv_intr_cb264 __P((void *vsc, int slot));
59 1.1 briggs
60 1.8 briggs static int grfmv_mode __P((struct grf_softc *gp, int cmd, void *arg));
61 1.8 briggs static caddr_t grfmv_phys __P((struct grf_softc *gp, vm_offset_t addr));
62 1.15 scottr static int grfmv_match __P((struct device *, struct cfdata *, void *));
63 1.8 briggs static void grfmv_attach __P((struct device *, struct device *, void *));
64 1.8 briggs
65 1.11 scottr struct cfdriver macvid_cd = {
66 1.11 scottr NULL, "macvid", DV_DULL
67 1.11 scottr };
68 1.11 scottr
69 1.11 scottr struct cfattach macvid_ca = {
70 1.11 scottr sizeof(struct grfbus_softc), grfmv_match, grfmv_attach
71 1.8 briggs };
72 1.8 briggs
73 1.1 briggs static void
74 1.1 briggs load_image_data(data, image)
75 1.1 briggs caddr_t data;
76 1.1 briggs struct image_data *image;
77 1.1 briggs {
78 1.1 briggs bcopy(data , &image->size, 4);
79 1.1 briggs bcopy(data + 4, &image->offset, 4);
80 1.1 briggs bcopy(data + 8, &image->rowbytes, 2);
81 1.1 briggs bcopy(data + 10, &image->top, 2);
82 1.1 briggs bcopy(data + 12, &image->left, 2);
83 1.1 briggs bcopy(data + 14, &image->bottom, 2);
84 1.1 briggs bcopy(data + 16, &image->right, 2);
85 1.1 briggs bcopy(data + 18, &image->version, 2);
86 1.1 briggs bcopy(data + 20, &image->packType, 2);
87 1.1 briggs bcopy(data + 22, &image->packSize, 4);
88 1.1 briggs bcopy(data + 26, &image->hRes, 4);
89 1.1 briggs bcopy(data + 30, &image->vRes, 4);
90 1.1 briggs bcopy(data + 34, &image->pixelType, 2);
91 1.1 briggs bcopy(data + 36, &image->pixelSize, 2);
92 1.1 briggs bcopy(data + 38, &image->cmpCount, 2);
93 1.1 briggs bcopy(data + 40, &image->cmpSize, 2);
94 1.1 briggs bcopy(data + 42, &image->planeBytes, 4);
95 1.1 briggs }
96 1.1 briggs
97 1.1 briggs
98 1.7 briggs static int
99 1.15 scottr grfmv_match(parent, cf, aux)
100 1.11 scottr struct device *parent;
101 1.15 scottr struct cfdata *cf;
102 1.15 scottr void *aux;
103 1.1 briggs {
104 1.21 scottr struct nubus_attach_args *na = (struct nubus_attach_args *)aux;
105 1.1 briggs
106 1.15 scottr if (na->category != NUBUS_CATEGORY_DISPLAY)
107 1.1 briggs return 0;
108 1.1 briggs
109 1.15 scottr if (na->type != NUBUS_TYPE_VIDEO)
110 1.1 briggs return 0;
111 1.1 briggs
112 1.15 scottr if (na->drsw != NUBUS_DRSW_APPLE)
113 1.1 briggs return 0;
114 1.1 briggs
115 1.1 briggs /*
116 1.1 briggs * If we've gotten this far, then we're dealing with a real-live
117 1.1 briggs * Apple QuickDraw-compatible display card resource. Now, how to
118 1.1 briggs * determine that this is an active resource??? Dunno. But we'll
119 1.1 briggs * proceed like it is.
120 1.1 briggs */
121 1.1 briggs
122 1.1 briggs return 1;
123 1.1 briggs }
124 1.1 briggs
125 1.8 briggs static void
126 1.8 briggs grfmv_attach(parent, self, aux)
127 1.8 briggs struct device *parent, *self;
128 1.8 briggs void *aux;
129 1.1 briggs {
130 1.21 scottr struct grfbus_softc *sc = (struct grfbus_softc *)self;
131 1.21 scottr struct nubus_attach_args *na = (struct nubus_attach_args *)aux;
132 1.1 briggs struct image_data image_store, image;
133 1.15 scottr struct grfmode *gm;
134 1.15 scottr char cardname[CARD_NAME_LEN];
135 1.15 scottr nubus_dirent dirent;
136 1.15 scottr nubus_dir dir, mode_dir;
137 1.15 scottr int mode;
138 1.15 scottr
139 1.15 scottr sc->card_id = na->drhw;
140 1.15 scottr
141 1.15 scottr bcopy(na->fmt, &sc->sc_slot, sizeof(nubus_slot));
142 1.15 scottr
143 1.15 scottr nubus_get_main_dir(&sc->sc_slot, &dir);
144 1.1 briggs
145 1.15 scottr if (nubus_find_rsrc(&sc->sc_slot, &dir, na->rsrcid, &dirent) <= 0)
146 1.15 scottr return;
147 1.15 scottr
148 1.15 scottr nubus_get_dir_from_rsrc(&sc->sc_slot, &dirent, &sc->board_dir);
149 1.15 scottr
150 1.15 scottr if (nubus_find_rsrc(&sc->sc_slot, &sc->board_dir,
151 1.15 scottr NUBUS_RSRC_TYPE, &dirent) <= 0)
152 1.15 scottr if ((na->rsrcid != 128) ||
153 1.15 scottr (nubus_find_rsrc(&sc->sc_slot, &dir, 129, &dirent) <= 0))
154 1.15 scottr return;
155 1.8 briggs
156 1.1 briggs mode = NUBUS_RSRC_FIRSTMODE;
157 1.8 briggs if (nubus_find_rsrc(&sc->sc_slot, &sc->board_dir, mode, &dirent) <= 0) {
158 1.14 christos printf("\n%s: probe failed to get board rsrc.\n",
159 1.11 scottr sc->sc_dev.dv_xname);
160 1.8 briggs return;
161 1.8 briggs }
162 1.1 briggs
163 1.1 briggs nubus_get_dir_from_rsrc(&sc->sc_slot, &dirent, &mode_dir);
164 1.1 briggs
165 1.8 briggs if (nubus_find_rsrc(&sc->sc_slot, &mode_dir, VID_PARAMS, &dirent)
166 1.8 briggs <= 0) {
167 1.14 christos printf("\n%s: probe failed to get mode dir.\n",
168 1.11 scottr sc->sc_dev.dv_xname);
169 1.8 briggs return;
170 1.8 briggs }
171 1.1 briggs
172 1.21 scottr if (nubus_get_ind_data(&sc->sc_slot, &dirent, (caddr_t)&image_store,
173 1.8 briggs sizeof(struct image_data)) <= 0) {
174 1.14 christos printf("\n%s: probe failed to get indirect mode data.\n",
175 1.11 scottr sc->sc_dev.dv_xname);
176 1.8 briggs return;
177 1.8 briggs }
178 1.1 briggs
179 1.15 scottr /* Need to load display info (and driver?), etc... (?) */
180 1.15 scottr
181 1.21 scottr load_image_data((caddr_t)&image_store, &image);
182 1.1 briggs
183 1.15 scottr gm = &sc->curr_mode;
184 1.11 scottr gm->mode_id = mode;
185 1.21 scottr gm->fbbase = (caddr_t)(sc->sc_slot.virtual_base + image.offset);
186 1.11 scottr gm->fboff = image.offset;
187 1.11 scottr gm->rowbytes = image.rowbytes;
188 1.11 scottr gm->width = image.right - image.left;
189 1.11 scottr gm->height = image.bottom - image.top;
190 1.11 scottr gm->fbsize = sc->curr_mode.height * sc->curr_mode.rowbytes;
191 1.11 scottr gm->hres = image.hRes;
192 1.11 scottr gm->vres = image.vRes;
193 1.11 scottr gm->ptype = image.pixelType;
194 1.11 scottr gm->psize = image.pixelSize;
195 1.1 briggs
196 1.11 scottr strncpy(cardname, nubus_get_card_name(&sc->sc_slot),
197 1.1 briggs CARD_NAME_LEN);
198 1.11 scottr cardname[CARD_NAME_LEN-1] = '\0';
199 1.21 scottr printf(": %s\n", cardname);
200 1.1 briggs
201 1.18 briggs if (sc->card_id == NUBUS_DRHW_TFB) {
202 1.18 briggs /*
203 1.18 briggs * This is the Toby card, but apparently some manufacturers
204 1.18 briggs * (like Cornerstone) didn't bother to get/use their own
205 1.18 briggs * value here, even though the cards are different, so we
206 1.18 briggs * so we try to differentiate here.
207 1.18 briggs */
208 1.21 scottr if (strncmp(cardname, "Samsung 768", 11) == 0)
209 1.18 briggs sc->card_id = NUBUS_DRHW_SAM768;
210 1.21 scottr else if (strncmp(cardname, "Toby frame", 10) != 0)
211 1.21 scottr printf("%s: This display card pretends to be a TFB!",
212 1.21 scottr sc->sc_dev.dv_xname);
213 1.18 briggs }
214 1.18 briggs
215 1.18 briggs switch (sc->card_id) {
216 1.18 briggs case NUBUS_DRHW_M2HRVC:
217 1.18 briggs case NUBUS_DRHW_TFB:
218 1.18 briggs sc->cli_offset = 0xa0000;
219 1.22 briggs sc->cli_value = 0;
220 1.18 briggs add_nubus_intr(sc->sc_slot.slot, grfmv_intr_generic, sc);
221 1.18 briggs break;
222 1.18 briggs case NUBUS_DRHW_WVC:
223 1.18 briggs sc->cli_offset = 0xa00000;
224 1.22 briggs sc->cli_value = 0;
225 1.22 briggs add_nubus_intr(sc->sc_slot.slot, grfmv_intr_generic, sc);
226 1.22 briggs break;
227 1.23 briggs case NUBUS_DRHW_RPC8XJ:
228 1.23 briggs add_nubus_intr(sc->sc_slot.slot, grfmv_intr_radius, sc);
229 1.23 briggs break;
230 1.22 briggs case NUBUS_DRHW_FIILX:
231 1.22 briggs case NUBUS_DRHW_FIISXDSP:
232 1.22 briggs sc->cli_offset = 0xF05000;
233 1.22 briggs sc->cli_value = 0x80;
234 1.18 briggs add_nubus_intr(sc->sc_slot.slot, grfmv_intr_generic, sc);
235 1.18 briggs break;
236 1.18 briggs case NUBUS_DRHW_SAM768:
237 1.18 briggs add_nubus_intr(sc->sc_slot.slot, grfmv_intr_cti, sc);
238 1.19 briggs break;
239 1.19 briggs case NUBUS_DRHW_CB264:
240 1.22 briggs case NUBUS_DRHW_CB364:
241 1.19 briggs add_nubus_intr(sc->sc_slot.slot, grfmv_intr_cb264, sc);
242 1.20 briggs break;
243 1.20 briggs case NUBUS_DRHW_SE30:
244 1.20 briggs /* Do nothing--SE/30 interrupts are disabled */
245 1.18 briggs break;
246 1.18 briggs case NUBUS_DRHW_MICRON:
247 1.18 briggs /* What do we know about this one? */
248 1.18 briggs default:
249 1.21 scottr printf("%s: Unknown video card ID 0x%x --",
250 1.21 scottr sc->sc_dev.dv_xname, sc->card_id);
251 1.21 scottr printf(" Not installing interrupt routine.\n");
252 1.18 briggs break;
253 1.18 briggs }
254 1.1 briggs
255 1.11 scottr /* Perform common video attachment. */
256 1.12 scottr grf_establish(sc, &sc->sc_slot, grfmv_mode, grfmv_phys);
257 1.1 briggs }
258 1.1 briggs
259 1.8 briggs static int
260 1.1 briggs grfmv_mode(gp, cmd, arg)
261 1.1 briggs struct grf_softc *gp;
262 1.1 briggs int cmd;
263 1.1 briggs void *arg;
264 1.1 briggs {
265 1.1 briggs switch (cmd) {
266 1.4 briggs case GM_GRFON:
267 1.4 briggs case GM_GRFOFF:
268 1.4 briggs return 0;
269 1.1 briggs case GM_CURRMODE:
270 1.1 briggs break;
271 1.1 briggs case GM_NEWMODE:
272 1.1 briggs break;
273 1.1 briggs case GM_LISTMODES:
274 1.1 briggs break;
275 1.1 briggs }
276 1.1 briggs return EINVAL;
277 1.6 briggs }
278 1.6 briggs
279 1.8 briggs static caddr_t
280 1.6 briggs grfmv_phys(gp, addr)
281 1.6 briggs struct grf_softc *gp;
282 1.6 briggs vm_offset_t addr;
283 1.6 briggs {
284 1.21 scottr return (caddr_t)(NUBUS_SLOT2PA(gp->sc_slot->slot) +
285 1.11 scottr (addr - gp->sc_slot->virtual_base));
286 1.18 briggs }
287 1.18 briggs
288 1.18 briggs /* Interrupt handlers... */
289 1.18 briggs /*
290 1.18 briggs * Generic routine to clear interrupts for cards where it simply takes
291 1.18 briggs * a CLR.B to clear the interrupt. The offset of this byte varies between
292 1.18 briggs * cards.
293 1.18 briggs */
294 1.18 briggs /*ARGSUSED*/
295 1.18 briggs static void
296 1.18 briggs grfmv_intr_generic(vsc, slot)
297 1.18 briggs void *vsc;
298 1.18 briggs int slot;
299 1.18 briggs {
300 1.21 scottr static char zero = 0;
301 1.21 scottr struct grfbus_softc *sc;
302 1.21 scottr volatile char *slotbase;
303 1.18 briggs
304 1.21 scottr sc = (struct grfbus_softc *)vsc;
305 1.21 scottr slotbase = (volatile char *)sc->sc_slot.virtual_base;
306 1.18 briggs slotbase[sc->cli_offset] = zero;
307 1.23 briggs }
308 1.23 briggs
309 1.23 briggs /*
310 1.23 briggs * Generic routine to clear interrupts for cards where it simply takes
311 1.23 briggs * a CLR.B to clear the interrupt. The offset of this byte varies between
312 1.23 briggs * cards.
313 1.23 briggs */
314 1.23 briggs /*ARGSUSED*/
315 1.23 briggs static void
316 1.23 briggs grfmv_intr_radius(vsc, slot)
317 1.23 briggs void *vsc;
318 1.23 briggs int slot;
319 1.23 briggs {
320 1.23 briggs unsigned char c;
321 1.23 briggs struct grfbus_softc *sc;
322 1.23 briggs volatile char *slotbase;
323 1.23 briggs
324 1.23 briggs sc = (struct grfbus_softc *)vsc;
325 1.23 briggs slotbase = (volatile char *)sc->sc_slot.virtual_base;
326 1.23 briggs
327 1.23 briggs /*
328 1.23 briggs * The value 0x66 was the observed value on one card. It is read
329 1.23 briggs * from the driver's information block, so this may not be sufficient.
330 1.23 briggs * Then again, we're not setting up any other interrupts...
331 1.23 briggs */
332 1.23 briggs c = 0x66;
333 1.23 briggs
334 1.23 briggs c |= 0x80;
335 1.23 briggs slotbase[0xD00403] = c;
336 1.23 briggs c &= 0x7F;
337 1.23 briggs slotbase[0xD00403] = c;
338 1.18 briggs }
339 1.18 briggs
340 1.18 briggs /*
341 1.18 briggs * Routine to clear interrupts on Samsung 768x1006 video controller.
342 1.18 briggs * This controller was manufactured by Cornerstone Technology, Inc.,
343 1.18 briggs * now known as Cornerstone Imaging.
344 1.18 briggs *
345 1.18 briggs * To clear this interrupt, we apparently have to set, then clear,
346 1.18 briggs * bit 2 at byte offset 0x80000 from the card's base.
347 1.18 briggs * Information for this provided by Brad Salai <bsalai (at) servtech.com>
348 1.18 briggs */
349 1.18 briggs /*ARGSUSED*/
350 1.18 briggs static void
351 1.18 briggs grfmv_intr_cti(vsc, slot)
352 1.18 briggs void *vsc;
353 1.18 briggs int slot;
354 1.18 briggs {
355 1.21 scottr struct grfbus_softc *sc;
356 1.21 scottr volatile char *slotbase;
357 1.18 briggs
358 1.21 scottr sc = (struct grfbus_softc *)vsc;
359 1.21 scottr slotbase = ((volatile char *)sc->sc_slot.virtual_base) + 0x00080000;
360 1.18 briggs *slotbase = (*slotbase | 0x02);
361 1.18 briggs *slotbase = (*slotbase & 0xFD);
362 1.18 briggs }
363 1.18 briggs
364 1.18 briggs /*ARGSUSED*/
365 1.18 briggs static void
366 1.18 briggs grfmv_intr_cb264(vsc, slot)
367 1.18 briggs void *vsc;
368 1.18 briggs int slot;
369 1.18 briggs {
370 1.18 briggs struct grfbus_softc *sc;
371 1.21 scottr volatile char *slotbase;
372 1.18 briggs
373 1.21 scottr sc = (struct grfbus_softc *)vsc;
374 1.21 scottr slotbase = (volatile char *)sc->sc_slot.virtual_base;
375 1.18 briggs asm volatile(" movl %0,a0
376 1.18 briggs movl a0@(0xff6028),d0
377 1.18 briggs andl #0x2,d0
378 1.18 briggs beq _mv_intr0
379 1.18 briggs movql #0x3,d0
380 1.18 briggs _mv_intr0:
381 1.18 briggs movl a0@(0xff600c),d1
382 1.18 briggs andl #0x3,d1
383 1.18 briggs cmpl d1,d0
384 1.18 briggs beq _mv_intr_fin
385 1.18 briggs movl d0,a0@(0xff600c)
386 1.18 briggs nop
387 1.18 briggs tstb d0
388 1.18 briggs beq _mv_intr1
389 1.18 briggs movl #0x0002,a0@(0xff6040)
390 1.18 briggs movl #0x0102,a0@(0xff6044)
391 1.18 briggs movl #0x0105,a0@(0xff6048)
392 1.18 briggs movl #0x000e,a0@(0xff604c)
393 1.18 briggs movl #0x001c,a0@(0xff6050)
394 1.18 briggs movl #0x00bc,a0@(0xff6054)
395 1.18 briggs movl #0x00c3,a0@(0xff6058)
396 1.18 briggs movl #0x0061,a0@(0xff605c)
397 1.18 briggs movl #0x0012,a0@(0xff6060)
398 1.18 briggs bra _mv_intr_fin
399 1.18 briggs _mv_intr1:
400 1.18 briggs movl #0x0002,a0@(0xff6040)
401 1.18 briggs movl #0x0209,a0@(0xff6044)
402 1.18 briggs movl #0x020c,a0@(0xff6048)
403 1.18 briggs movl #0x000f,a0@(0xff604c)
404 1.18 briggs movl #0x0027,a0@(0xff6050)
405 1.18 briggs movl #0x00c7,a0@(0xff6054)
406 1.18 briggs movl #0x00d7,a0@(0xff6058)
407 1.18 briggs movl #0x006b,a0@(0xff605c)
408 1.18 briggs movl #0x0029,a0@(0xff6060)
409 1.18 briggs _mv_intr_fin:
410 1.18 briggs movl #0x1,a0@(0xff6014)"
411 1.18 briggs : : "g" (slotbase) : "a0","d0","d1");
412 1.1 briggs }
413