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