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