tcx.c revision 1.36 1 1.36 macallan /* $NetBSD: tcx.c,v 1.36 2009/08/19 20:51:47 macallan Exp $ */
2 1.1 pk
3 1.1 pk /*
4 1.36 macallan * Copyright (c) 1996, 1998, 2009 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.33 macallan * by Paul Kranenburg and Michael Lorenz.
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 (TCX) 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.4 lukem
40 1.4 lukem #include <sys/cdefs.h>
41 1.36 macallan __KERNEL_RCSID(0, "$NetBSD: tcx.c,v 1.36 2009/08/19 20:51:47 macallan Exp $");
42 1.7 darrenr
43 1.7 darrenr /*
44 1.7 darrenr * define for cg8 emulation on S24 (24-bit version of tcx) for the SS5;
45 1.7 darrenr * it is bypassed on the 8-bit version (onboard framebuffer for SS4)
46 1.7 darrenr */
47 1.7 darrenr #undef TCX_CG8
48 1.1 pk
49 1.1 pk #include <sys/param.h>
50 1.1 pk #include <sys/systm.h>
51 1.1 pk #include <sys/buf.h>
52 1.1 pk #include <sys/device.h>
53 1.1 pk #include <sys/ioctl.h>
54 1.1 pk #include <sys/malloc.h>
55 1.1 pk #include <sys/mman.h>
56 1.1 pk #include <sys/tty.h>
57 1.1 pk #include <sys/conf.h>
58 1.1 pk
59 1.1 pk #ifdef DEBUG
60 1.1 pk #include <sys/proc.h>
61 1.1 pk #include <sys/syslog.h>
62 1.1 pk #endif
63 1.1 pk
64 1.22 ad #include <sys/bus.h>
65 1.1 pk #include <machine/autoconf.h>
66 1.1 pk
67 1.1 pk #include <dev/sun/fbio.h>
68 1.1 pk #include <dev/sun/fbvar.h>
69 1.1 pk #include <dev/sun/btreg.h>
70 1.1 pk #include <dev/sun/btvar.h>
71 1.2 pk
72 1.2 pk #include <dev/sbus/sbusvar.h>
73 1.2 pk #include <dev/sbus/tcxreg.h>
74 1.1 pk
75 1.32 macallan #include <dev/wscons/wsdisplayvar.h>
76 1.32 macallan #include <dev/wscons/wsconsio.h>
77 1.32 macallan #include <dev/wsfont/wsfont.h>
78 1.32 macallan #include <dev/rasops/rasops.h>
79 1.32 macallan
80 1.32 macallan #include <dev/wscons/wsdisplay_vconsvar.h>
81 1.32 macallan
82 1.32 macallan #include "opt_wsemul.h"
83 1.32 macallan
84 1.1 pk /* per-display variables */
85 1.1 pk struct tcx_softc {
86 1.33 macallan device_t sc_dev; /* base device */
87 1.1 pk struct sbusdev sc_sd; /* sbus device */
88 1.1 pk struct fbdevice sc_fb; /* frame buffer device */
89 1.1 pk bus_space_tag_t sc_bustag;
90 1.34 macallan struct openprom_addr sc_physaddr[TCX_NREG];/* phys addr of h/w */
91 1.1 pk
92 1.32 macallan bus_space_handle_t sc_bt; /* Brooktree registers */
93 1.32 macallan bus_space_handle_t sc_thc; /* THC registers */
94 1.32 macallan uint8_t *sc_fbaddr; /* framebuffer */
95 1.32 macallan uint64_t *sc_rblit; /* blitspace */
96 1.32 macallan uint64_t *sc_rstip; /* stipple space */
97 1.32 macallan
98 1.7 darrenr short sc_8bit; /* true if 8-bit hardware */
99 1.1 pk short sc_blanked; /* true if blanked */
100 1.32 macallan u_char sc_cmap_red[256];
101 1.32 macallan u_char sc_cmap_green[256];
102 1.32 macallan u_char sc_cmap_blue[256];
103 1.32 macallan int sc_mode, sc_bg;
104 1.32 macallan struct vcons_data vd;
105 1.32 macallan };
106 1.32 macallan
107 1.32 macallan static struct vcons_screen tcx_console_screen;
108 1.32 macallan
109 1.32 macallan extern const u_char rasops_cmap[768];
110 1.32 macallan
111 1.32 macallan struct wsscreen_descr tcx_defscreendesc = {
112 1.32 macallan "default",
113 1.32 macallan 0, 0,
114 1.32 macallan NULL,
115 1.32 macallan 8, 16,
116 1.32 macallan WSSCREEN_WSCOLORS,
117 1.32 macallan };
118 1.32 macallan
119 1.32 macallan const struct wsscreen_descr *_tcx_scrlist[] = {
120 1.32 macallan &tcx_defscreendesc,
121 1.32 macallan /* XXX other formats, graphics screen? */
122 1.32 macallan };
123 1.32 macallan
124 1.32 macallan struct wsscreen_list tcx_screenlist = {
125 1.32 macallan sizeof(_tcx_scrlist) / sizeof(struct wsscreen_descr *),
126 1.32 macallan _tcx_scrlist
127 1.1 pk };
128 1.1 pk
129 1.7 darrenr /*
130 1.7 darrenr * The S24 provides the framebuffer RAM mapped in three ways:
131 1.7 darrenr * 26 bits per pixel, in 32-bit words; the low-order 24 bits are
132 1.7 darrenr * blue, green, and red values, and the other two bits select the
133 1.7 darrenr * display modes, per pixel);
134 1.7 darrenr * 24 bits per pixel, in 32-bit words; the high-order byte reads as
135 1.7 darrenr * zero, and is ignored on writes (so the mode bits cannot be altered);
136 1.7 darrenr * 8 bits per pixel, unpadded; writes to this space do not modify the
137 1.7 darrenr * other 18 bits.
138 1.7 darrenr */
139 1.7 darrenr #define TCX_CTL_8_MAPPED 0x00000000 /* 8 bits, uses color map */
140 1.7 darrenr #define TCX_CTL_24_MAPPED 0x01000000 /* 24 bits, uses color map */
141 1.7 darrenr #define TCX_CTL_24_LEVEL 0x03000000 /* 24 bits, ignores color map */
142 1.7 darrenr #define TCX_CTL_PIXELMASK 0x00FFFFFF /* mask for index/level */
143 1.7 darrenr
144 1.1 pk /* autoconfiguration driver */
145 1.31 cegger static void tcxattach(device_t, device_t, void *);
146 1.31 cegger static int tcxmatch(device_t, cfdata_t, void *);
147 1.31 cegger static void tcx_unblank(device_t);
148 1.1 pk
149 1.33 macallan CFATTACH_DECL_NEW(tcx, sizeof(struct tcx_softc),
150 1.12 thorpej tcxmatch, tcxattach, NULL, NULL);
151 1.1 pk
152 1.1 pk extern struct cfdriver tcx_cd;
153 1.1 pk
154 1.9 gehenna dev_type_open(tcxopen);
155 1.9 gehenna dev_type_close(tcxclose);
156 1.9 gehenna dev_type_ioctl(tcxioctl);
157 1.9 gehenna dev_type_mmap(tcxmmap);
158 1.9 gehenna
159 1.9 gehenna const struct cdevsw tcx_cdevsw = {
160 1.9 gehenna tcxopen, tcxclose, noread, nowrite, tcxioctl,
161 1.13 jdolecek nostop, notty, nopoll, tcxmmap, nokqfilter,
162 1.9 gehenna };
163 1.9 gehenna
164 1.1 pk /* frame buffer generic driver */
165 1.1 pk static struct fbdriver tcx_fbdriver = {
166 1.13 jdolecek tcx_unblank, tcxopen, tcxclose, tcxioctl, nopoll, tcxmmap,
167 1.13 jdolecek nokqfilter
168 1.1 pk };
169 1.1 pk
170 1.17 perry static void tcx_reset(struct tcx_softc *);
171 1.17 perry static void tcx_loadcmap(struct tcx_softc *, int, int);
172 1.1 pk
173 1.32 macallan static int tcx_ioctl(void *, void *, u_long, void *, int, struct lwp *);
174 1.32 macallan static paddr_t tcx_mmap(void *, void *, off_t, int);
175 1.32 macallan
176 1.32 macallan static void tcx_init_screen(void *, struct vcons_screen *, int, long *);
177 1.36 macallan static void tcx_clearscreen(struct tcx_softc *, int);
178 1.32 macallan static void tcx_copyrows(void *, int, int, int);
179 1.32 macallan static void tcx_eraserows(void *, int, int, long);
180 1.32 macallan static void tcx_putchar(void *, int, int, u_int, long);
181 1.35 macallan static void tcx_set_video(struct tcx_softc *, int);
182 1.32 macallan
183 1.32 macallan struct wsdisplay_accessops tcx_accessops = {
184 1.32 macallan tcx_ioctl,
185 1.32 macallan tcx_mmap,
186 1.32 macallan NULL, /* vcons_alloc_screen */
187 1.32 macallan NULL, /* vcons_free_screen */
188 1.32 macallan NULL, /* vcons_show_screen */
189 1.32 macallan NULL, /* load_font */
190 1.32 macallan NULL, /* polls */
191 1.32 macallan NULL, /* scroll */
192 1.32 macallan };
193 1.32 macallan
194 1.1 pk #define OBPNAME "SUNW,tcx"
195 1.7 darrenr
196 1.7 darrenr #ifdef TCX_CG8
197 1.7 darrenr /*
198 1.7 darrenr * For CG8 emulation, we map the 32-bit-deep framebuffer at an offset of
199 1.7 darrenr * 256K; the cg8 space begins with a mono overlay plane and an overlay
200 1.7 darrenr * enable plane (128K bytes each, 1 bit per pixel), immediately followed
201 1.7 darrenr * by the color planes, 32 bits per pixel. We also map just the 32-bit
202 1.7 darrenr * framebuffer at 0x04000000 (TCX_USER_RAM_COMPAT), for compatibility
203 1.7 darrenr * with the cg8 driver.
204 1.7 darrenr */
205 1.7 darrenr #define TCX_CG8OVERLAY (256 * 1024)
206 1.7 darrenr #define TCX_SIZE_DFB32 (1152 * 900 * 4) /* max size of the framebuffer */
207 1.7 darrenr #endif
208 1.7 darrenr
209 1.1 pk /*
210 1.1 pk * Match a tcx.
211 1.1 pk */
212 1.1 pk int
213 1.31 cegger tcxmatch(device_t parent, cfdata_t cf, void *aux)
214 1.1 pk {
215 1.1 pk struct sbus_attach_args *sa = aux;
216 1.1 pk
217 1.1 pk return (strcmp(sa->sa_name, OBPNAME) == 0);
218 1.1 pk }
219 1.1 pk
220 1.1 pk /*
221 1.1 pk * Attach a display.
222 1.1 pk */
223 1.1 pk void
224 1.31 cegger tcxattach(device_t parent, device_t self, void *args)
225 1.1 pk {
226 1.25 drochner struct tcx_softc *sc = device_private(self);
227 1.1 pk struct sbus_attach_args *sa = args;
228 1.32 macallan struct wsemuldisplaydev_attach_args aa;
229 1.32 macallan struct rasops_info *ri;
230 1.32 macallan unsigned long defattr;
231 1.1 pk int node, ramsize;
232 1.1 pk struct fbdevice *fb = &sc->sc_fb;
233 1.1 pk bus_space_handle_t bh;
234 1.32 macallan int isconsole, i, j;
235 1.32 macallan uint32_t confreg;
236 1.1 pk
237 1.33 macallan sc->sc_dev = self;
238 1.1 pk sc->sc_bustag = sa->sa_bustag;
239 1.1 pk node = sa->sa_node;
240 1.1 pk
241 1.1 pk fb->fb_driver = &tcx_fbdriver;
242 1.33 macallan fb->fb_device = sc->sc_dev;
243 1.1 pk /* Mask out invalid flags from the user. */
244 1.33 macallan fb->fb_flags = device_cfdata(sc->sc_dev)->cf_flags & FB_USERMASK;
245 1.7 darrenr /*
246 1.7 darrenr * The onboard framebuffer on the SS4 supports only 8-bit mode;
247 1.7 darrenr * it can be distinguished from the S24 card for the SS5 by the
248 1.7 darrenr * presence of the "tcx-8-bit" attribute on the SS4 version.
249 1.7 darrenr */
250 1.7 darrenr sc->sc_8bit = node_has_property(node, "tcx-8-bit");
251 1.32 macallan fb->fb_type.fb_depth = 8;
252 1.32 macallan fb_setsize_obp(fb, fb->fb_type.fb_depth, 1152, 900, node);
253 1.32 macallan
254 1.7 darrenr if (sc->sc_8bit) {
255 1.34 macallan printf(" (8bit only TCX)");
256 1.32 macallan ramsize = 1024 * 1024;
257 1.32 macallan /* XXX - fix THC and TEC offsets */
258 1.34 macallan sc->sc_physaddr[TCX_REG_TEC].oa_base += 0x1000;
259 1.34 macallan sc->sc_physaddr[TCX_REG_THC].oa_base += 0x1000;
260 1.7 darrenr } else {
261 1.32 macallan printf(" (S24)\n");
262 1.32 macallan ramsize = 4 * 1024 * 1024;
263 1.7 darrenr }
264 1.32 macallan
265 1.1 pk fb->fb_type.fb_cmsize = 256;
266 1.1 pk fb->fb_type.fb_size = ramsize;
267 1.1 pk printf(": %s, %d x %d", OBPNAME,
268 1.1 pk fb->fb_type.fb_width,
269 1.1 pk fb->fb_type.fb_height);
270 1.1 pk
271 1.32 macallan fb->fb_type.fb_type = FBTYPE_SUNTCX;
272 1.1 pk
273 1.1 pk
274 1.1 pk if (sa->sa_nreg != TCX_NREG) {
275 1.1 pk printf("%s: only %d register sets\n",
276 1.23 cegger device_xname(self), sa->sa_nreg);
277 1.1 pk return;
278 1.1 pk }
279 1.34 macallan memcpy(sc->sc_physaddr, sa->sa_reg,
280 1.8 thorpej sa->sa_nreg * sizeof(struct openprom_addr));
281 1.1 pk
282 1.1 pk /* Map the register banks we care about */
283 1.1 pk if (sbus_bus_map(sa->sa_bustag,
284 1.34 macallan sc->sc_physaddr[TCX_REG_THC].oa_space,
285 1.34 macallan sc->sc_physaddr[TCX_REG_THC].oa_base,
286 1.32 macallan 0x1000,
287 1.32 macallan BUS_SPACE_MAP_LINEAR, &sc->sc_thc) != 0) {
288 1.1 pk printf("tcxattach: cannot map thc registers\n");
289 1.1 pk return;
290 1.1 pk }
291 1.1 pk
292 1.1 pk if (sbus_bus_map(sa->sa_bustag,
293 1.34 macallan sc->sc_physaddr[TCX_REG_CMAP].oa_space,
294 1.34 macallan sc->sc_physaddr[TCX_REG_CMAP].oa_base,
295 1.32 macallan 0x1000,
296 1.32 macallan BUS_SPACE_MAP_LINEAR, &sc->sc_bt) != 0) {
297 1.1 pk printf("tcxattach: cannot map bt registers\n");
298 1.1 pk return;
299 1.1 pk }
300 1.1 pk
301 1.32 macallan /* map the 8bit dumb FB for the console */
302 1.32 macallan if (sbus_bus_map(sa->sa_bustag,
303 1.34 macallan sc->sc_physaddr[TCX_REG_DFB8].oa_space,
304 1.34 macallan sc->sc_physaddr[TCX_REG_DFB8].oa_base,
305 1.32 macallan 1024 * 1024,
306 1.7 darrenr BUS_SPACE_MAP_LINEAR,
307 1.16 pk &bh) != 0) {
308 1.32 macallan printf("tcxattach: cannot map framebuffer\n");
309 1.32 macallan return;
310 1.32 macallan }
311 1.32 macallan sc->sc_fbaddr = bus_space_vaddr(sa->sa_bustag, bh);
312 1.32 macallan
313 1.32 macallan /* RBLIT space */
314 1.32 macallan if (sbus_bus_map(sa->sa_bustag,
315 1.34 macallan sc->sc_physaddr[TCX_REG_RBLIT].oa_space,
316 1.34 macallan sc->sc_physaddr[TCX_REG_RBLIT].oa_base,
317 1.32 macallan 8 * 1024 * 1024,
318 1.32 macallan BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_LARGE,
319 1.32 macallan &bh) != 0) {
320 1.32 macallan printf("tcxattach: cannot map RBLIT space\n");
321 1.32 macallan return;
322 1.32 macallan }
323 1.32 macallan sc->sc_rblit = bus_space_vaddr(sa->sa_bustag, bh);
324 1.32 macallan
325 1.32 macallan /* RSTIP space */
326 1.32 macallan if (sbus_bus_map(sa->sa_bustag,
327 1.34 macallan sc->sc_physaddr[TCX_REG_RSTIP].oa_space,
328 1.34 macallan sc->sc_physaddr[TCX_REG_RSTIP].oa_base,
329 1.32 macallan 8 * 1024 * 1024,
330 1.32 macallan BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_LARGE,
331 1.32 macallan &bh) != 0) {
332 1.32 macallan printf("tcxattach: cannot map RSTIP space\n");
333 1.32 macallan return;
334 1.7 darrenr }
335 1.32 macallan sc->sc_rstip = bus_space_vaddr(sa->sa_bustag, bh);
336 1.7 darrenr
337 1.1 pk isconsole = fb_is_console(node);
338 1.1 pk
339 1.32 macallan confreg = bus_space_read_4(sa->sa_bustag, sc->sc_thc, THC_CONFIG);
340 1.1 pk printf(", id %d, rev %d, sense %d",
341 1.32 macallan (confreg & THC_CFG_FBID) >> THC_CFG_FBID_SHIFT,
342 1.32 macallan (confreg & THC_CFG_REV) >> THC_CFG_REV_SHIFT,
343 1.32 macallan (confreg & THC_CFG_SENSE) >> THC_CFG_SENSE_SHIFT
344 1.1 pk );
345 1.1 pk
346 1.1 pk /* reset cursor & frame buffer controls */
347 1.1 pk tcx_reset(sc);
348 1.1 pk
349 1.1 pk /* Initialize the default color map. */
350 1.32 macallan j = 0;
351 1.32 macallan for (i = 0; i < 256; i++) {
352 1.32 macallan
353 1.32 macallan sc->sc_cmap_red[i] = rasops_cmap[j];
354 1.32 macallan sc->sc_cmap_green[i] = rasops_cmap[j + 1];
355 1.32 macallan sc->sc_cmap_blue[i] = rasops_cmap[j + 2];
356 1.32 macallan j += 3;
357 1.32 macallan }
358 1.1 pk tcx_loadcmap(sc, 0, 256);
359 1.1 pk
360 1.1 pk /* enable video */
361 1.32 macallan confreg = bus_space_read_4(sa->sa_bustag, sc->sc_thc, THC_MISC);
362 1.32 macallan confreg |= THC_MISC_VIDEN;
363 1.32 macallan bus_space_write_4(sa->sa_bustag, sc->sc_thc, THC_MISC, confreg);
364 1.1 pk
365 1.1 pk if (isconsole) {
366 1.1 pk printf(" (console)\n");
367 1.1 pk } else
368 1.1 pk printf("\n");
369 1.1 pk
370 1.33 macallan sbus_establish(&sc->sc_sd, sc->sc_dev);
371 1.1 pk fb_attach(&sc->sc_fb, isconsole);
372 1.32 macallan
373 1.32 macallan sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
374 1.32 macallan wsfont_init();
375 1.32 macallan
376 1.32 macallan vcons_init(&sc->vd, sc, &tcx_defscreendesc, &tcx_accessops);
377 1.32 macallan sc->vd.init_screen = tcx_init_screen;
378 1.32 macallan
379 1.32 macallan vcons_init_screen(&sc->vd, &tcx_console_screen, 1, &defattr);
380 1.32 macallan tcx_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
381 1.32 macallan
382 1.32 macallan sc->sc_bg = (defattr >> 16) & 0xff;
383 1.36 macallan tcx_clearscreen(sc, 0);
384 1.32 macallan
385 1.32 macallan ri = &tcx_console_screen.scr_ri;
386 1.32 macallan
387 1.32 macallan tcx_defscreendesc.nrows = ri->ri_rows;
388 1.32 macallan tcx_defscreendesc.ncols = ri->ri_cols;
389 1.32 macallan tcx_defscreendesc.textops = &ri->ri_ops;
390 1.32 macallan tcx_defscreendesc.capabilities = ri->ri_caps;
391 1.32 macallan
392 1.32 macallan if(isconsole) {
393 1.32 macallan wsdisplay_cnattach(&tcx_defscreendesc, ri, 0, 0, defattr);
394 1.32 macallan }
395 1.32 macallan
396 1.32 macallan aa.console = isconsole;
397 1.32 macallan aa.scrdata = &tcx_screenlist;
398 1.32 macallan aa.accessops = &tcx_accessops;
399 1.32 macallan aa.accesscookie = &sc->vd;
400 1.32 macallan
401 1.32 macallan config_found(self, &aa, wsemuldisplaydevprint);
402 1.32 macallan /*
403 1.32 macallan * we need to do this again - something overwrites a handful
404 1.32 macallan * palette registers and we end up with white in reg. 0
405 1.32 macallan */
406 1.32 macallan tcx_loadcmap(sc, 0, 256);
407 1.1 pk }
408 1.1 pk
409 1.1 pk int
410 1.27 dsl tcxopen(dev_t dev, int flags, int mode, struct lwp *l)
411 1.1 pk {
412 1.1 pk return (0);
413 1.1 pk }
414 1.1 pk
415 1.1 pk int
416 1.27 dsl tcxclose(dev_t dev, int flags, int mode, struct lwp *l)
417 1.1 pk {
418 1.25 drochner struct tcx_softc *sc = device_lookup_private(&tcx_cd, minor(dev));
419 1.1 pk
420 1.1 pk tcx_reset(sc);
421 1.34 macallan /* we may want to clear and redraw the console here */
422 1.1 pk return (0);
423 1.1 pk }
424 1.1 pk
425 1.1 pk int
426 1.26 dsl tcxioctl(dev_t dev, u_long cmd, void *data, int flags, struct lwp *l)
427 1.1 pk {
428 1.25 drochner struct tcx_softc *sc = device_lookup_private(&tcx_cd, minor(dev));
429 1.1 pk
430 1.1 pk switch (cmd) {
431 1.1 pk
432 1.1 pk case FBIOGTYPE:
433 1.1 pk *(struct fbtype *)data = sc->sc_fb.fb_type;
434 1.1 pk break;
435 1.1 pk
436 1.1 pk case FBIOGATTR:
437 1.1 pk #define fba ((struct fbgattr *)data)
438 1.1 pk fba->real_type = sc->sc_fb.fb_type.fb_type;
439 1.1 pk fba->owner = 0; /* XXX ??? */
440 1.1 pk fba->fbtype = sc->sc_fb.fb_type;
441 1.1 pk fba->sattr.flags = 0;
442 1.1 pk fba->sattr.emu_type = sc->sc_fb.fb_type.fb_type;
443 1.1 pk fba->sattr.dev_specific[0] = -1;
444 1.1 pk fba->emu_types[0] = sc->sc_fb.fb_type.fb_type;
445 1.1 pk fba->emu_types[1] = FBTYPE_SUN3COLOR;
446 1.1 pk fba->emu_types[2] = -1;
447 1.1 pk #undef fba
448 1.1 pk break;
449 1.34 macallan
450 1.1 pk case FBIOGETCMAP:
451 1.1 pk #define p ((struct fbcmap *)data)
452 1.34 macallan if (copyout(&sc->sc_cmap_red[p->index], p->red, p->count) != 0)
453 1.34 macallan return EINVAL;
454 1.34 macallan if (copyout(&sc->sc_cmap_green[p->index], p->green, p->count)
455 1.34 macallan != 0)
456 1.34 macallan return EINVAL;
457 1.34 macallan if (copyout(&sc->sc_cmap_blue[p->index], p->blue, p->count)
458 1.34 macallan != 0)
459 1.34 macallan return EINVAL;
460 1.34 macallan return 0;
461 1.1 pk
462 1.1 pk case FBIOPUTCMAP:
463 1.1 pk /* copy to software map */
464 1.34 macallan if (copyin(p->red, &sc->sc_cmap_red[p->index], p->count) != 0)
465 1.34 macallan return EINVAL;
466 1.34 macallan if (copyin(p->green, &sc->sc_cmap_green[p->index], p->count)
467 1.34 macallan != 0)
468 1.34 macallan return EINVAL;
469 1.34 macallan if (copyin(p->blue, &sc->sc_cmap_blue[p->index], p->count) != 0)
470 1.34 macallan return EINVAL;
471 1.1 pk tcx_loadcmap(sc, p->index, p->count);
472 1.1 pk #undef p
473 1.1 pk break;
474 1.1 pk case FBIOGVIDEO:
475 1.1 pk *(int *)data = sc->sc_blanked;
476 1.1 pk break;
477 1.1 pk
478 1.1 pk case FBIOSVIDEO:
479 1.35 macallan tcx_set_video(sc, *(int *)data);
480 1.1 pk break;
481 1.1 pk
482 1.1 pk default:
483 1.1 pk #ifdef DEBUG
484 1.1 pk log(LOG_NOTICE, "tcxioctl(0x%lx) (%s[%d])\n", cmd,
485 1.20 jdc l->l_proc->p_comm, l->l_proc->p_pid);
486 1.1 pk #endif
487 1.1 pk return (ENOTTY);
488 1.1 pk }
489 1.1 pk return (0);
490 1.1 pk }
491 1.1 pk
492 1.1 pk /*
493 1.1 pk * Clean up hardware state (e.g., after bootup or after X crashes).
494 1.1 pk */
495 1.1 pk static void
496 1.26 dsl tcx_reset(struct tcx_softc *sc)
497 1.1 pk {
498 1.1 pk
499 1.34 macallan /* Disable cursor in Brooktree DAC. */
500 1.34 macallan bus_space_write_4(sc->sc_bustag, sc->sc_bt, DAC_ADDRESS,
501 1.34 macallan DAC_C1_CONTROL_0);
502 1.34 macallan bus_space_write_4(sc->sc_bustag, sc->sc_bt, DAC_CONTROL_1, 0);
503 1.1 pk }
504 1.1 pk
505 1.1 pk static void
506 1.27 dsl tcx_loadcmap(struct tcx_softc *sc, int start, int ncolors)
507 1.1 pk {
508 1.32 macallan int i;
509 1.32 macallan
510 1.32 macallan for (i = 0; i < ncolors; i++) {
511 1.32 macallan bus_space_write_4(sc->sc_bustag, sc->sc_bt, DAC_ADDRESS,
512 1.32 macallan (start + i) << 24);
513 1.32 macallan bus_space_write_4(sc->sc_bustag, sc->sc_bt, DAC_FB_LUT,
514 1.32 macallan sc->sc_cmap_red[i + start] << 24);
515 1.32 macallan bus_space_write_4(sc->sc_bustag, sc->sc_bt, DAC_FB_LUT,
516 1.32 macallan sc->sc_cmap_green[i + start] << 24);
517 1.32 macallan bus_space_write_4(sc->sc_bustag, sc->sc_bt, DAC_FB_LUT,
518 1.32 macallan sc->sc_cmap_blue[i + start] << 24);
519 1.1 pk }
520 1.32 macallan bus_space_write_4(sc->sc_bustag, sc->sc_bt, DAC_ADDRESS, 0);
521 1.1 pk }
522 1.1 pk
523 1.1 pk static void
524 1.31 cegger tcx_unblank(device_t dev)
525 1.1 pk {
526 1.25 drochner struct tcx_softc *sc = device_private(dev);
527 1.1 pk
528 1.1 pk if (sc->sc_blanked) {
529 1.34 macallan uint32_t reg;
530 1.1 pk sc->sc_blanked = 0;
531 1.34 macallan reg = bus_space_read_4(sc->sc_bustag, sc->sc_thc, THC_MISC);
532 1.34 macallan reg &= ~THC_MISC_VSYNC_DISABLE;
533 1.34 macallan reg &= ~THC_MISC_HSYNC_DISABLE;
534 1.34 macallan reg |= THC_MISC_VIDEN;
535 1.34 macallan bus_space_write_4(sc->sc_bustag, sc->sc_thc, THC_MISC, reg);
536 1.1 pk }
537 1.1 pk }
538 1.1 pk
539 1.35 macallan static void
540 1.35 macallan tcx_set_video(struct tcx_softc *sc, int unblank)
541 1.35 macallan {
542 1.35 macallan uint32_t reg;
543 1.35 macallan if (unblank) {
544 1.35 macallan sc->sc_blanked = 0;
545 1.35 macallan reg = bus_space_read_4(sc->sc_bustag, sc->sc_thc, THC_MISC);
546 1.35 macallan reg &= ~THC_MISC_VSYNC_DISABLE;
547 1.35 macallan reg &= ~THC_MISC_HSYNC_DISABLE;
548 1.35 macallan reg |= THC_MISC_VIDEN;
549 1.35 macallan bus_space_write_4(sc->sc_bustag, sc->sc_thc, THC_MISC, reg);
550 1.35 macallan } else {
551 1.35 macallan sc->sc_blanked = 1;
552 1.35 macallan reg = bus_space_read_4(sc->sc_bustag, sc->sc_thc, THC_MISC);
553 1.35 macallan reg |= THC_MISC_VSYNC_DISABLE;
554 1.35 macallan reg |= THC_MISC_HSYNC_DISABLE;
555 1.35 macallan reg &= ~THC_MISC_VIDEN;
556 1.35 macallan bus_space_write_4(sc->sc_bustag, sc->sc_thc, THC_MISC, reg);
557 1.35 macallan }
558 1.35 macallan }
559 1.35 macallan
560 1.1 pk /*
561 1.1 pk * Base addresses at which users can mmap() the various pieces of a tcx.
562 1.1 pk */
563 1.1 pk #define TCX_USER_RAM 0x00000000
564 1.1 pk #define TCX_USER_RAM24 0x01000000
565 1.1 pk #define TCX_USER_RAM_COMPAT 0x04000000 /* cg3 emulation */
566 1.1 pk #define TCX_USER_STIP 0x10000000
567 1.1 pk #define TCX_USER_BLIT 0x20000000
568 1.1 pk #define TCX_USER_RDFB32 0x28000000
569 1.1 pk #define TCX_USER_RSTIP 0x30000000
570 1.1 pk #define TCX_USER_RBLIT 0x38000000
571 1.1 pk #define TCX_USER_TEC 0x70001000
572 1.1 pk #define TCX_USER_BTREGS 0x70002000
573 1.1 pk #define TCX_USER_THC 0x70004000
574 1.1 pk #define TCX_USER_DHC 0x70008000
575 1.1 pk #define TCX_USER_ALT 0x7000a000
576 1.1 pk #define TCX_USER_UART 0x7000c000
577 1.1 pk #define TCX_USER_VRT 0x7000e000
578 1.1 pk #define TCX_USER_ROM 0x70010000
579 1.1 pk
580 1.1 pk struct mmo {
581 1.1 pk u_int mo_uaddr; /* user (virtual) address */
582 1.1 pk u_int mo_size; /* size, or 0 for video ram size */
583 1.1 pk u_int mo_bank; /* register bank number */
584 1.1 pk };
585 1.1 pk
586 1.1 pk /*
587 1.1 pk * Return the address that would map the given device at the given
588 1.1 pk * offset, allowing for the given protection, or return -1 for error.
589 1.1 pk *
590 1.1 pk * XXX needs testing against `demanding' applications (e.g., aviator)
591 1.1 pk */
592 1.1 pk paddr_t
593 1.26 dsl tcxmmap(dev_t dev, off_t off, int prot)
594 1.1 pk {
595 1.25 drochner struct tcx_softc *sc = device_lookup_private(&tcx_cd, minor(dev));
596 1.34 macallan struct openprom_addr *rr = sc->sc_physaddr;
597 1.7 darrenr struct mmo *mo, *mo_end;
598 1.1 pk u_int u, sz;
599 1.1 pk static struct mmo mmo[] = {
600 1.1 pk { TCX_USER_RAM, 0, TCX_REG_DFB8 },
601 1.1 pk { TCX_USER_RAM24, 0, TCX_REG_DFB24 },
602 1.1 pk { TCX_USER_RAM_COMPAT, 0, TCX_REG_DFB8 },
603 1.1 pk
604 1.1 pk { TCX_USER_STIP, 1, TCX_REG_STIP },
605 1.1 pk { TCX_USER_BLIT, 1, TCX_REG_BLIT },
606 1.7 darrenr { TCX_USER_RDFB32, 0, TCX_REG_RDFB32 },
607 1.1 pk { TCX_USER_RSTIP, 1, TCX_REG_RSTIP },
608 1.1 pk { TCX_USER_RBLIT, 1, TCX_REG_RBLIT },
609 1.1 pk { TCX_USER_TEC, 1, TCX_REG_TEC },
610 1.1 pk { TCX_USER_BTREGS, 8192 /* XXX */, TCX_REG_CMAP },
611 1.32 macallan { TCX_USER_THC, 0x1000, TCX_REG_THC },
612 1.1 pk { TCX_USER_DHC, 1, TCX_REG_DHC },
613 1.1 pk { TCX_USER_ALT, 1, TCX_REG_ALT },
614 1.1 pk { TCX_USER_ROM, 65536, TCX_REG_ROM },
615 1.1 pk };
616 1.1 pk #define NMMO (sizeof mmo / sizeof *mmo)
617 1.1 pk
618 1.1 pk if (off & PGOFSET)
619 1.1 pk panic("tcxmmap");
620 1.1 pk
621 1.1 pk /*
622 1.1 pk * Entries with size 0 map video RAM (i.e., the size in fb data).
623 1.7 darrenr * Entries that map 32-bit deep regions are adjusted for their
624 1.7 darrenr * depth (fb_size gives the size of the 8-bit-deep region).
625 1.1 pk *
626 1.1 pk * Since we work in pages, the fact that the map offset table's
627 1.1 pk * sizes are sometimes bizarre (e.g., 1) is effectively ignored:
628 1.1 pk * one byte is as good as one page.
629 1.1 pk */
630 1.34 macallan
631 1.7 darrenr mo = mmo;
632 1.7 darrenr mo_end = &mmo[NMMO];
633 1.34 macallan
634 1.7 darrenr for (; mo < mo_end; mo++) {
635 1.1 pk if ((u_int)off < mo->mo_uaddr)
636 1.1 pk continue;
637 1.1 pk u = off - mo->mo_uaddr;
638 1.7 darrenr sz = mo->mo_size;
639 1.7 darrenr if (sz == 0) {
640 1.7 darrenr sz = sc->sc_fb.fb_type.fb_size;
641 1.7 darrenr /*
642 1.7 darrenr * check for the 32-bit-deep regions and adjust
643 1.7 darrenr * accordingly
644 1.7 darrenr */
645 1.7 darrenr if (mo->mo_uaddr == TCX_USER_RAM24 ||
646 1.7 darrenr mo->mo_uaddr == TCX_USER_RDFB32) {
647 1.7 darrenr if (sc->sc_8bit) {
648 1.7 darrenr /*
649 1.7 darrenr * not present on 8-bit hardware
650 1.7 darrenr */
651 1.7 darrenr continue;
652 1.7 darrenr }
653 1.7 darrenr sz *= 4;
654 1.7 darrenr }
655 1.7 darrenr }
656 1.1 pk if (u < sz) {
657 1.3 eeh return (bus_space_mmap(sc->sc_bustag,
658 1.8 thorpej BUS_ADDR(rr[mo->mo_bank].oa_space,
659 1.8 thorpej rr[mo->mo_bank].oa_base),
660 1.3 eeh u,
661 1.3 eeh prot,
662 1.3 eeh BUS_SPACE_MAP_LINEAR));
663 1.1 pk }
664 1.1 pk }
665 1.3 eeh return (-1);
666 1.1 pk }
667 1.32 macallan
668 1.32 macallan int
669 1.32 macallan tcx_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
670 1.32 macallan struct lwp *l)
671 1.32 macallan {
672 1.32 macallan struct vcons_data *vd = v;
673 1.32 macallan struct tcx_softc *sc = vd->cookie;
674 1.32 macallan struct wsdisplay_fbinfo *wdf;
675 1.32 macallan struct vcons_screen *ms = vd->active;
676 1.32 macallan
677 1.32 macallan switch (cmd) {
678 1.32 macallan case WSDISPLAYIO_GTYPE:
679 1.32 macallan *(u_int *)data = WSDISPLAY_TYPE_SUNTCX;
680 1.32 macallan return 0;
681 1.32 macallan
682 1.32 macallan case FBIOGVIDEO:
683 1.32 macallan case WSDISPLAYIO_GVIDEO:
684 1.35 macallan *(int *)data = !sc->sc_blanked;
685 1.32 macallan return 0;
686 1.32 macallan
687 1.32 macallan case WSDISPLAYIO_SVIDEO:
688 1.32 macallan case FBIOSVIDEO:
689 1.32 macallan tcx_set_video(sc, *(int *)data);
690 1.32 macallan return 0;
691 1.35 macallan
692 1.32 macallan case WSDISPLAYIO_GINFO:
693 1.32 macallan wdf = (void *)data;
694 1.32 macallan wdf->height = ms->scr_ri.ri_height;
695 1.32 macallan wdf->width = ms->scr_ri.ri_width;
696 1.34 macallan if (sc->sc_8bit) {
697 1.34 macallan wdf->depth = 8;
698 1.34 macallan } else {
699 1.34 macallan wdf->depth = 32;
700 1.34 macallan }
701 1.32 macallan wdf->cmsize = 256;
702 1.32 macallan return 0;
703 1.34 macallan case WSDISPLAYIO_LINEBYTES:
704 1.34 macallan {
705 1.34 macallan int *ret = (int *)data;
706 1.34 macallan *ret = sc->sc_8bit ? ms->scr_ri.ri_width :
707 1.34 macallan ms->scr_ri.ri_width << 2;
708 1.34 macallan }
709 1.34 macallan return 0;
710 1.32 macallan #if 0
711 1.32 macallan case WSDISPLAYIO_GETCMAP:
712 1.32 macallan return tcx_getcmap(sc, (struct wsdisplay_cmap *)data);
713 1.32 macallan
714 1.32 macallan case WSDISPLAYIO_PUTCMAP:
715 1.32 macallan return tcx_putcmap(sc, (struct wsdisplay_cmap *)data);
716 1.32 macallan #endif
717 1.32 macallan case WSDISPLAYIO_SMODE:
718 1.32 macallan {
719 1.32 macallan int new_mode = *(int*)data;
720 1.32 macallan if (new_mode != sc->sc_mode)
721 1.32 macallan {
722 1.32 macallan sc->sc_mode = new_mode;
723 1.32 macallan if (new_mode == WSDISPLAYIO_MODE_EMUL)
724 1.32 macallan {
725 1.34 macallan tcx_loadcmap(sc, 0, 256);
726 1.36 macallan tcx_clearscreen(sc, 0);
727 1.32 macallan vcons_redraw_screen(ms);
728 1.36 macallan } else if (!sc->sc_8bit)
729 1.36 macallan tcx_clearscreen(sc, 3);
730 1.32 macallan }
731 1.32 macallan }
732 1.32 macallan }
733 1.32 macallan return EPASSTHROUGH;
734 1.32 macallan }
735 1.32 macallan
736 1.32 macallan static paddr_t
737 1.32 macallan tcx_mmap(void *v, void *vs, off_t offset, int prot)
738 1.32 macallan {
739 1.32 macallan struct vcons_data *vd = v;
740 1.32 macallan struct tcx_softc *sc = vd->cookie;
741 1.32 macallan
742 1.32 macallan /* 'regular' framebuffer mmap()ing */
743 1.34 macallan if (sc->sc_8bit) {
744 1.34 macallan /* on 8Bit boards hand over the 8 bit aperture */
745 1.34 macallan if (offset > 1024 * 1024)
746 1.34 macallan return -1;
747 1.34 macallan return bus_space_mmap(sc->sc_bustag,
748 1.34 macallan sc->sc_physaddr[TCX_REG_DFB8].oa_base + offset, 0, prot,
749 1.32 macallan BUS_SPACE_MAP_LINEAR);
750 1.34 macallan } else {
751 1.34 macallan /* ... but if we have a 24bit aperture we use it */
752 1.34 macallan if (offset > 1024 * 1024 * 4)
753 1.34 macallan return -1;
754 1.34 macallan return bus_space_mmap(sc->sc_bustag,
755 1.34 macallan sc->sc_physaddr[TCX_REG_DFB24].oa_base + offset, 0, prot,
756 1.32 macallan BUS_SPACE_MAP_LINEAR);
757 1.32 macallan }
758 1.32 macallan return -1;
759 1.32 macallan }
760 1.32 macallan
761 1.32 macallan static void
762 1.32 macallan tcx_init_screen(void *cookie, struct vcons_screen *scr,
763 1.32 macallan int existing, long *defattr)
764 1.32 macallan {
765 1.32 macallan struct tcx_softc *sc = cookie;
766 1.32 macallan struct rasops_info *ri = &scr->scr_ri;
767 1.32 macallan
768 1.32 macallan ri->ri_depth = 8;
769 1.32 macallan ri->ri_width = sc->sc_fb.fb_type.fb_width;
770 1.32 macallan ri->ri_height = sc->sc_fb.fb_type.fb_height;
771 1.32 macallan ri->ri_stride = sc->sc_fb.fb_linebytes;
772 1.32 macallan ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
773 1.32 macallan
774 1.32 macallan ri->ri_bits = sc->sc_fbaddr;
775 1.32 macallan
776 1.32 macallan rasops_init(ri, ri->ri_height/8, ri->ri_width/8);
777 1.32 macallan ri->ri_caps = WSSCREEN_WSCOLORS;
778 1.32 macallan rasops_reconfig(ri, ri->ri_height / ri->ri_font->fontheight,
779 1.32 macallan ri->ri_width / ri->ri_font->fontwidth);
780 1.32 macallan
781 1.32 macallan /* enable acceleration */
782 1.32 macallan ri->ri_ops.copyrows = tcx_copyrows;
783 1.32 macallan ri->ri_ops.eraserows = tcx_eraserows;
784 1.32 macallan ri->ri_ops.putchar = tcx_putchar;
785 1.32 macallan #if 0
786 1.32 macallan ri->ri_ops.cursor = tcx_cursor;
787 1.32 macallan ri->ri_ops.copycols = tcx_copycols;
788 1.32 macallan ri->ri_ops.erasecols = tcx_erasecols;
789 1.32 macallan #endif
790 1.32 macallan }
791 1.32 macallan
792 1.32 macallan static void
793 1.36 macallan tcx_clearscreen(struct tcx_softc *sc, int spc)
794 1.32 macallan {
795 1.32 macallan uint64_t bg = ((uint64_t)sc->sc_bg << 32) | 0xffffffffLL;
796 1.36 macallan uint64_t spc64;
797 1.32 macallan int i;
798 1.32 macallan
799 1.36 macallan spc64 = spc & 3;
800 1.36 macallan spc64 = spc64 << 56;
801 1.36 macallan
802 1.32 macallan for (i = 0; i < 1024 * 1024; i += 32)
803 1.36 macallan sc->sc_rstip[i] = bg | spc64;
804 1.32 macallan }
805 1.32 macallan
806 1.32 macallan static void
807 1.32 macallan tcx_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
808 1.32 macallan {
809 1.32 macallan struct rasops_info *ri = cookie;
810 1.32 macallan struct vcons_screen *scr = ri->ri_hw;
811 1.32 macallan struct tcx_softc *sc = scr->scr_cookie;
812 1.32 macallan int i, last, first, len, dest, leftover;
813 1.32 macallan
814 1.32 macallan i = ri->ri_width * ri->ri_font->fontheight * nrows;
815 1.32 macallan len = i & 0xffffe0;
816 1.32 macallan leftover = i & 0x1f;
817 1.32 macallan if (srcrow < dstrow) {
818 1.32 macallan /* we must go bottom to top */
819 1.32 macallan first = ri->ri_width *
820 1.32 macallan (ri->ri_font->fontheight * srcrow + ri->ri_yorigin);
821 1.32 macallan last = first + len;
822 1.32 macallan dest = ri->ri_width *
823 1.32 macallan (ri->ri_font->fontheight * dstrow + ri->ri_yorigin) + len;
824 1.32 macallan if (leftover > 0) {
825 1.32 macallan sc->sc_rblit[dest + 32] =
826 1.32 macallan (uint64_t)((leftover - 1) << 24) |
827 1.32 macallan (uint64_t)(i + 32);
828 1.32 macallan }
829 1.32 macallan for (i = last; i >= first; i -= 32) {
830 1.32 macallan sc->sc_rblit[dest] = 0x300000001f000000LL | (uint64_t)i;
831 1.32 macallan dest -= 32;
832 1.32 macallan }
833 1.32 macallan } else {
834 1.32 macallan /* top to bottom */
835 1.32 macallan first = ri->ri_width *
836 1.32 macallan (ri->ri_font->fontheight * srcrow + ri->ri_yorigin);
837 1.32 macallan dest = ri->ri_width *
838 1.32 macallan (ri->ri_font->fontheight * dstrow + ri->ri_yorigin);
839 1.32 macallan last = first + len;
840 1.32 macallan for (i = first; i <= last; i+= 32) {
841 1.32 macallan sc->sc_rblit[dest] = 0x300000001f000000LL | (uint64_t)i;
842 1.32 macallan dest += 32;
843 1.32 macallan }
844 1.32 macallan if (leftover > 0) {
845 1.32 macallan sc->sc_rblit[dest] =
846 1.32 macallan (uint64_t)((leftover - 1) << 24) | (uint64_t)i;
847 1.32 macallan }
848 1.32 macallan }
849 1.32 macallan }
850 1.32 macallan
851 1.32 macallan static void
852 1.32 macallan tcx_eraserows(void *cookie, int start, int nrows, long attr)
853 1.32 macallan {
854 1.32 macallan struct rasops_info *ri = cookie;
855 1.32 macallan struct vcons_screen *scr = ri->ri_hw;
856 1.32 macallan struct tcx_softc *sc = scr->scr_cookie;
857 1.32 macallan uint64_t temp;
858 1.32 macallan int i, last, first, len, leftover;
859 1.32 macallan
860 1.32 macallan i = ri->ri_width * ri->ri_font->fontheight * nrows;
861 1.32 macallan len = i & 0xffffe0;
862 1.32 macallan leftover = i & 0x1f;
863 1.32 macallan first = ri->ri_width *
864 1.32 macallan (ri->ri_font->fontheight * start + ri->ri_yorigin);
865 1.32 macallan last = first + len;
866 1.32 macallan temp = 0x30000000ffffffffLL |
867 1.32 macallan ((uint64_t)ri->ri_devcmap[(attr >> 16) & 0xff] << 32);
868 1.32 macallan
869 1.32 macallan for (i = first; i <= last; i+= 32)
870 1.32 macallan sc->sc_rblit[i] = temp;
871 1.32 macallan
872 1.32 macallan if (leftover > 0) {
873 1.32 macallan temp &= 0xffffffffffffffffLL << (32 - leftover);
874 1.32 macallan sc->sc_rblit[i] = temp;
875 1.32 macallan }
876 1.32 macallan }
877 1.32 macallan /*
878 1.32 macallan * The stipple engine is 100% retarded. All drawing operations have to start
879 1.32 macallan * at 32 pixel boundaries so we'll have to deal with characters being split.
880 1.32 macallan */
881 1.32 macallan
882 1.32 macallan static void
883 1.32 macallan tcx_putchar(void *cookie, int row, int col, u_int c, long attr)
884 1.32 macallan {
885 1.32 macallan struct rasops_info *ri = cookie;
886 1.32 macallan struct vcons_screen *scr = ri->ri_hw;
887 1.32 macallan struct tcx_softc *sc = scr->scr_cookie;
888 1.32 macallan uint64_t bg, fg, temp, mask;
889 1.32 macallan int addr, i, uc, shift;
890 1.32 macallan uint32_t fmask;
891 1.32 macallan uint8_t *cdata;
892 1.32 macallan uint16_t *wdata;
893 1.32 macallan
894 1.32 macallan addr = ri->ri_xorigin +
895 1.32 macallan col * ri->ri_font->fontwidth +
896 1.32 macallan (ri->ri_yorigin + row * ri->ri_font->fontheight) * ri->ri_width;
897 1.32 macallan
898 1.32 macallan /* check if the character is crossing a 32 pixel boundary */
899 1.32 macallan if ((addr & 0xffffe0) ==
900 1.32 macallan ((addr + ri->ri_font->fontwidth - 1) & 0xffffe0)) {
901 1.32 macallan /* phew, not split */
902 1.32 macallan shift = addr & 0x1f;
903 1.32 macallan addr &= 0xffffe0;
904 1.32 macallan fmask = 0xffffffff >> (32 - ri->ri_font->fontwidth);
905 1.32 macallan fmask = fmask << (32 - ri->ri_font->fontwidth - shift);
906 1.32 macallan mask = fmask;
907 1.32 macallan bg = 0x3000000000000000LL |
908 1.32 macallan ((uint64_t)ri->ri_devcmap[(attr >> 16) & 0xff] &
909 1.32 macallan 0xff) << 32;
910 1.32 macallan bg |= mask;
911 1.32 macallan temp = 0x3000000000000000LL |
912 1.32 macallan ((uint64_t)ri->ri_devcmap[(attr >> 24) & 0xff] & 0xff) <<
913 1.32 macallan 32;
914 1.32 macallan uc = c - ri->ri_font->firstchar;
915 1.32 macallan cdata = (uint8_t *)ri->ri_font->data + uc * ri->ri_fontscale;
916 1.32 macallan
917 1.32 macallan if (ri->ri_font->fontwidth < 9) {
918 1.32 macallan /* byte by byte */
919 1.32 macallan for (i = 0; i < ri->ri_font->fontheight; i++) {
920 1.32 macallan sc->sc_rstip[addr] = bg;
921 1.32 macallan if (*cdata != 0) {
922 1.32 macallan if (shift > 24) {
923 1.32 macallan fg = (uint64_t)*cdata >>
924 1.32 macallan (shift - 24);
925 1.32 macallan } else {
926 1.32 macallan fg = (uint64_t)*cdata <<
927 1.32 macallan (24 - shift);
928 1.32 macallan }
929 1.32 macallan sc->sc_rstip[addr] = fg | temp;
930 1.32 macallan }
931 1.32 macallan cdata++;
932 1.32 macallan addr += ri->ri_width;
933 1.32 macallan }
934 1.32 macallan } else if (ri->ri_font->fontwidth < 17) {
935 1.32 macallan /* short by short */
936 1.32 macallan wdata = (uint16_t *)cdata;
937 1.32 macallan for (i = 0; i < ri->ri_font->fontheight; i++) {
938 1.32 macallan sc->sc_rstip[addr] = bg;
939 1.32 macallan if (*wdata != 0) {
940 1.32 macallan if (shift > 16) {
941 1.32 macallan fg = temp | (uint64_t)*wdata >>
942 1.32 macallan (shift - 16);
943 1.32 macallan } else {
944 1.32 macallan fg = temp | (uint64_t)*wdata <<
945 1.32 macallan (16 - shift);
946 1.32 macallan }
947 1.32 macallan sc->sc_rstip[addr] = fg;
948 1.32 macallan }
949 1.32 macallan wdata++;
950 1.32 macallan addr += ri->ri_width;
951 1.32 macallan }
952 1.32 macallan }
953 1.32 macallan } else {
954 1.32 macallan /* and now the split case ( man this hardware is dumb ) */
955 1.32 macallan uint64_t bgr, maskr, fgr;
956 1.32 macallan uint32_t bork;
957 1.32 macallan
958 1.32 macallan shift = addr & 0x1f;
959 1.32 macallan addr &= 0xffffe0;
960 1.32 macallan mask = 0xffffffff >> shift;
961 1.32 macallan maskr = (uint64_t)(0xffffffffUL <<
962 1.32 macallan (32 - (ri->ri_font->fontwidth + shift - 32)));
963 1.32 macallan bg = 0x3000000000000000LL |
964 1.32 macallan ((uint64_t)ri->ri_devcmap[(attr >> 16) & 0xff] &
965 1.32 macallan 0xff) << 32;
966 1.32 macallan bgr = bg | maskr;
967 1.32 macallan bg |= mask;
968 1.32 macallan temp = 0x3000000000000000LL |
969 1.32 macallan ((uint64_t)ri->ri_devcmap[(attr >> 24) & 0xff] & 0xff) <<
970 1.32 macallan 32;
971 1.32 macallan
972 1.32 macallan uc = c - ri->ri_font->firstchar;
973 1.32 macallan cdata = (uint8_t *)ri->ri_font->data + uc * ri->ri_fontscale;
974 1.32 macallan
975 1.32 macallan if (ri->ri_font->fontwidth < 9) {
976 1.32 macallan /* byte by byte */
977 1.32 macallan for (i = 0; i < ri->ri_font->fontheight; i++) {
978 1.32 macallan sc->sc_rstip[addr] = bg;
979 1.32 macallan sc->sc_rstip[addr + 32] = bgr;
980 1.32 macallan bork = *cdata;
981 1.32 macallan if (bork != 0) {
982 1.32 macallan fg = (uint64_t)bork >> (shift - 24);
983 1.32 macallan sc->sc_rstip[addr] = fg | temp;
984 1.32 macallan fgr = (uint64_t)(bork << (52 - shift));
985 1.32 macallan sc->sc_rstip[addr] = fgr | temp;
986 1.32 macallan }
987 1.32 macallan cdata++;
988 1.32 macallan addr += ri->ri_width;
989 1.32 macallan }
990 1.32 macallan } else if (ri->ri_font->fontwidth < 17) {
991 1.32 macallan /* short by short */
992 1.32 macallan wdata = (uint16_t *)cdata;
993 1.32 macallan for (i = 0; i < ri->ri_font->fontheight; i++) {
994 1.32 macallan sc->sc_rstip[addr] = bg;
995 1.32 macallan sc->sc_rstip[addr + 32] = bgr;
996 1.32 macallan bork = *wdata;
997 1.32 macallan if (bork != 0) {
998 1.32 macallan fg = (uint64_t)bork >> (shift - 16);
999 1.32 macallan sc->sc_rstip[addr] = fg | temp;
1000 1.32 macallan fgr = (uint64_t)(bork << (48 - shift));
1001 1.32 macallan sc->sc_rstip[addr + 32] = fgr | temp;
1002 1.32 macallan }
1003 1.32 macallan wdata++;
1004 1.32 macallan addr += ri->ri_width;
1005 1.32 macallan }
1006 1.32 macallan }
1007 1.32 macallan
1008 1.32 macallan }
1009 1.32 macallan }
1010 1.32 macallan
1011