cgeight.c revision 1.15 1 1.15 thorpej /* $NetBSD: cgeight.c,v 1.15 1998/01/12 20:23:41 thorpej Exp $ */
2 1.14 thorpej
3 1.14 thorpej /*-
4 1.14 thorpej * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
5 1.14 thorpej * All rights reserved.
6 1.14 thorpej *
7 1.14 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.14 thorpej * by Jason R. Thorpe.
9 1.14 thorpej *
10 1.14 thorpej * Redistribution and use in source and binary forms, with or without
11 1.14 thorpej * modification, are permitted provided that the following conditions
12 1.14 thorpej * are met:
13 1.14 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.14 thorpej * notice, this list of conditions and the following disclaimer.
15 1.14 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.14 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.14 thorpej * documentation and/or other materials provided with the distribution.
18 1.14 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.14 thorpej * must display the following acknowledgement:
20 1.14 thorpej * This product includes software developed by the NetBSD
21 1.14 thorpej * Foundation, Inc. and its contributors.
22 1.14 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.14 thorpej * contributors may be used to endorse or promote products derived
24 1.14 thorpej * from this software without specific prior written permission.
25 1.14 thorpej *
26 1.14 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.14 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.14 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.14 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.14 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.14 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.14 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.14 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.14 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.14 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.14 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.14 thorpej */
38 1.1 thorpej
39 1.1 thorpej /*
40 1.1 thorpej * Copyright (c) 1995 Theo de Raadt
41 1.1 thorpej * Copyright (c) 1992, 1993
42 1.1 thorpej * The Regents of the University of California. All rights reserved.
43 1.1 thorpej *
44 1.1 thorpej * This software was developed by the Computer Systems Engineering group
45 1.1 thorpej * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
46 1.1 thorpej * contributed to Berkeley.
47 1.1 thorpej *
48 1.1 thorpej * All advertising materials mentioning features or use of this software
49 1.1 thorpej * must display the following acknowledgement:
50 1.1 thorpej * This product includes software developed by the University of
51 1.1 thorpej * California, Lawrence Berkeley Laboratory.
52 1.1 thorpej *
53 1.1 thorpej * Redistribution and use in source and binary forms, with or without
54 1.1 thorpej * modification, are permitted provided that the following conditions
55 1.1 thorpej * are met:
56 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
57 1.1 thorpej * notice, this list of conditions and the following disclaimer.
58 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
59 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
60 1.1 thorpej * documentation and/or other materials provided with the distribution.
61 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
62 1.1 thorpej * must display the following acknowledgement:
63 1.1 thorpej * This product includes software developed by the University of
64 1.1 thorpej * California, Berkeley and its contributors.
65 1.1 thorpej * 4. Neither the name of the University nor the names of its contributors
66 1.1 thorpej * may be used to endorse or promote products derived from this software
67 1.1 thorpej * without specific prior written permission.
68 1.1 thorpej *
69 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
70 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
71 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
72 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
73 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
74 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
75 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
76 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
77 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
78 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
79 1.1 thorpej * SUCH DAMAGE.
80 1.1 thorpej *
81 1.1 thorpej * from @(#)cgthree.c 8.2 (Berkeley) 10/30/93
82 1.1 thorpej */
83 1.1 thorpej
84 1.1 thorpej /*
85 1.1 thorpej * color display (cgeight) driver.
86 1.1 thorpej *
87 1.1 thorpej * Does not handle interrupts, even though they can occur.
88 1.1 thorpej *
89 1.1 thorpej * XXX should defer colormap updates to vertical retrace interrupts
90 1.1 thorpej */
91 1.1 thorpej
92 1.1 thorpej #include <sys/param.h>
93 1.4 christos #include <sys/systm.h>
94 1.1 thorpej #include <sys/buf.h>
95 1.1 thorpej #include <sys/device.h>
96 1.1 thorpej #include <sys/ioctl.h>
97 1.1 thorpej #include <sys/malloc.h>
98 1.1 thorpej #include <sys/mman.h>
99 1.1 thorpej #include <sys/tty.h>
100 1.7 christos #include <sys/conf.h>
101 1.1 thorpej
102 1.1 thorpej #include <vm/vm.h>
103 1.1 thorpej
104 1.1 thorpej #include <machine/fbio.h>
105 1.1 thorpej #include <machine/autoconf.h>
106 1.1 thorpej #include <machine/pmap.h>
107 1.1 thorpej #include <machine/fbvar.h>
108 1.1 thorpej #include <machine/eeprom.h>
109 1.7 christos #include <machine/conf.h>
110 1.1 thorpej
111 1.1 thorpej #include <sparc/dev/btreg.h>
112 1.1 thorpej #include <sparc/dev/btvar.h>
113 1.1 thorpej #include <sparc/dev/pfourreg.h>
114 1.1 thorpej
115 1.1 thorpej /* per-display variables */
116 1.1 thorpej struct cgeight_softc {
117 1.1 thorpej struct device sc_dev; /* base device */
118 1.1 thorpej struct fbdevice sc_fb; /* frame buffer device */
119 1.1 thorpej struct rom_reg sc_phys; /* display RAM (phys addr) */
120 1.1 thorpej volatile struct fbcontrol *sc_fbc; /* Brooktree registers */
121 1.1 thorpej int sc_bustype; /* type of bus we live on */
122 1.1 thorpej union bt_cmap sc_cmap; /* Brooktree color map */
123 1.1 thorpej };
124 1.1 thorpej
125 1.1 thorpej /* autoconfiguration driver */
126 1.1 thorpej static void cgeightattach(struct device *, struct device *, void *);
127 1.12 pk static int cgeightmatch(struct device *, struct cfdata *, void *);
128 1.6 pk #if defined(SUN4)
129 1.1 thorpej static void cgeightunblank __P((struct device *));
130 1.6 pk #endif
131 1.1 thorpej
132 1.9 thorpej /* cdevsw prototypes */
133 1.9 thorpej cdev_decl(cgeight);
134 1.9 thorpej
135 1.5 thorpej struct cfattach cgeight_ca = {
136 1.5 thorpej sizeof(struct cgeight_softc), cgeightmatch, cgeightattach
137 1.5 thorpej };
138 1.5 thorpej
139 1.15 thorpej extern struct cfdriver cgeight_cd;
140 1.1 thorpej
141 1.6 pk #if defined(SUN4)
142 1.1 thorpej /* frame buffer generic driver */
143 1.1 thorpej static struct fbdriver cgeightfbdriver = {
144 1.9 thorpej cgeightunblank, cgeightopen, cgeightclose, cgeightioctl,
145 1.9 thorpej cgeightpoll, cgeightmmap
146 1.1 thorpej };
147 1.1 thorpej
148 1.1 thorpej extern int fbnode;
149 1.1 thorpej extern struct tty *fbconstty;
150 1.1 thorpej
151 1.1 thorpej static void cgeightloadcmap __P((struct cgeight_softc *, int, int));
152 1.1 thorpej static int cgeight_get_video __P((struct cgeight_softc *));
153 1.1 thorpej static void cgeight_set_video __P((struct cgeight_softc *, int));
154 1.6 pk #endif
155 1.1 thorpej
156 1.1 thorpej /*
157 1.1 thorpej * Match a cgeight.
158 1.1 thorpej */
159 1.1 thorpej int
160 1.12 pk cgeightmatch(parent, cf, aux)
161 1.1 thorpej struct device *parent;
162 1.12 pk struct cfdata *cf;
163 1.12 pk void *aux;
164 1.1 thorpej {
165 1.1 thorpej struct confargs *ca = aux;
166 1.1 thorpej struct romaux *ra = &ca->ca_ra;
167 1.1 thorpej
168 1.1 thorpej if (strcmp(cf->cf_driver->cd_name, ra->ra_name))
169 1.1 thorpej return (0);
170 1.1 thorpej
171 1.1 thorpej /*
172 1.1 thorpej * Mask out invalid flags from the user.
173 1.1 thorpej */
174 1.1 thorpej cf->cf_flags &= FB_USERMASK;
175 1.1 thorpej
176 1.1 thorpej /*
177 1.1 thorpej * Only exists on a sun4.
178 1.1 thorpej */
179 1.2 thorpej if (!CPU_ISSUN4)
180 1.1 thorpej return (0);
181 1.1 thorpej
182 1.1 thorpej /*
183 1.1 thorpej * Only exists on obio.
184 1.1 thorpej */
185 1.1 thorpej if (ca->ca_bustype != BUS_OBIO)
186 1.1 thorpej return (0);
187 1.1 thorpej
188 1.1 thorpej /*
189 1.1 thorpej * Make sure there's hardware there.
190 1.1 thorpej */
191 1.1 thorpej if (probeget(ra->ra_vaddr, 4) == -1)
192 1.1 thorpej return (0);
193 1.1 thorpej
194 1.1 thorpej #if defined(SUN4)
195 1.1 thorpej /*
196 1.1 thorpej * Check the pfour register.
197 1.1 thorpej */
198 1.1 thorpej if (fb_pfour_id(ra->ra_vaddr) == PFOUR_ID_COLOR24) {
199 1.1 thorpej cf->cf_flags |= FB_PFOUR;
200 1.1 thorpej return (1);
201 1.1 thorpej }
202 1.1 thorpej #endif
203 1.1 thorpej
204 1.1 thorpej return (0);
205 1.1 thorpej }
206 1.1 thorpej
207 1.1 thorpej /*
208 1.1 thorpej * Attach a display. We need to notice if it is the console, too.
209 1.1 thorpej */
210 1.1 thorpej void
211 1.1 thorpej cgeightattach(parent, self, args)
212 1.1 thorpej struct device *parent, *self;
213 1.1 thorpej void *args;
214 1.1 thorpej {
215 1.6 pk #if defined(SUN4)
216 1.1 thorpej register struct cgeight_softc *sc = (struct cgeight_softc *)self;
217 1.1 thorpej register struct confargs *ca = args;
218 1.1 thorpej register int node = 0, ramsize, i;
219 1.1 thorpej register volatile struct bt_regs *bt;
220 1.4 christos struct fbdevice *fb = &sc->sc_fb;
221 1.1 thorpej int isconsole;
222 1.1 thorpej
223 1.1 thorpej fb->fb_driver = &cgeightfbdriver;
224 1.1 thorpej fb->fb_device = &sc->sc_dev;
225 1.1 thorpej fb->fb_type.fb_type = FBTYPE_MEMCOLOR;
226 1.1 thorpej fb->fb_flags = sc->sc_dev.dv_cfdata->cf_flags;
227 1.1 thorpej
228 1.1 thorpej /*
229 1.1 thorpej * Only pfour cgfours, thank you...
230 1.1 thorpej */
231 1.1 thorpej if ((ca->ca_bustype != BUS_OBIO) ||
232 1.1 thorpej ((fb->fb_flags & FB_PFOUR) == 0)) {
233 1.11 christos printf("%s: ignoring; not a pfour\n", sc->sc_dev.dv_xname);
234 1.1 thorpej return;
235 1.1 thorpej }
236 1.1 thorpej
237 1.1 thorpej /* Map the pfour register. */
238 1.13 pk fb->fb_pfour = (volatile u_int32_t *)
239 1.13 pk mapiodev(ca->ca_ra.ra_reg, 0, sizeof(u_int32_t));
240 1.1 thorpej
241 1.1 thorpej ramsize = PFOUR_COLOR_OFF_END - PFOUR_COLOR_OFF_OVERLAY;
242 1.1 thorpej
243 1.1 thorpej fb->fb_type.fb_depth = 24;
244 1.1 thorpej fb_setsize(fb, fb->fb_type.fb_depth, 1152, 900, node, ca->ca_bustype);
245 1.1 thorpej
246 1.1 thorpej sc->sc_fb.fb_type.fb_cmsize = 256;
247 1.1 thorpej sc->sc_fb.fb_type.fb_size = ramsize;
248 1.11 christos printf(": cgeight/p4, %d x %d", fb->fb_type.fb_width,
249 1.1 thorpej fb->fb_type.fb_height);
250 1.1 thorpej
251 1.1 thorpej isconsole = 0;
252 1.1 thorpej
253 1.1 thorpej if (cputyp == CPU_SUN4) {
254 1.1 thorpej struct eeprom *eep = (struct eeprom *)eeprom_va;
255 1.1 thorpej
256 1.1 thorpej /*
257 1.1 thorpej * Assume this is the console if there's no eeprom info
258 1.1 thorpej * to be found.
259 1.1 thorpej */
260 1.1 thorpej if (eep == NULL || eep->eeConsole == EE_CONS_P4OPT)
261 1.1 thorpej isconsole = (fbconstty != NULL);
262 1.1 thorpej }
263 1.1 thorpej
264 1.1 thorpej #if 0
265 1.1 thorpej /*
266 1.1 thorpej * We don't do any of the console handling here. Instead,
267 1.1 thorpej * we let the bwtwo driver pick up the overlay plane and
268 1.1 thorpej * use it instead. Rconsole should have better performance
269 1.1 thorpej * with the 1-bit depth.
270 1.1 thorpej * -- Jason R. Thorpe <thorpej (at) NetBSD.ORG>
271 1.1 thorpej */
272 1.1 thorpej
273 1.1 thorpej /*
274 1.1 thorpej * When the ROM has mapped in a cgfour display, the address
275 1.1 thorpej * maps only the video RAM, so in any case we have to map the
276 1.1 thorpej * registers ourselves. We only need the video RAM if we are
277 1.1 thorpej * going to print characters via rconsole.
278 1.1 thorpej */
279 1.1 thorpej
280 1.1 thorpej if (isconsole) {
281 1.1 thorpej /* XXX this is kind of a waste */
282 1.1 thorpej fb->fb_pixels = mapiodev(ca->ca_ra.ra_reg,
283 1.13 pk PFOUR_COLOR_OFF_OVERLAY, ramsize);
284 1.1 thorpej }
285 1.1 thorpej #endif
286 1.1 thorpej
287 1.1 thorpej /* Map the Brooktree. */
288 1.13 pk sc->sc_fbc = (volatile struct fbcontrol *)
289 1.13 pk mapiodev(ca->ca_ra.ra_reg,
290 1.13 pk PFOUR_COLOR_OFF_CMAP, sizeof(struct fbcontrol));
291 1.1 thorpej
292 1.1 thorpej sc->sc_phys = ca->ca_ra.ra_reg[0];
293 1.1 thorpej sc->sc_bustype = ca->ca_bustype;
294 1.1 thorpej
295 1.1 thorpej #if 0 /* XXX thorpej ??? */
296 1.1 thorpej /* tell the enable plane to look at the mono image */
297 1.1 thorpej memset(ca->ca_ra.ra_vaddr, 0xff,
298 1.1 thorpej sc->sc_fb.fb_type.fb_width * sc->sc_fb.fb_type.fb_height / 8);
299 1.1 thorpej #endif
300 1.1 thorpej
301 1.1 thorpej /* grab initial (current) color map */
302 1.1 thorpej bt = &sc->sc_fbc->fbc_dac;
303 1.1 thorpej bt->bt_addr = 0;
304 1.1 thorpej for (i = 0; i < 256 * 3 / 4; i++)
305 1.1 thorpej sc->sc_cmap.cm_chip[i] = bt->bt_cmap;
306 1.1 thorpej
307 1.1 thorpej BT_INIT(bt, 0);
308 1.1 thorpej
309 1.1 thorpej #if 0 /* see above */
310 1.1 thorpej if (isconsole) {
311 1.11 christos printf(" (console)\n");
312 1.1 thorpej #if defined(RASTERCONSOLE) && 0 /* XXX been told it doesn't work well. */
313 1.1 thorpej fbrcons_init(fb);
314 1.1 thorpej #endif
315 1.1 thorpej } else
316 1.1 thorpej #endif /* 0 */
317 1.11 christos printf("\n");
318 1.1 thorpej
319 1.1 thorpej /*
320 1.1 thorpej * Even though we're not using rconsole, we'd still like
321 1.1 thorpej * to notice if we're the console framebuffer.
322 1.1 thorpej */
323 1.1 thorpej fb_attach(&sc->sc_fb, isconsole);
324 1.6 pk #endif
325 1.1 thorpej }
326 1.1 thorpej
327 1.1 thorpej int
328 1.1 thorpej cgeightopen(dev, flags, mode, p)
329 1.1 thorpej dev_t dev;
330 1.1 thorpej int flags, mode;
331 1.1 thorpej struct proc *p;
332 1.1 thorpej {
333 1.1 thorpej int unit = minor(dev);
334 1.1 thorpej
335 1.5 thorpej if (unit >= cgeight_cd.cd_ndevs || cgeight_cd.cd_devs[unit] == NULL)
336 1.1 thorpej return (ENXIO);
337 1.1 thorpej return (0);
338 1.1 thorpej }
339 1.1 thorpej
340 1.1 thorpej int
341 1.1 thorpej cgeightclose(dev, flags, mode, p)
342 1.1 thorpej dev_t dev;
343 1.1 thorpej int flags, mode;
344 1.1 thorpej struct proc *p;
345 1.1 thorpej {
346 1.1 thorpej
347 1.1 thorpej return (0);
348 1.1 thorpej }
349 1.1 thorpej
350 1.1 thorpej int
351 1.1 thorpej cgeightioctl(dev, cmd, data, flags, p)
352 1.1 thorpej dev_t dev;
353 1.1 thorpej u_long cmd;
354 1.1 thorpej register caddr_t data;
355 1.1 thorpej int flags;
356 1.1 thorpej struct proc *p;
357 1.1 thorpej {
358 1.6 pk #if defined(SUN4)
359 1.5 thorpej register struct cgeight_softc *sc = cgeight_cd.cd_devs[minor(dev)];
360 1.1 thorpej register struct fbgattr *fba;
361 1.1 thorpej int error;
362 1.1 thorpej
363 1.1 thorpej switch (cmd) {
364 1.1 thorpej
365 1.1 thorpej case FBIOGTYPE:
366 1.1 thorpej *(struct fbtype *)data = sc->sc_fb.fb_type;
367 1.1 thorpej break;
368 1.1 thorpej
369 1.1 thorpej case FBIOGATTR:
370 1.1 thorpej fba = (struct fbgattr *)data;
371 1.1 thorpej fba->real_type = sc->sc_fb.fb_type.fb_type;
372 1.1 thorpej fba->owner = 0; /* XXX ??? */
373 1.1 thorpej fba->fbtype = sc->sc_fb.fb_type;
374 1.1 thorpej fba->sattr.flags = 0;
375 1.1 thorpej fba->sattr.emu_type = sc->sc_fb.fb_type.fb_type;
376 1.1 thorpej fba->sattr.dev_specific[0] = -1;
377 1.1 thorpej fba->emu_types[0] = sc->sc_fb.fb_type.fb_type;
378 1.1 thorpej fba->emu_types[1] = -1;
379 1.1 thorpej break;
380 1.1 thorpej
381 1.1 thorpej case FBIOGETCMAP:
382 1.1 thorpej return (bt_getcmap((struct fbcmap *)data, &sc->sc_cmap, 256));
383 1.1 thorpej
384 1.1 thorpej case FBIOPUTCMAP:
385 1.1 thorpej /* copy to software map */
386 1.1 thorpej #define p ((struct fbcmap *)data)
387 1.1 thorpej error = bt_putcmap(p, &sc->sc_cmap, 256);
388 1.1 thorpej if (error)
389 1.1 thorpej return (error);
390 1.1 thorpej /* now blast them into the chip */
391 1.1 thorpej /* XXX should use retrace interrupt */
392 1.1 thorpej cgeightloadcmap(sc, p->index, p->count);
393 1.1 thorpej #undef p
394 1.1 thorpej break;
395 1.1 thorpej
396 1.1 thorpej case FBIOGVIDEO:
397 1.1 thorpej *(int *)data = cgeight_get_video(sc);
398 1.1 thorpej break;
399 1.1 thorpej
400 1.1 thorpej case FBIOSVIDEO:
401 1.1 thorpej cgeight_set_video(sc, *(int *)data);
402 1.1 thorpej break;
403 1.1 thorpej
404 1.1 thorpej default:
405 1.1 thorpej return (ENOTTY);
406 1.1 thorpej }
407 1.6 pk #endif
408 1.1 thorpej return (0);
409 1.9 thorpej }
410 1.9 thorpej
411 1.9 thorpej int
412 1.9 thorpej cgeightpoll(dev, events, p)
413 1.9 thorpej dev_t dev;
414 1.9 thorpej int events;
415 1.9 thorpej struct proc *p;
416 1.9 thorpej {
417 1.9 thorpej
418 1.9 thorpej return (seltrue(dev, events, p));
419 1.1 thorpej }
420 1.1 thorpej
421 1.1 thorpej /*
422 1.1 thorpej * Return the address that would map the given device at the given
423 1.1 thorpej * offset, allowing for the given protection, or return -1 for error.
424 1.1 thorpej *
425 1.1 thorpej * The cg8 maps it's overlay plane at 0 for 128K, followed by the
426 1.1 thorpej * enable plane for 128K, followed by the colour for as long as it
427 1.1 thorpej * goes. Starting at 8MB, it maps the ramdac for NBPG, then the p4
428 1.1 thorpej * register for NBPG, then the bootrom for 0x40000.
429 1.1 thorpej */
430 1.1 thorpej int
431 1.1 thorpej cgeightmmap(dev, off, prot)
432 1.1 thorpej dev_t dev;
433 1.1 thorpej int off, prot;
434 1.1 thorpej {
435 1.5 thorpej register struct cgeight_softc *sc = cgeight_cd.cd_devs[minor(dev)];
436 1.1 thorpej int poff;
437 1.1 thorpej
438 1.1 thorpej #define START_ENABLE (128*1024)
439 1.1 thorpej #define START_COLOR ((128*1024) + (128*1024))
440 1.1 thorpej #define COLOR_SIZE (sc->sc_fb.fb_type.fb_width * \
441 1.1 thorpej sc->sc_fb.fb_type.fb_height * 3)
442 1.1 thorpej #define END_COLOR (START_COLOR + COLOR_SIZE)
443 1.1 thorpej #define START_SPECIAL 0x800000
444 1.1 thorpej #define PROMSIZE 0x40000
445 1.1 thorpej #define NOOVERLAY (0x04000000)
446 1.1 thorpej
447 1.1 thorpej if (off & PGOFSET)
448 1.1 thorpej panic("cgeightmap");
449 1.1 thorpej
450 1.1 thorpej if ((u_int)off >= NOOVERLAY) {
451 1.8 thorpej off -= NOOVERLAY;
452 1.1 thorpej
453 1.1 thorpej /*
454 1.1 thorpej * X11 maps a huge chunk of the frame buffer; far more than
455 1.1 thorpej * there really is. We compensate by double-mapping the
456 1.1 thorpej * first page for as many other pages as it wants
457 1.1 thorpej */
458 1.1 thorpej while (off >= COLOR_SIZE)
459 1.1 thorpej off -= COLOR_SIZE; /* XXX thorpej ??? */
460 1.1 thorpej
461 1.1 thorpej poff = off + PFOUR_COLOR_OFF_COLOR;
462 1.1 thorpej } else if ((u_int)off < START_ENABLE) {
463 1.1 thorpej /*
464 1.1 thorpej * in overlay plane
465 1.1 thorpej */
466 1.1 thorpej poff = PFOUR_COLOR_OFF_OVERLAY + off;
467 1.1 thorpej } else if ((u_int)off < START_COLOR) {
468 1.1 thorpej /*
469 1.1 thorpej * in enable plane
470 1.1 thorpej */
471 1.1 thorpej poff = (off - START_ENABLE) + PFOUR_COLOR_OFF_ENABLE;
472 1.8 thorpej } else if ((u_int)off < sc->sc_fb.fb_type.fb_size) {
473 1.1 thorpej /*
474 1.1 thorpej * in colour plane
475 1.6 pk */
476 1.1 thorpej poff = (off - START_COLOR) + PFOUR_COLOR_OFF_COLOR;
477 1.1 thorpej } else if ((u_int)off < START_SPECIAL) {
478 1.1 thorpej /*
479 1.1 thorpej * hole
480 1.1 thorpej */
481 1.1 thorpej poff = 0; /* XXX */
482 1.1 thorpej } else if ((u_int)off == START_SPECIAL) {
483 1.1 thorpej /*
484 1.1 thorpej * colour map (Brooktree)
485 1.1 thorpej */
486 1.1 thorpej poff = PFOUR_COLOR_OFF_CMAP;
487 1.1 thorpej } else if ((u_int)off == START_SPECIAL + NBPG) {
488 1.1 thorpej /*
489 1.1 thorpej * p4 register
490 1.1 thorpej */
491 1.1 thorpej poff = 0;
492 1.1 thorpej } else if ((u_int)off > (START_SPECIAL + (NBPG * 2)) &&
493 1.1 thorpej (u_int) off < (START_SPECIAL + (NBPG * 2) + PROMSIZE)) {
494 1.1 thorpej /*
495 1.1 thorpej * rom
496 1.1 thorpej */
497 1.1 thorpej poff = 0x8000 + (off - (START_SPECIAL + (NBPG * 2)));
498 1.1 thorpej } else
499 1.1 thorpej return (-1);
500 1.1 thorpej /*
501 1.1 thorpej * I turned on PMAP_NC here to disable the cache as I was
502 1.1 thorpej * getting horribly broken behaviour with it on.
503 1.1 thorpej */
504 1.13 pk return (REG2PHYS(&sc->sc_phys, poff) | PMAP_NC);
505 1.1 thorpej }
506 1.1 thorpej
507 1.6 pk #if defined(SUN4)
508 1.6 pk /*
509 1.6 pk * Undo the effect of an FBIOSVIDEO that turns the video off.
510 1.6 pk */
511 1.6 pk static void
512 1.6 pk cgeightunblank(dev)
513 1.6 pk struct device *dev;
514 1.6 pk {
515 1.6 pk
516 1.6 pk cgeight_set_video((struct cgeight_softc *)dev, 1);
517 1.6 pk }
518 1.6 pk
519 1.1 thorpej static int
520 1.1 thorpej cgeight_get_video(sc)
521 1.1 thorpej struct cgeight_softc *sc;
522 1.1 thorpej {
523 1.1 thorpej
524 1.1 thorpej return (fb_pfour_get_video(&sc->sc_fb));
525 1.1 thorpej }
526 1.1 thorpej
527 1.1 thorpej static void
528 1.1 thorpej cgeight_set_video(sc, enable)
529 1.1 thorpej struct cgeight_softc *sc;
530 1.1 thorpej int enable;
531 1.1 thorpej {
532 1.1 thorpej
533 1.1 thorpej fb_pfour_set_video(&sc->sc_fb, enable);
534 1.1 thorpej }
535 1.6 pk
536 1.6 pk /*
537 1.6 pk * Load a subset of the current (new) colormap into the Brooktree DAC.
538 1.6 pk */
539 1.6 pk static void
540 1.6 pk cgeightloadcmap(sc, start, ncolors)
541 1.6 pk register struct cgeight_softc *sc;
542 1.6 pk register int start, ncolors;
543 1.6 pk {
544 1.6 pk register volatile struct bt_regs *bt;
545 1.6 pk register u_int *ip;
546 1.6 pk register int count;
547 1.6 pk
548 1.6 pk ip = &sc->sc_cmap.cm_chip[BT_D4M3(start)]; /* start/4 * 3 */
549 1.6 pk count = BT_D4M3(start + ncolors - 1) - BT_D4M3(start) + 3;
550 1.6 pk bt = &sc->sc_fbc->fbc_dac;
551 1.6 pk bt->bt_addr = BT_D4M4(start);
552 1.6 pk while (--count >= 0)
553 1.6 pk bt->bt_cmap = *ip++;
554 1.6 pk }
555 1.6 pk #endif
556