p9100.c revision 1.47 1 1.47 macallan /* $NetBSD: p9100.c,v 1.47 2009/08/20 02:29:16 macallan Exp $ */
2 1.1 pk
3 1.1 pk /*-
4 1.27 macallan * Copyright (c) 1998, 2005, 2006 The NetBSD Foundation, Inc.
5 1.1 pk * All rights reserved.
6 1.1 pk *
7 1.1 pk * This code is derived from software contributed to The NetBSD Foundation
8 1.1 pk * by Matt Thomas.
9 1.1 pk *
10 1.1 pk * Redistribution and use in source and binary forms, with or without
11 1.1 pk * modification, are permitted provided that the following conditions
12 1.1 pk * are met:
13 1.1 pk * 1. Redistributions of source code must retain the above copyright
14 1.1 pk * notice, this list of conditions and the following disclaimer.
15 1.1 pk * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 pk * notice, this list of conditions and the following disclaimer in the
17 1.1 pk * documentation and/or other materials provided with the distribution.
18 1.1 pk *
19 1.1 pk * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 pk * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 pk * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 pk * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 pk * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 pk * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 pk * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 pk * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 pk * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 pk * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 pk * POSSIBILITY OF SUCH DAMAGE.
30 1.1 pk */
31 1.1 pk
32 1.1 pk /*
33 1.1 pk * color display (p9100) driver.
34 1.1 pk *
35 1.1 pk * Does not handle interrupts, even though they can occur.
36 1.1 pk *
37 1.1 pk * XXX should defer colormap updates to vertical retrace interrupts
38 1.1 pk */
39 1.5 lukem
40 1.5 lukem #include <sys/cdefs.h>
41 1.47 macallan __KERNEL_RCSID(0, "$NetBSD: p9100.c,v 1.47 2009/08/20 02:29:16 macallan Exp $");
42 1.1 pk
43 1.1 pk #include <sys/param.h>
44 1.1 pk #include <sys/systm.h>
45 1.1 pk #include <sys/buf.h>
46 1.1 pk #include <sys/device.h>
47 1.1 pk #include <sys/ioctl.h>
48 1.1 pk #include <sys/malloc.h>
49 1.1 pk #include <sys/mman.h>
50 1.1 pk #include <sys/tty.h>
51 1.1 pk #include <sys/conf.h>
52 1.1 pk
53 1.36 ad #include <sys/bus.h>
54 1.1 pk #include <machine/autoconf.h>
55 1.1 pk
56 1.1 pk #include <dev/sun/fbio.h>
57 1.1 pk #include <dev/sun/fbvar.h>
58 1.1 pk #include <dev/sun/btreg.h>
59 1.1 pk #include <dev/sun/btvar.h>
60 1.21 macallan
61 1.1 pk #include <dev/sbus/p9100reg.h>
62 1.1 pk
63 1.1 pk #include <dev/sbus/sbusvar.h>
64 1.1 pk
65 1.44 macallan #include <dev/wscons/wsdisplayvar.h>
66 1.21 macallan #include <dev/wscons/wsconsio.h>
67 1.21 macallan #include <dev/wsfont/wsfont.h>
68 1.21 macallan #include <dev/rasops/rasops.h>
69 1.21 macallan
70 1.27 macallan #include <dev/wscons/wsdisplay_vconsvar.h>
71 1.27 macallan
72 1.21 macallan #include "opt_wsemul.h"
73 1.22 macallan #include "rasops_glue.h"
74 1.45 macallan #include "opt_pnozz.h"
75 1.21 macallan
76 1.1 pk #include "tctrl.h"
77 1.1 pk #if NTCTRL > 0
78 1.1 pk #include <machine/tctrl.h>
79 1.45 macallan #include <sparc/dev/tctrlvar.h> /*XXX*/
80 1.1 pk #endif
81 1.1 pk
82 1.44 macallan #ifdef PNOZZ_DEBUG
83 1.44 macallan #define DPRINTF aprint_normal
84 1.44 macallan #else
85 1.44 macallan #define DPRINTF while (0) aprint_normal
86 1.44 macallan #endif
87 1.44 macallan
88 1.24 macallan struct pnozz_cursor {
89 1.24 macallan short pc_enable; /* cursor is enabled */
90 1.24 macallan struct fbcurpos pc_pos; /* position */
91 1.24 macallan struct fbcurpos pc_hot; /* hot-spot */
92 1.24 macallan struct fbcurpos pc_size; /* size of mask & image fields */
93 1.24 macallan uint32_t pc_bits[0x100]; /* space for mask & image bits */
94 1.24 macallan unsigned char red[3], green[3];
95 1.24 macallan unsigned char blue[3]; /* cursor palette */
96 1.24 macallan };
97 1.24 macallan
98 1.1 pk /* per-display variables */
99 1.1 pk struct p9100_softc {
100 1.44 macallan device_t sc_dev; /* base device */
101 1.1 pk struct sbusdev sc_sd; /* sbus device */
102 1.1 pk struct fbdevice sc_fb; /* frame buffer device */
103 1.24 macallan
104 1.1 pk bus_space_tag_t sc_bustag;
105 1.8 pk
106 1.8 pk bus_addr_t sc_ctl_paddr; /* phys address description */
107 1.1 pk bus_size_t sc_ctl_psize; /* for device mmap() */
108 1.1 pk bus_space_handle_t sc_ctl_memh; /* bus space handle */
109 1.8 pk
110 1.8 pk bus_addr_t sc_fb_paddr; /* phys address description */
111 1.1 pk bus_size_t sc_fb_psize; /* for device mmap() */
112 1.1 pk bus_space_handle_t sc_fb_memh; /* bus space handle */
113 1.8 pk
114 1.27 macallan volatile uint32_t sc_junk;
115 1.45 macallan uint32_t sc_mono_width; /* for setup_mono */
116 1.33 blymn
117 1.44 macallan uint32_t sc_width;
118 1.44 macallan uint32_t sc_height; /* panel width / height */
119 1.44 macallan uint32_t sc_stride;
120 1.44 macallan uint32_t sc_depth;
121 1.44 macallan int sc_depthshift; /* blitter works on bytes not pixels */
122 1.44 macallan
123 1.21 macallan union bt_cmap sc_cmap; /* Brooktree color map */
124 1.21 macallan
125 1.24 macallan struct pnozz_cursor sc_cursor;
126 1.24 macallan
127 1.45 macallan int sc_mode;
128 1.45 macallan int sc_video, sc_powerstate;
129 1.45 macallan uint32_t sc_bg;
130 1.27 macallan volatile uint32_t sc_last_offset;
131 1.27 macallan struct vcons_data vd;
132 1.45 macallan uint8_t sc_dac_power;
133 1.21 macallan };
134 1.21 macallan
135 1.21 macallan
136 1.27 macallan static struct vcons_screen p9100_console_screen;
137 1.21 macallan
138 1.21 macallan extern const u_char rasops_cmap[768];
139 1.21 macallan
140 1.21 macallan struct wsscreen_descr p9100_defscreendesc = {
141 1.21 macallan "default",
142 1.21 macallan 0, 0,
143 1.21 macallan NULL,
144 1.21 macallan 8, 16,
145 1.21 macallan WSSCREEN_WSCOLORS,
146 1.21 macallan };
147 1.1 pk
148 1.21 macallan const struct wsscreen_descr *_p9100_scrlist[] = {
149 1.21 macallan &p9100_defscreendesc,
150 1.21 macallan /* XXX other formats, graphics screen? */
151 1.1 pk };
152 1.1 pk
153 1.21 macallan struct wsscreen_list p9100_screenlist = {
154 1.45 macallan sizeof(_p9100_scrlist) / sizeof(struct wsscreen_descr *),
155 1.45 macallan _p9100_scrlist
156 1.21 macallan };
157 1.1 pk
158 1.1 pk /* autoconfiguration driver */
159 1.43 cegger static int p9100_sbus_match(device_t, cfdata_t, void *);
160 1.43 cegger static void p9100_sbus_attach(device_t, device_t, void *);
161 1.1 pk
162 1.43 cegger static void p9100unblank(device_t);
163 1.1 pk
164 1.44 macallan CFATTACH_DECL_NEW(pnozz, sizeof(struct p9100_softc),
165 1.13 thorpej p9100_sbus_match, p9100_sbus_attach, NULL, NULL);
166 1.1 pk
167 1.1 pk extern struct cfdriver pnozz_cd;
168 1.1 pk
169 1.27 macallan static dev_type_open(p9100open);
170 1.27 macallan static dev_type_ioctl(p9100ioctl);
171 1.27 macallan static dev_type_mmap(p9100mmap);
172 1.10 gehenna
173 1.10 gehenna const struct cdevsw pnozz_cdevsw = {
174 1.10 gehenna p9100open, nullclose, noread, nowrite, p9100ioctl,
175 1.14 jdolecek nostop, notty, nopoll, p9100mmap, nokqfilter,
176 1.10 gehenna };
177 1.10 gehenna
178 1.1 pk /* frame buffer generic driver */
179 1.1 pk static struct fbdriver p9100fbdriver = {
180 1.10 gehenna p9100unblank, p9100open, nullclose, p9100ioctl, nopoll,
181 1.14 jdolecek p9100mmap, nokqfilter
182 1.1 pk };
183 1.1 pk
184 1.21 macallan static void p9100loadcmap(struct p9100_softc *, int, int);
185 1.21 macallan static void p9100_set_video(struct p9100_softc *, int);
186 1.21 macallan static int p9100_get_video(struct p9100_softc *);
187 1.1 pk static uint32_t p9100_ctl_read_4(struct p9100_softc *, bus_size_t);
188 1.21 macallan static void p9100_ctl_write_4(struct p9100_softc *, bus_size_t, uint32_t);
189 1.27 macallan static uint8_t p9100_ramdac_read(struct p9100_softc *, bus_size_t);
190 1.27 macallan static void p9100_ramdac_write(struct p9100_softc *, bus_size_t, uint8_t);
191 1.27 macallan
192 1.27 macallan static uint8_t p9100_ramdac_read_ctl(struct p9100_softc *, int);
193 1.27 macallan static void p9100_ramdac_write_ctl(struct p9100_softc *, int, uint8_t);
194 1.21 macallan
195 1.27 macallan static void p9100_init_engine(struct p9100_softc *);
196 1.44 macallan static int p9100_set_depth(struct p9100_softc *, int);
197 1.28 macallan
198 1.28 macallan #if NWSDISPLAY > 0
199 1.21 macallan static void p9100_sync(struct p9100_softc *);
200 1.27 macallan static void p9100_bitblt(void *, int, int, int, int, int, int, uint32_t);
201 1.27 macallan static void p9100_rectfill(void *, int, int, int, int, uint32_t);
202 1.28 macallan static void p9100_clearscreen(struct p9100_softc *);
203 1.28 macallan
204 1.33 blymn static void p9100_setup_mono(struct p9100_softc *, int, int, int, int,
205 1.33 blymn uint32_t, uint32_t);
206 1.27 macallan static void p9100_feed_line(struct p9100_softc *, int, uint8_t *);
207 1.21 macallan static void p9100_set_color_reg(struct p9100_softc *, int, int32_t);
208 1.21 macallan
209 1.27 macallan static void p9100_copycols(void *, int, int, int, int);
210 1.27 macallan static void p9100_erasecols(void *, int, int, int, long);
211 1.27 macallan static void p9100_copyrows(void *, int, int, int);
212 1.27 macallan static void p9100_eraserows(void *, int, int, long);
213 1.27 macallan /*static int p9100_mapchar(void *, int, u_int *);*/
214 1.27 macallan static void p9100_putchar(void *, int, int, u_int, long);
215 1.27 macallan static void p9100_cursor(void *, int, int, int);
216 1.27 macallan static int p9100_allocattr(void *, int, int, int, long *);
217 1.27 macallan
218 1.27 macallan static int p9100_putcmap(struct p9100_softc *, struct wsdisplay_cmap *);
219 1.27 macallan static int p9100_getcmap(struct p9100_softc *, struct wsdisplay_cmap *);
220 1.35 christos static int p9100_ioctl(void *, void *, u_long, void *, int, struct lwp *);
221 1.31 jmmv static paddr_t p9100_mmap(void *, void *, off_t, int);
222 1.33 blymn
223 1.27 macallan /*static int p9100_load_font(void *, void *, struct wsdisplay_font *);*/
224 1.21 macallan
225 1.33 blymn static void p9100_init_screen(void *, struct vcons_screen *, int,
226 1.45 macallan long *);
227 1.28 macallan #endif
228 1.28 macallan
229 1.27 macallan static void p9100_init_cursor(struct p9100_softc *);
230 1.28 macallan
231 1.27 macallan static void p9100_set_fbcursor(struct p9100_softc *);
232 1.27 macallan static void p9100_setcursorcmap(struct p9100_softc *);
233 1.27 macallan static void p9100_loadcursor(struct p9100_softc *);
234 1.27 macallan
235 1.44 macallan #if 0
236 1.27 macallan static int p9100_intr(void *);
237 1.44 macallan #endif
238 1.21 macallan
239 1.27 macallan /* power management stuff */
240 1.45 macallan static bool p9100_suspend(device_t PMF_FN_PROTO);
241 1.45 macallan static bool p9100_resume(device_t PMF_FN_PROTO);
242 1.27 macallan
243 1.40 he #if NTCTRL > 0
244 1.27 macallan static void p9100_set_extvga(void *, int);
245 1.40 he #endif
246 1.21 macallan
247 1.28 macallan #if NWSDISPLAY > 0
248 1.21 macallan struct wsdisplay_accessops p9100_accessops = {
249 1.21 macallan p9100_ioctl,
250 1.21 macallan p9100_mmap,
251 1.27 macallan NULL, /* vcons_alloc_screen */
252 1.27 macallan NULL, /* vcons_free_screen */
253 1.27 macallan NULL, /* vcons_show_screen */
254 1.21 macallan NULL, /* load_font */
255 1.21 macallan NULL, /* polls */
256 1.21 macallan NULL, /* scroll */
257 1.21 macallan };
258 1.28 macallan #endif
259 1.1 pk
260 1.27 macallan #define PNOZZ_LATCH(sc, off) if(sc->sc_last_offset == (off & 0xffffff80)) { \
261 1.27 macallan sc->sc_junk = bus_space_read_4(sc->sc_bustag, sc->sc_fb_memh, \
262 1.27 macallan off); \
263 1.27 macallan sc->sc_last_offset = off & 0xffffff80; }
264 1.27 macallan
265 1.1 pk /*
266 1.1 pk * Match a p9100.
267 1.1 pk */
268 1.1 pk static int
269 1.43 cegger p9100_sbus_match(device_t parent, cfdata_t cf, void *aux)
270 1.1 pk {
271 1.1 pk struct sbus_attach_args *sa = aux;
272 1.1 pk
273 1.44 macallan if (strcmp("p9100", sa->sa_name) == 0)
274 1.44 macallan return 100;
275 1.44 macallan return 0;
276 1.1 pk }
277 1.1 pk
278 1.1 pk
279 1.1 pk /*
280 1.1 pk * Attach a display. We need to notice if it is the console, too.
281 1.1 pk */
282 1.1 pk static void
283 1.43 cegger p9100_sbus_attach(device_t parent, device_t self, void *args)
284 1.1 pk {
285 1.39 drochner struct p9100_softc *sc = device_private(self);
286 1.1 pk struct sbus_attach_args *sa = args;
287 1.1 pk struct fbdevice *fb = &sc->sc_fb;
288 1.1 pk int isconsole;
289 1.44 macallan int node = sa->sa_node;
290 1.21 macallan int i, j;
291 1.27 macallan uint8_t ver;
292 1.21 macallan
293 1.21 macallan #if NWSDISPLAY > 0
294 1.21 macallan struct wsemuldisplaydev_attach_args aa;
295 1.21 macallan struct rasops_info *ri;
296 1.21 macallan unsigned long defattr;
297 1.21 macallan #endif
298 1.1 pk
299 1.27 macallan sc->sc_last_offset = 0xffffffff;
300 1.44 macallan sc->sc_dev = self;
301 1.44 macallan
302 1.44 macallan /*
303 1.44 macallan * When the ROM has mapped in a p9100 display, the address
304 1.44 macallan * maps only the video RAM, so in any case we have to map the
305 1.45 macallan * registers ourselves.
306 1.44 macallan */
307 1.44 macallan
308 1.44 macallan if (sa->sa_npromvaddrs != 0)
309 1.44 macallan fb->fb_pixels = (void *)sa->sa_promvaddrs[0];
310 1.27 macallan
311 1.1 pk /* Remember cookies for p9100_mmap() */
312 1.1 pk sc->sc_bustag = sa->sa_bustag;
313 1.44 macallan
314 1.20 perry sc->sc_ctl_paddr = sbus_bus_addr(sa->sa_bustag,
315 1.9 thorpej sa->sa_reg[0].oa_space, sa->sa_reg[0].oa_base);
316 1.21 macallan sc->sc_ctl_psize = 0x8000;/*(bus_size_t)sa->sa_reg[0].oa_size;*/
317 1.3 eeh
318 1.20 perry sc->sc_fb_paddr = sbus_bus_addr(sa->sa_bustag,
319 1.9 thorpej sa->sa_reg[2].oa_space, sa->sa_reg[2].oa_base);
320 1.9 thorpej sc->sc_fb_psize = (bus_size_t)sa->sa_reg[2].oa_size;
321 1.1 pk
322 1.44 macallan if (sbus_bus_map(sc->sc_bustag,
323 1.44 macallan sa->sa_reg[0].oa_space,
324 1.44 macallan sa->sa_reg[0].oa_base,
325 1.44 macallan /*
326 1.44 macallan * XXX for some reason the SBus resources don't cover
327 1.44 macallan * all registers, so we just map what we need
328 1.44 macallan */
329 1.44 macallan 0x8000,
330 1.44 macallan 0, &sc->sc_ctl_memh) != 0) {
331 1.44 macallan printf("%s: cannot map control registers\n",
332 1.44 macallan self->dv_xname);
333 1.44 macallan return;
334 1.44 macallan }
335 1.44 macallan
336 1.45 macallan /*
337 1.45 macallan * we need to map the framebuffer even though we never write to it,
338 1.45 macallan * thanks to some weirdness in the SPARCbook's SBus glue for the
339 1.45 macallan * P9100 - all register accesses need to be 'latched in' whenever we
340 1.45 macallan * go to another 0x80 aligned 'page' by reading the framebuffer at the
341 1.45 macallan * same offset
342 1.45 macallan */
343 1.44 macallan if (fb->fb_pixels == NULL) {
344 1.44 macallan if (sbus_bus_map(sc->sc_bustag,
345 1.44 macallan sa->sa_reg[2].oa_space,
346 1.44 macallan sa->sa_reg[2].oa_base,
347 1.44 macallan sc->sc_fb_psize,
348 1.45 macallan BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_LARGE,
349 1.45 macallan &sc->sc_fb_memh) != 0) {
350 1.44 macallan printf("%s: cannot map framebuffer\n",
351 1.44 macallan self->dv_xname);
352 1.44 macallan return;
353 1.44 macallan }
354 1.44 macallan fb->fb_pixels = (char *)sc->sc_fb_memh;
355 1.44 macallan } else {
356 1.44 macallan sc->sc_fb_memh = (bus_space_handle_t) fb->fb_pixels;
357 1.44 macallan }
358 1.44 macallan sc->sc_width = prom_getpropint(node, "width", 800);
359 1.44 macallan sc->sc_height = prom_getpropint(node, "height", 600);
360 1.44 macallan sc->sc_depth = prom_getpropint(node, "depth", 8) >> 3;
361 1.44 macallan
362 1.44 macallan sc->sc_stride = prom_getpropint(node, "linebytes",
363 1.44 macallan sc->sc_width * sc->sc_depth);
364 1.44 macallan
365 1.1 pk fb->fb_driver = &p9100fbdriver;
366 1.44 macallan fb->fb_device = sc->sc_dev;
367 1.44 macallan fb->fb_flags = device_cfdata(sc->sc_dev)->cf_flags & FB_USERMASK;
368 1.21 macallan #ifdef PNOZZ_EMUL_CG3
369 1.1 pk fb->fb_type.fb_type = FBTYPE_SUN3COLOR;
370 1.21 macallan #else
371 1.21 macallan fb->fb_type.fb_type = FBTYPE_P9100;
372 1.21 macallan #endif
373 1.7 cyber fb->fb_pixels = NULL;
374 1.33 blymn
375 1.21 macallan sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
376 1.1 pk
377 1.7 cyber isconsole = fb_is_console(node);
378 1.44 macallan #if 0
379 1.7 cyber if (!isconsole) {
380 1.37 cegger aprint_normal("\n");
381 1.37 cegger aprint_error_dev(self, "fatal error: PROM didn't configure device\n");
382 1.7 cyber return;
383 1.7 cyber }
384 1.44 macallan #endif
385 1.1 pk
386 1.44 macallan fb->fb_type.fb_depth = 8;
387 1.44 macallan sc->sc_depth = 1;
388 1.44 macallan sc->sc_depthshift = 0;
389 1.21 macallan
390 1.27 macallan /* check the RAMDAC */
391 1.27 macallan ver = p9100_ramdac_read_ctl(sc, DAC_VERSION);
392 1.33 blymn
393 1.21 macallan p9100_init_engine(sc);
394 1.44 macallan p9100_set_depth(sc, 8);
395 1.44 macallan
396 1.33 blymn fb_setsize_obp(fb, fb->fb_type.fb_depth, sc->sc_width, sc->sc_height,
397 1.21 macallan node);
398 1.1 pk
399 1.44 macallan sbus_establish(&sc->sc_sd, sc->sc_dev);
400 1.44 macallan #if 0
401 1.27 macallan bus_intr_establish(sc->sc_bustag, sa->sa_pri, IPL_BIO,
402 1.27 macallan p9100_intr, sc);
403 1.44 macallan #endif
404 1.1 pk
405 1.19 pk fb->fb_type.fb_cmsize = prom_getpropint(node, "cmsize", 256);
406 1.1 pk if ((1 << fb->fb_type.fb_depth) != fb->fb_type.fb_cmsize)
407 1.1 pk printf(", %d entry colormap", fb->fb_type.fb_cmsize);
408 1.1 pk
409 1.1 pk /* Initialize the default color map. */
410 1.21 macallan j = 0;
411 1.21 macallan for (i = 0; i < 256; i++) {
412 1.21 macallan sc->sc_cmap.cm_map[i][0] = rasops_cmap[j];
413 1.21 macallan j++;
414 1.21 macallan sc->sc_cmap.cm_map[i][1] = rasops_cmap[j];
415 1.21 macallan j++;
416 1.21 macallan sc->sc_cmap.cm_map[i][2] = rasops_cmap[j];
417 1.21 macallan j++;
418 1.21 macallan }
419 1.1 pk p9100loadcmap(sc, 0, 256);
420 1.1 pk
421 1.1 pk /* make sure we are not blanked */
422 1.7 cyber if (isconsole)
423 1.7 cyber p9100_set_video(sc, 1);
424 1.1 pk
425 1.45 macallan /* register with power management */
426 1.45 macallan sc->sc_video = 1;
427 1.45 macallan sc->sc_powerstate = PWR_RESUME;
428 1.45 macallan if (!pmf_device_register(self, p9100_suspend, p9100_resume)) {
429 1.45 macallan panic("%s: could not register with PMF",
430 1.44 macallan device_xname(sc->sc_dev));
431 1.1 pk }
432 1.1 pk
433 1.1 pk if (isconsole) {
434 1.1 pk printf(" (console)\n");
435 1.1 pk #ifdef RASTERCONSOLE
436 1.21 macallan /*p9100loadcmap(sc, 255, 1);*/
437 1.1 pk fbrcons_init(fb);
438 1.1 pk #endif
439 1.1 pk } else
440 1.1 pk printf("\n");
441 1.33 blymn
442 1.21 macallan #if NWSDISPLAY > 0
443 1.21 macallan wsfont_init();
444 1.33 blymn
445 1.27 macallan vcons_init(&sc->vd, sc, &p9100_defscreendesc, &p9100_accessops);
446 1.27 macallan sc->vd.init_screen = p9100_init_screen;
447 1.33 blymn
448 1.27 macallan vcons_init_screen(&sc->vd, &p9100_console_screen, 1, &defattr);
449 1.27 macallan p9100_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
450 1.21 macallan
451 1.27 macallan sc->sc_bg = (defattr >> 16) & 0xff;
452 1.27 macallan p9100_clearscreen(sc);
453 1.33 blymn
454 1.27 macallan ri = &p9100_console_screen.scr_ri;
455 1.21 macallan
456 1.21 macallan p9100_defscreendesc.nrows = ri->ri_rows;
457 1.21 macallan p9100_defscreendesc.ncols = ri->ri_cols;
458 1.21 macallan p9100_defscreendesc.textops = &ri->ri_ops;
459 1.21 macallan p9100_defscreendesc.capabilities = ri->ri_caps;
460 1.33 blymn
461 1.21 macallan if(isconsole) {
462 1.21 macallan wsdisplay_cnattach(&p9100_defscreendesc, ri, 0, 0, defattr);
463 1.47 macallan vcons_replay_msgbuf(&p9100_console_screen);
464 1.21 macallan }
465 1.21 macallan
466 1.21 macallan aa.console = isconsole;
467 1.21 macallan aa.scrdata = &p9100_screenlist;
468 1.21 macallan aa.accessops = &p9100_accessops;
469 1.27 macallan aa.accesscookie = &sc->vd;
470 1.1 pk
471 1.21 macallan config_found(self, &aa, wsemuldisplaydevprint);
472 1.21 macallan #endif
473 1.44 macallan fb->fb_type.fb_size = fb->fb_type.fb_height * fb->fb_linebytes;
474 1.45 macallan printf("%s: rev %d / %x, %dx%d, depth %d mem %x\n",
475 1.45 macallan device_xname(self),
476 1.45 macallan (i & 7), ver, fb->fb_type.fb_width, fb->fb_type.fb_height,
477 1.45 macallan fb->fb_type.fb_depth, (unsigned int)sc->sc_fb_psize);
478 1.28 macallan /* cursor sprite handling */
479 1.28 macallan p9100_init_cursor(sc);
480 1.28 macallan
481 1.21 macallan /* attach the fb */
482 1.1 pk fb_attach(fb, isconsole);
483 1.28 macallan
484 1.27 macallan #if NTCTRL > 0
485 1.27 macallan /* register callback for external monitor status change */
486 1.27 macallan tadpole_register_callback(p9100_set_extvga, sc);
487 1.21 macallan #endif
488 1.1 pk }
489 1.1 pk
490 1.1 pk int
491 1.25 christos p9100open(dev_t dev, int flags, int mode, struct lwp *l)
492 1.1 pk {
493 1.1 pk int unit = minor(dev);
494 1.1 pk
495 1.39 drochner if (device_lookup(&pnozz_cd, unit) == NULL)
496 1.1 pk return (ENXIO);
497 1.1 pk return (0);
498 1.1 pk }
499 1.1 pk
500 1.1 pk int
501 1.35 christos p9100ioctl(dev_t dev, u_long cmd, void *data, int flags, struct lwp *l)
502 1.1 pk {
503 1.39 drochner struct p9100_softc *sc = device_lookup_private(&pnozz_cd, minor(dev));
504 1.1 pk struct fbgattr *fba;
505 1.24 macallan int error, v;
506 1.1 pk
507 1.1 pk switch (cmd) {
508 1.1 pk
509 1.1 pk case FBIOGTYPE:
510 1.1 pk *(struct fbtype *)data = sc->sc_fb.fb_type;
511 1.1 pk break;
512 1.1 pk
513 1.1 pk case FBIOGATTR:
514 1.1 pk fba = (struct fbgattr *)data;
515 1.1 pk fba->real_type = sc->sc_fb.fb_type.fb_type;
516 1.1 pk fba->owner = 0; /* XXX ??? */
517 1.1 pk fba->fbtype = sc->sc_fb.fb_type;
518 1.1 pk fba->sattr.flags = 0;
519 1.1 pk fba->sattr.emu_type = sc->sc_fb.fb_type.fb_type;
520 1.1 pk fba->sattr.dev_specific[0] = -1;
521 1.1 pk fba->emu_types[0] = sc->sc_fb.fb_type.fb_type;
522 1.1 pk fba->emu_types[1] = -1;
523 1.1 pk break;
524 1.1 pk
525 1.1 pk case FBIOGETCMAP:
526 1.1 pk #define p ((struct fbcmap *)data)
527 1.1 pk return (bt_getcmap(p, &sc->sc_cmap, 256, 1));
528 1.1 pk
529 1.1 pk case FBIOPUTCMAP:
530 1.1 pk /* copy to software map */
531 1.1 pk error = bt_putcmap(p, &sc->sc_cmap, 256, 1);
532 1.1 pk if (error)
533 1.1 pk return (error);
534 1.1 pk /* now blast them into the chip */
535 1.1 pk /* XXX should use retrace interrupt */
536 1.1 pk p9100loadcmap(sc, p->index, p->count);
537 1.1 pk #undef p
538 1.1 pk break;
539 1.1 pk
540 1.1 pk case FBIOGVIDEO:
541 1.1 pk *(int *)data = p9100_get_video(sc);
542 1.1 pk break;
543 1.1 pk
544 1.1 pk case FBIOSVIDEO:
545 1.1 pk p9100_set_video(sc, *(int *)data);
546 1.1 pk break;
547 1.1 pk
548 1.24 macallan /* these are for both FBIOSCURSOR and FBIOGCURSOR */
549 1.24 macallan #define p ((struct fbcursor *)data)
550 1.24 macallan #define pc (&sc->sc_cursor)
551 1.24 macallan
552 1.24 macallan case FBIOGCURSOR:
553 1.24 macallan p->set = FB_CUR_SETALL; /* close enough, anyway */
554 1.24 macallan p->enable = pc->pc_enable;
555 1.24 macallan p->pos = pc->pc_pos;
556 1.24 macallan p->hot = pc->pc_hot;
557 1.24 macallan p->size = pc->pc_size;
558 1.24 macallan
559 1.24 macallan if (p->image != NULL) {
560 1.24 macallan error = copyout(pc->pc_bits, p->image, 0x200);
561 1.24 macallan if (error)
562 1.24 macallan return error;
563 1.24 macallan error = copyout(&pc->pc_bits[0x80], p->mask, 0x200);
564 1.24 macallan if (error)
565 1.24 macallan return error;
566 1.24 macallan }
567 1.33 blymn
568 1.24 macallan p->cmap.index = 0;
569 1.24 macallan p->cmap.count = 3;
570 1.24 macallan if (p->cmap.red != NULL) {
571 1.24 macallan copyout(pc->red, p->cmap.red, 3);
572 1.24 macallan copyout(pc->green, p->cmap.green, 3);
573 1.24 macallan copyout(pc->blue, p->cmap.blue, 3);
574 1.24 macallan }
575 1.24 macallan break;
576 1.24 macallan
577 1.24 macallan case FBIOSCURSOR:
578 1.24 macallan {
579 1.24 macallan int count;
580 1.24 macallan uint32_t image[0x80], mask[0x80];
581 1.24 macallan uint8_t red[3], green[3], blue[3];
582 1.33 blymn
583 1.24 macallan v = p->set;
584 1.24 macallan if (v & FB_CUR_SETCMAP) {
585 1.24 macallan error = copyin(p->cmap.red, red, 3);
586 1.24 macallan error |= copyin(p->cmap.green, green, 3);
587 1.24 macallan error |= copyin(p->cmap.blue, blue, 3);
588 1.24 macallan if (error)
589 1.24 macallan return error;
590 1.24 macallan }
591 1.24 macallan if (v & FB_CUR_SETSHAPE) {
592 1.24 macallan if (p->size.x > 64 || p->size.y > 64)
593 1.24 macallan return EINVAL;
594 1.24 macallan memset(&mask, 0, 0x200);
595 1.24 macallan memset(&image, 0, 0x200);
596 1.24 macallan count = p->size.y * 8;
597 1.24 macallan error = copyin(p->image, image, count);
598 1.24 macallan if (error)
599 1.24 macallan return error;
600 1.24 macallan error = copyin(p->mask, mask, count);
601 1.24 macallan if (error)
602 1.24 macallan return error;
603 1.24 macallan }
604 1.24 macallan
605 1.24 macallan /* parameters are OK; do it */
606 1.24 macallan if (v & (FB_CUR_SETCUR | FB_CUR_SETPOS | FB_CUR_SETHOT)) {
607 1.24 macallan if (v & FB_CUR_SETCUR)
608 1.24 macallan pc->pc_enable = p->enable;
609 1.24 macallan if (v & FB_CUR_SETPOS)
610 1.24 macallan pc->pc_pos = p->pos;
611 1.24 macallan if (v & FB_CUR_SETHOT)
612 1.24 macallan pc->pc_hot = p->hot;
613 1.24 macallan p9100_set_fbcursor(sc);
614 1.24 macallan }
615 1.33 blymn
616 1.24 macallan if (v & FB_CUR_SETCMAP) {
617 1.24 macallan memcpy(pc->red, red, 3);
618 1.24 macallan memcpy(pc->green, green, 3);
619 1.24 macallan memcpy(pc->blue, blue, 3);
620 1.24 macallan p9100_setcursorcmap(sc);
621 1.24 macallan }
622 1.33 blymn
623 1.24 macallan if (v & FB_CUR_SETSHAPE) {
624 1.24 macallan memcpy(pc->pc_bits, image, 0x200);
625 1.24 macallan memcpy(&pc->pc_bits[0x80], mask, 0x200);
626 1.24 macallan p9100_loadcursor(sc);
627 1.24 macallan }
628 1.24 macallan }
629 1.24 macallan break;
630 1.24 macallan
631 1.24 macallan #undef p
632 1.24 macallan #undef cc
633 1.24 macallan
634 1.24 macallan case FBIOGCURPOS:
635 1.24 macallan *(struct fbcurpos *)data = sc->sc_cursor.pc_pos;
636 1.24 macallan break;
637 1.24 macallan
638 1.24 macallan case FBIOSCURPOS:
639 1.24 macallan sc->sc_cursor.pc_pos = *(struct fbcurpos *)data;
640 1.24 macallan p9100_set_fbcursor(sc);
641 1.24 macallan break;
642 1.24 macallan
643 1.24 macallan case FBIOGCURMAX:
644 1.24 macallan /* max cursor size is 64x64 */
645 1.24 macallan ((struct fbcurpos *)data)->x = 64;
646 1.24 macallan ((struct fbcurpos *)data)->y = 64;
647 1.24 macallan break;
648 1.24 macallan
649 1.1 pk default:
650 1.1 pk return (ENOTTY);
651 1.1 pk }
652 1.1 pk return (0);
653 1.1 pk }
654 1.1 pk
655 1.1 pk static uint32_t
656 1.1 pk p9100_ctl_read_4(struct p9100_softc *sc, bus_size_t off)
657 1.1 pk {
658 1.27 macallan
659 1.27 macallan PNOZZ_LATCH(sc, off);
660 1.1 pk return bus_space_read_4(sc->sc_bustag, sc->sc_ctl_memh, off);
661 1.1 pk }
662 1.1 pk
663 1.1 pk static void
664 1.1 pk p9100_ctl_write_4(struct p9100_softc *sc, bus_size_t off, uint32_t v)
665 1.1 pk {
666 1.27 macallan
667 1.27 macallan PNOZZ_LATCH(sc, off);
668 1.1 pk bus_space_write_4(sc->sc_bustag, sc->sc_ctl_memh, off, v);
669 1.1 pk }
670 1.1 pk
671 1.28 macallan /* initialize the drawing engine */
672 1.28 macallan static void
673 1.28 macallan p9100_init_engine(struct p9100_softc *sc)
674 1.28 macallan {
675 1.28 macallan /* reset clipping rectangles */
676 1.33 blymn uint32_t rmax = ((sc->sc_width & 0x3fff) << 16) |
677 1.28 macallan (sc->sc_height & 0x3fff);
678 1.28 macallan
679 1.28 macallan sc->sc_last_offset = 0xffffffff;
680 1.28 macallan
681 1.28 macallan p9100_ctl_write_4(sc, WINDOW_OFFSET, 0);
682 1.28 macallan p9100_ctl_write_4(sc, WINDOW_MIN, 0);
683 1.28 macallan p9100_ctl_write_4(sc, WINDOW_MAX, rmax);
684 1.28 macallan p9100_ctl_write_4(sc, BYTE_CLIP_MIN, 0);
685 1.28 macallan p9100_ctl_write_4(sc, BYTE_CLIP_MAX, rmax);
686 1.28 macallan p9100_ctl_write_4(sc, DRAW_MODE, 0);
687 1.33 blymn p9100_ctl_write_4(sc, PLANE_MASK, 0xffffffff);
688 1.33 blymn p9100_ctl_write_4(sc, PATTERN0, 0xffffffff);
689 1.33 blymn p9100_ctl_write_4(sc, PATTERN1, 0xffffffff);
690 1.33 blymn p9100_ctl_write_4(sc, PATTERN2, 0xffffffff);
691 1.33 blymn p9100_ctl_write_4(sc, PATTERN3, 0xffffffff);
692 1.44 macallan
693 1.28 macallan }
694 1.28 macallan
695 1.28 macallan /* we only need these in the wsdisplay case */
696 1.28 macallan #if NWSDISPLAY > 0
697 1.28 macallan
698 1.21 macallan /* wait until the engine is idle */
699 1.21 macallan static void
700 1.21 macallan p9100_sync(struct p9100_softc *sc)
701 1.21 macallan {
702 1.33 blymn while((p9100_ctl_read_4(sc, ENGINE_STATUS) &
703 1.21 macallan (ENGINE_BUSY | BLITTER_BUSY)) != 0);
704 1.21 macallan }
705 1.21 macallan
706 1.33 blymn static void
707 1.21 macallan p9100_set_color_reg(struct p9100_softc *sc, int reg, int32_t col)
708 1.21 macallan {
709 1.21 macallan uint32_t out;
710 1.33 blymn
711 1.21 macallan switch(sc->sc_depth)
712 1.21 macallan {
713 1.21 macallan case 1: /* 8 bit */
714 1.21 macallan out = (col << 8) | col;
715 1.33 blymn out |= out << 16;
716 1.21 macallan break;
717 1.21 macallan case 2: /* 16 bit */
718 1.33 blymn out = col | (col << 16);
719 1.21 macallan break;
720 1.21 macallan default:
721 1.21 macallan out = col;
722 1.21 macallan }
723 1.21 macallan p9100_ctl_write_4(sc, reg, out);
724 1.21 macallan }
725 1.21 macallan
726 1.21 macallan /* screen-to-screen blit */
727 1.33 blymn static void
728 1.27 macallan p9100_bitblt(void *cookie, int xs, int ys, int xd, int yd, int wi,
729 1.21 macallan int he, uint32_t rop)
730 1.21 macallan {
731 1.27 macallan struct p9100_softc *sc = cookie;
732 1.27 macallan uint32_t src, dst, srcw, dstw;
733 1.27 macallan
734 1.27 macallan sc->sc_last_offset = 0xffffffff;
735 1.27 macallan
736 1.21 macallan src = ((xs & 0x3fff) << 16) | (ys & 0x3fff);
737 1.21 macallan dst = ((xd & 0x3fff) << 16) | (yd & 0x3fff);
738 1.21 macallan srcw = (((xs + wi - 1) & 0x3fff) << 16) | ((ys + he - 1) & 0x3fff);
739 1.21 macallan dstw = (((xd + wi - 1) & 0x3fff) << 16) | ((yd + he - 1) & 0x3fff);
740 1.44 macallan
741 1.21 macallan p9100_sync(sc);
742 1.44 macallan
743 1.21 macallan p9100_ctl_write_4(sc, RASTER_OP, rop);
744 1.33 blymn
745 1.44 macallan p9100_ctl_write_4(sc, ABS_XY0, src << sc->sc_depthshift);
746 1.44 macallan p9100_ctl_write_4(sc, ABS_XY1, srcw << sc->sc_depthshift);
747 1.44 macallan p9100_ctl_write_4(sc, ABS_XY2, dst << sc->sc_depthshift);
748 1.44 macallan p9100_ctl_write_4(sc, ABS_XY3, dstw << sc->sc_depthshift);
749 1.33 blymn
750 1.27 macallan sc->sc_junk = p9100_ctl_read_4(sc, COMMAND_BLIT);
751 1.21 macallan }
752 1.21 macallan
753 1.21 macallan /* solid rectangle fill */
754 1.33 blymn static void
755 1.27 macallan p9100_rectfill(void *cookie, int xs, int ys, int wi, int he, uint32_t col)
756 1.21 macallan {
757 1.27 macallan struct p9100_softc *sc = cookie;
758 1.27 macallan uint32_t src, srcw;
759 1.27 macallan
760 1.27 macallan sc->sc_last_offset = 0xffffffff;
761 1.27 macallan
762 1.21 macallan src = ((xs & 0x3fff) << 16) | (ys & 0x3fff);
763 1.21 macallan srcw = (((xs + wi) & 0x3fff) << 16) | ((ys + he) & 0x3fff);
764 1.21 macallan p9100_sync(sc);
765 1.21 macallan p9100_set_color_reg(sc, FOREGROUND_COLOR, col);
766 1.21 macallan p9100_set_color_reg(sc, BACKGROUND_COLOR, col);
767 1.21 macallan p9100_ctl_write_4(sc, RASTER_OP, ROP_PAT);
768 1.21 macallan p9100_ctl_write_4(sc, COORD_INDEX, 0);
769 1.21 macallan p9100_ctl_write_4(sc, RECT_RTW_XY, src);
770 1.21 macallan p9100_ctl_write_4(sc, RECT_RTW_XY, srcw);
771 1.27 macallan sc->sc_junk = p9100_ctl_read_4(sc, COMMAND_QUAD);
772 1.21 macallan }
773 1.21 macallan
774 1.21 macallan /* setup for mono->colour expansion */
775 1.33 blymn static void
776 1.33 blymn p9100_setup_mono(struct p9100_softc *sc, int x, int y, int wi, int he,
777 1.33 blymn uint32_t fg, uint32_t bg)
778 1.21 macallan {
779 1.27 macallan
780 1.27 macallan sc->sc_last_offset = 0xffffffff;
781 1.27 macallan
782 1.21 macallan p9100_sync(sc);
783 1.33 blymn /*
784 1.21 macallan * this doesn't make any sense to me either, but for some reason the
785 1.33 blymn * chip applies the foreground colour to 0 pixels
786 1.21 macallan */
787 1.33 blymn
788 1.21 macallan p9100_set_color_reg(sc,FOREGROUND_COLOR,bg);
789 1.21 macallan p9100_set_color_reg(sc,BACKGROUND_COLOR,fg);
790 1.21 macallan
791 1.21 macallan p9100_ctl_write_4(sc, RASTER_OP, ROP_SRC);
792 1.21 macallan p9100_ctl_write_4(sc, ABS_X0, x);
793 1.21 macallan p9100_ctl_write_4(sc, ABS_XY1, (x << 16) | (y & 0xFFFFL));
794 1.21 macallan p9100_ctl_write_4(sc, ABS_X2, (x + wi));
795 1.21 macallan p9100_ctl_write_4(sc, ABS_Y3, he);
796 1.21 macallan /* now feed the data into the chip */
797 1.21 macallan sc->sc_mono_width = wi;
798 1.21 macallan }
799 1.21 macallan
800 1.21 macallan /* write monochrome data to the screen through the blitter */
801 1.33 blymn static void
802 1.21 macallan p9100_feed_line(struct p9100_softc *sc, int count, uint8_t *data)
803 1.21 macallan {
804 1.21 macallan int i;
805 1.21 macallan uint32_t latch = 0, bork;
806 1.21 macallan int shift = 24;
807 1.21 macallan int to_go = sc->sc_mono_width;
808 1.27 macallan
809 1.27 macallan PNOZZ_LATCH(sc, PIXEL_1);
810 1.27 macallan
811 1.21 macallan for (i = 0; i < count; i++) {
812 1.21 macallan bork = data[i];
813 1.21 macallan latch |= (bork << shift);
814 1.21 macallan if (shift == 0) {
815 1.21 macallan /* check how many bits are significant */
816 1.21 macallan if (to_go > 31) {
817 1.44 macallan bus_space_write_4(sc->sc_bustag,
818 1.44 macallan sc->sc_ctl_memh,
819 1.27 macallan (PIXEL_1 + (31 << 2)), latch);
820 1.21 macallan to_go -= 32;
821 1.21 macallan } else
822 1.21 macallan {
823 1.44 macallan bus_space_write_4(sc->sc_bustag,
824 1.44 macallan sc->sc_ctl_memh,
825 1.27 macallan (PIXEL_1 + ((to_go - 1) << 2)), latch);
826 1.21 macallan to_go = 0;
827 1.21 macallan }
828 1.21 macallan latch = 0;
829 1.21 macallan shift = 24;
830 1.21 macallan } else
831 1.21 macallan shift -= 8;
832 1.21 macallan }
833 1.21 macallan if (shift != 24)
834 1.21 macallan p9100_ctl_write_4(sc, (PIXEL_1 + ((to_go - 1) << 2)), latch);
835 1.33 blymn }
836 1.21 macallan
837 1.27 macallan static void
838 1.21 macallan p9100_clearscreen(struct p9100_softc *sc)
839 1.21 macallan {
840 1.33 blymn
841 1.21 macallan p9100_rectfill(sc, 0, 0, sc->sc_width, sc->sc_height, sc->sc_bg);
842 1.21 macallan }
843 1.28 macallan #endif /* NWSDISPLAY > 0 */
844 1.21 macallan
845 1.27 macallan static uint8_t
846 1.1 pk p9100_ramdac_read(struct p9100_softc *sc, bus_size_t off)
847 1.1 pk {
848 1.27 macallan
849 1.1 pk sc->sc_junk = p9100_ctl_read_4(sc, PWRUP_CNFG);
850 1.33 blymn return ((bus_space_read_4(sc->sc_bustag,
851 1.21 macallan sc->sc_ctl_memh, off) >> 16) & 0xff);
852 1.1 pk }
853 1.1 pk
854 1.27 macallan static void
855 1.1 pk p9100_ramdac_write(struct p9100_softc *sc, bus_size_t off, uint8_t v)
856 1.1 pk {
857 1.27 macallan
858 1.1 pk sc->sc_junk = p9100_ctl_read_4(sc, PWRUP_CNFG);
859 1.33 blymn bus_space_write_4(sc->sc_bustag, sc->sc_ctl_memh, off,
860 1.21 macallan ((uint32_t)v) << 16);
861 1.1 pk }
862 1.1 pk
863 1.27 macallan static uint8_t
864 1.27 macallan p9100_ramdac_read_ctl(struct p9100_softc *sc, int off)
865 1.27 macallan {
866 1.27 macallan p9100_ramdac_write(sc, DAC_INDX_LO, off & 0xff);
867 1.27 macallan p9100_ramdac_write(sc, DAC_INDX_HI, (off & 0xff00) >> 8);
868 1.27 macallan return p9100_ramdac_read(sc, DAC_INDX_DATA);
869 1.27 macallan }
870 1.27 macallan
871 1.27 macallan static void
872 1.27 macallan p9100_ramdac_write_ctl(struct p9100_softc *sc, int off, uint8_t val)
873 1.27 macallan {
874 1.27 macallan p9100_ramdac_write(sc, DAC_INDX_LO, off & 0xff);
875 1.27 macallan p9100_ramdac_write(sc, DAC_INDX_HI, (off & 0xff00) >> 8);
876 1.27 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, val);
877 1.27 macallan }
878 1.27 macallan
879 1.1 pk /*
880 1.1 pk * Undo the effect of an FBIOSVIDEO that turns the video off.
881 1.1 pk */
882 1.1 pk static void
883 1.43 cegger p9100unblank(device_t dev)
884 1.1 pk {
885 1.39 drochner struct p9100_softc *sc = device_private(dev);
886 1.33 blymn
887 1.45 macallan p9100_set_video(sc, 1);
888 1.33 blymn
889 1.33 blymn /*
890 1.27 macallan * Check if we're in terminal mode. If not force the console screen
891 1.27 macallan * to front so we can see ddb, panic messages and so on
892 1.27 macallan */
893 1.27 macallan if (sc->sc_mode != WSDISPLAYIO_MODE_EMUL) {
894 1.27 macallan sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
895 1.27 macallan if (sc->vd.active != &p9100_console_screen) {
896 1.27 macallan SCREEN_INVISIBLE(sc->vd.active);
897 1.27 macallan sc->vd.active = &p9100_console_screen;
898 1.27 macallan SCREEN_VISIBLE(&p9100_console_screen);
899 1.27 macallan }
900 1.44 macallan p9100_init_engine(sc);
901 1.44 macallan p9100_set_depth(sc, 8);
902 1.27 macallan vcons_redraw_screen(&p9100_console_screen);
903 1.27 macallan }
904 1.1 pk }
905 1.1 pk
906 1.1 pk static void
907 1.1 pk p9100_set_video(struct p9100_softc *sc, int enable)
908 1.1 pk {
909 1.1 pk u_int32_t v = p9100_ctl_read_4(sc, SCRN_RPNT_CTL_1);
910 1.33 blymn
911 1.1 pk if (enable)
912 1.1 pk v |= VIDEO_ENABLED;
913 1.1 pk else
914 1.1 pk v &= ~VIDEO_ENABLED;
915 1.1 pk p9100_ctl_write_4(sc, SCRN_RPNT_CTL_1, v);
916 1.1 pk #if NTCTRL > 0
917 1.1 pk /* Turn On/Off the TFT if we know how.
918 1.1 pk */
919 1.1 pk tadpole_set_video(enable);
920 1.1 pk #endif
921 1.1 pk }
922 1.1 pk
923 1.1 pk static int
924 1.1 pk p9100_get_video(struct p9100_softc *sc)
925 1.1 pk {
926 1.1 pk return (p9100_ctl_read_4(sc, SCRN_RPNT_CTL_1) & VIDEO_ENABLED) != 0;
927 1.1 pk }
928 1.1 pk
929 1.45 macallan static bool
930 1.45 macallan p9100_suspend(device_t dev PMF_FN_ARGS)
931 1.45 macallan {
932 1.45 macallan struct p9100_softc *sc = device_private(dev);
933 1.45 macallan
934 1.45 macallan if (sc->sc_powerstate == PWR_SUSPEND)
935 1.45 macallan return TRUE;
936 1.45 macallan
937 1.45 macallan sc->sc_video = p9100_get_video(sc);
938 1.45 macallan sc->sc_dac_power = p9100_ramdac_read_ctl(sc, DAC_POWER_MGT);
939 1.45 macallan p9100_ramdac_write_ctl(sc, DAC_POWER_MGT,
940 1.45 macallan DAC_POWER_SCLK_DISABLE |
941 1.45 macallan DAC_POWER_DDOT_DISABLE |
942 1.45 macallan DAC_POWER_SYNC_DISABLE |
943 1.45 macallan DAC_POWER_ICLK_DISABLE |
944 1.45 macallan DAC_POWER_IPWR_DISABLE);
945 1.45 macallan p9100_set_video(sc, 0);
946 1.45 macallan sc->sc_powerstate = PWR_SUSPEND;
947 1.45 macallan return TRUE;
948 1.45 macallan }
949 1.45 macallan
950 1.45 macallan static bool
951 1.45 macallan p9100_resume(device_t dev PMF_FN_ARGS)
952 1.27 macallan {
953 1.45 macallan struct p9100_softc *sc = device_private(dev);
954 1.45 macallan
955 1.45 macallan if (sc->sc_powerstate == PWR_RESUME)
956 1.45 macallan return TRUE;
957 1.33 blymn
958 1.45 macallan p9100_ramdac_write_ctl(sc, DAC_POWER_MGT, sc->sc_dac_power);
959 1.45 macallan p9100_set_video(sc, sc->sc_video);
960 1.33 blymn
961 1.45 macallan sc->sc_powerstate = PWR_RESUME;
962 1.45 macallan return TRUE;
963 1.27 macallan }
964 1.27 macallan
965 1.1 pk /*
966 1.1 pk * Load a subset of the current (new) colormap into the IBM RAMDAC.
967 1.1 pk */
968 1.1 pk static void
969 1.1 pk p9100loadcmap(struct p9100_softc *sc, int start, int ncolors)
970 1.1 pk {
971 1.21 macallan int i;
972 1.27 macallan sc->sc_last_offset = 0xffffffff;
973 1.27 macallan
974 1.1 pk p9100_ramdac_write(sc, DAC_CMAP_WRIDX, start);
975 1.1 pk
976 1.21 macallan for (i=0;i<ncolors;i++) {
977 1.33 blymn p9100_ramdac_write(sc, DAC_CMAP_DATA,
978 1.21 macallan sc->sc_cmap.cm_map[i + start][0]);
979 1.33 blymn p9100_ramdac_write(sc, DAC_CMAP_DATA,
980 1.21 macallan sc->sc_cmap.cm_map[i + start][1]);
981 1.33 blymn p9100_ramdac_write(sc, DAC_CMAP_DATA,
982 1.21 macallan sc->sc_cmap.cm_map[i + start][2]);
983 1.1 pk }
984 1.1 pk }
985 1.1 pk
986 1.1 pk /*
987 1.1 pk * Return the address that would map the given device at the given
988 1.1 pk * offset, allowing for the given protection, or return -1 for error.
989 1.1 pk */
990 1.27 macallan static paddr_t
991 1.1 pk p9100mmap(dev_t dev, off_t off, int prot)
992 1.1 pk {
993 1.39 drochner struct p9100_softc *sc = device_lookup_private(&pnozz_cd, minor(dev));
994 1.1 pk
995 1.1 pk if (off & PGOFSET)
996 1.1 pk panic("p9100mmap");
997 1.1 pk if (off < 0)
998 1.1 pk return (-1);
999 1.1 pk
1000 1.21 macallan #ifdef PNOZZ_EMUL_CG3
1001 1.1 pk #define CG3_MMAP_OFFSET 0x04000000
1002 1.1 pk /* Make Xsun think we are a CG3 (SUN3COLOR)
1003 1.1 pk */
1004 1.1 pk if (off >= CG3_MMAP_OFFSET && off < CG3_MMAP_OFFSET + sc->sc_fb_psize) {
1005 1.1 pk off -= CG3_MMAP_OFFSET;
1006 1.3 eeh return (bus_space_mmap(sc->sc_bustag,
1007 1.3 eeh sc->sc_fb_paddr,
1008 1.3 eeh off,
1009 1.3 eeh prot,
1010 1.3 eeh BUS_SPACE_MAP_LINEAR));
1011 1.1 pk }
1012 1.21 macallan #endif
1013 1.1 pk
1014 1.44 macallan if (off >= sc->sc_fb_psize + sc->sc_ctl_psize/* + sc->sc_cmd_psize*/)
1015 1.1 pk return (-1);
1016 1.1 pk
1017 1.1 pk if (off < sc->sc_fb_psize) {
1018 1.3 eeh return (bus_space_mmap(sc->sc_bustag,
1019 1.3 eeh sc->sc_fb_paddr,
1020 1.3 eeh off,
1021 1.3 eeh prot,
1022 1.3 eeh BUS_SPACE_MAP_LINEAR));
1023 1.1 pk }
1024 1.44 macallan
1025 1.1 pk off -= sc->sc_fb_psize;
1026 1.1 pk if (off < sc->sc_ctl_psize) {
1027 1.3 eeh return (bus_space_mmap(sc->sc_bustag,
1028 1.3 eeh sc->sc_ctl_paddr,
1029 1.3 eeh off,
1030 1.3 eeh prot,
1031 1.3 eeh BUS_SPACE_MAP_LINEAR));
1032 1.1 pk }
1033 1.1 pk
1034 1.44 macallan return EINVAL;
1035 1.1 pk }
1036 1.21 macallan
1037 1.21 macallan /* wscons stuff */
1038 1.28 macallan #if NWSDISPLAY > 0
1039 1.21 macallan
1040 1.27 macallan static void
1041 1.21 macallan p9100_cursor(void *cookie, int on, int row, int col)
1042 1.21 macallan {
1043 1.21 macallan struct rasops_info *ri = cookie;
1044 1.27 macallan struct vcons_screen *scr = ri->ri_hw;
1045 1.27 macallan struct p9100_softc *sc = scr->scr_cookie;
1046 1.21 macallan int x, y, wi,he;
1047 1.33 blymn
1048 1.21 macallan wi = ri->ri_font->fontwidth;
1049 1.21 macallan he = ri->ri_font->fontheight;
1050 1.33 blymn
1051 1.27 macallan if (ri->ri_flg & RI_CURSOR) {
1052 1.27 macallan x = ri->ri_ccol * wi + ri->ri_xorigin;
1053 1.27 macallan y = ri->ri_crow * he + ri->ri_yorigin;
1054 1.27 macallan p9100_bitblt(sc, x, y, x, y, wi, he, ROP_SRC ^ 0xff);
1055 1.27 macallan ri->ri_flg &= ~RI_CURSOR;
1056 1.27 macallan }
1057 1.44 macallan
1058 1.27 macallan ri->ri_crow = row;
1059 1.27 macallan ri->ri_ccol = col;
1060 1.44 macallan
1061 1.27 macallan if (on)
1062 1.27 macallan {
1063 1.27 macallan x = ri->ri_ccol * wi + ri->ri_xorigin;
1064 1.27 macallan y = ri->ri_crow * he + ri->ri_yorigin;
1065 1.27 macallan p9100_bitblt(sc, x, y, x, y, wi, he, ROP_SRC ^ 0xff);
1066 1.27 macallan ri->ri_flg |= RI_CURSOR;
1067 1.21 macallan }
1068 1.21 macallan }
1069 1.21 macallan
1070 1.21 macallan #if 0
1071 1.27 macallan static int
1072 1.21 macallan p9100_mapchar(void *cookie, int uni, u_int *index)
1073 1.21 macallan {
1074 1.21 macallan return 0;
1075 1.21 macallan }
1076 1.21 macallan #endif
1077 1.21 macallan
1078 1.27 macallan static void
1079 1.21 macallan p9100_putchar(void *cookie, int row, int col, u_int c, long attr)
1080 1.21 macallan {
1081 1.21 macallan struct rasops_info *ri = cookie;
1082 1.27 macallan struct vcons_screen *scr = ri->ri_hw;
1083 1.27 macallan struct p9100_softc *sc = scr->scr_cookie;
1084 1.33 blymn
1085 1.27 macallan int fg, bg, uc, i;
1086 1.27 macallan uint8_t *data;
1087 1.47 macallan int x, y, wi, he;
1088 1.33 blymn
1089 1.27 macallan wi = ri->ri_font->fontwidth;
1090 1.27 macallan he = ri->ri_font->fontheight;
1091 1.33 blymn
1092 1.27 macallan if (!CHAR_IN_FONT(c, ri->ri_font))
1093 1.27 macallan return;
1094 1.44 macallan
1095 1.27 macallan bg = (u_char)ri->ri_devcmap[(attr >> 16) & 0xff];
1096 1.27 macallan fg = (u_char)ri->ri_devcmap[(attr >> 24) & 0xff];
1097 1.27 macallan x = ri->ri_xorigin + col * wi;
1098 1.27 macallan y = ri->ri_yorigin + row * he;
1099 1.44 macallan
1100 1.27 macallan if (c == 0x20) {
1101 1.27 macallan p9100_rectfill(sc, x, y, wi, he, bg);
1102 1.27 macallan } else {
1103 1.27 macallan uc = c-ri->ri_font->firstchar;
1104 1.33 blymn data = (uint8_t *)ri->ri_font->data + uc *
1105 1.27 macallan ri->ri_fontscale;
1106 1.27 macallan
1107 1.33 blymn p9100_setup_mono(sc, x, y, wi, 1, fg, bg);
1108 1.27 macallan for (i = 0; i < he; i++) {
1109 1.27 macallan p9100_feed_line(sc, ri->ri_font->stride,
1110 1.27 macallan data);
1111 1.27 macallan data += ri->ri_font->stride;
1112 1.21 macallan }
1113 1.21 macallan }
1114 1.21 macallan }
1115 1.21 macallan
1116 1.21 macallan /*
1117 1.21 macallan * wsdisplay_accessops
1118 1.21 macallan */
1119 1.21 macallan
1120 1.21 macallan int
1121 1.35 christos p9100_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
1122 1.31 jmmv struct lwp *l)
1123 1.21 macallan {
1124 1.27 macallan struct vcons_data *vd = v;
1125 1.27 macallan struct p9100_softc *sc = vd->cookie;
1126 1.21 macallan struct wsdisplay_fbinfo *wdf;
1127 1.27 macallan struct vcons_screen *ms = vd->active;
1128 1.21 macallan
1129 1.21 macallan switch (cmd) {
1130 1.21 macallan case WSDISPLAYIO_GTYPE:
1131 1.21 macallan *(u_int *)data = WSDISPLAY_TYPE_SB_P9100;
1132 1.21 macallan return 0;
1133 1.33 blymn
1134 1.21 macallan case FBIOGVIDEO:
1135 1.21 macallan case WSDISPLAYIO_GVIDEO:
1136 1.21 macallan *(int *)data = p9100_get_video(sc);
1137 1.21 macallan return 0;
1138 1.33 blymn
1139 1.21 macallan case WSDISPLAYIO_SVIDEO:
1140 1.21 macallan case FBIOSVIDEO:
1141 1.21 macallan p9100_set_video(sc, *(int *)data);
1142 1.21 macallan return 0;
1143 1.21 macallan
1144 1.21 macallan case WSDISPLAYIO_GINFO:
1145 1.21 macallan wdf = (void *)data;
1146 1.27 macallan wdf->height = ms->scr_ri.ri_height;
1147 1.27 macallan wdf->width = ms->scr_ri.ri_width;
1148 1.27 macallan wdf->depth = ms->scr_ri.ri_depth;
1149 1.21 macallan wdf->cmsize = 256;
1150 1.21 macallan return 0;
1151 1.21 macallan
1152 1.21 macallan case WSDISPLAYIO_GETCMAP:
1153 1.21 macallan return p9100_getcmap(sc, (struct wsdisplay_cmap *)data);
1154 1.21 macallan
1155 1.21 macallan case WSDISPLAYIO_PUTCMAP:
1156 1.21 macallan return p9100_putcmap(sc, (struct wsdisplay_cmap *)data);
1157 1.21 macallan
1158 1.21 macallan case WSDISPLAYIO_SMODE:
1159 1.21 macallan {
1160 1.21 macallan int new_mode = *(int*)data;
1161 1.21 macallan if (new_mode != sc->sc_mode)
1162 1.21 macallan {
1163 1.21 macallan sc->sc_mode = new_mode;
1164 1.21 macallan if (new_mode == WSDISPLAYIO_MODE_EMUL)
1165 1.21 macallan {
1166 1.33 blymn p9100_init_engine(sc);
1167 1.44 macallan p9100_set_depth(sc, 8);
1168 1.27 macallan p9100loadcmap(sc, 0, 256);
1169 1.27 macallan p9100_clearscreen(sc);
1170 1.27 macallan vcons_redraw_screen(ms);
1171 1.21 macallan }
1172 1.21 macallan }
1173 1.21 macallan }
1174 1.21 macallan }
1175 1.21 macallan return EPASSTHROUGH;
1176 1.21 macallan }
1177 1.21 macallan
1178 1.27 macallan static paddr_t
1179 1.31 jmmv p9100_mmap(void *v, void *vs, off_t offset, int prot)
1180 1.21 macallan {
1181 1.27 macallan struct vcons_data *vd = v;
1182 1.33 blymn struct p9100_softc *sc = vd->cookie;
1183 1.21 macallan paddr_t pa;
1184 1.33 blymn
1185 1.21 macallan /* 'regular' framebuffer mmap()ing */
1186 1.21 macallan if (offset < sc->sc_fb_psize) {
1187 1.33 blymn pa = bus_space_mmap(sc->sc_bustag, sc->sc_fb_paddr + offset, 0,
1188 1.33 blymn prot, BUS_SPACE_MAP_LINEAR);
1189 1.21 macallan return pa;
1190 1.21 macallan }
1191 1.21 macallan
1192 1.33 blymn if ((offset >= sc->sc_fb_paddr) && (offset < (sc->sc_fb_paddr +
1193 1.21 macallan sc->sc_fb_psize))) {
1194 1.33 blymn pa = bus_space_mmap(sc->sc_bustag, offset, 0, prot,
1195 1.33 blymn BUS_SPACE_MAP_LINEAR);
1196 1.21 macallan return pa;
1197 1.21 macallan }
1198 1.21 macallan
1199 1.33 blymn if ((offset >= sc->sc_ctl_paddr) && (offset < (sc->sc_ctl_paddr +
1200 1.21 macallan sc->sc_ctl_psize))) {
1201 1.33 blymn pa = bus_space_mmap(sc->sc_bustag, offset, 0, prot,
1202 1.33 blymn BUS_SPACE_MAP_LINEAR);
1203 1.21 macallan return pa;
1204 1.21 macallan }
1205 1.21 macallan
1206 1.21 macallan return -1;
1207 1.21 macallan }
1208 1.21 macallan
1209 1.27 macallan static void
1210 1.27 macallan p9100_init_screen(void *cookie, struct vcons_screen *scr,
1211 1.21 macallan int existing, long *defattr)
1212 1.21 macallan {
1213 1.27 macallan struct p9100_softc *sc = cookie;
1214 1.27 macallan struct rasops_info *ri = &scr->scr_ri;
1215 1.33 blymn
1216 1.21 macallan ri->ri_depth = sc->sc_depth << 3;
1217 1.21 macallan ri->ri_width = sc->sc_width;
1218 1.21 macallan ri->ri_height = sc->sc_height;
1219 1.21 macallan ri->ri_stride = sc->sc_stride;
1220 1.27 macallan ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
1221 1.21 macallan
1222 1.21 macallan ri->ri_bits = bus_space_vaddr(sc->sc_bustag, sc->sc_fb_memh);
1223 1.21 macallan
1224 1.44 macallan DPRINTF("addr: %08lx\n",(ulong)ri->ri_bits);
1225 1.44 macallan
1226 1.21 macallan rasops_init(ri, sc->sc_height/8, sc->sc_width/8);
1227 1.21 macallan ri->ri_caps = WSSCREEN_WSCOLORS;
1228 1.21 macallan rasops_reconfig(ri, sc->sc_height / ri->ri_font->fontheight,
1229 1.21 macallan sc->sc_width / ri->ri_font->fontwidth);
1230 1.21 macallan
1231 1.21 macallan /* enable acceleration */
1232 1.27 macallan ri->ri_ops.cursor = p9100_cursor;
1233 1.27 macallan ri->ri_ops.copyrows = p9100_copyrows;
1234 1.21 macallan ri->ri_ops.eraserows = p9100_eraserows;
1235 1.27 macallan ri->ri_ops.copycols = p9100_copycols;
1236 1.21 macallan ri->ri_ops.erasecols = p9100_erasecols;
1237 1.27 macallan ri->ri_ops.putchar = p9100_putchar;
1238 1.21 macallan ri->ri_ops.allocattr = p9100_allocattr;
1239 1.21 macallan }
1240 1.21 macallan
1241 1.27 macallan static int
1242 1.21 macallan p9100_putcmap(struct p9100_softc *sc, struct wsdisplay_cmap *cm)
1243 1.21 macallan {
1244 1.21 macallan u_int index = cm->index;
1245 1.21 macallan u_int count = cm->count;
1246 1.21 macallan int i, error;
1247 1.21 macallan u_char rbuf[256], gbuf[256], bbuf[256];
1248 1.21 macallan u_char *r, *g, *b;
1249 1.21 macallan
1250 1.21 macallan if (cm->index >= 256 || cm->count > 256 ||
1251 1.21 macallan (cm->index + cm->count) > 256)
1252 1.21 macallan return EINVAL;
1253 1.21 macallan error = copyin(cm->red, &rbuf[index], count);
1254 1.21 macallan if (error)
1255 1.21 macallan return error;
1256 1.21 macallan error = copyin(cm->green, &gbuf[index], count);
1257 1.21 macallan if (error)
1258 1.21 macallan return error;
1259 1.21 macallan error = copyin(cm->blue, &bbuf[index], count);
1260 1.21 macallan if (error)
1261 1.21 macallan return error;
1262 1.21 macallan
1263 1.21 macallan r = &rbuf[index];
1264 1.21 macallan g = &gbuf[index];
1265 1.21 macallan b = &bbuf[index];
1266 1.21 macallan
1267 1.21 macallan for (i = 0; i < count; i++) {
1268 1.21 macallan sc->sc_cmap.cm_map[index][0] = *r;
1269 1.21 macallan sc->sc_cmap.cm_map[index][1] = *g;
1270 1.21 macallan sc->sc_cmap.cm_map[index][2] = *b;
1271 1.21 macallan index++;
1272 1.21 macallan r++, g++, b++;
1273 1.21 macallan }
1274 1.21 macallan p9100loadcmap(sc, 0, 256);
1275 1.21 macallan return 0;
1276 1.21 macallan }
1277 1.21 macallan
1278 1.27 macallan static int
1279 1.21 macallan p9100_getcmap(struct p9100_softc *sc, struct wsdisplay_cmap *cm)
1280 1.21 macallan {
1281 1.21 macallan u_int index = cm->index;
1282 1.21 macallan u_int count = cm->count;
1283 1.21 macallan int error, i;
1284 1.27 macallan uint8_t red[256], green[256], blue[256];
1285 1.21 macallan
1286 1.21 macallan if (index >= 255 || count > 256 || index + count > 256)
1287 1.21 macallan return EINVAL;
1288 1.21 macallan
1289 1.21 macallan i = index;
1290 1.21 macallan while (i < (index + count)) {
1291 1.21 macallan red[i] = sc->sc_cmap.cm_map[i][0];
1292 1.21 macallan green[i] = sc->sc_cmap.cm_map[i][1];
1293 1.21 macallan blue[i] = sc->sc_cmap.cm_map[i][2];
1294 1.21 macallan i++;
1295 1.21 macallan }
1296 1.21 macallan error = copyout(&red[index], cm->red, count);
1297 1.21 macallan if (error)
1298 1.21 macallan return error;
1299 1.21 macallan error = copyout(&green[index], cm->green, count);
1300 1.21 macallan if (error)
1301 1.21 macallan return error;
1302 1.21 macallan error = copyout(&blue[index], cm->blue, count);
1303 1.21 macallan if (error)
1304 1.21 macallan return error;
1305 1.21 macallan
1306 1.21 macallan return 0;
1307 1.21 macallan }
1308 1.21 macallan
1309 1.27 macallan static void
1310 1.27 macallan p9100_copycols(void *cookie, int row, int srccol, int dstcol, int ncols)
1311 1.27 macallan {
1312 1.27 macallan struct rasops_info *ri = cookie;
1313 1.27 macallan struct vcons_screen *scr = ri->ri_hw;
1314 1.27 macallan int32_t xs, xd, y, width, height;
1315 1.33 blymn
1316 1.27 macallan xs = ri->ri_xorigin + ri->ri_font->fontwidth * srccol;
1317 1.27 macallan xd = ri->ri_xorigin + ri->ri_font->fontwidth * dstcol;
1318 1.27 macallan y = ri->ri_yorigin + ri->ri_font->fontheight * row;
1319 1.27 macallan width = ri->ri_font->fontwidth * ncols;
1320 1.27 macallan height = ri->ri_font->fontheight;
1321 1.27 macallan p9100_bitblt(scr->scr_cookie, xs, y, xd, y, width, height, ROP_SRC);
1322 1.27 macallan }
1323 1.27 macallan
1324 1.27 macallan static void
1325 1.27 macallan p9100_erasecols(void *cookie, int row, int startcol, int ncols, long fillattr)
1326 1.27 macallan {
1327 1.27 macallan struct rasops_info *ri = cookie;
1328 1.27 macallan struct vcons_screen *scr = ri->ri_hw;
1329 1.27 macallan int32_t x, y, width, height, bg;
1330 1.33 blymn
1331 1.27 macallan x = ri->ri_xorigin + ri->ri_font->fontwidth * startcol;
1332 1.27 macallan y = ri->ri_yorigin + ri->ri_font->fontheight * row;
1333 1.27 macallan width = ri->ri_font->fontwidth * ncols;
1334 1.33 blymn height = ri->ri_font->fontheight;
1335 1.27 macallan bg = (uint32_t)ri->ri_devcmap[(fillattr >> 16) & 0xff];
1336 1.27 macallan p9100_rectfill(scr->scr_cookie, x, y, width, height, bg);
1337 1.27 macallan }
1338 1.27 macallan
1339 1.27 macallan static void
1340 1.27 macallan p9100_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
1341 1.27 macallan {
1342 1.27 macallan struct rasops_info *ri = cookie;
1343 1.27 macallan struct vcons_screen *scr = ri->ri_hw;
1344 1.27 macallan int32_t x, ys, yd, width, height;
1345 1.27 macallan
1346 1.27 macallan x = ri->ri_xorigin;
1347 1.27 macallan ys = ri->ri_yorigin + ri->ri_font->fontheight * srcrow;
1348 1.27 macallan yd = ri->ri_yorigin + ri->ri_font->fontheight * dstrow;
1349 1.27 macallan width = ri->ri_emuwidth;
1350 1.33 blymn height = ri->ri_font->fontheight * nrows;
1351 1.27 macallan p9100_bitblt(scr->scr_cookie, x, ys, x, yd, width, height, ROP_SRC);
1352 1.27 macallan }
1353 1.27 macallan
1354 1.27 macallan static void
1355 1.27 macallan p9100_eraserows(void *cookie, int row, int nrows, long fillattr)
1356 1.27 macallan {
1357 1.27 macallan struct rasops_info *ri = cookie;
1358 1.27 macallan struct vcons_screen *scr = ri->ri_hw;
1359 1.27 macallan int32_t x, y, width, height, bg;
1360 1.33 blymn
1361 1.27 macallan if ((row == 0) && (nrows == ri->ri_rows)) {
1362 1.27 macallan x = y = 0;
1363 1.27 macallan width = ri->ri_width;
1364 1.27 macallan height = ri->ri_height;
1365 1.27 macallan } else {
1366 1.27 macallan x = ri->ri_xorigin;
1367 1.27 macallan y = ri->ri_yorigin + ri->ri_font->fontheight * row;
1368 1.27 macallan width = ri->ri_emuwidth;
1369 1.27 macallan height = ri->ri_font->fontheight * nrows;
1370 1.27 macallan }
1371 1.27 macallan bg = (uint32_t)ri->ri_devcmap[(fillattr >> 16) & 0xff];
1372 1.27 macallan p9100_rectfill(scr->scr_cookie, x, y, width, height, bg);
1373 1.27 macallan }
1374 1.27 macallan
1375 1.27 macallan
1376 1.27 macallan static int
1377 1.27 macallan p9100_allocattr(void *cookie, int fg, int bg, int flags, long *attrp)
1378 1.27 macallan {
1379 1.27 macallan if ((fg == 0) && (bg == 0))
1380 1.27 macallan {
1381 1.27 macallan fg = WS_DEFAULT_FG;
1382 1.27 macallan bg = WS_DEFAULT_BG;
1383 1.27 macallan }
1384 1.44 macallan
1385 1.44 macallan *attrp = (fg & 0xff) << 24 | (bg & 0xff) << 16 | (flags & 0xff);
1386 1.44 macallan
1387 1.27 macallan if (flags & WSATTR_REVERSE) {
1388 1.33 blymn *attrp = (bg & 0xff) << 24 | (fg & 0xff) << 16 |
1389 1.27 macallan (flags & 0xff) << 8;
1390 1.27 macallan } else
1391 1.33 blymn *attrp = (fg & 0xff) << 24 | (bg & 0xff) << 16 |
1392 1.27 macallan (flags & 0xff) << 8;
1393 1.44 macallan
1394 1.27 macallan return 0;
1395 1.27 macallan }
1396 1.27 macallan
1397 1.21 macallan #if 0
1398 1.27 macallan static int
1399 1.21 macallan p9100_load_font(void *v, void *cookie, struct wsdisplay_font *data)
1400 1.21 macallan {
1401 1.21 macallan
1402 1.21 macallan return 0;
1403 1.21 macallan }
1404 1.21 macallan #endif
1405 1.21 macallan
1406 1.28 macallan #endif /* NWSDISPLAY > 0 */
1407 1.28 macallan
1408 1.44 macallan #if 0
1409 1.27 macallan static int
1410 1.21 macallan p9100_intr(void *arg)
1411 1.21 macallan {
1412 1.44 macallan /*p9100_softc *sc=arg;*/
1413 1.44 macallan DPRINTF(".");
1414 1.21 macallan return 1;
1415 1.21 macallan }
1416 1.44 macallan #endif
1417 1.24 macallan
1418 1.27 macallan static void
1419 1.24 macallan p9100_init_cursor(struct p9100_softc *sc)
1420 1.24 macallan {
1421 1.33 blymn
1422 1.24 macallan memset(&sc->sc_cursor, 0, sizeof(struct pnozz_cursor));
1423 1.24 macallan sc->sc_cursor.pc_size.x = 64;
1424 1.24 macallan sc->sc_cursor.pc_size.y = 64;
1425 1.24 macallan
1426 1.24 macallan }
1427 1.24 macallan
1428 1.27 macallan static void
1429 1.24 macallan p9100_set_fbcursor(struct p9100_softc *sc)
1430 1.24 macallan {
1431 1.24 macallan #ifdef PNOZZ_PARANOID
1432 1.24 macallan int s;
1433 1.33 blymn
1434 1.24 macallan s = splhigh(); /* just in case... */
1435 1.24 macallan #endif
1436 1.27 macallan sc->sc_last_offset = 0xffffffff;
1437 1.27 macallan
1438 1.24 macallan /* set position and hotspot */
1439 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_CTL, DAC_INDX_AUTOINCR);
1440 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_HI, 0);
1441 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_LO, DAC_CURSOR_CTL);
1442 1.24 macallan if (sc->sc_cursor.pc_enable) {
1443 1.33 blymn p9100_ramdac_write(sc, DAC_INDX_DATA, DAC_CURSOR_X11 |
1444 1.24 macallan DAC_CURSOR_64);
1445 1.24 macallan } else
1446 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, DAC_CURSOR_OFF);
1447 1.24 macallan /* next two registers - x low, high, y low, high */
1448 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_pos.x & 0xff);
1449 1.33 blymn p9100_ramdac_write(sc, DAC_INDX_DATA, (sc->sc_cursor.pc_pos.x >> 8) &
1450 1.24 macallan 0xff);
1451 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_pos.y & 0xff);
1452 1.33 blymn p9100_ramdac_write(sc, DAC_INDX_DATA, (sc->sc_cursor.pc_pos.y >> 8) &
1453 1.24 macallan 0xff);
1454 1.24 macallan /* hotspot */
1455 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_hot.x & 0xff);
1456 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_hot.y & 0xff);
1457 1.33 blymn
1458 1.24 macallan #ifdef PNOZZ_PARANOID
1459 1.24 macallan splx(s);
1460 1.24 macallan #endif
1461 1.24 macallan
1462 1.24 macallan }
1463 1.24 macallan
1464 1.27 macallan static void
1465 1.24 macallan p9100_setcursorcmap(struct p9100_softc *sc)
1466 1.24 macallan {
1467 1.24 macallan int i;
1468 1.33 blymn
1469 1.24 macallan #ifdef PNOZZ_PARANOID
1470 1.24 macallan int s;
1471 1.24 macallan s = splhigh(); /* just in case... */
1472 1.24 macallan #endif
1473 1.27 macallan sc->sc_last_offset = 0xffffffff;
1474 1.33 blymn
1475 1.24 macallan /* set cursor colours */
1476 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_CTL, DAC_INDX_AUTOINCR);
1477 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_HI, 0);
1478 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_LO, DAC_CURSOR_COL_1);
1479 1.24 macallan
1480 1.24 macallan for (i = 0; i < 3; i++) {
1481 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.red[i]);
1482 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.green[i]);
1483 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.blue[i]);
1484 1.24 macallan }
1485 1.33 blymn
1486 1.24 macallan #ifdef PNOZZ_PARANOID
1487 1.24 macallan splx(s);
1488 1.24 macallan #endif
1489 1.24 macallan }
1490 1.24 macallan
1491 1.27 macallan static void
1492 1.24 macallan p9100_loadcursor(struct p9100_softc *sc)
1493 1.24 macallan {
1494 1.24 macallan uint32_t *image, *mask;
1495 1.24 macallan uint32_t bit, bbit, im, ma;
1496 1.24 macallan int i, j, k;
1497 1.24 macallan uint8_t latch1, latch2;
1498 1.33 blymn
1499 1.24 macallan #ifdef PNOZZ_PARANOID
1500 1.24 macallan int s;
1501 1.24 macallan s = splhigh(); /* just in case... */
1502 1.24 macallan #endif
1503 1.27 macallan sc->sc_last_offset = 0xffffffff;
1504 1.27 macallan
1505 1.24 macallan /* set cursor shape */
1506 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_CTL, DAC_INDX_AUTOINCR);
1507 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_HI, 1);
1508 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_LO, 0);
1509 1.24 macallan
1510 1.24 macallan image = sc->sc_cursor.pc_bits;
1511 1.24 macallan mask = &sc->sc_cursor.pc_bits[0x80];
1512 1.24 macallan
1513 1.24 macallan for (i = 0; i < 0x80; i++) {
1514 1.24 macallan bit = 0x80000000;
1515 1.24 macallan im = image[i];
1516 1.24 macallan ma = mask[i];
1517 1.24 macallan for (k = 0; k < 4; k++) {
1518 1.24 macallan bbit = 0x1;
1519 1.24 macallan latch1 = 0;
1520 1.24 macallan for (j = 0; j < 4; j++) {
1521 1.24 macallan if (im & bit)
1522 1.24 macallan latch1 |= bbit;
1523 1.24 macallan bbit <<= 1;
1524 1.24 macallan if (ma & bit)
1525 1.24 macallan latch1 |= bbit;
1526 1.24 macallan bbit <<= 1;
1527 1.24 macallan bit >>= 1;
1528 1.24 macallan }
1529 1.24 macallan bbit = 0x1;
1530 1.24 macallan latch2 = 0;
1531 1.24 macallan for (j = 0; j < 4; j++) {
1532 1.24 macallan if (im & bit)
1533 1.24 macallan latch2 |= bbit;
1534 1.24 macallan bbit <<= 1;
1535 1.24 macallan if (ma & bit)
1536 1.24 macallan latch2 |= bbit;
1537 1.24 macallan bbit <<= 1;
1538 1.24 macallan bit >>= 1;
1539 1.24 macallan }
1540 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, latch1);
1541 1.24 macallan p9100_ramdac_write(sc, DAC_INDX_DATA, latch2);
1542 1.24 macallan }
1543 1.24 macallan }
1544 1.44 macallan #ifdef PNOZZ_DEBUG_CURSOR
1545 1.24 macallan printf("image:\n");
1546 1.24 macallan for (i=0;i<0x80;i+=2)
1547 1.24 macallan printf("%08x %08x\n", image[i], image[i+1]);
1548 1.24 macallan printf("mask:\n");
1549 1.24 macallan for (i=0;i<0x80;i+=2)
1550 1.24 macallan printf("%08x %08x\n", mask[i], mask[i+1]);
1551 1.24 macallan #endif
1552 1.24 macallan #ifdef PNOZZ_PARANOID
1553 1.24 macallan splx(s);
1554 1.24 macallan #endif
1555 1.24 macallan }
1556 1.27 macallan
1557 1.40 he #if NTCTRL > 0
1558 1.27 macallan static void
1559 1.27 macallan p9100_set_extvga(void *cookie, int status)
1560 1.27 macallan {
1561 1.27 macallan struct p9100_softc *sc = cookie;
1562 1.27 macallan #ifdef PNOZZ_PARANOID
1563 1.27 macallan int s;
1564 1.27 macallan
1565 1.27 macallan s = splhigh();
1566 1.27 macallan #endif
1567 1.44 macallan
1568 1.44 macallan #ifdef PNOZZ_DEBUG
1569 1.44 macallan printf("%s: external VGA %s\n", device_xname(sc->sc_dev),
1570 1.27 macallan status ? "on" : "off");
1571 1.27 macallan #endif
1572 1.44 macallan
1573 1.27 macallan sc->sc_last_offset = 0xffffffff;
1574 1.27 macallan
1575 1.27 macallan if (status) {
1576 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_POWER_MGT,
1577 1.44 macallan p9100_ramdac_read_ctl(sc, DAC_POWER_MGT) &
1578 1.27 macallan ~DAC_POWER_IPWR_DISABLE);
1579 1.27 macallan } else {
1580 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_POWER_MGT,
1581 1.44 macallan p9100_ramdac_read_ctl(sc, DAC_POWER_MGT) |
1582 1.27 macallan DAC_POWER_IPWR_DISABLE);
1583 1.27 macallan }
1584 1.27 macallan #ifdef PNOZZ_PARANOID
1585 1.27 macallan splx(s);
1586 1.27 macallan #endif
1587 1.27 macallan }
1588 1.40 he #endif /* NTCTRL > 0 */
1589 1.44 macallan
1590 1.44 macallan static int
1591 1.44 macallan upper_bit(uint32_t b)
1592 1.44 macallan {
1593 1.44 macallan uint32_t mask=0x80000000;
1594 1.44 macallan int cnt = 31;
1595 1.44 macallan if (b == 0)
1596 1.44 macallan return -1;
1597 1.44 macallan while ((mask != 0) && ((b & mask) == 0)) {
1598 1.44 macallan mask = mask >> 1;
1599 1.44 macallan cnt--;
1600 1.44 macallan }
1601 1.44 macallan return cnt;
1602 1.44 macallan }
1603 1.44 macallan
1604 1.44 macallan static int
1605 1.44 macallan p9100_set_depth(struct p9100_softc *sc, int depth)
1606 1.44 macallan {
1607 1.44 macallan int new_sls;
1608 1.44 macallan uint32_t bits, scr, memctl, mem;
1609 1.44 macallan int s0, s1, s2, s3, ps, crtcline;
1610 1.44 macallan uint8_t pf, mc3, es;
1611 1.44 macallan
1612 1.44 macallan switch (depth) {
1613 1.44 macallan case 8:
1614 1.44 macallan sc->sc_depthshift = 0;
1615 1.44 macallan ps = 2;
1616 1.44 macallan pf = 3;
1617 1.44 macallan mc3 = 0;
1618 1.44 macallan es = 0; /* no swapping */
1619 1.44 macallan memctl = 3;
1620 1.44 macallan break;
1621 1.44 macallan case 16:
1622 1.44 macallan sc->sc_depthshift = 1;
1623 1.44 macallan ps = 3;
1624 1.44 macallan pf = 4;
1625 1.44 macallan mc3 = 0;
1626 1.44 macallan es = 2; /* swap bytes in 16bit words */
1627 1.44 macallan memctl = 2;
1628 1.44 macallan break;
1629 1.44 macallan case 24:
1630 1.44 macallan /* boo */
1631 1.44 macallan printf("We don't DO 24bit pixels dammit!\n");
1632 1.44 macallan return 0;
1633 1.44 macallan case 32:
1634 1.44 macallan sc->sc_depthshift = 2;
1635 1.44 macallan ps = 5;
1636 1.44 macallan pf = 6;
1637 1.44 macallan mc3 = 0;
1638 1.44 macallan es = 6; /* swap both half-words and bytes */
1639 1.44 macallan memctl = 1; /* 0 */
1640 1.44 macallan break;
1641 1.44 macallan default:
1642 1.44 macallan aprint_error("%s: bogus colour depth (%d)\n",
1643 1.44 macallan __func__, depth);
1644 1.44 macallan return FALSE;
1645 1.44 macallan }
1646 1.44 macallan /*
1647 1.44 macallan * this could be done a lot shorter and faster but then nobody would
1648 1.44 macallan * understand what the hell we're doing here without getting a major
1649 1.44 macallan * headache. Scanline size is encoded as 4 shift values, 3 of them 3 bits
1650 1.44 macallan * wide, 16 << n for n>0, one 2 bits, 512 << n for n>0. n==0 means 0
1651 1.44 macallan */
1652 1.44 macallan new_sls = sc->sc_width << sc->sc_depthshift;
1653 1.44 macallan sc->sc_stride = new_sls;
1654 1.44 macallan bits = new_sls;
1655 1.44 macallan s3 = upper_bit(bits);
1656 1.44 macallan if (s3 > 9) {
1657 1.44 macallan bits &= ~(1 << s3);
1658 1.44 macallan s3 -= 9;
1659 1.44 macallan } else
1660 1.44 macallan s3 = 0;
1661 1.44 macallan s2 = upper_bit(bits);
1662 1.44 macallan if (s2 > 0) {
1663 1.44 macallan bits &= ~(1 << s2);
1664 1.44 macallan s2 -= 4;
1665 1.44 macallan } else
1666 1.44 macallan s2 = 0;
1667 1.44 macallan s1 = upper_bit(bits);
1668 1.44 macallan if (s1 > 0) {
1669 1.44 macallan bits &= ~(1 << s1);
1670 1.44 macallan s1 -= 4;
1671 1.44 macallan } else
1672 1.44 macallan s1 = 0;
1673 1.44 macallan s0 = upper_bit(bits);
1674 1.44 macallan if (s0 > 0) {
1675 1.44 macallan bits &= ~(1 << s0);
1676 1.44 macallan s0 -= 4;
1677 1.44 macallan } else
1678 1.44 macallan s0 = 0;
1679 1.44 macallan
1680 1.44 macallan
1681 1.44 macallan DPRINTF("sls: %x sh: %d %d %d %d leftover: %x\n", new_sls, s0, s1,
1682 1.44 macallan s2, s3, bits);
1683 1.44 macallan
1684 1.44 macallan /*
1685 1.44 macallan * now let's put these values into the System Config Register. No need to
1686 1.44 macallan * read it here since we (hopefully) just saved the content
1687 1.44 macallan */
1688 1.44 macallan scr = p9100_ctl_read_4(sc, SYS_CONF);
1689 1.44 macallan scr = (s0 << SHIFT_0) | (s1 << SHIFT_1) | (s2 << SHIFT_2) |
1690 1.44 macallan (s3 << SHIFT_3) | (ps << PIXEL_SHIFT) | (es << SWAP_SHIFT);
1691 1.44 macallan
1692 1.44 macallan DPRINTF("new scr: %x DAC %x %x\n", scr, pf, mc3);
1693 1.44 macallan
1694 1.44 macallan mem = p9100_ctl_read_4(sc, VID_MEM_CONFIG);
1695 1.44 macallan
1696 1.44 macallan DPRINTF("old memctl: %08x\n", mem);
1697 1.44 macallan
1698 1.44 macallan /* set shift and crtc clock */
1699 1.44 macallan mem &= ~(0x0000fc00);
1700 1.44 macallan mem |= (memctl << 10) | (memctl << 13);
1701 1.44 macallan p9100_ctl_write_4(sc, VID_MEM_CONFIG, mem);
1702 1.44 macallan
1703 1.44 macallan DPRINTF("new memctl: %08x\n", mem);
1704 1.44 macallan
1705 1.44 macallan /* whack the engine... */
1706 1.44 macallan p9100_ctl_write_4(sc, SYS_CONF, scr);
1707 1.44 macallan
1708 1.44 macallan /* ok, whack the DAC */
1709 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_MISC_1, 0x11);
1710 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_MISC_2, 0x45);
1711 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_MISC_3, mc3);
1712 1.44 macallan /*
1713 1.44 macallan * despite the 3GX manual saying otherwise we don't need to mess with
1714 1.44 macallan * any clock dividers here
1715 1.44 macallan */
1716 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_MISC_CLK, 1);
1717 1.44 macallan p9100_ramdac_write_ctl(sc, 3, 0);
1718 1.44 macallan p9100_ramdac_write_ctl(sc, 4, 0);
1719 1.44 macallan
1720 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_POWER_MGT, 0);
1721 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_OPERATION, 0);
1722 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_PALETTE_CTRL, 0);
1723 1.44 macallan
1724 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_PIXEL_FMT, pf);
1725 1.44 macallan
1726 1.44 macallan /* TODO: distinguish between 15 and 16 bit */
1727 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_8BIT_CTRL, 0);
1728 1.44 macallan /* direct colour, linear, 565 */
1729 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_16BIT_CTRL, 0xc6);
1730 1.44 macallan /* direct colour */
1731 1.44 macallan p9100_ramdac_write_ctl(sc, DAC_32BIT_CTRL, 3);
1732 1.44 macallan
1733 1.44 macallan /* From the 3GX manual. Needs magic number reduction */
1734 1.44 macallan p9100_ramdac_write_ctl(sc, 0x10, 2);
1735 1.44 macallan p9100_ramdac_write_ctl(sc, 0x11, 0);
1736 1.44 macallan p9100_ramdac_write_ctl(sc, 0x14, 5);
1737 1.44 macallan p9100_ramdac_write_ctl(sc, 0x08, 1);
1738 1.44 macallan p9100_ramdac_write_ctl(sc, 0x15, 5);
1739 1.44 macallan p9100_ramdac_write_ctl(sc, 0x16, 0x63);
1740 1.44 macallan
1741 1.44 macallan /* whack the CRTC */
1742 1.44 macallan /* we always transfer 64bit in one go */
1743 1.44 macallan crtcline = sc->sc_stride >> 3;
1744 1.44 macallan
1745 1.44 macallan DPRINTF("crtcline: %d\n", crtcline);
1746 1.44 macallan
1747 1.44 macallan p9100_ctl_write_4(sc, VID_HTOTAL, (24 << sc->sc_depthshift) + crtcline);
1748 1.44 macallan p9100_ctl_write_4(sc, VID_HSRE, 8 << sc->sc_depthshift);
1749 1.44 macallan p9100_ctl_write_4(sc, VID_HBRE, 18 << sc->sc_depthshift);
1750 1.44 macallan p9100_ctl_write_4(sc, VID_HBFE, (18 << sc->sc_depthshift) + crtcline);
1751 1.44 macallan
1752 1.44 macallan #ifdef PNOZZ_DEBUG
1753 1.44 macallan {
1754 1.44 macallan uint32_t sscr;
1755 1.44 macallan sscr = p9100_ctl_read_4(sc, SYS_CONF);
1756 1.44 macallan printf("scr: %x\n", sscr);
1757 1.44 macallan }
1758 1.44 macallan #endif
1759 1.44 macallan return TRUE;
1760 1.44 macallan }
1761