xref: /freebsd/sys/dev/vt/hw/fb/vt_fb.c (revision a985ae9b)
1 /*-
2  * Copyright (c) 2013 The FreeBSD Foundation
3  * All rights reserved.
4  *
5  * This software was developed by Aleksandr Rybalko under sponsorship from the
6  * FreeBSD Foundation.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31 
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/malloc.h>
38 #include <sys/queue.h>
39 #include <sys/fbio.h>
40 #include <dev/vt/vt.h>
41 #include <dev/vt/hw/fb/vt_fb.h>
42 #include <dev/vt/colors/vt_termcolors.h>
43 
44 #include <vm/vm.h>
45 #include <vm/pmap.h>
46 
47 static struct vt_driver vt_fb_driver = {
48 	.vd_name = "fb",
49 	.vd_init = vt_fb_init,
50 	.vd_fini = vt_fb_fini,
51 	.vd_blank = vt_fb_blank,
52 	.vd_bitblt_text = vt_fb_bitblt_text,
53 	.vd_bitblt_bmp = vt_fb_bitblt_bitmap,
54 	.vd_drawrect = vt_fb_drawrect,
55 	.vd_setpixel = vt_fb_setpixel,
56 	.vd_postswitch = vt_fb_postswitch,
57 	.vd_priority = VD_PRIORITY_GENERIC+10,
58 	.vd_fb_ioctl = vt_fb_ioctl,
59 	.vd_fb_mmap = vt_fb_mmap,
60 	.vd_suspend = vt_fb_suspend,
61 	.vd_resume = vt_fb_resume,
62 };
63 
64 VT_DRIVER_DECLARE(vt_fb, vt_fb_driver);
65 
66 static void
67 vt_fb_mem_wr1(struct fb_info *sc, uint32_t o, uint8_t v)
68 {
69 
70 	KASSERT((o < sc->fb_size), ("Offset %#08x out of fb size", o));
71 	*(uint8_t *)(sc->fb_vbase + o) = v;
72 }
73 
74 static void
75 vt_fb_mem_wr2(struct fb_info *sc, uint32_t o, uint16_t v)
76 {
77 
78 	KASSERT((o < sc->fb_size), ("Offset %#08x out of fb size", o));
79 	*(uint16_t *)(sc->fb_vbase + o) = v;
80 }
81 
82 static void
83 vt_fb_mem_wr4(struct fb_info *sc, uint32_t o, uint32_t v)
84 {
85 
86 	KASSERT((o < sc->fb_size), ("Offset %#08x out of fb size", o));
87 	*(uint32_t *)(sc->fb_vbase + o) = v;
88 }
89 
90 int
91 vt_fb_ioctl(struct vt_device *vd, u_long cmd, caddr_t data, struct thread *td)
92 {
93 	struct fb_info *info;
94 	int error = 0;
95 
96 	info = vd->vd_softc;
97 
98 	switch (cmd) {
99 	case FBIOGTYPE:
100 		bcopy(info, (struct fbtype *)data, sizeof(struct fbtype));
101 		break;
102 
103 	case FBIO_GETWINORG:	/* get frame buffer window origin */
104 		*(u_int *)data = 0;
105 		break;
106 
107 	case FBIO_GETDISPSTART:	/* get display start address */
108 		((video_display_start_t *)data)->x = 0;
109 		((video_display_start_t *)data)->y = 0;
110 		break;
111 
112 	case FBIO_GETLINEWIDTH:	/* get scan line width in bytes */
113 		*(u_int *)data = info->fb_stride;
114 		break;
115 
116 	case FBIO_BLANK:	/* blank display */
117 		if (vd->vd_driver->vd_blank == NULL)
118 			return (ENODEV);
119 		vd->vd_driver->vd_blank(vd, TC_BLACK);
120 		break;
121 
122 	default:
123 		error = ENOIOCTL;
124 		break;
125 	}
126 
127 	return (error);
128 }
129 
130 int
131 vt_fb_mmap(struct vt_device *vd, vm_ooffset_t offset, vm_paddr_t *paddr,
132     int prot, vm_memattr_t *memattr)
133 {
134 	struct fb_info *info;
135 
136 	info = vd->vd_softc;
137 
138 	if (info->fb_flags & FB_FLAG_NOMMAP)
139 		return (ENODEV);
140 
141 	if (offset >= 0 && offset < info->fb_size) {
142 		if (info->fb_pbase == 0) {
143 			*paddr = vtophys((uint8_t *)info->fb_vbase + offset);
144 		} else {
145 			*paddr = info->fb_pbase + offset;
146 #ifdef VM_MEMATTR_WRITE_COMBINING
147 			*memattr = VM_MEMATTR_WRITE_COMBINING;
148 #endif
149 		}
150 		return (0);
151 	}
152 
153 	return (EINVAL);
154 }
155 
156 void
157 vt_fb_setpixel(struct vt_device *vd, int x, int y, term_color_t color)
158 {
159 	struct fb_info *info;
160 	uint32_t c;
161 	u_int o;
162 
163 	info = vd->vd_softc;
164 	c = info->fb_cmap[color];
165 	o = info->fb_stride * y + x * FBTYPE_GET_BYTESPP(info);
166 
167 	if (info->fb_flags & FB_FLAG_NOWRITE)
168 		return;
169 
170 	KASSERT((info->fb_vbase != 0), ("Unmapped framebuffer"));
171 
172 	switch (FBTYPE_GET_BYTESPP(info)) {
173 	case 1:
174 		vt_fb_mem_wr1(info, o, c);
175 		break;
176 	case 2:
177 		vt_fb_mem_wr2(info, o, c);
178 		break;
179 	case 3:
180 		vt_fb_mem_wr1(info, o, (c >> 16) & 0xff);
181 		vt_fb_mem_wr1(info, o + 1, (c >> 8) & 0xff);
182 		vt_fb_mem_wr1(info, o + 2, c & 0xff);
183 		break;
184 	case 4:
185 		vt_fb_mem_wr4(info, o, c);
186 		break;
187 	default:
188 		/* panic? */
189 		return;
190 	}
191 
192 }
193 
194 void
195 vt_fb_drawrect(struct vt_device *vd, int x1, int y1, int x2, int y2, int fill,
196     term_color_t color)
197 {
198 	int x, y;
199 
200 	for (y = y1; y <= y2; y++) {
201 		if (fill || (y == y1) || (y == y2)) {
202 			for (x = x1; x <= x2; x++)
203 				vt_fb_setpixel(vd, x, y, color);
204 		} else {
205 			vt_fb_setpixel(vd, x1, y, color);
206 			vt_fb_setpixel(vd, x2, y, color);
207 		}
208 	}
209 }
210 
211 void
212 vt_fb_blank(struct vt_device *vd, term_color_t color)
213 {
214 	struct fb_info *info;
215 	uint32_t c;
216 	u_int o, h;
217 
218 	info = vd->vd_softc;
219 	c = info->fb_cmap[color];
220 
221 	if (info->fb_flags & FB_FLAG_NOWRITE)
222 		return;
223 
224 	KASSERT((info->fb_vbase != 0), ("Unmapped framebuffer"));
225 
226 	switch (FBTYPE_GET_BYTESPP(info)) {
227 	case 1:
228 		for (h = 0; h < info->fb_height; h++)
229 			for (o = 0; o < info->fb_stride; o++)
230 				vt_fb_mem_wr1(info, h*info->fb_stride + o, c);
231 		break;
232 	case 2:
233 		for (h = 0; h < info->fb_height; h++)
234 			for (o = 0; o < info->fb_stride; o += 2)
235 				vt_fb_mem_wr2(info, h*info->fb_stride + o, c);
236 		break;
237 	case 3:
238 		for (h = 0; h < info->fb_height; h++)
239 			for (o = 0; o < info->fb_stride; o += 3) {
240 				vt_fb_mem_wr1(info, h*info->fb_stride + o,
241 				    (c >> 16) & 0xff);
242 				vt_fb_mem_wr1(info, h*info->fb_stride + o + 1,
243 				    (c >> 8) & 0xff);
244 				vt_fb_mem_wr1(info, h*info->fb_stride + o + 2,
245 				    c & 0xff);
246 			}
247 		break;
248 	case 4:
249 		for (h = 0; h < info->fb_height; h++)
250 			for (o = 0; o < info->fb_stride; o += 4)
251 				vt_fb_mem_wr4(info, h*info->fb_stride + o, c);
252 		break;
253 	default:
254 		/* panic? */
255 		return;
256 	}
257 }
258 
259 void
260 vt_fb_bitblt_bitmap(struct vt_device *vd, const struct vt_window *vw,
261     const uint8_t *pattern, const uint8_t *mask,
262     unsigned int width, unsigned int height,
263     unsigned int x, unsigned int y, term_color_t fg, term_color_t bg)
264 {
265 	struct fb_info *info;
266 	uint32_t fgc, bgc, cc, o;
267 	int c, l, bpp, bpl;
268 	u_long line;
269 	uint8_t b, m;
270 	const uint8_t *ch;
271 
272 	info = vd->vd_softc;
273 	bpp = FBTYPE_GET_BYTESPP(info);
274 	fgc = info->fb_cmap[fg];
275 	bgc = info->fb_cmap[bg];
276 	b = m = 0;
277 	bpl = (width + 7) >> 3; /* Bytes per source line. */
278 
279 	if (info->fb_flags & FB_FLAG_NOWRITE)
280 		return;
281 
282 	KASSERT((info->fb_vbase != 0), ("Unmapped framebuffer"));
283 
284 	line = (info->fb_stride * y) + (x * bpp);
285 	for (l = 0;
286 	    l < height && y + l < vw->vw_draw_area.tr_end.tp_row;
287 	    l++) {
288 		ch = pattern;
289 		for (c = 0;
290 		    c < width && x + c < vw->vw_draw_area.tr_end.tp_col;
291 		    c++) {
292 			if (c % 8 == 0)
293 				b = *ch++;
294 			else
295 				b <<= 1;
296 			if (mask != NULL) {
297 				if (c % 8 == 0)
298 					m = *mask++;
299 				else
300 					m <<= 1;
301 				/* Skip pixel write, if mask has no bit set. */
302 				if ((m & 0x80) == 0)
303 					continue;
304 			}
305 			o = line + (c * bpp);
306 			cc = b & 0x80 ? fgc : bgc;
307 
308 			switch(bpp) {
309 			case 1:
310 				vt_fb_mem_wr1(info, o, cc);
311 				break;
312 			case 2:
313 				vt_fb_mem_wr2(info, o, cc);
314 				break;
315 			case 3:
316 				/* Packed mode, so unaligned. Byte access. */
317 				vt_fb_mem_wr1(info, o, (cc >> 16) & 0xff);
318 				vt_fb_mem_wr1(info, o + 1, (cc >> 8) & 0xff);
319 				vt_fb_mem_wr1(info, o + 2, cc & 0xff);
320 				break;
321 			case 4:
322 				vt_fb_mem_wr4(info, o, cc);
323 				break;
324 			default:
325 				/* panic? */
326 				break;
327 			}
328 		}
329 		line += info->fb_stride;
330 		pattern += bpl;
331 	}
332 }
333 
334 void
335 vt_fb_bitblt_text(struct vt_device *vd, const struct vt_window *vw,
336     const term_rect_t *area)
337 {
338 	unsigned int col, row, x, y;
339 	struct vt_font *vf;
340 	term_char_t c;
341 	term_color_t fg, bg;
342 	const uint8_t *pattern;
343 
344 	vf = vw->vw_font;
345 
346 	for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
347 		for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
348 		    ++col) {
349 			x = col * vf->vf_width +
350 			    vw->vw_draw_area.tr_begin.tp_col;
351 			y = row * vf->vf_height +
352 			    vw->vw_draw_area.tr_begin.tp_row;
353 
354 			c = VTBUF_GET_FIELD(&vw->vw_buf, row, col);
355 			pattern = vtfont_lookup(vf, c);
356 			vt_determine_colors(c,
357 			    VTBUF_ISCURSOR(&vw->vw_buf, row, col), &fg, &bg);
358 
359 			vt_fb_bitblt_bitmap(vd, vw,
360 			    pattern, NULL, vf->vf_width, vf->vf_height,
361 			    x, y, fg, bg);
362 		}
363 	}
364 
365 #ifndef SC_NO_CUTPASTE
366 	if (!vd->vd_mshown)
367 		return;
368 
369 	term_rect_t drawn_area;
370 
371 	drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
372 	drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
373 	drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
374 	drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
375 
376 	if (vt_is_cursor_in_area(vd, &drawn_area)) {
377 		vt_fb_bitblt_bitmap(vd, vw,
378 		    vd->vd_mcursor->map, vd->vd_mcursor->mask,
379 		    vd->vd_mcursor->width, vd->vd_mcursor->height,
380 		    vd->vd_mx_drawn + vw->vw_draw_area.tr_begin.tp_col,
381 		    vd->vd_my_drawn + vw->vw_draw_area.tr_begin.tp_row,
382 		    vd->vd_mcursor_fg, vd->vd_mcursor_bg);
383 	}
384 #endif
385 }
386 
387 void
388 vt_fb_postswitch(struct vt_device *vd)
389 {
390 	struct fb_info *info;
391 
392 	info = vd->vd_softc;
393 
394 	if (info->enter != NULL)
395 		info->enter(info->fb_priv);
396 }
397 
398 static int
399 vt_fb_init_cmap(uint32_t *cmap, int depth)
400 {
401 
402 	switch (depth) {
403 	case 8:
404 		return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
405 		    0x7, 5, 0x7, 2, 0x3, 0));
406 	case 15:
407 		return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
408 		    0x1f, 10, 0x1f, 5, 0x1f, 0));
409 	case 16:
410 		return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
411 		    0x1f, 11, 0x3f, 5, 0x1f, 0));
412 	case 24:
413 	case 32: /* Ignore alpha. */
414 		return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
415 		    0xff, 16, 0xff, 8, 0xff, 0));
416 	default:
417 		return (1);
418 	}
419 }
420 
421 int
422 vt_fb_init(struct vt_device *vd)
423 {
424 	struct fb_info *info;
425 	int err;
426 
427 	info = vd->vd_softc;
428 	vd->vd_height = info->fb_height;
429 	vd->vd_width = info->fb_width;
430 	vd->vd_video_dev = info->fb_video_dev;
431 
432 	if (info->fb_size == 0)
433 		return (CN_DEAD);
434 
435 	if (info->fb_pbase == 0 && info->fb_vbase == 0)
436 		info->fb_flags |= FB_FLAG_NOMMAP;
437 
438 	if (info->fb_cmsize <= 0) {
439 		err = vt_fb_init_cmap(info->fb_cmap, FBTYPE_GET_BPP(info));
440 		if (err)
441 			return (CN_DEAD);
442 		info->fb_cmsize = 16;
443 	}
444 
445 	/* Clear the screen. */
446 	vd->vd_driver->vd_blank(vd, TC_BLACK);
447 
448 	/* Wakeup screen. KMS need this. */
449 	vt_fb_postswitch(vd);
450 
451 	return (CN_INTERNAL);
452 }
453 
454 void
455 vt_fb_fini(struct vt_device *vd, void *softc)
456 {
457 
458 	vd->vd_video_dev = NULL;
459 }
460 
461 int
462 vt_fb_attach(struct fb_info *info)
463 {
464 
465 	vt_allocate(&vt_fb_driver, info);
466 
467 	return (0);
468 }
469 
470 int
471 vt_fb_detach(struct fb_info *info)
472 {
473 
474 	vt_deallocate(&vt_fb_driver, info);
475 
476 	return (0);
477 }
478 
479 void
480 vt_fb_suspend(struct vt_device *vd)
481 {
482 
483 	vt_suspend(vd);
484 }
485 
486 void
487 vt_fb_resume(struct vt_device *vd)
488 {
489 
490 	vt_resume(vd);
491 }
492