hpcfb.c revision 1.1.4.2 1 1.1.4.2 bouyer /* $NetBSD: hpcfb.c,v 1.1.4.2 2001/03/12 13:30:05 bouyer Exp $ */
2 1.1.4.2 bouyer
3 1.1.4.2 bouyer /*-
4 1.1.4.2 bouyer * Copyright (c) 1999
5 1.1.4.2 bouyer * Shin Takemura and PocketBSD Project. All rights reserved.
6 1.1.4.2 bouyer * Copyright (c) 2000,2001
7 1.1.4.2 bouyer * SATO Kazumi. All rights reserved.
8 1.1.4.2 bouyer *
9 1.1.4.2 bouyer * Redistribution and use in source and binary forms, with or without
10 1.1.4.2 bouyer * modification, are permitted provided that the following conditions
11 1.1.4.2 bouyer * are met:
12 1.1.4.2 bouyer * 1. Redistributions of source code must retain the above copyright
13 1.1.4.2 bouyer * notice, this list of conditions and the following disclaimer.
14 1.1.4.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
15 1.1.4.2 bouyer * notice, this list of conditions and the following disclaimer in the
16 1.1.4.2 bouyer * documentation and/or other materials provided with the distribution.
17 1.1.4.2 bouyer * 3. All advertising materials mentioning features or use of this software
18 1.1.4.2 bouyer * must display the following acknowledgement:
19 1.1.4.2 bouyer * This product includes software developed by the PocketBSD project
20 1.1.4.2 bouyer * and its contributors.
21 1.1.4.2 bouyer * 4. Neither the name of the project nor the names of its contributors
22 1.1.4.2 bouyer * may be used to endorse or promote products derived from this software
23 1.1.4.2 bouyer * without specific prior written permission.
24 1.1.4.2 bouyer *
25 1.1.4.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 1.1.4.2 bouyer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 1.1.4.2 bouyer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 1.1.4.2 bouyer * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 1.1.4.2 bouyer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 1.1.4.2 bouyer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 1.1.4.2 bouyer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 1.1.4.2 bouyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 1.1.4.2 bouyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 1.1.4.2 bouyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 1.1.4.2 bouyer * SUCH DAMAGE.
36 1.1.4.2 bouyer *
37 1.1.4.2 bouyer */
38 1.1.4.2 bouyer
39 1.1.4.2 bouyer /*
40 1.1.4.2 bouyer * jump scroll, scroll thread, multiscreen, virtual text vram
41 1.1.4.2 bouyer * and hpcfb_emulops functions
42 1.1.4.2 bouyer * written by SATO Kazumi.
43 1.1.4.2 bouyer */
44 1.1.4.2 bouyer
45 1.1.4.2 bouyer #define FBDEBUG
46 1.1.4.2 bouyer static const char _copyright[] __attribute__ ((unused)) =
47 1.1.4.2 bouyer "Copyright (c) 1999 Shin Takemura. All rights reserved.";
48 1.1.4.2 bouyer static const char _rcsid[] __attribute__ ((unused)) =
49 1.1.4.2 bouyer "$Id: hpcfb.c,v 1.1.4.2 2001/03/12 13:30:05 bouyer Exp $";
50 1.1.4.2 bouyer
51 1.1.4.2 bouyer #include <sys/param.h>
52 1.1.4.2 bouyer #include <sys/systm.h>
53 1.1.4.2 bouyer #include <sys/kernel.h>
54 1.1.4.2 bouyer #include <sys/signalvar.h>
55 1.1.4.2 bouyer #include <sys/map.h>
56 1.1.4.2 bouyer #include <sys/proc.h>
57 1.1.4.2 bouyer #include <sys/kthread.h>
58 1.1.4.2 bouyer #include <sys/lock.h>
59 1.1.4.2 bouyer #include <sys/user.h>
60 1.1.4.2 bouyer #include <sys/device.h>
61 1.1.4.2 bouyer #include <sys/conf.h>
62 1.1.4.2 bouyer #include <sys/malloc.h>
63 1.1.4.2 bouyer #include <sys/buf.h>
64 1.1.4.2 bouyer #include <sys/ioctl.h>
65 1.1.4.2 bouyer
66 1.1.4.2 bouyer #include <uvm/uvm_extern.h>
67 1.1.4.2 bouyer
68 1.1.4.2 bouyer #include <machine/bus.h>
69 1.1.4.2 bouyer #include <machine/autoconf.h>
70 1.1.4.2 bouyer
71 1.1.4.2 bouyer #include <dev/wscons/wsconsio.h>
72 1.1.4.2 bouyer #include <dev/wscons/wsdisplayvar.h>
73 1.1.4.2 bouyer #include <dev/wscons/wscons_callbacks.h>
74 1.1.4.2 bouyer
75 1.1.4.2 bouyer #include <dev/wsfont/wsfont.h>
76 1.1.4.2 bouyer #include <dev/rasops/rasops.h>
77 1.1.4.2 bouyer
78 1.1.4.2 bouyer #include <dev/hpc/hpcfbvar.h>
79 1.1.4.2 bouyer #include <dev/hpc/hpcfbio.h>
80 1.1.4.2 bouyer
81 1.1.4.2 bouyer #include "bivideo.h"
82 1.1.4.2 bouyer #if NBIVIDEO > 0
83 1.1.4.2 bouyer #include <dev/hpc/bivideovar.h>
84 1.1.4.2 bouyer #endif
85 1.1.4.2 bouyer
86 1.1.4.2 bouyer #ifdef FBDEBUG
87 1.1.4.2 bouyer int hpcfb_debug = 0;
88 1.1.4.2 bouyer #define DPRINTF(arg) if (hpcfb_debug) printf arg;
89 1.1.4.2 bouyer #else
90 1.1.4.2 bouyer #define DPRINTF(arg)
91 1.1.4.2 bouyer #endif
92 1.1.4.2 bouyer
93 1.1.4.2 bouyer #ifndef HPCFB_MAX_COLUMN
94 1.1.4.2 bouyer #define HPCFB_MAX_COLUMN 130
95 1.1.4.2 bouyer #endif /* HPCFB_MAX_COLUMN */
96 1.1.4.2 bouyer #ifndef HPCFB_MAX_ROW
97 1.1.4.2 bouyer #define HPCFB_MAX_ROW 80
98 1.1.4.2 bouyer #endif /* HPCFB_MAX_ROW */
99 1.1.4.2 bouyer
100 1.1.4.2 bouyer /*
101 1.1.4.2 bouyer * currently experimental
102 1.1.4.2 bouyer #define HPCFB_JUMP
103 1.1.4.2 bouyer #define HPCFB_MULTI
104 1.1.4.2 bouyer */
105 1.1.4.2 bouyer
106 1.1.4.2 bouyer struct hpcfb_vchar {
107 1.1.4.2 bouyer u_int c;
108 1.1.4.2 bouyer long attr;
109 1.1.4.2 bouyer };
110 1.1.4.2 bouyer
111 1.1.4.2 bouyer struct hpcfb_tvrow {
112 1.1.4.2 bouyer int maxcol;
113 1.1.4.2 bouyer int spacecol;
114 1.1.4.2 bouyer struct hpcfb_vchar col[HPCFB_MAX_COLUMN];
115 1.1.4.2 bouyer };
116 1.1.4.2 bouyer
117 1.1.4.2 bouyer struct hpcfb_devconfig {
118 1.1.4.2 bouyer struct rasops_info dc_rinfo; /* rasops infomation */
119 1.1.4.2 bouyer
120 1.1.4.2 bouyer int dc_blanked; /* currently had video disabled */
121 1.1.4.2 bouyer struct hpcfb_softc *dc_sc;
122 1.1.4.2 bouyer int dc_rows;
123 1.1.4.2 bouyer int dc_cols;
124 1.1.4.2 bouyer struct hpcfb_tvrow *dc_tvram;
125 1.1.4.2 bouyer int dc_curx;
126 1.1.4.2 bouyer int dc_cury;
127 1.1.4.2 bouyer #ifdef HPCFB_JUMP
128 1.1.4.2 bouyer int dc_min_row;
129 1.1.4.2 bouyer int dc_max_row;
130 1.1.4.2 bouyer int dc_scroll;
131 1.1.4.2 bouyer struct callout dc_scroll_ch;
132 1.1.4.2 bouyer int dc_scroll_src;
133 1.1.4.2 bouyer int dc_scroll_dst;
134 1.1.4.2 bouyer int dc_scroll_num;
135 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
136 1.1.4.2 bouyer volatile int dc_state;
137 1.1.4.2 bouyer #define HPCFB_DC_CURRENT 0x80000000
138 1.1.4.2 bouyer #define HPCFB_DC_DRAWING 0x01 /* drawing raster ops */
139 1.1.4.2 bouyer #define HPCFB_DC_TDRAWING 0x02 /* drawing tvram */
140 1.1.4.2 bouyer #define HPCFB_DC_SCROLLPENDING 0x04 /* scroll is pending */
141 1.1.4.2 bouyer #define HPCFB_DC_UPDATE 0x08 /* tvram update */
142 1.1.4.2 bouyer #define HPCFB_DC_SCRDELAY 0x10 /* scroll time but delay it */
143 1.1.4.2 bouyer #define HPCFB_DC_SCRTHREAD 0x20 /* in scroll thread or callout */
144 1.1.4.2 bouyer #define HPCFB_DC_UPDATEALL 0x40 /* need to redraw all */
145 1.1.4.2 bouyer #define HPCFB_DC_ABORT 0x80 /* abort redrawing */
146 1.1.4.2 bouyer #ifdef HPCFB_MULTI
147 1.1.4.2 bouyer int dc_scrno;
148 1.1.4.2 bouyer int dc_memsize;
149 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
150 1.1.4.2 bouyer u_char *dc_fbaddr;
151 1.1.4.2 bouyer };
152 1.1.4.2 bouyer
153 1.1.4.2 bouyer #define HPCFB_MAX_SCREEN 5
154 1.1.4.2 bouyer #define HPCFB_MAX_JUMP 5
155 1.1.4.2 bouyer
156 1.1.4.2 bouyer struct hpcfb_softc {
157 1.1.4.2 bouyer struct device sc_dev;
158 1.1.4.2 bouyer struct hpcfb_devconfig *sc_dc; /* device configuration */
159 1.1.4.2 bouyer #ifdef HPCFB_MULTI
160 1.1.4.2 bouyer struct hpcfb_devconfig *screens[HPCFB_MAX_SCREEN];
161 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
162 1.1.4.2 bouyer const struct hpcfb_accessops *sc_accessops;
163 1.1.4.2 bouyer void *sc_accessctx;
164 1.1.4.2 bouyer int nscreens;
165 1.1.4.2 bouyer void *sc_powerhook; /* power management hook */
166 1.1.4.2 bouyer struct device *sc_wsdisplay;
167 1.1.4.2 bouyer int sc_screen_resumed;
168 1.1.4.2 bouyer int sc_polling;
169 1.1.4.2 bouyer int sc_mapping;
170 1.1.4.2 bouyer struct proc *sc_thread;
171 1.1.4.2 bouyer struct lock sc_lock;
172 1.1.4.2 bouyer void *sc_wantedscreen;
173 1.1.4.2 bouyer void (*sc_switchcb) __P((void *, int, int));
174 1.1.4.2 bouyer void *sc_switchcbarg;
175 1.1.4.2 bouyer struct callout sc_switch_callout;
176 1.1.4.2 bouyer };
177 1.1.4.2 bouyer
178 1.1.4.2 bouyer /*
179 1.1.4.2 bouyer * function prototypes
180 1.1.4.2 bouyer */
181 1.1.4.2 bouyer int hpcfbmatch __P((struct device *, struct cfdata *, void *));
182 1.1.4.2 bouyer void hpcfbattach __P((struct device *, struct device *, void *));
183 1.1.4.2 bouyer int hpcfbprint __P((void *aux, const char *pnp));
184 1.1.4.2 bouyer
185 1.1.4.2 bouyer int hpcfb_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
186 1.1.4.2 bouyer paddr_t hpcfb_mmap __P((void *, off_t, int));
187 1.1.4.2 bouyer
188 1.1.4.2 bouyer void hpcfb_refresh_screen __P((struct hpcfb_softc *sc));
189 1.1.4.2 bouyer void hpcfb_doswitch __P((struct hpcfb_softc *sc));
190 1.1.4.2 bouyer
191 1.1.4.2 bouyer #ifdef HPCFB_JUMP
192 1.1.4.2 bouyer static void hpcfb_create_thread __P((void *));
193 1.1.4.2 bouyer static void hpcfb_thread __P((void *));
194 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
195 1.1.4.2 bouyer
196 1.1.4.2 bouyer static int hpcfb_init __P((struct hpcfb_fbconf *fbconf,
197 1.1.4.2 bouyer struct hpcfb_devconfig *dc));
198 1.1.4.2 bouyer static int hpcfb_alloc_screen __P((void *, const struct wsscreen_descr *,
199 1.1.4.2 bouyer void **, int *, int *, long *));
200 1.1.4.2 bouyer static void hpcfb_free_screen __P((void *, void *));
201 1.1.4.2 bouyer static int hpcfb_show_screen __P((void *, void *, int,
202 1.1.4.2 bouyer void (*) (void *, int, int), void *));
203 1.1.4.2 bouyer static void hpcfb_pollc __P((void *, int));
204 1.1.4.2 bouyer static void hpcfb_power __P((int, void *));
205 1.1.4.2 bouyer static void hpcfb_cmap_reorder __P((struct hpcfb_fbconf *,
206 1.1.4.2 bouyer struct hpcfb_devconfig *));
207 1.1.4.2 bouyer
208 1.1.4.2 bouyer static int pow __P((int, int));
209 1.1.4.2 bouyer
210 1.1.4.2 bouyer void hpcfb_cursor __P((void *c, int on, int row, int col));
211 1.1.4.2 bouyer int hpcfb_mapchar __P((void *, int, unsigned int *));
212 1.1.4.2 bouyer void hpcfb_putchar __P((void *c, int row, int col, u_int uc, long attr));
213 1.1.4.2 bouyer void hpcfb_copycols __P((void *c, int row, int srccol,
214 1.1.4.2 bouyer int dstcol, int ncols));
215 1.1.4.2 bouyer void hpcfb_erasecols __P((void *c, int row, int startcol,
216 1.1.4.2 bouyer int ncols, long attr));
217 1.1.4.2 bouyer void hpcfb_redraw __P((void *c, int row, int nrows, int all));
218 1.1.4.2 bouyer void hpcfb_copyrows __P((void *c, int srcrow, int dstrow, int nrows));
219 1.1.4.2 bouyer void hpcfb_eraserows __P((void *c, int row, int nrows, long attr));
220 1.1.4.2 bouyer int hpcfb_alloc_attr __P((void *c, int fg, int bg, int flags, long *attr));
221 1.1.4.2 bouyer void hpcfb_cursor_raw __P((void *c, int on, int row, int col));
222 1.1.4.2 bouyer
223 1.1.4.2 bouyer #ifdef HPCFB_JUMP
224 1.1.4.2 bouyer void hpcfb_update __P((void *));
225 1.1.4.2 bouyer void hpcfb_do_scroll __P((void *));
226 1.1.4.2 bouyer void hpcfb_check_update __P((void *));
227 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
228 1.1.4.2 bouyer
229 1.1.4.2 bouyer struct wsdisplay_emulops hpcfb_emulops = {
230 1.1.4.2 bouyer hpcfb_cursor,
231 1.1.4.2 bouyer hpcfb_mapchar,
232 1.1.4.2 bouyer hpcfb_putchar,
233 1.1.4.2 bouyer hpcfb_copycols,
234 1.1.4.2 bouyer hpcfb_erasecols,
235 1.1.4.2 bouyer hpcfb_copyrows,
236 1.1.4.2 bouyer hpcfb_eraserows,
237 1.1.4.2 bouyer hpcfb_alloc_attr
238 1.1.4.2 bouyer };
239 1.1.4.2 bouyer
240 1.1.4.2 bouyer /*
241 1.1.4.2 bouyer * static variables
242 1.1.4.2 bouyer */
243 1.1.4.2 bouyer struct cfattach hpcfb_ca = {
244 1.1.4.2 bouyer sizeof(struct hpcfb_softc), hpcfbmatch, hpcfbattach,
245 1.1.4.2 bouyer };
246 1.1.4.2 bouyer
247 1.1.4.2 bouyer struct wsscreen_descr hpcfb_stdscreen = {
248 1.1.4.2 bouyer "std",
249 1.1.4.2 bouyer 0, 0, /* will be filled in -- XXX shouldn't, it's global */
250 1.1.4.2 bouyer &hpcfb_emulops, /* XXX */
251 1.1.4.2 bouyer 0, 0,
252 1.1.4.2 bouyer WSSCREEN_REVERSE
253 1.1.4.2 bouyer };
254 1.1.4.2 bouyer
255 1.1.4.2 bouyer const struct wsscreen_descr *_hpcfb_scrlist[] = {
256 1.1.4.2 bouyer &hpcfb_stdscreen,
257 1.1.4.2 bouyer /* XXX other formats, graphics screen? */
258 1.1.4.2 bouyer };
259 1.1.4.2 bouyer
260 1.1.4.2 bouyer struct wsscreen_list hpcfb_screenlist = {
261 1.1.4.2 bouyer sizeof(_hpcfb_scrlist) / sizeof(struct wsscreen_descr *),
262 1.1.4.2 bouyer _hpcfb_scrlist
263 1.1.4.2 bouyer };
264 1.1.4.2 bouyer
265 1.1.4.2 bouyer struct wsdisplay_accessops hpcfb_accessops = {
266 1.1.4.2 bouyer hpcfb_ioctl,
267 1.1.4.2 bouyer hpcfb_mmap,
268 1.1.4.2 bouyer hpcfb_alloc_screen,
269 1.1.4.2 bouyer hpcfb_free_screen,
270 1.1.4.2 bouyer hpcfb_show_screen,
271 1.1.4.2 bouyer 0 /* load_font */,
272 1.1.4.2 bouyer hpcfb_pollc
273 1.1.4.2 bouyer };
274 1.1.4.2 bouyer
275 1.1.4.2 bouyer void hpcfb_tv_putchar __P((struct hpcfb_devconfig *, int, int, u_int, long));
276 1.1.4.2 bouyer void hpcfb_tv_copycols __P((struct hpcfb_devconfig *, int, int, int, int));
277 1.1.4.2 bouyer void hpcfb_tv_erasecols __P((struct hpcfb_devconfig *, int, int, int, long));
278 1.1.4.2 bouyer void hpcfb_tv_copyrows __P((struct hpcfb_devconfig *, int, int, int));
279 1.1.4.2 bouyer void hpcfb_tv_eraserows __P((struct hpcfb_devconfig *, int, int, long));
280 1.1.4.2 bouyer
281 1.1.4.2 bouyer struct wsdisplay_emulops rasops_emul;
282 1.1.4.2 bouyer
283 1.1.4.2 bouyer static int hpcfbconsole;
284 1.1.4.2 bouyer struct hpcfb_devconfig hpcfb_console_dc;
285 1.1.4.2 bouyer struct wsscreen_descr hpcfb_console_wsscreen;
286 1.1.4.2 bouyer struct hpcfb_tvrow hpcfb_console_tvram[HPCFB_MAX_ROW];
287 1.1.4.2 bouyer
288 1.1.4.2 bouyer /*
289 1.1.4.2 bouyer * function bodies
290 1.1.4.2 bouyer */
291 1.1.4.2 bouyer static int
292 1.1.4.2 bouyer pow(int x, int n)
293 1.1.4.2 bouyer {
294 1.1.4.2 bouyer int res = 1;
295 1.1.4.2 bouyer while (0 < n--) {
296 1.1.4.2 bouyer res *= x;
297 1.1.4.2 bouyer }
298 1.1.4.2 bouyer return (res);
299 1.1.4.2 bouyer }
300 1.1.4.2 bouyer
301 1.1.4.2 bouyer int
302 1.1.4.2 bouyer hpcfbmatch(parent, match, aux)
303 1.1.4.2 bouyer struct device *parent;
304 1.1.4.2 bouyer struct cfdata *match;
305 1.1.4.2 bouyer void *aux;
306 1.1.4.2 bouyer {
307 1.1.4.2 bouyer return (1);
308 1.1.4.2 bouyer }
309 1.1.4.2 bouyer
310 1.1.4.2 bouyer void
311 1.1.4.2 bouyer hpcfbattach(parent, self, aux)
312 1.1.4.2 bouyer struct device *parent, *self;
313 1.1.4.2 bouyer void *aux;
314 1.1.4.2 bouyer {
315 1.1.4.2 bouyer struct hpcfb_softc *sc = (struct hpcfb_softc *)self;
316 1.1.4.2 bouyer struct hpcfb_attach_args *ha = aux;
317 1.1.4.2 bouyer struct wsemuldisplaydev_attach_args wa;
318 1.1.4.2 bouyer
319 1.1.4.2 bouyer sc->sc_accessops = ha->ha_accessops;
320 1.1.4.2 bouyer sc->sc_accessctx = ha->ha_accessctx;
321 1.1.4.2 bouyer
322 1.1.4.2 bouyer if (hpcfbconsole) {
323 1.1.4.2 bouyer #ifdef HPCFB_MULTI
324 1.1.4.2 bouyer sc->screens[0] =
325 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
326 1.1.4.2 bouyer sc->sc_dc = &hpcfb_console_dc;
327 1.1.4.2 bouyer sc->nscreens = 1;
328 1.1.4.2 bouyer hpcfb_console_dc.dc_sc = sc;
329 1.1.4.2 bouyer } else {
330 1.1.4.2 bouyer #ifdef HPCFB_MULTI
331 1.1.4.2 bouyer sc->screens[0] =
332 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
333 1.1.4.2 bouyer sc->sc_dc = (struct hpcfb_devconfig *)
334 1.1.4.2 bouyer malloc(sizeof(struct hpcfb_devconfig), M_DEVBUF, M_WAITOK);
335 1.1.4.2 bouyer sc->nscreens = 1;
336 1.1.4.2 bouyer bzero(sc->sc_dc, sizeof(struct hpcfb_devconfig));
337 1.1.4.2 bouyer if (hpcfb_init(&ha->ha_fbconflist[0], sc->sc_dc) != 0) {
338 1.1.4.2 bouyer return;
339 1.1.4.2 bouyer }
340 1.1.4.2 bouyer sc->sc_dc->dc_tvram = hpcfb_console_tvram;
341 1.1.4.2 bouyer bzero(hpcfb_console_tvram, sizeof(hpcfb_console_tvram));
342 1.1.4.2 bouyer sc->sc_dc->dc_sc = sc;
343 1.1.4.2 bouyer }
344 1.1.4.2 bouyer sc->sc_polling = 0; /* XXX */
345 1.1.4.2 bouyer sc->sc_mapping = 0; /* XXX */
346 1.1.4.2 bouyer callout_init(&sc->sc_switch_callout);
347 1.1.4.2 bouyer hpcfb_stdscreen.nrows = sc->sc_dc->dc_rows;
348 1.1.4.2 bouyer hpcfb_stdscreen.ncols = sc->sc_dc->dc_cols;
349 1.1.4.2 bouyer hpcfb_stdscreen.capabilities = sc->sc_dc->dc_rinfo.ri_caps;
350 1.1.4.2 bouyer printf(": hpcrasops %dx%d pixels, %d colors, %dx%d chars: ",
351 1.1.4.2 bouyer sc->sc_dc->dc_rinfo.ri_width,
352 1.1.4.2 bouyer sc->sc_dc->dc_rinfo.ri_height,
353 1.1.4.2 bouyer pow(2, sc->sc_dc->dc_rinfo.ri_depth),
354 1.1.4.2 bouyer sc->sc_dc->dc_rinfo.ri_cols,
355 1.1.4.2 bouyer sc->sc_dc->dc_rinfo.ri_rows);
356 1.1.4.2 bouyer #ifdef HPCFB_MULTI
357 1.1.4.2 bouyer printf(" multi");
358 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
359 1.1.4.2 bouyer printf("\n");
360 1.1.4.2 bouyer
361 1.1.4.2 bouyer /* Set video chip dependent CLUT if any. */
362 1.1.4.2 bouyer if (hpcfbconsole && sc->sc_accessops->setclut) {
363 1.1.4.2 bouyer sc->sc_accessops->setclut(sc->sc_accessctx,
364 1.1.4.2 bouyer &hpcfb_console_dc.dc_rinfo);
365 1.1.4.2 bouyer }
366 1.1.4.2 bouyer
367 1.1.4.2 bouyer /* set font for hardware accel */
368 1.1.4.2 bouyer if (sc->sc_accessops->font) {
369 1.1.4.2 bouyer sc->sc_accessops->font(sc->sc_accessctx,
370 1.1.4.2 bouyer sc->sc_dc->dc_rinfo.ri_font);
371 1.1.4.2 bouyer }
372 1.1.4.2 bouyer
373 1.1.4.2 bouyer /* Add a power hook to power management */
374 1.1.4.2 bouyer sc->sc_powerhook = powerhook_establish(hpcfb_power, sc);
375 1.1.4.2 bouyer if (sc->sc_powerhook == NULL)
376 1.1.4.2 bouyer printf("%s: WARNING: unable to establish power hook\n",
377 1.1.4.2 bouyer sc->sc_dev.dv_xname);
378 1.1.4.2 bouyer
379 1.1.4.2 bouyer wa.console = hpcfbconsole;
380 1.1.4.2 bouyer wa.scrdata = &hpcfb_screenlist;
381 1.1.4.2 bouyer wa.accessops = &hpcfb_accessops;
382 1.1.4.2 bouyer wa.accesscookie = sc;
383 1.1.4.2 bouyer
384 1.1.4.2 bouyer sc->sc_wsdisplay = config_found(self, &wa, wsemuldisplaydevprint);
385 1.1.4.2 bouyer
386 1.1.4.2 bouyer #ifdef HPCFB_JUMP
387 1.1.4.2 bouyer /*
388 1.1.4.2 bouyer * Create a kernel thread to scroll,
389 1.1.4.2 bouyer */
390 1.1.4.2 bouyer kthread_create(hpcfb_create_thread, sc);
391 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
392 1.1.4.2 bouyer }
393 1.1.4.2 bouyer
394 1.1.4.2 bouyer #ifdef HPCFB_JUMP
395 1.1.4.2 bouyer void
396 1.1.4.2 bouyer hpcfb_create_thread(arg)
397 1.1.4.2 bouyer void *arg;
398 1.1.4.2 bouyer {
399 1.1.4.2 bouyer struct hpcfb_softc *sc = arg;
400 1.1.4.2 bouyer
401 1.1.4.2 bouyer if (kthread_create1(hpcfb_thread, sc, &sc->sc_thread,
402 1.1.4.2 bouyer "%s", sc->sc_dev.dv_xname) == 0)
403 1.1.4.2 bouyer return;
404 1.1.4.2 bouyer
405 1.1.4.2 bouyer /*
406 1.1.4.2 bouyer * We were unable to create the HPCFB thread; bail out.
407 1.1.4.2 bouyer */
408 1.1.4.2 bouyer sc->sc_thread = 0;
409 1.1.4.2 bouyer printf("%s: unable to create thread, kernel hpcfb scroll support disabled\n",
410 1.1.4.2 bouyer sc->sc_dev.dv_xname);
411 1.1.4.2 bouyer }
412 1.1.4.2 bouyer
413 1.1.4.2 bouyer void
414 1.1.4.2 bouyer hpcfb_thread(arg)
415 1.1.4.2 bouyer void *arg;
416 1.1.4.2 bouyer {
417 1.1.4.2 bouyer struct hpcfb_softc *sc = arg;
418 1.1.4.2 bouyer
419 1.1.4.2 bouyer /*
420 1.1.4.2 bouyer * Loop forever, doing a periodic check for update events.
421 1.1.4.2 bouyer */
422 1.1.4.2 bouyer for (;;) {
423 1.1.4.2 bouyer /* HPCFB_LOCK(sc); */
424 1.1.4.2 bouyer sc->sc_dc->dc_state |= HPCFB_DC_SCRTHREAD;
425 1.1.4.2 bouyer if (!sc->sc_mapping) /* draw only EMUL mode */
426 1.1.4.2 bouyer hpcfb_update(sc->sc_dc);
427 1.1.4.2 bouyer sc->sc_dc->dc_state &= ~HPCFB_DC_SCRTHREAD;
428 1.1.4.2 bouyer /* APM_UNLOCK(sc); */
429 1.1.4.2 bouyer (void) tsleep(sc, PWAIT, "hpcfb", (8 * hz) / 7 / 10);
430 1.1.4.2 bouyer }
431 1.1.4.2 bouyer }
432 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
433 1.1.4.2 bouyer
434 1.1.4.2 bouyer /* Print function (for parent devices). */
435 1.1.4.2 bouyer int
436 1.1.4.2 bouyer hpcfbprint(aux, pnp)
437 1.1.4.2 bouyer void *aux;
438 1.1.4.2 bouyer const char *pnp;
439 1.1.4.2 bouyer {
440 1.1.4.2 bouyer if (pnp)
441 1.1.4.2 bouyer printf("hpcfb at %s", pnp);
442 1.1.4.2 bouyer
443 1.1.4.2 bouyer return (UNCONF);
444 1.1.4.2 bouyer }
445 1.1.4.2 bouyer
446 1.1.4.2 bouyer int
447 1.1.4.2 bouyer hpcfb_cnattach(fbconf)
448 1.1.4.2 bouyer struct hpcfb_fbconf *fbconf;
449 1.1.4.2 bouyer {
450 1.1.4.2 bouyer struct hpcfb_fbconf __fbconf __attribute__((__unused__));
451 1.1.4.2 bouyer long defattr;
452 1.1.4.2 bouyer
453 1.1.4.2 bouyer #if NBIVIDEO > 0
454 1.1.4.2 bouyer if (fbconf == 0) {
455 1.1.4.2 bouyer memset(&__fbconf, 0, sizeof(struct hpcfb_fbconf));
456 1.1.4.2 bouyer if (bivideo_getcnfb(&__fbconf) != 0)
457 1.1.4.2 bouyer return (ENXIO);
458 1.1.4.2 bouyer fbconf = &__fbconf;
459 1.1.4.2 bouyer }
460 1.1.4.2 bouyer #endif /* NBIVIDEO > 0 */
461 1.1.4.2 bouyer bzero(&hpcfb_console_dc, sizeof(struct hpcfb_devconfig));
462 1.1.4.2 bouyer if (hpcfb_init(fbconf, &hpcfb_console_dc) != 0)
463 1.1.4.2 bouyer return (ENXIO);
464 1.1.4.2 bouyer
465 1.1.4.2 bouyer hpcfb_console_dc.dc_tvram = hpcfb_console_tvram;
466 1.1.4.2 bouyer bzero(hpcfb_console_tvram, sizeof(hpcfb_console_tvram));
467 1.1.4.2 bouyer
468 1.1.4.2 bouyer hpcfb_console_wsscreen = hpcfb_stdscreen;
469 1.1.4.2 bouyer hpcfb_console_wsscreen.nrows = hpcfb_console_dc.dc_rows;
470 1.1.4.2 bouyer hpcfb_console_wsscreen.ncols = hpcfb_console_dc.dc_cols;
471 1.1.4.2 bouyer hpcfb_console_wsscreen.capabilities = hpcfb_console_dc.dc_rinfo.ri_caps;
472 1.1.4.2 bouyer hpcfb_alloc_attr(&hpcfb_console_dc, 7, 0, 0, &defattr);
473 1.1.4.2 bouyer wsdisplay_cnattach(&hpcfb_console_wsscreen, &hpcfb_console_dc,
474 1.1.4.2 bouyer 0, 0, defattr);
475 1.1.4.2 bouyer hpcfbconsole = 1;
476 1.1.4.2 bouyer
477 1.1.4.2 bouyer return (0);
478 1.1.4.2 bouyer }
479 1.1.4.2 bouyer
480 1.1.4.2 bouyer int
481 1.1.4.2 bouyer hpcfb_init(fbconf, dc)
482 1.1.4.2 bouyer struct hpcfb_fbconf *fbconf;
483 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
484 1.1.4.2 bouyer {
485 1.1.4.2 bouyer struct rasops_info *ri;
486 1.1.4.2 bouyer vaddr_t fbaddr;
487 1.1.4.2 bouyer
488 1.1.4.2 bouyer fbaddr = (vaddr_t)fbconf->hf_baseaddr;
489 1.1.4.2 bouyer dc->dc_fbaddr = (u_char *)fbaddr;
490 1.1.4.2 bouyer
491 1.1.4.2 bouyer /* init rasops */
492 1.1.4.2 bouyer ri = &dc->dc_rinfo;
493 1.1.4.2 bouyer bzero(ri, sizeof(struct rasops_info));
494 1.1.4.2 bouyer ri->ri_depth = fbconf->hf_pixel_width;
495 1.1.4.2 bouyer ri->ri_bits = (caddr_t)fbaddr;
496 1.1.4.2 bouyer ri->ri_width = fbconf->hf_width;
497 1.1.4.2 bouyer ri->ri_height = fbconf->hf_height;
498 1.1.4.2 bouyer ri->ri_stride = fbconf->hf_bytes_per_line;
499 1.1.4.2 bouyer #if 0
500 1.1.4.2 bouyer ri->ri_flg = RI_FORCEMONO | RI_CURSOR;
501 1.1.4.2 bouyer #else
502 1.1.4.2 bouyer ri->ri_flg = RI_CURSOR;
503 1.1.4.2 bouyer #endif
504 1.1.4.2 bouyer if (rasops_init(ri, HPCFB_MAX_ROW, HPCFB_MAX_COLUMN)) {
505 1.1.4.2 bouyer panic("%s(%d): rasops_init() failed!", __FILE__, __LINE__);
506 1.1.4.2 bouyer }
507 1.1.4.2 bouyer
508 1.1.4.2 bouyer /* over write color map of rasops */
509 1.1.4.2 bouyer hpcfb_cmap_reorder (fbconf, dc);
510 1.1.4.2 bouyer
511 1.1.4.2 bouyer dc->dc_curx = -1;
512 1.1.4.2 bouyer dc->dc_cury = -1;
513 1.1.4.2 bouyer dc->dc_rows = dc->dc_rinfo.ri_rows;
514 1.1.4.2 bouyer dc->dc_cols = dc->dc_rinfo.ri_cols;
515 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_CURRENT;
516 1.1.4.2 bouyer #ifdef HPCFB_JUMP
517 1.1.4.2 bouyer dc->dc_max_row = 0;
518 1.1.4.2 bouyer dc->dc_min_row = dc->dc_rows;
519 1.1.4.2 bouyer dc->dc_scroll = 0;
520 1.1.4.2 bouyer callout_init(&dc->dc_scroll_ch);
521 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
522 1.1.4.2 bouyer #if defined(HPCFB_MULTI)
523 1.1.4.2 bouyer dc->dc_memsize = ri->ri_stride * ri->ri_height;
524 1.1.4.2 bouyer #endif /* defined(HPCFB_MULTI) */
525 1.1.4.2 bouyer #ifdef HPCFB_MULTI
526 1.1.4.2 bouyer dc->dc_scrno = 0;
527 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
528 1.1.4.2 bouyer /* hook rasops in hpcfb_ops */
529 1.1.4.2 bouyer rasops_emul = ri->ri_ops; /* struct copy */
530 1.1.4.2 bouyer ri->ri_ops = hpcfb_emulops; /* struct copy */
531 1.1.4.2 bouyer
532 1.1.4.2 bouyer return (0);
533 1.1.4.2 bouyer }
534 1.1.4.2 bouyer
535 1.1.4.2 bouyer static void
536 1.1.4.2 bouyer hpcfb_cmap_reorder(fbconf, dc)
537 1.1.4.2 bouyer struct hpcfb_fbconf *fbconf;
538 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
539 1.1.4.2 bouyer {
540 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
541 1.1.4.2 bouyer int reverse = fbconf->hf_access_flags & HPCFB_ACCESS_REVERSE;
542 1.1.4.2 bouyer int *cmap = ri->ri_devcmap;
543 1.1.4.2 bouyer vaddr_t fbaddr = (vaddr_t)fbconf->hf_baseaddr;
544 1.1.4.2 bouyer int i, j, bg, fg, tmp;
545 1.1.4.2 bouyer
546 1.1.4.2 bouyer /*
547 1.1.4.2 bouyer * Set forground and background so that the screen
548 1.1.4.2 bouyer * looks black on white.
549 1.1.4.2 bouyer * Normally, black = 00 and white = ff.
550 1.1.4.2 bouyer * HPCFB_ACCESS_REVERSE means black = ff and white = 00.
551 1.1.4.2 bouyer */
552 1.1.4.2 bouyer switch (fbconf->hf_pixel_width) {
553 1.1.4.2 bouyer case 1:
554 1.1.4.2 bouyer /* FALLTHROUGH */
555 1.1.4.2 bouyer case 2:
556 1.1.4.2 bouyer /* FALLTHROUGH */
557 1.1.4.2 bouyer case 4:
558 1.1.4.2 bouyer if (reverse) {
559 1.1.4.2 bouyer bg = 0;
560 1.1.4.2 bouyer fg = ~0;
561 1.1.4.2 bouyer } else {
562 1.1.4.2 bouyer bg = ~0;
563 1.1.4.2 bouyer fg = 0;
564 1.1.4.2 bouyer }
565 1.1.4.2 bouyer /* for gray-scale LCD, hi-contrast color map */
566 1.1.4.2 bouyer cmap[0] = bg;
567 1.1.4.2 bouyer for (i = 1; i < 16; i++)
568 1.1.4.2 bouyer cmap[i] = fg;
569 1.1.4.2 bouyer break;
570 1.1.4.2 bouyer case 8:
571 1.1.4.2 bouyer /* FALLTHROUGH */
572 1.1.4.2 bouyer case 16:
573 1.1.4.2 bouyer if (reverse) {
574 1.1.4.2 bouyer for (i = 0, j = 15; i < 8; i++, j--) {
575 1.1.4.2 bouyer tmp = cmap[i];
576 1.1.4.2 bouyer cmap[i] = cmap[j];
577 1.1.4.2 bouyer cmap[j] = tmp;
578 1.1.4.2 bouyer }
579 1.1.4.2 bouyer }
580 1.1.4.2 bouyer break;
581 1.1.4.2 bouyer }
582 1.1.4.2 bouyer
583 1.1.4.2 bouyer /* clear the screen */
584 1.1.4.2 bouyer bg = cmap[0];
585 1.1.4.2 bouyer for (i = 0;
586 1.1.4.2 bouyer i < fbconf->hf_height * fbconf->hf_bytes_per_line;
587 1.1.4.2 bouyer i += sizeof(u_int32_t)) {
588 1.1.4.2 bouyer *(u_int32_t *)(fbaddr + i) = bg;
589 1.1.4.2 bouyer }
590 1.1.4.2 bouyer }
591 1.1.4.2 bouyer
592 1.1.4.2 bouyer int
593 1.1.4.2 bouyer hpcfb_ioctl(v, cmd, data, flag, p)
594 1.1.4.2 bouyer void *v;
595 1.1.4.2 bouyer u_long cmd;
596 1.1.4.2 bouyer caddr_t data;
597 1.1.4.2 bouyer int flag;
598 1.1.4.2 bouyer struct proc *p;
599 1.1.4.2 bouyer {
600 1.1.4.2 bouyer struct hpcfb_softc *sc = v;
601 1.1.4.2 bouyer struct hpcfb_devconfig *dc = sc->sc_dc;
602 1.1.4.2 bouyer struct wsdisplay_fbinfo *wdf;
603 1.1.4.2 bouyer
604 1.1.4.2 bouyer switch (cmd) {
605 1.1.4.2 bouyer case WSKBDIO_BELL:
606 1.1.4.2 bouyer return (0);
607 1.1.4.2 bouyer break;
608 1.1.4.2 bouyer
609 1.1.4.2 bouyer case WSDISPLAYIO_GTYPE:
610 1.1.4.2 bouyer *(u_int *)data = WSDISPLAY_TYPE_HPCFB;
611 1.1.4.2 bouyer return 0;
612 1.1.4.2 bouyer
613 1.1.4.2 bouyer case WSDISPLAYIO_GINFO:
614 1.1.4.2 bouyer wdf = (void *)data;
615 1.1.4.2 bouyer wdf->height = dc->dc_rinfo.ri_height;
616 1.1.4.2 bouyer wdf->width = dc->dc_rinfo.ri_width;
617 1.1.4.2 bouyer wdf->depth = dc->dc_rinfo.ri_depth;
618 1.1.4.2 bouyer wdf->cmsize = 256; /* XXXX */
619 1.1.4.2 bouyer return 0;
620 1.1.4.2 bouyer
621 1.1.4.2 bouyer case WSDISPLAYIO_SMODE:
622 1.1.4.2 bouyer if (*(int *)data == WSDISPLAYIO_MODE_EMUL){
623 1.1.4.2 bouyer if (sc->sc_mapping){
624 1.1.4.2 bouyer sc->sc_mapping = 0;
625 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_DRAWING)
626 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_ABORT;
627 1.1.4.2 bouyer #ifdef HPCFB_FORCE_REDRAW
628 1.1.4.2 bouyer hpcfb_refresh_screen(sc);
629 1.1.4.2 bouyer #else
630 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATEALL;
631 1.1.4.2 bouyer #endif
632 1.1.4.2 bouyer }
633 1.1.4.2 bouyer } else {
634 1.1.4.2 bouyer if (!sc->sc_mapping) {
635 1.1.4.2 bouyer sc->sc_mapping = 1;
636 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_ABORT;
637 1.1.4.2 bouyer }
638 1.1.4.2 bouyer sc->sc_mapping = 1;
639 1.1.4.2 bouyer }
640 1.1.4.2 bouyer if (sc && sc->sc_accessops->iodone)
641 1.1.4.2 bouyer (*sc->sc_accessops->iodone)(sc->sc_accessctx);
642 1.1.4.2 bouyer return 0;
643 1.1.4.2 bouyer
644 1.1.4.2 bouyer case WSDISPLAYIO_GETCMAP:
645 1.1.4.2 bouyer case WSDISPLAYIO_PUTCMAP:
646 1.1.4.2 bouyer case WSDISPLAYIO_GETPARAM:
647 1.1.4.2 bouyer case WSDISPLAYIO_SETPARAM:
648 1.1.4.2 bouyer case HPCFBIO_GCONF:
649 1.1.4.2 bouyer case HPCFBIO_SCONF:
650 1.1.4.2 bouyer case HPCFBIO_GDSPCONF:
651 1.1.4.2 bouyer case HPCFBIO_SDSPCONF:
652 1.1.4.2 bouyer case HPCFBIO_GOP:
653 1.1.4.2 bouyer case HPCFBIO_SOP:
654 1.1.4.2 bouyer return (*sc->sc_accessops->ioctl)(sc->sc_accessctx,
655 1.1.4.2 bouyer cmd, data, flag, p);
656 1.1.4.2 bouyer
657 1.1.4.2 bouyer default:
658 1.1.4.2 bouyer if (IOCGROUP(cmd) != 't')
659 1.1.4.2 bouyer DPRINTF(("%s(%d): hpcfb_ioctl(%lx, %lx) grp=%c num=%ld\n",
660 1.1.4.2 bouyer __FILE__, __LINE__,
661 1.1.4.2 bouyer cmd, (u_long)data, (char)IOCGROUP(cmd), cmd&0xff));
662 1.1.4.2 bouyer break;
663 1.1.4.2 bouyer }
664 1.1.4.2 bouyer
665 1.1.4.2 bouyer return (ENOTTY); /* Inappropriate ioctl for device */
666 1.1.4.2 bouyer }
667 1.1.4.2 bouyer
668 1.1.4.2 bouyer paddr_t
669 1.1.4.2 bouyer hpcfb_mmap(v, offset, prot)
670 1.1.4.2 bouyer void *v;
671 1.1.4.2 bouyer off_t offset;
672 1.1.4.2 bouyer int prot;
673 1.1.4.2 bouyer {
674 1.1.4.2 bouyer struct hpcfb_softc *sc = v;
675 1.1.4.2 bouyer
676 1.1.4.2 bouyer return (*sc->sc_accessops->mmap)(sc->sc_accessctx, offset, prot);
677 1.1.4.2 bouyer }
678 1.1.4.2 bouyer
679 1.1.4.2 bouyer static void
680 1.1.4.2 bouyer hpcfb_power(why, arg)
681 1.1.4.2 bouyer int why;
682 1.1.4.2 bouyer void *arg;
683 1.1.4.2 bouyer {
684 1.1.4.2 bouyer struct hpcfb_softc *sc = arg;
685 1.1.4.2 bouyer
686 1.1.4.2 bouyer switch (why) {
687 1.1.4.2 bouyer case PWR_STANDBY:
688 1.1.4.2 bouyer break;
689 1.1.4.2 bouyer case PWR_SOFTSUSPEND:
690 1.1.4.2 bouyer /* XXX, casting to 'struct wsdisplay_softc *' means
691 1.1.4.2 bouyer that you should not call the method here... */
692 1.1.4.2 bouyer sc->sc_screen_resumed = wsdisplay_getactivescreen(
693 1.1.4.2 bouyer (struct wsdisplay_softc *)sc->sc_wsdisplay);
694 1.1.4.2 bouyer if (wsdisplay_switch(sc->sc_wsdisplay,
695 1.1.4.2 bouyer WSDISPLAY_NULLSCREEN,
696 1.1.4.2 bouyer 1 /* waitok */) == 0) {
697 1.1.4.2 bouyer wsscreen_switchwait(
698 1.1.4.2 bouyer (struct wsdisplay_softc *)sc->sc_wsdisplay,
699 1.1.4.2 bouyer WSDISPLAY_NULLSCREEN);
700 1.1.4.2 bouyer } else {
701 1.1.4.2 bouyer sc->sc_screen_resumed = WSDISPLAY_NULLSCREEN;
702 1.1.4.2 bouyer }
703 1.1.4.2 bouyer break;
704 1.1.4.2 bouyer case PWR_SOFTRESUME:
705 1.1.4.2 bouyer if (sc->sc_screen_resumed != WSDISPLAY_NULLSCREEN)
706 1.1.4.2 bouyer wsdisplay_switch(sc->sc_wsdisplay,
707 1.1.4.2 bouyer sc->sc_screen_resumed,
708 1.1.4.2 bouyer 1 /* waitok */);
709 1.1.4.2 bouyer break;
710 1.1.4.2 bouyer }
711 1.1.4.2 bouyer }
712 1.1.4.2 bouyer
713 1.1.4.2 bouyer void
714 1.1.4.2 bouyer hpcfb_refresh_screen(sc)
715 1.1.4.2 bouyer struct hpcfb_softc *sc;
716 1.1.4.2 bouyer {
717 1.1.4.2 bouyer struct hpcfb_devconfig *dc = sc->sc_dc;
718 1.1.4.2 bouyer int x, y;
719 1.1.4.2 bouyer
720 1.1.4.2 bouyer if (dc == NULL)
721 1.1.4.2 bouyer return;
722 1.1.4.2 bouyer
723 1.1.4.2 bouyer #ifdef HPCFB_JUMP
724 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_SCROLLPENDING) {
725 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_SCROLLPENDING;
726 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_UPDATE;
727 1.1.4.2 bouyer callout_stop(&dc->dc_scroll_ch);
728 1.1.4.2 bouyer }
729 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
730 1.1.4.2 bouyer /*
731 1.1.4.2 bouyer * refresh screen
732 1.1.4.2 bouyer */
733 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_UPDATEALL;
734 1.1.4.2 bouyer x = dc->dc_curx;
735 1.1.4.2 bouyer y = dc->dc_cury;
736 1.1.4.2 bouyer if (0 <= x && 0 <= y)
737 1.1.4.2 bouyer hpcfb_cursor_raw(dc, 0, y, x); /* disable cursor */
738 1.1.4.2 bouyer /* redraw all text */
739 1.1.4.2 bouyer hpcfb_redraw(dc, 0, dc->dc_rows, 1);
740 1.1.4.2 bouyer if (0 <= x && 0 <= y)
741 1.1.4.2 bouyer hpcfb_cursor_raw(dc, 1, y, x); /* enable cursor */
742 1.1.4.2 bouyer }
743 1.1.4.2 bouyer
744 1.1.4.2 bouyer static int
745 1.1.4.2 bouyer hpcfb_alloc_screen(v, type, cookiep, curxp, curyp, attrp)
746 1.1.4.2 bouyer void *v;
747 1.1.4.2 bouyer const struct wsscreen_descr *type;
748 1.1.4.2 bouyer void **cookiep;
749 1.1.4.2 bouyer int *curxp, *curyp;
750 1.1.4.2 bouyer long *attrp;
751 1.1.4.2 bouyer {
752 1.1.4.2 bouyer struct hpcfb_softc *sc = v;
753 1.1.4.2 bouyer #ifdef HPCFB_MULTI
754 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
755 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
756 1.1.4.2 bouyer
757 1.1.4.2 bouyer DPRINTF(("%s(%d): hpcfb_alloc_screen()\n", __FILE__, __LINE__));
758 1.1.4.2 bouyer
759 1.1.4.2 bouyer #ifdef HPCFB_MULTI
760 1.1.4.2 bouyer if (!hpcfbconsole && sc->nscreens > 0) /* XXXXX */
761 1.1.4.2 bouyer return ENOMEM;
762 1.1.4.2 bouyer
763 1.1.4.2 bouyer if (sc->nscreens > HPCFB_MAX_SCREEN)
764 1.1.4.2 bouyer return (ENOMEM);
765 1.1.4.2 bouyer
766 1.1.4.2 bouyer if (sc->screens[sc->nscreens] == NULL){
767 1.1.4.2 bouyer sc->screens[sc->nscreens] =
768 1.1.4.2 bouyer malloc(sizeof(struct hpcfb_devconfig), M_DEVBUF, M_WAITOK);
769 1.1.4.2 bouyer if (sc->screens[sc->nscreens] == NULL)
770 1.1.4.2 bouyer return ENOMEM;
771 1.1.4.2 bouyer bzero(sc->screens[sc->nscreens], sizeof(struct hpcfb_devconfig));
772 1.1.4.2 bouyer }
773 1.1.4.2 bouyer dc = sc->screens[sc->nscreens];
774 1.1.4.2 bouyer dc->dc_sc = sc;
775 1.1.4.2 bouyer
776 1.1.4.2 bouyer /* copy master raster info */
777 1.1.4.2 bouyer dc->dc_rinfo = sc->sc_dc->dc_rinfo;
778 1.1.4.2 bouyer if (sc->sc_accessops->font) {
779 1.1.4.2 bouyer sc->sc_accessops->font(sc->sc_accessctx,
780 1.1.4.2 bouyer sc->sc_dc->dc_rinfo.ri_font);
781 1.1.4.2 bouyer }
782 1.1.4.2 bouyer
783 1.1.4.2 bouyer dc->dc_fbaddr = dc->dc_rinfo.ri_bits;
784 1.1.4.2 bouyer dc->dc_rows = dc->dc_rinfo.ri_rows;
785 1.1.4.2 bouyer dc->dc_cols = dc->dc_rinfo.ri_cols;
786 1.1.4.2 bouyer dc->dc_memsize = dc->dc_rinfo.ri_stride * dc->dc_rinfo.ri_height;
787 1.1.4.2 bouyer
788 1.1.4.2 bouyer dc->dc_scrno = sc->nscreens;
789 1.1.4.2 bouyer dc->dc_curx = -1;
790 1.1.4.2 bouyer dc->dc_cury = -1;
791 1.1.4.2 bouyer if (dc->dc_tvram == NULL){
792 1.1.4.2 bouyer dc->dc_tvram =
793 1.1.4.2 bouyer malloc(sizeof(struct hpcfb_tvrow)*dc->dc_rows,
794 1.1.4.2 bouyer M_DEVBUF, M_WAITOK);
795 1.1.4.2 bouyer if (dc->dc_tvram == NULL){
796 1.1.4.2 bouyer free(sc->screens[sc->nscreens], M_DEVBUF);
797 1.1.4.2 bouyer sc->screens[sc->nscreens] = NULL;
798 1.1.4.2 bouyer return ENOMEM;
799 1.1.4.2 bouyer }
800 1.1.4.2 bouyer bzero(dc->dc_tvram,
801 1.1.4.2 bouyer sizeof(struct hpcfb_tvrow)*dc->dc_rows);
802 1.1.4.2 bouyer }
803 1.1.4.2 bouyer
804 1.1.4.2 bouyer *curxp = 0;
805 1.1.4.2 bouyer *curyp = 0;
806 1.1.4.2 bouyer sc->nscreens++;
807 1.1.4.2 bouyer *cookiep = dc;
808 1.1.4.2 bouyer hpcfb_alloc_attr(*cookiep, 7, 0, 0, attrp);
809 1.1.4.2 bouyer #else /* HPCFB_MULTI */
810 1.1.4.2 bouyer if (sc->nscreens > 0)
811 1.1.4.2 bouyer return (ENOMEM);
812 1.1.4.2 bouyer *curxp = 0;
813 1.1.4.2 bouyer *curyp = 0;
814 1.1.4.2 bouyer sc->nscreens++;
815 1.1.4.2 bouyer *cookiep = &sc->sc_dc->dc_rinfo;
816 1.1.4.2 bouyer sc->sc_dc->dc_rinfo.ri_ops.alloc_attr(*cookiep,
817 1.1.4.2 bouyer 7, 0, 0, attrp);
818 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
819 1.1.4.2 bouyer return (0);
820 1.1.4.2 bouyer }
821 1.1.4.2 bouyer
822 1.1.4.2 bouyer static void
823 1.1.4.2 bouyer hpcfb_free_screen(v, cookie)
824 1.1.4.2 bouyer void *v;
825 1.1.4.2 bouyer void *cookie;
826 1.1.4.2 bouyer {
827 1.1.4.2 bouyer struct hpcfb_softc *sc = v;
828 1.1.4.2 bouyer
829 1.1.4.2 bouyer #ifdef HPCFB_MULTI
830 1.1.4.2 bouyer if (sc->nscreens == 1 && sc->sc_dc == &hpcfb_console_dc)
831 1.1.4.2 bouyer panic("hpcfb_free_screen: console");
832 1.1.4.2 bouyer sc->nscreens--;
833 1.1.4.2 bouyer #else /* HPCFB_MULTI */
834 1.1.4.2 bouyer if (sc->sc_dc == &hpcfb_console_dc)
835 1.1.4.2 bouyer panic("hpcfb_free_screen: console");
836 1.1.4.2 bouyer
837 1.1.4.2 bouyer sc->nscreens--;
838 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
839 1.1.4.2 bouyer }
840 1.1.4.2 bouyer
841 1.1.4.2 bouyer static int
842 1.1.4.2 bouyer hpcfb_show_screen(v, cookie, waitok, cb, cbarg)
843 1.1.4.2 bouyer void *v;
844 1.1.4.2 bouyer void *cookie;
845 1.1.4.2 bouyer int waitok;
846 1.1.4.2 bouyer void (*cb) __P((void *, int, int));
847 1.1.4.2 bouyer void *cbarg;
848 1.1.4.2 bouyer {
849 1.1.4.2 bouyer struct hpcfb_softc *sc = v;
850 1.1.4.2 bouyer #ifdef HPCFB_MULTI
851 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
852 1.1.4.2 bouyer struct hpcfb_devconfig *odc;
853 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
854 1.1.4.2 bouyer
855 1.1.4.2 bouyer DPRINTF(("%s(%d): hpcfb_show_screen()\n", __FILE__, __LINE__));
856 1.1.4.2 bouyer
857 1.1.4.2 bouyer #ifdef HPCFB_MULTI
858 1.1.4.2 bouyer odc = sc->sc_dc;
859 1.1.4.2 bouyer
860 1.1.4.2 bouyer if (dc == NULL || odc == dc) {
861 1.1.4.2 bouyer hpcfb_refresh_screen(sc);
862 1.1.4.2 bouyer return 0;
863 1.1.4.2 bouyer }
864 1.1.4.2 bouyer
865 1.1.4.2 bouyer sc->sc_wantedscreen = cookie;
866 1.1.4.2 bouyer sc->sc_switchcb = cb;
867 1.1.4.2 bouyer sc->sc_switchcbarg = cbarg;
868 1.1.4.2 bouyer if (cb) {
869 1.1.4.2 bouyer callout_reset(&sc->sc_switch_callout, 0,
870 1.1.4.2 bouyer (void(*)(void *))hpcfb_doswitch, sc);
871 1.1.4.2 bouyer return EAGAIN;
872 1.1.4.2 bouyer }
873 1.1.4.2 bouyer
874 1.1.4.2 bouyer hpcfb_doswitch(sc);
875 1.1.4.2 bouyer return 0;
876 1.1.4.2 bouyer #else /* HPCFB_MULTI */
877 1.1.4.2 bouyer /* redraw screen image */
878 1.1.4.2 bouyer hpcfb_refresh_screen(sc);
879 1.1.4.2 bouyer
880 1.1.4.2 bouyer return (0);
881 1.1.4.2 bouyer #endif /* HPCFB_MULTI */
882 1.1.4.2 bouyer }
883 1.1.4.2 bouyer
884 1.1.4.2 bouyer void
885 1.1.4.2 bouyer hpcfb_doswitch(sc)
886 1.1.4.2 bouyer struct hpcfb_softc *sc;
887 1.1.4.2 bouyer {
888 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
889 1.1.4.2 bouyer struct hpcfb_devconfig *odc;
890 1.1.4.2 bouyer
891 1.1.4.2 bouyer odc = sc->sc_dc;
892 1.1.4.2 bouyer dc = sc->sc_wantedscreen;
893 1.1.4.2 bouyer
894 1.1.4.2 bouyer if (!dc) {
895 1.1.4.2 bouyer (*sc->sc_switchcb)(sc->sc_switchcbarg, EIO, 0);
896 1.1.4.2 bouyer return;
897 1.1.4.2 bouyer }
898 1.1.4.2 bouyer
899 1.1.4.2 bouyer if (odc == dc)
900 1.1.4.2 bouyer return;
901 1.1.4.2 bouyer
902 1.1.4.2 bouyer if (odc) {
903 1.1.4.2 bouyer #ifdef HPCFB_JUMP
904 1.1.4.2 bouyer odc->dc_state |= HPCFB_DC_ABORT;
905 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
906 1.1.4.2 bouyer
907 1.1.4.2 bouyer if (odc->dc_curx >= 0 && odc->dc_cury >= 0)
908 1.1.4.2 bouyer hpcfb_cursor_raw(odc, 0, odc->dc_cury, odc->dc_curx);
909 1.1.4.2 bouyer /* disable cursor */
910 1.1.4.2 bouyer /* disable old screen */
911 1.1.4.2 bouyer odc->dc_state &= ~HPCFB_DC_CURRENT;
912 1.1.4.2 bouyer odc->dc_rinfo.ri_bits = NULL;
913 1.1.4.2 bouyer }
914 1.1.4.2 bouyer /* switch screen to new one */
915 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_CURRENT;
916 1.1.4.2 bouyer dc->dc_rinfo.ri_bits = dc->dc_fbaddr;
917 1.1.4.2 bouyer sc->sc_dc = dc;
918 1.1.4.2 bouyer
919 1.1.4.2 bouyer /* redraw screen image */
920 1.1.4.2 bouyer hpcfb_refresh_screen(sc);
921 1.1.4.2 bouyer
922 1.1.4.2 bouyer sc->sc_wantedscreen = NULL;
923 1.1.4.2 bouyer if (sc->sc_switchcb)
924 1.1.4.2 bouyer (*sc->sc_switchcb)(sc->sc_switchcbarg, 0, 0);
925 1.1.4.2 bouyer
926 1.1.4.2 bouyer return;
927 1.1.4.2 bouyer }
928 1.1.4.2 bouyer
929 1.1.4.2 bouyer static void
930 1.1.4.2 bouyer hpcfb_pollc(v, on)
931 1.1.4.2 bouyer void *v;
932 1.1.4.2 bouyer int on;
933 1.1.4.2 bouyer {
934 1.1.4.2 bouyer struct hpcfb_softc *sc = v;
935 1.1.4.2 bouyer
936 1.1.4.2 bouyer if (sc == NULL)
937 1.1.4.2 bouyer return;
938 1.1.4.2 bouyer sc->sc_polling = on;
939 1.1.4.2 bouyer if (sc->sc_accessops->iodone)
940 1.1.4.2 bouyer (*sc->sc_accessops->iodone)(sc->sc_accessctx);
941 1.1.4.2 bouyer if (on) {
942 1.1.4.2 bouyer hpcfb_refresh_screen(sc);
943 1.1.4.2 bouyer if (sc->sc_accessops->iodone)
944 1.1.4.2 bouyer (*sc->sc_accessops->iodone)(sc->sc_accessctx);
945 1.1.4.2 bouyer }
946 1.1.4.2 bouyer
947 1.1.4.2 bouyer return;
948 1.1.4.2 bouyer }
949 1.1.4.2 bouyer
950 1.1.4.2 bouyer /*
951 1.1.4.2 bouyer * cursor
952 1.1.4.2 bouyer */
953 1.1.4.2 bouyer void
954 1.1.4.2 bouyer hpcfb_cursor(cookie, on, row, col)
955 1.1.4.2 bouyer void *cookie;
956 1.1.4.2 bouyer int on, row, col;
957 1.1.4.2 bouyer {
958 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
959 1.1.4.2 bouyer
960 1.1.4.2 bouyer if (on) {
961 1.1.4.2 bouyer dc->dc_curx = col;
962 1.1.4.2 bouyer dc->dc_cury = row;
963 1.1.4.2 bouyer } else {
964 1.1.4.2 bouyer dc->dc_curx = -1;
965 1.1.4.2 bouyer dc->dc_cury = -1;
966 1.1.4.2 bouyer }
967 1.1.4.2 bouyer
968 1.1.4.2 bouyer hpcfb_cursor_raw(cookie, on, row, col);
969 1.1.4.2 bouyer }
970 1.1.4.2 bouyer
971 1.1.4.2 bouyer void
972 1.1.4.2 bouyer hpcfb_cursor_raw(cookie, on, row, col)
973 1.1.4.2 bouyer void *cookie;
974 1.1.4.2 bouyer int on, row, col;
975 1.1.4.2 bouyer {
976 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
977 1.1.4.2 bouyer struct hpcfb_softc *sc = dc->dc_sc;
978 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
979 1.1.4.2 bouyer int curwidth, curheight;
980 1.1.4.2 bouyer int xoff, yoff;
981 1.1.4.2 bouyer
982 1.1.4.2 bouyer #ifdef HPCFB_JUMP
983 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_SCROLLPENDING) {
984 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATE;
985 1.1.4.2 bouyer return;
986 1.1.4.2 bouyer }
987 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
988 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_CURRENT) == 0)
989 1.1.4.2 bouyer return;
990 1.1.4.2 bouyer
991 1.1.4.2 bouyer if (ri->ri_bits == NULL)
992 1.1.4.2 bouyer return;
993 1.1.4.2 bouyer
994 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_DRAWING;
995 1.1.4.2 bouyer if (sc && sc->sc_accessops->cursor) {
996 1.1.4.2 bouyer xoff = col * ri->ri_font->fontwidth;
997 1.1.4.2 bouyer yoff = row * ri->ri_font->fontheight;
998 1.1.4.2 bouyer curheight = ri->ri_font->fontheight;
999 1.1.4.2 bouyer curwidth = ri->ri_font->fontwidth;
1000 1.1.4.2 bouyer (*sc->sc_accessops->cursor)(sc->sc_accessctx,
1001 1.1.4.2 bouyer on, xoff, yoff, curwidth, curheight);
1002 1.1.4.2 bouyer } else
1003 1.1.4.2 bouyer rasops_emul.cursor(ri, on, row, col);
1004 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_DRAWING;
1005 1.1.4.2 bouyer }
1006 1.1.4.2 bouyer
1007 1.1.4.2 bouyer /*
1008 1.1.4.2 bouyer * mapchar
1009 1.1.4.2 bouyer */
1010 1.1.4.2 bouyer int
1011 1.1.4.2 bouyer hpcfb_mapchar(cookie, c, cp)
1012 1.1.4.2 bouyer void *cookie;
1013 1.1.4.2 bouyer int c;
1014 1.1.4.2 bouyer unsigned int *cp;
1015 1.1.4.2 bouyer {
1016 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1017 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1018 1.1.4.2 bouyer
1019 1.1.4.2 bouyer return rasops_emul.mapchar(ri, c, cp);
1020 1.1.4.2 bouyer }
1021 1.1.4.2 bouyer
1022 1.1.4.2 bouyer /*
1023 1.1.4.2 bouyer * putchar
1024 1.1.4.2 bouyer */
1025 1.1.4.2 bouyer void
1026 1.1.4.2 bouyer hpcfb_tv_putchar(dc, row, col, uc, attr)
1027 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
1028 1.1.4.2 bouyer int row, col;
1029 1.1.4.2 bouyer u_int uc;
1030 1.1.4.2 bouyer long attr;
1031 1.1.4.2 bouyer {
1032 1.1.4.2 bouyer struct hpcfb_tvrow *vscn = dc->dc_tvram;
1033 1.1.4.2 bouyer struct hpcfb_vchar *vc = &vscn[row].col[col];
1034 1.1.4.2 bouyer struct hpcfb_vchar *vcb;
1035 1.1.4.2 bouyer
1036 1.1.4.2 bouyer if (vscn == 0)
1037 1.1.4.2 bouyer return;
1038 1.1.4.2 bouyer
1039 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_TDRAWING;
1040 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1041 1.1.4.2 bouyer if (row < dc->dc_min_row)
1042 1.1.4.2 bouyer dc->dc_min_row = row;
1043 1.1.4.2 bouyer if (row > dc->dc_max_row)
1044 1.1.4.2 bouyer dc->dc_max_row = row;
1045 1.1.4.2 bouyer
1046 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1047 1.1.4.2 bouyer if (vscn[row].maxcol +1 == col)
1048 1.1.4.2 bouyer vscn[row].maxcol = col;
1049 1.1.4.2 bouyer else if (vscn[row].maxcol < col) {
1050 1.1.4.2 bouyer vcb = &vscn[row].col[vscn[row].maxcol+1];
1051 1.1.4.2 bouyer bzero(vcb, sizeof(struct hpcfb_vchar)*(col-vscn[row].maxcol-1));
1052 1.1.4.2 bouyer vscn[row].maxcol = col;
1053 1.1.4.2 bouyer }
1054 1.1.4.2 bouyer vc->c = uc;
1055 1.1.4.2 bouyer vc->attr = attr;
1056 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_TDRAWING;
1057 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1058 1.1.4.2 bouyer hpcfb_check_update(dc);
1059 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1060 1.1.4.2 bouyer }
1061 1.1.4.2 bouyer
1062 1.1.4.2 bouyer void
1063 1.1.4.2 bouyer hpcfb_putchar(cookie, row, col, uc, attr)
1064 1.1.4.2 bouyer void *cookie;
1065 1.1.4.2 bouyer int row, col;
1066 1.1.4.2 bouyer u_int uc;
1067 1.1.4.2 bouyer long attr;
1068 1.1.4.2 bouyer {
1069 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1070 1.1.4.2 bouyer struct hpcfb_softc *sc = dc->dc_sc;
1071 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1072 1.1.4.2 bouyer int xoff;
1073 1.1.4.2 bouyer int yoff;
1074 1.1.4.2 bouyer int fclr, uclr;
1075 1.1.4.2 bouyer struct wsdisplay_font *font;
1076 1.1.4.2 bouyer
1077 1.1.4.2 bouyer hpcfb_tv_putchar(dc, row, col, uc, attr);
1078 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1079 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_SCROLLPENDING) {
1080 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATE;
1081 1.1.4.2 bouyer return;
1082 1.1.4.2 bouyer }
1083 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1084 1.1.4.2 bouyer
1085 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_CURRENT) == 0)
1086 1.1.4.2 bouyer return;
1087 1.1.4.2 bouyer if (ri->ri_bits == NULL)
1088 1.1.4.2 bouyer return;
1089 1.1.4.2 bouyer
1090 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_DRAWING;
1091 1.1.4.2 bouyer if (sc && sc->sc_accessops->putchar
1092 1.1.4.2 bouyer && (dc->dc_state&HPCFB_DC_CURRENT)) {
1093 1.1.4.2 bouyer font = ri->ri_font;
1094 1.1.4.2 bouyer yoff = row * ri->ri_font->fontheight;
1095 1.1.4.2 bouyer xoff = col * ri->ri_font->fontwidth;
1096 1.1.4.2 bouyer fclr = ri->ri_devcmap[((u_int)attr >> 24) & 15];
1097 1.1.4.2 bouyer uclr = ri->ri_devcmap[((u_int)attr >> 16) & 15];
1098 1.1.4.2 bouyer
1099 1.1.4.2 bouyer (*sc->sc_accessops->putchar)(sc->sc_accessctx,
1100 1.1.4.2 bouyer xoff, yoff, font, fclr, uclr, uc, attr);
1101 1.1.4.2 bouyer } else
1102 1.1.4.2 bouyer rasops_emul.putchar(ri, row, col, uc, attr);
1103 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_DRAWING;
1104 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1105 1.1.4.2 bouyer hpcfb_check_update(dc);
1106 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1107 1.1.4.2 bouyer }
1108 1.1.4.2 bouyer
1109 1.1.4.2 bouyer /*
1110 1.1.4.2 bouyer * copycols
1111 1.1.4.2 bouyer */
1112 1.1.4.2 bouyer void
1113 1.1.4.2 bouyer hpcfb_tv_copycols(dc, row, srccol, dstcol, ncols)
1114 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
1115 1.1.4.2 bouyer int row, srccol, dstcol, ncols;
1116 1.1.4.2 bouyer {
1117 1.1.4.2 bouyer struct hpcfb_tvrow *vscn = dc->dc_tvram;
1118 1.1.4.2 bouyer struct hpcfb_vchar *svc = &vscn[row].col[srccol];
1119 1.1.4.2 bouyer struct hpcfb_vchar *dvc = &vscn[row].col[dstcol];
1120 1.1.4.2 bouyer
1121 1.1.4.2 bouyer if (vscn == 0)
1122 1.1.4.2 bouyer return;
1123 1.1.4.2 bouyer
1124 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_TDRAWING;
1125 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1126 1.1.4.2 bouyer if (row < dc->dc_min_row)
1127 1.1.4.2 bouyer dc->dc_min_row = row;
1128 1.1.4.2 bouyer if (row > dc->dc_max_row)
1129 1.1.4.2 bouyer dc->dc_max_row = row;
1130 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1131 1.1.4.2 bouyer
1132 1.1.4.2 bouyer bcopy(svc, dvc, ncols*sizeof(struct hpcfb_vchar));
1133 1.1.4.2 bouyer if (vscn[row].maxcol < srccol+ncols-1)
1134 1.1.4.2 bouyer vscn[row].maxcol = srccol+ncols-1;
1135 1.1.4.2 bouyer if (vscn[row].maxcol < dstcol+ncols-1)
1136 1.1.4.2 bouyer vscn[row].maxcol = dstcol+ncols-1;
1137 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_TDRAWING;
1138 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1139 1.1.4.2 bouyer hpcfb_check_update(dc);
1140 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1141 1.1.4.2 bouyer }
1142 1.1.4.2 bouyer
1143 1.1.4.2 bouyer void
1144 1.1.4.2 bouyer hpcfb_copycols(cookie, row, srccol, dstcol, ncols)
1145 1.1.4.2 bouyer void *cookie;
1146 1.1.4.2 bouyer int row, srccol, dstcol, ncols;
1147 1.1.4.2 bouyer {
1148 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1149 1.1.4.2 bouyer struct hpcfb_softc *sc = dc->dc_sc;
1150 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1151 1.1.4.2 bouyer int srcxoff,dstxoff;
1152 1.1.4.2 bouyer int srcyoff,dstyoff;
1153 1.1.4.2 bouyer int height, width;
1154 1.1.4.2 bouyer
1155 1.1.4.2 bouyer hpcfb_tv_copycols(dc, row, srccol, dstcol, ncols);
1156 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1157 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_SCROLLPENDING) {
1158 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATE;
1159 1.1.4.2 bouyer return;
1160 1.1.4.2 bouyer }
1161 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1162 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_CURRENT) == 0)
1163 1.1.4.2 bouyer return;
1164 1.1.4.2 bouyer if (ri->ri_bits == NULL)
1165 1.1.4.2 bouyer return;
1166 1.1.4.2 bouyer
1167 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_DRAWING;
1168 1.1.4.2 bouyer if (sc && sc->sc_accessops->bitblit
1169 1.1.4.2 bouyer && (dc->dc_state&HPCFB_DC_CURRENT)) {
1170 1.1.4.2 bouyer srcxoff = srccol * ri->ri_font->fontwidth;
1171 1.1.4.2 bouyer srcyoff = row * ri->ri_font->fontheight;
1172 1.1.4.2 bouyer dstxoff = dstcol * ri->ri_font->fontwidth;
1173 1.1.4.2 bouyer dstyoff = row * ri->ri_font->fontheight;
1174 1.1.4.2 bouyer width = ncols * ri->ri_font->fontwidth;
1175 1.1.4.2 bouyer height = ri->ri_font->fontheight;
1176 1.1.4.2 bouyer (*sc->sc_accessops->bitblit)(sc->sc_accessctx,
1177 1.1.4.2 bouyer srcxoff, srcyoff, dstxoff, dstyoff, height, width);
1178 1.1.4.2 bouyer } else
1179 1.1.4.2 bouyer rasops_emul.copycols(ri, row, srccol, dstcol, ncols);
1180 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_DRAWING;
1181 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1182 1.1.4.2 bouyer hpcfb_check_update(dc);
1183 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1184 1.1.4.2 bouyer }
1185 1.1.4.2 bouyer
1186 1.1.4.2 bouyer
1187 1.1.4.2 bouyer /*
1188 1.1.4.2 bouyer * erasecols
1189 1.1.4.2 bouyer */
1190 1.1.4.2 bouyer void
1191 1.1.4.2 bouyer hpcfb_tv_erasecols(dc, row, startcol, ncols, attr)
1192 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
1193 1.1.4.2 bouyer int row, startcol, ncols;
1194 1.1.4.2 bouyer long attr;
1195 1.1.4.2 bouyer {
1196 1.1.4.2 bouyer struct hpcfb_tvrow *vscn = dc->dc_tvram;
1197 1.1.4.2 bouyer
1198 1.1.4.2 bouyer if (vscn == 0)
1199 1.1.4.2 bouyer return;
1200 1.1.4.2 bouyer
1201 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_TDRAWING;
1202 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1203 1.1.4.2 bouyer if (row < dc->dc_min_row)
1204 1.1.4.2 bouyer dc->dc_min_row = row;
1205 1.1.4.2 bouyer if (row > dc->dc_max_row)
1206 1.1.4.2 bouyer dc->dc_max_row = row;
1207 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1208 1.1.4.2 bouyer
1209 1.1.4.2 bouyer vscn[row].maxcol = startcol-1;
1210 1.1.4.2 bouyer if (vscn[row].spacecol < startcol+ncols-1)
1211 1.1.4.2 bouyer vscn[row].spacecol = startcol+ncols-1;
1212 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_TDRAWING;
1213 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1214 1.1.4.2 bouyer hpcfb_check_update(dc);
1215 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1216 1.1.4.2 bouyer }
1217 1.1.4.2 bouyer
1218 1.1.4.2 bouyer void
1219 1.1.4.2 bouyer hpcfb_erasecols(cookie, row, startcol, ncols, attr)
1220 1.1.4.2 bouyer void *cookie;
1221 1.1.4.2 bouyer int row, startcol, ncols;
1222 1.1.4.2 bouyer long attr;
1223 1.1.4.2 bouyer {
1224 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1225 1.1.4.2 bouyer struct hpcfb_softc *sc = dc->dc_sc;
1226 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1227 1.1.4.2 bouyer int xoff, yoff;
1228 1.1.4.2 bouyer int width, height;
1229 1.1.4.2 bouyer
1230 1.1.4.2 bouyer hpcfb_tv_erasecols(dc, row, startcol, ncols, attr);
1231 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1232 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_SCROLLPENDING) {
1233 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATE;
1234 1.1.4.2 bouyer return;
1235 1.1.4.2 bouyer }
1236 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1237 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_CURRENT) == 0)
1238 1.1.4.2 bouyer return;
1239 1.1.4.2 bouyer if (ri->ri_bits == NULL)
1240 1.1.4.2 bouyer return;
1241 1.1.4.2 bouyer
1242 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_DRAWING;
1243 1.1.4.2 bouyer if (sc && sc->sc_accessops->erase
1244 1.1.4.2 bouyer && (dc->dc_state&HPCFB_DC_CURRENT)) {
1245 1.1.4.2 bouyer xoff = startcol * ri->ri_font->fontwidth;
1246 1.1.4.2 bouyer yoff = row * ri->ri_font->fontheight;
1247 1.1.4.2 bouyer width = ncols * ri->ri_font->fontwidth;
1248 1.1.4.2 bouyer height = ri->ri_font->fontheight;
1249 1.1.4.2 bouyer (*sc->sc_accessops->erase)(sc->sc_accessctx,
1250 1.1.4.2 bouyer xoff, yoff, height, width, attr);
1251 1.1.4.2 bouyer } else
1252 1.1.4.2 bouyer rasops_emul.erasecols(ri, row, startcol, ncols, attr);
1253 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_DRAWING;
1254 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1255 1.1.4.2 bouyer hpcfb_check_update(dc);
1256 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1257 1.1.4.2 bouyer }
1258 1.1.4.2 bouyer
1259 1.1.4.2 bouyer /*
1260 1.1.4.2 bouyer * Copy rows.
1261 1.1.4.2 bouyer */
1262 1.1.4.2 bouyer void
1263 1.1.4.2 bouyer hpcfb_tv_copyrows(dc, src, dst, num)
1264 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
1265 1.1.4.2 bouyer int src, dst, num;
1266 1.1.4.2 bouyer {
1267 1.1.4.2 bouyer struct hpcfb_tvrow *vscn = dc->dc_tvram;
1268 1.1.4.2 bouyer struct hpcfb_tvrow *svc = &vscn[src];
1269 1.1.4.2 bouyer struct hpcfb_tvrow *dvc = &vscn[dst];
1270 1.1.4.2 bouyer int i;
1271 1.1.4.2 bouyer int d;
1272 1.1.4.2 bouyer
1273 1.1.4.2 bouyer if (vscn == 0)
1274 1.1.4.2 bouyer return;
1275 1.1.4.2 bouyer
1276 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_TDRAWING;
1277 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1278 1.1.4.2 bouyer if (dst < dc->dc_min_row)
1279 1.1.4.2 bouyer dc->dc_min_row = dst;
1280 1.1.4.2 bouyer if (dst + num > dc->dc_max_row)
1281 1.1.4.2 bouyer dc->dc_max_row = dst + num -1;
1282 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1283 1.1.4.2 bouyer
1284 1.1.4.2 bouyer if (svc > dvc)
1285 1.1.4.2 bouyer d = 1;
1286 1.1.4.2 bouyer else if (svc < dvc) {
1287 1.1.4.2 bouyer svc += num-1;
1288 1.1.4.2 bouyer dvc += num-1;
1289 1.1.4.2 bouyer d = -1;
1290 1.1.4.2 bouyer } else {
1291 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_TDRAWING;
1292 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1293 1.1.4.2 bouyer hpcfb_check_update(dc);
1294 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1295 1.1.4.2 bouyer return;
1296 1.1.4.2 bouyer }
1297 1.1.4.2 bouyer
1298 1.1.4.2 bouyer for (i = 0; i < num; i++) {
1299 1.1.4.2 bouyer bcopy(&svc->col[0], &dvc->col[0], sizeof(struct hpcfb_vchar)*(svc->maxcol+1));
1300 1.1.4.2 bouyer if (svc->maxcol < dvc->maxcol && dvc->spacecol < dvc->maxcol)
1301 1.1.4.2 bouyer dvc->spacecol = dvc->maxcol;
1302 1.1.4.2 bouyer dvc->maxcol = svc->maxcol;
1303 1.1.4.2 bouyer svc+=d;
1304 1.1.4.2 bouyer dvc+=d;
1305 1.1.4.2 bouyer }
1306 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_TDRAWING;
1307 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1308 1.1.4.2 bouyer hpcfb_check_update(dc);
1309 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1310 1.1.4.2 bouyer }
1311 1.1.4.2 bouyer
1312 1.1.4.2 bouyer void
1313 1.1.4.2 bouyer hpcfb_redraw(cookie, row, num, all)
1314 1.1.4.2 bouyer void *cookie;
1315 1.1.4.2 bouyer int row, num;
1316 1.1.4.2 bouyer int all;
1317 1.1.4.2 bouyer {
1318 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1319 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1320 1.1.4.2 bouyer int cols;
1321 1.1.4.2 bouyer struct hpcfb_tvrow *vscn = dc->dc_tvram;
1322 1.1.4.2 bouyer struct hpcfb_vchar *svc;
1323 1.1.4.2 bouyer int i, j;
1324 1.1.4.2 bouyer
1325 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1326 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_SCROLLPENDING) {
1327 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATE;
1328 1.1.4.2 bouyer return;
1329 1.1.4.2 bouyer }
1330 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1331 1.1.4.2 bouyer if (dc->dc_sc != NULL
1332 1.1.4.2 bouyer && !dc->dc_sc->sc_polling
1333 1.1.4.2 bouyer && dc->dc_sc->sc_mapping)
1334 1.1.4.2 bouyer return;
1335 1.1.4.2 bouyer
1336 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_ABORT;
1337 1.1.4.2 bouyer
1338 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_CURRENT) == 0)
1339 1.1.4.2 bouyer return;
1340 1.1.4.2 bouyer if (vscn == 0)
1341 1.1.4.2 bouyer return;
1342 1.1.4.2 bouyer
1343 1.1.4.2 bouyer if (ri->ri_bits == NULL)
1344 1.1.4.2 bouyer return;
1345 1.1.4.2 bouyer
1346 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_DRAWING;
1347 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_TDRAWING;
1348 1.1.4.2 bouyer for (i = 0; i < num; i++) {
1349 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_ABORT)
1350 1.1.4.2 bouyer break;
1351 1.1.4.2 bouyer cols = vscn[row+i].maxcol;
1352 1.1.4.2 bouyer for (j = 0; j <= cols; j++) {
1353 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_ABORT)
1354 1.1.4.2 bouyer continue;
1355 1.1.4.2 bouyer svc = &vscn[row+i].col[j];
1356 1.1.4.2 bouyer rasops_emul.putchar(ri, row + i, j, svc->c, svc->attr);
1357 1.1.4.2 bouyer }
1358 1.1.4.2 bouyer if (all)
1359 1.1.4.2 bouyer cols = dc->dc_cols-1;
1360 1.1.4.2 bouyer else
1361 1.1.4.2 bouyer cols = vscn[row+i].spacecol;
1362 1.1.4.2 bouyer for (; j <= cols; j++) {
1363 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_ABORT)
1364 1.1.4.2 bouyer continue;
1365 1.1.4.2 bouyer rasops_emul.putchar(ri, row + i, j, ' ', 0);
1366 1.1.4.2 bouyer }
1367 1.1.4.2 bouyer vscn[row+i].spacecol = 0;
1368 1.1.4.2 bouyer }
1369 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_ABORT)
1370 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_ABORT;
1371 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_DRAWING;
1372 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_TDRAWING;
1373 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1374 1.1.4.2 bouyer hpcfb_check_update(dc);
1375 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1376 1.1.4.2 bouyer }
1377 1.1.4.2 bouyer
1378 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1379 1.1.4.2 bouyer void
1380 1.1.4.2 bouyer hpcfb_update(v)
1381 1.1.4.2 bouyer void *v;
1382 1.1.4.2 bouyer {
1383 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)v;
1384 1.1.4.2 bouyer
1385 1.1.4.2 bouyer /* callout_stop(&dc->dc_scroll_ch); */
1386 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_SCROLLPENDING;
1387 1.1.4.2 bouyer if (dc->dc_curx > 0 && dc->dc_cury > 0)
1388 1.1.4.2 bouyer hpcfb_cursor_raw(dc, 0, dc->dc_cury, dc->dc_curx);
1389 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_UPDATEALL)) {
1390 1.1.4.2 bouyer hpcfb_redraw(dc, 0, dc->dc_rows, 1);
1391 1.1.4.2 bouyer dc->dc_state &= ~(HPCFB_DC_UPDATE|HPCFB_DC_UPDATEALL);
1392 1.1.4.2 bouyer } else if ((dc->dc_state&HPCFB_DC_UPDATE)) {
1393 1.1.4.2 bouyer hpcfb_redraw(dc, dc->dc_min_row,
1394 1.1.4.2 bouyer dc->dc_max_row - dc->dc_min_row, 0);
1395 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_UPDATE;
1396 1.1.4.2 bouyer } else {
1397 1.1.4.2 bouyer hpcfb_redraw(dc, dc->dc_scroll_dst, dc->dc_scroll_num, 0);
1398 1.1.4.2 bouyer }
1399 1.1.4.2 bouyer if (dc->dc_curx > 0 && dc->dc_cury > 0)
1400 1.1.4.2 bouyer hpcfb_cursor_raw(dc, 1, dc->dc_cury, dc->dc_curx);
1401 1.1.4.2 bouyer }
1402 1.1.4.2 bouyer
1403 1.1.4.2 bouyer void
1404 1.1.4.2 bouyer hpcfb_do_scroll(v)
1405 1.1.4.2 bouyer void *v;
1406 1.1.4.2 bouyer {
1407 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)v;
1408 1.1.4.2 bouyer
1409 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_SCRTHREAD;
1410 1.1.4.2 bouyer if (dc->dc_state&(HPCFB_DC_DRAWING|HPCFB_DC_TDRAWING))
1411 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_SCRDELAY;
1412 1.1.4.2 bouyer else if (dc->dc_sc != NULL && dc->dc_sc->sc_thread)
1413 1.1.4.2 bouyer wakeup(dc->dc_sc);
1414 1.1.4.2 bouyer else if (dc->dc_sc != NULL && !dc->dc_sc->sc_mapping) {
1415 1.1.4.2 bouyer /* draw only EMUL mode */
1416 1.1.4.2 bouyer hpcfb_update(v);
1417 1.1.4.2 bouyer }
1418 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_SCRTHREAD;
1419 1.1.4.2 bouyer }
1420 1.1.4.2 bouyer
1421 1.1.4.2 bouyer void
1422 1.1.4.2 bouyer hpcfb_check_update(v)
1423 1.1.4.2 bouyer void *v;
1424 1.1.4.2 bouyer {
1425 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)v;
1426 1.1.4.2 bouyer
1427 1.1.4.2 bouyer if (dc->dc_sc != NULL
1428 1.1.4.2 bouyer && dc->dc_sc->sc_polling
1429 1.1.4.2 bouyer && (dc->dc_state&HPCFB_DC_SCROLLPENDING)){
1430 1.1.4.2 bouyer callout_stop(&dc->dc_scroll_ch);
1431 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_SCRDELAY;
1432 1.1.4.2 bouyer hpcfb_update(v);
1433 1.1.4.2 bouyer }
1434 1.1.4.2 bouyer else if (dc->dc_state&HPCFB_DC_SCRDELAY){
1435 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_SCRDELAY;
1436 1.1.4.2 bouyer hpcfb_update(v);
1437 1.1.4.2 bouyer } else if (dc->dc_state&HPCFB_DC_UPDATEALL){
1438 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_UPDATEALL;
1439 1.1.4.2 bouyer hpcfb_update(v);
1440 1.1.4.2 bouyer }
1441 1.1.4.2 bouyer }
1442 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1443 1.1.4.2 bouyer
1444 1.1.4.2 bouyer void
1445 1.1.4.2 bouyer hpcfb_copyrows(cookie, src, dst, num)
1446 1.1.4.2 bouyer void *cookie;
1447 1.1.4.2 bouyer int src, dst, num;
1448 1.1.4.2 bouyer {
1449 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1450 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1451 1.1.4.2 bouyer struct hpcfb_softc *sc = dc->dc_sc;
1452 1.1.4.2 bouyer int srcyoff, dstyoff;
1453 1.1.4.2 bouyer int width, height;
1454 1.1.4.2 bouyer
1455 1.1.4.2 bouyer hpcfb_tv_copyrows(cookie, src, dst, num);
1456 1.1.4.2 bouyer
1457 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_CURRENT) == 0)
1458 1.1.4.2 bouyer return;
1459 1.1.4.2 bouyer if (ri->ri_bits == NULL)
1460 1.1.4.2 bouyer return;
1461 1.1.4.2 bouyer
1462 1.1.4.2 bouyer if (sc && sc->sc_accessops->bitblit
1463 1.1.4.2 bouyer && (dc->dc_state&HPCFB_DC_CURRENT)) {
1464 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_DRAWING;
1465 1.1.4.2 bouyer srcyoff = src * ri->ri_font->fontheight;
1466 1.1.4.2 bouyer dstyoff = dst * ri->ri_font->fontheight;
1467 1.1.4.2 bouyer width = dc->dc_cols * ri->ri_font->fontwidth;
1468 1.1.4.2 bouyer height = num * ri->ri_font->fontheight;
1469 1.1.4.2 bouyer (*sc->sc_accessops->bitblit)(sc->sc_accessctx,
1470 1.1.4.2 bouyer 0, srcyoff, 0, dstyoff, height, width);
1471 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_DRAWING;
1472 1.1.4.2 bouyer }
1473 1.1.4.2 bouyer else {
1474 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1475 1.1.4.2 bouyer if (sc && sc->sc_polling) {
1476 1.1.4.2 bouyer hpcfb_check_update(dc);
1477 1.1.4.2 bouyer } else if ((dc->dc_state&HPCFB_DC_SCROLLPENDING) == 0) {
1478 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_SCROLLPENDING;
1479 1.1.4.2 bouyer dc->dc_scroll = 1;
1480 1.1.4.2 bouyer dc->dc_scroll_src = src;
1481 1.1.4.2 bouyer dc->dc_scroll_dst = dst;
1482 1.1.4.2 bouyer dc->dc_scroll_num = num;
1483 1.1.4.2 bouyer callout_reset(&dc->dc_scroll_ch, hz/100, &hpcfb_do_scroll, dc);
1484 1.1.4.2 bouyer return;
1485 1.1.4.2 bouyer } else if (dc->dc_scroll++ < dc->dc_rows/HPCFB_MAX_JUMP) {
1486 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATE;
1487 1.1.4.2 bouyer return;
1488 1.1.4.2 bouyer } else {
1489 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_SCROLLPENDING;
1490 1.1.4.2 bouyer callout_stop(&dc->dc_scroll_ch);
1491 1.1.4.2 bouyer }
1492 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_UPDATE) {
1493 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_UPDATE;
1494 1.1.4.2 bouyer hpcfb_redraw(cookie, dc->dc_min_row,
1495 1.1.4.2 bouyer dc->dc_max_row - dc->dc_min_row, 0);
1496 1.1.4.2 bouyer dc->dc_max_row = 0;
1497 1.1.4.2 bouyer dc->dc_min_row = dc->dc_rows;
1498 1.1.4.2 bouyer if (dc->dc_curx > 0 && dc->dc_cury > 0)
1499 1.1.4.2 bouyer hpcfb_cursor(dc, 1, dc->dc_cury, dc->dc_curx);
1500 1.1.4.2 bouyer return;
1501 1.1.4.2 bouyer }
1502 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1503 1.1.4.2 bouyer hpcfb_redraw(cookie, dst, num, 0);
1504 1.1.4.2 bouyer }
1505 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1506 1.1.4.2 bouyer hpcfb_check_update(dc);
1507 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1508 1.1.4.2 bouyer }
1509 1.1.4.2 bouyer
1510 1.1.4.2 bouyer /*
1511 1.1.4.2 bouyer * eraserows
1512 1.1.4.2 bouyer */
1513 1.1.4.2 bouyer void
1514 1.1.4.2 bouyer hpcfb_tv_eraserows(dc, row, nrow, attr)
1515 1.1.4.2 bouyer struct hpcfb_devconfig *dc;
1516 1.1.4.2 bouyer int row, nrow;
1517 1.1.4.2 bouyer long attr;
1518 1.1.4.2 bouyer {
1519 1.1.4.2 bouyer struct hpcfb_tvrow *vscn = dc->dc_tvram;
1520 1.1.4.2 bouyer int cols;
1521 1.1.4.2 bouyer int i;
1522 1.1.4.2 bouyer
1523 1.1.4.2 bouyer if (vscn == 0)
1524 1.1.4.2 bouyer return;
1525 1.1.4.2 bouyer
1526 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_TDRAWING;
1527 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_TDRAWING;
1528 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1529 1.1.4.2 bouyer if (row < dc->dc_min_row)
1530 1.1.4.2 bouyer dc->dc_min_row = row;
1531 1.1.4.2 bouyer if (row + nrow > dc->dc_max_row)
1532 1.1.4.2 bouyer dc->dc_max_row = row + nrow;
1533 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1534 1.1.4.2 bouyer
1535 1.1.4.2 bouyer for (i = 0; i < nrow; i++) {
1536 1.1.4.2 bouyer cols = vscn[row+i].maxcol;
1537 1.1.4.2 bouyer if (vscn[row+i].spacecol < cols)
1538 1.1.4.2 bouyer vscn[row+i].spacecol = cols;
1539 1.1.4.2 bouyer vscn[row+i].maxcol = -1;
1540 1.1.4.2 bouyer }
1541 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1542 1.1.4.2 bouyer hpcfb_check_update(dc);
1543 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1544 1.1.4.2 bouyer }
1545 1.1.4.2 bouyer
1546 1.1.4.2 bouyer void
1547 1.1.4.2 bouyer hpcfb_eraserows(cookie, row, nrow, attr)
1548 1.1.4.2 bouyer void *cookie;
1549 1.1.4.2 bouyer int row, nrow;
1550 1.1.4.2 bouyer long attr;
1551 1.1.4.2 bouyer {
1552 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1553 1.1.4.2 bouyer struct hpcfb_softc *sc = dc->dc_sc;
1554 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1555 1.1.4.2 bouyer int yoff;
1556 1.1.4.2 bouyer int width;
1557 1.1.4.2 bouyer int height;
1558 1.1.4.2 bouyer
1559 1.1.4.2 bouyer hpcfb_tv_eraserows(dc, row, nrow, attr);
1560 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1561 1.1.4.2 bouyer if (dc->dc_state&HPCFB_DC_SCROLLPENDING) {
1562 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_UPDATE;
1563 1.1.4.2 bouyer return;
1564 1.1.4.2 bouyer }
1565 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1566 1.1.4.2 bouyer if ((dc->dc_state&HPCFB_DC_CURRENT) == 0)
1567 1.1.4.2 bouyer return;
1568 1.1.4.2 bouyer if (ri->ri_bits == NULL)
1569 1.1.4.2 bouyer return;
1570 1.1.4.2 bouyer
1571 1.1.4.2 bouyer dc->dc_state |= HPCFB_DC_DRAWING;
1572 1.1.4.2 bouyer if (sc && sc->sc_accessops->erase
1573 1.1.4.2 bouyer && (dc->dc_state&HPCFB_DC_CURRENT)) {
1574 1.1.4.2 bouyer yoff = row * ri->ri_font->fontheight;
1575 1.1.4.2 bouyer width = dc->dc_cols * ri->ri_font->fontwidth;
1576 1.1.4.2 bouyer height = nrow * ri->ri_font->fontheight;
1577 1.1.4.2 bouyer (*sc->sc_accessops->erase)(sc->sc_accessctx,
1578 1.1.4.2 bouyer 0, yoff, height, width, attr);
1579 1.1.4.2 bouyer } else
1580 1.1.4.2 bouyer rasops_emul.eraserows(ri, row, nrow, attr);
1581 1.1.4.2 bouyer dc->dc_state &= ~HPCFB_DC_DRAWING;
1582 1.1.4.2 bouyer #ifdef HPCFB_JUMP
1583 1.1.4.2 bouyer hpcfb_check_update(dc);
1584 1.1.4.2 bouyer #endif /* HPCFB_JUMP */
1585 1.1.4.2 bouyer }
1586 1.1.4.2 bouyer
1587 1.1.4.2 bouyer /*
1588 1.1.4.2 bouyer * alloc_attr
1589 1.1.4.2 bouyer */
1590 1.1.4.2 bouyer int
1591 1.1.4.2 bouyer hpcfb_alloc_attr(cookie, fg, bg, flags, attrp)
1592 1.1.4.2 bouyer void *cookie;
1593 1.1.4.2 bouyer int fg, bg, flags;
1594 1.1.4.2 bouyer long *attrp;
1595 1.1.4.2 bouyer {
1596 1.1.4.2 bouyer struct hpcfb_devconfig *dc = (struct hpcfb_devconfig *)cookie;
1597 1.1.4.2 bouyer struct rasops_info *ri = &dc->dc_rinfo;
1598 1.1.4.2 bouyer
1599 1.1.4.2 bouyer return rasops_emul.alloc_attr(ri, fg, bg, flags, attrp);
1600 1.1.4.2 bouyer }
1601