Rev 3664 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3664 | Rev 3742 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /* |
1 | /* |
- | 2 | * Copyright (c) 2008 Martin Decky |
|
2 | * Copyright (c) 2006 Ondrej Palkovsky |
3 | * Copyright (c) 2006 Ondrej Palkovsky |
3 | * All rights reserved. |
4 | * All rights reserved. |
4 | * |
5 | * |
5 | * Redistribution and use in source and binary forms, with or without |
6 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions |
7 | * modification, are permitted provided that the following conditions |
Line 24... | Line 25... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
28 | */ |
28 | 29 | ||
29 | /** @addtogroup genarch |
30 | /** @addtogroup genarch |
30 | * @{ |
31 | * @{ |
31 | */ |
32 | */ |
32 | /** @file |
33 | /** @file |
33 | */ |
34 | */ |
34 | 35 | ||
35 | #include <genarch/fb/font-8x16.h> |
36 | #include <genarch/fb/font-8x16.h> |
- | 37 | #include <genarch/fb/logo-196x66.h> |
|
36 | #include <genarch/fb/visuals.h> |
38 | #include <genarch/fb/visuals.h> |
37 | #include <genarch/fb/fb.h> |
39 | #include <genarch/fb/fb.h> |
38 | #include <console/chardev.h> |
40 | #include <console/chardev.h> |
39 | #include <console/console.h> |
41 | #include <console/console.h> |
40 | #include <sysinfo/sysinfo.h> |
42 | #include <sysinfo/sysinfo.h> |
41 | #include <mm/slab.h> |
43 | #include <mm/slab.h> |
- | 44 | #include <align.h> |
|
42 | #include <panic.h> |
45 | #include <panic.h> |
43 | #include <memstr.h> |
46 | #include <memstr.h> |
44 | #include <config.h> |
47 | #include <config.h> |
45 | #include <bitops.h> |
48 | #include <bitops.h> |
46 | #include <print.h> |
49 | #include <print.h> |
47 | #include <ddi/ddi.h> |
50 | #include <ddi/ddi.h> |
48 | #include <arch/types.h> |
51 | #include <arch/types.h> |
49 | 52 | ||
50 | #include "helenos.xbm" |
- | |
51 | - | ||
52 | static parea_t fb_parea; /**< Physical memory area for fb. */ |
- | |
53 | - | ||
54 | SPINLOCK_INITIALIZE(fb_lock); |
53 | SPINLOCK_INITIALIZE(fb_lock); |
55 | 54 | ||
- | 55 | /**< Physical memory area for fb. */ |
|
56 | static uint8_t *fbaddress = NULL; |
56 | static parea_t fb_parea; |
57 | 57 | ||
- | 58 | static uint8_t *fb_addr; |
|
58 | static uint8_t *blankline = NULL; |
59 | static uint8_t *backbuf; |
59 | static uint8_t *dbbuffer = NULL; /* Buffer for fast scrolling console */ |
60 | static uint8_t *glyphs; |
60 | static index_t dboffset; |
61 | static uint8_t *bgscan; |
61 | 62 | ||
62 | static unsigned int xres = 0; |
63 | static unsigned int xres; |
63 | static unsigned int yres = 0; |
64 | static unsigned int yres; |
- | 65 | ||
64 | static unsigned int scanline = 0; |
66 | static unsigned int ylogo; |
65 | static unsigned int pixelbytes = 0; |
67 | static unsigned int ytrim; |
66 | #ifdef FB_INVERT_COLORS |
68 | static unsigned int rowtrim; |
- | 69 | ||
67 | static bool invert_colors = true; |
70 | static unsigned int scanline; |
- | 71 | static unsigned int glyphscanline; |
|
68 | #else |
72 | |
69 | static bool invert_colors = false; |
73 | static unsigned int pixelbytes; |
70 | #endif |
74 | static unsigned int glyphbytes; |
- | 75 | static unsigned int bgscanbytes; |
|
71 | 76 | ||
- | 77 | static unsigned int cols; |
|
- | 78 | static unsigned int rows; |
|
72 | static unsigned int position = 0; |
79 | static unsigned int position = 0; |
73 | static unsigned int columns = 0; |
- | |
74 | static unsigned int rows = 0; |
- | |
75 | 80 | ||
76 | #define COL_WIDTH 8 |
81 | #define BG_COLOR 0x000080 |
77 | #define ROW_BYTES (scanline * FONT_SCANLINES) |
82 | #define FG_COLOR 0xffff00 |
78 | 83 | ||
79 | #define BGCOLOR 0x000080 |
- | |
80 | #define FGCOLOR 0xffff00 |
84 | #define CURSOR 219 |
81 | #define LOGOCOLOR 0x2020b0 |
- | |
82 | 85 | ||
83 | #define RED(x, bits) ((x >> (8 + 8 + 8 - bits)) & ((1 << bits) - 1)) |
86 | #define RED(x, bits) ((x >> (8 + 8 + 8 - bits)) & ((1 << bits) - 1)) |
84 | #define GREEN(x, bits) ((x >> (8 + 8 - bits)) & ((1 << bits) - 1)) |
87 | #define GREEN(x, bits) ((x >> (8 + 8 - bits)) & ((1 << bits) - 1)) |
85 | #define BLUE(x, bits) ((x >> (8 - bits)) & ((1 << bits) - 1)) |
88 | #define BLUE(x, bits) ((x >> (8 - bits)) & ((1 << bits) - 1)) |
86 | 89 | ||
87 | #define POINTPOS(x, y) ((y) * scanline + (x) * pixelbytes) |
90 | #define COL2X(col) ((col) * FONT_WIDTH) |
- | 91 | #define ROW2Y(row) ((row) * FONT_SCANLINES) |
|
88 | 92 | ||
89 | /***************************************************************/ |
93 | #define X2COL(x) ((x) / FONT_WIDTH) |
90 | /* Pixel specific fuctions */ |
94 | #define Y2ROW(y) ((y) / FONT_SCANLINES) |
91 | 95 | ||
92 | static void (*rgb2scr)(void *, int); |
96 | #define FB_POS(x, y) ((y) * scanline + (x) * pixelbytes) |
93 | static int (*scr2rgb)(void *); |
97 | #define BB_POS(col, row) ((row) * cols + (col)) |
- | 98 | #define GLYPH_POS(glyph, y) ((glyph) * glyphbytes + (y) * glyphscanline) |
|
94 | 99 | ||
95 | static inline int COLOR(int color) |
- | |
96 | { |
- | |
97 | return invert_colors ? ~color : color; |
- | |
98 | } |
- | |
99 | 100 | ||
100 | /* Conversion routines between different color representations */ |
- | |
101 | static void rgb_byte0888(void *dst, int rgb) |
101 | static void (*rgb_conv)(void *, uint32_t); |
102 | { |
- | |
103 | *((int *) dst) = rgb; |
- | |
104 | } |
- | |
105 | 102 | ||
106 | static int byte0888_rgb(void *src) |
- | |
107 | { |
- | |
108 | return (*((int *) src)) & 0xffffff; |
- | |
109 | } |
- | |
110 | 103 | ||
- | 104 | /** ARGB 8:8:8:8 conversion |
|
- | 105 | * |
|
- | 106 | */ |
|
111 | static void bgr_byte0888(void *dst, int rgb) |
107 | static void rgb_0888(void *dst, uint32_t rgb) |
112 | { |
108 | { |
113 | *((uint32_t *) dst) = BLUE(rgb, 8) << 16 | GREEN(rgb, 8) << 8 | |
109 | *((uint32_t *) dst) = rgb & 0xffffff; |
114 | RED(rgb, 8); |
- | |
115 | } |
110 | } |
116 | 111 | ||
- | 112 | ||
- | 113 | /** ABGR 8:8:8:8 conversion |
|
- | 114 | * |
|
- | 115 | */ |
|
117 | static int byte0888_bgr(void *src) |
116 | static void bgr_0888(void *dst, uint32_t rgb) |
118 | { |
117 | { |
119 | int color = *(uint32_t *)(src); |
118 | *((uint32_t *) dst) |
120 | return ((color & 0xff) << 16) | (((color >> 8) & 0xff) << 8) | |
119 | = (BLUE(rgb, 8) << 16) | (GREEN(rgb, 8) << 8) | RED(rgb, 8); |
121 | ((color >> 16) & 0xff); |
- | |
122 | } |
120 | } |
123 | 121 | ||
- | 122 | ||
- | 123 | /** BGR 8:8:8 conversion |
|
- | 124 | * |
|
- | 125 | */ |
|
124 | static void rgb_byte888(void *dst, int rgb) |
126 | static void rgb_888(void *dst, uint32_t rgb) |
125 | { |
127 | { |
126 | uint8_t *scr = (uint8_t *) dst; |
- | |
127 | #if defined(FB_INVERT_ENDIAN) |
128 | #if defined(FB_INVERT_ENDIAN) |
128 | scr[0] = RED(rgb, 8); |
129 | ((uint8_t *) dst)[0] = RED(rgb, 8); |
129 | scr[1] = GREEN(rgb, 8); |
130 | ((uint8_t *) dst)[1] = GREEN(rgb, 8); |
130 | scr[2] = BLUE(rgb, 8); |
131 | ((uint8_t *) dst)[2] = BLUE(rgb, 8); |
131 | #else |
132 | #else |
132 | scr[2] = RED(rgb, 8); |
133 | ((uint8_t *) dst)[0] = BLUE(rgb, 8); |
133 | scr[1] = GREEN(rgb, 8); |
134 | ((uint8_t *) dst)[1] = GREEN(rgb, 8); |
134 | scr[0] = BLUE(rgb, 8); |
135 | ((uint8_t *) dst)[2] = RED(rgb, 8); |
135 | #endif |
136 | #endif |
136 | } |
137 | } |
137 | 138 | ||
138 | static int byte888_rgb(void *src) |
- | |
139 | { |
- | |
140 | uint8_t *scr = (uint8_t *) src; |
- | |
141 | #if defined(FB_INVERT_ENDIAN) |
- | |
142 | return scr[0] << 16 | scr[1] << 8 | scr[2]; |
- | |
143 | #else |
- | |
144 | return scr[2] << 16 | scr[1] << 8 | scr[0]; |
- | |
145 | #endif |
- | |
146 | } |
- | |
147 | 139 | ||
148 | /** 16-bit depth (5:5:5) */ |
140 | /** RGB 5:5:5 conversion |
- | 141 | * |
|
- | 142 | */ |
|
149 | static void rgb_byte555(void *dst, int rgb) |
143 | static void rgb_555(void *dst, uint32_t rgb) |
150 | { |
144 | { |
151 | /* 5-bit, 5-bits, 5-bits */ |
145 | *((uint16_t *) dst) |
152 | *((uint16_t *) dst) = RED(rgb, 5) << 10 | GREEN(rgb, 5) << 5 | |
146 | = (RED(rgb, 5) << 10) | (GREEN(rgb, 5) << 5) | BLUE(rgb, 5); |
153 | BLUE(rgb, 5); |
- | |
154 | } |
147 | } |
155 | 148 | ||
156 | /** 16-bit depth (5:5:5) */ |
- | |
157 | static int byte555_rgb(void *src) |
- | |
158 | { |
- | |
159 | int color = *(uint16_t *)(src); |
- | |
160 | return (((color >> 10) & 0x1f) << (16 + 3)) | |
- | |
161 | (((color >> 5) & 0x1f) << (8 + 3)) | ((color & 0x1f) << 3); |
- | |
162 | } |
- | |
163 | 149 | ||
164 | /** 16-bit depth (5:6:5) */ |
150 | /** RGB 5:6:5 conversion |
- | 151 | * |
|
- | 152 | */ |
|
165 | static void rgb_byte565(void *dst, int rgb) |
153 | static void rgb_565(void *dst, uint32_t rgb) |
166 | { |
154 | { |
167 | /* 5-bit, 6-bits, 5-bits */ |
155 | *((uint16_t *) dst) |
168 | *((uint16_t *) dst) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | |
156 | = (RED(rgb, 5) << 11) | (GREEN(rgb, 6) << 5) | BLUE(rgb, 5); |
169 | BLUE(rgb, 5); |
- | |
170 | } |
157 | } |
171 | 158 | ||
172 | /** 16-bit depth (5:6:5) */ |
- | |
173 | static int byte565_rgb(void *src) |
- | |
174 | { |
- | |
175 | int color = *(uint16_t *)(src); |
- | |
176 | return (((color >> 11) & 0x1f) << (16 + 3)) | |
- | |
177 | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3); |
- | |
178 | } |
- | |
179 | 159 | ||
180 | /** Put pixel - 8-bit depth (color palette/3:2:3) |
160 | /** RGB 3:2:3 |
181 | * |
161 | * |
182 | * Even though we try 3:2:3 color scheme here, an 8-bit framebuffer |
162 | * Even though we try 3:2:3 color scheme here, an 8-bit framebuffer |
183 | * will most likely use a color palette. The color appearance |
163 | * will most likely use a color palette. The color appearance |
184 | * will be pretty random and depend on the default installed |
164 | * will be pretty random and depend on the default installed |
185 | * palette. This could be fixed by supporting custom palette |
165 | * palette. This could be fixed by supporting custom palette |
186 | * and setting it to simulate the 8-bit truecolor. |
166 | * and setting it to simulate the 8-bit truecolor. |
- | 167 | * |
|
- | 168 | * Currently we set the palette on the ia32, amd64 and sparc64 port. |
|
- | 169 | * |
|
- | 170 | * Note that the byte is being inverted by this function. The reason is |
|
- | 171 | * that we would like to use a color palette where the white color code |
|
- | 172 | * is 0 and the black color code is 255, as some machines (Sun Blade 1500) |
|
- | 173 | * use these codes for black and white and prevent to set codes |
|
- | 174 | * 0 and 255 to other colors. |
|
- | 175 | * |
|
187 | */ |
176 | */ |
188 | static void rgb_byte8(void *dst, int rgb) |
177 | static void rgb_323(void *dst, uint32_t rgb) |
189 | { |
178 | { |
190 | *((uint8_t *) dst) = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | |
179 | *((uint8_t *) dst) |
191 | BLUE(rgb, 3); |
180 | = ~((RED(rgb, 3) << 5) | (GREEN(rgb, 2) << 3) | BLUE(rgb, 3)); |
192 | } |
181 | } |
193 | 182 | ||
194 | static void sb1500rgb_byte8(void *dst, int rgb) |
- | |
195 | { |
- | |
196 | if (RED(rgb, 1) && GREEN(rgb, 1) && BLUE(rgb, 1)) |
- | |
197 | *((uint8_t *) dst) = 255; |
- | |
198 | else if (RED(rgb, 1) && GREEN(rgb, 1)) |
- | |
199 | *((uint8_t *) dst) = 150; |
- | |
200 | else if (GREEN(rgb, 1) && BLUE(rgb, 1)) |
- | |
201 | *((uint8_t *) dst) = 47; |
- | |
202 | else if (RED(rgb, 1) && BLUE(rgb, 1)) |
- | |
203 | *((uint8_t *) dst) = 48; |
- | |
204 | else if (RED(rgb, 1)) |
- | |
205 | *((uint8_t *) dst) = 32; |
- | |
206 | else if (GREEN(rgb, 1)) |
- | |
207 | *((uint8_t *) dst) = 47; |
- | |
208 | else if (BLUE(rgb, 1)) |
- | |
209 | *((uint8_t *) dst) = 2; |
- | |
210 | else |
- | |
211 | *((uint8_t *) dst) = 1; |
- | |
212 | } |
- | |
213 | 183 | ||
214 | /** Return pixel color - 8-bit depth (color palette/3:2:3) |
184 | /** Hide logo and refresh screen |
215 | * |
185 | * |
216 | * See the comment for rgb_byte(). |
- | |
217 | */ |
186 | */ |
218 | static int byte8_rgb(void *src) |
187 | static void logo_hide(void) |
219 | { |
188 | { |
- | 189 | ylogo = 0; |
|
220 | int color = *(uint8_t *)src; |
190 | ytrim = yres; |
221 | return (((color >> 5) & 0x7) << (16 + 5)) | |
191 | rowtrim = rows; |
222 | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5); |
192 | fb_redraw(); |
223 | } |
193 | } |
224 | 194 | ||
225 | static void putpixel(unsigned int x, unsigned int y, int color) |
- | |
226 | { |
- | |
227 | (*rgb2scr)(&fbaddress[POINTPOS(x, y)], COLOR(color)); |
- | |
228 | 195 | ||
229 | if (dbbuffer) { |
- | |
230 | int dline = (y + dboffset) % yres; |
196 | /** Draw character at given position |
231 | (*rgb2scr)(&dbbuffer[POINTPOS(x, dline)], COLOR(color)); |
- | |
232 | } |
197 | * |
233 | } |
198 | */ |
234 | - | ||
235 | /** Get pixel from viewport */ |
- | |
236 | static int getpixel(unsigned int x, unsigned int y) |
199 | static void glyph_draw(uint8_t glyph, unsigned int col, unsigned int row) |
237 | { |
- | |
238 | if (dbbuffer) { |
- | |
239 | int dline = (y + dboffset) % yres; |
- | |
240 | return COLOR((*scr2rgb)(&dbbuffer[POINTPOS(x, dline)])); |
- | |
241 | } |
- | |
242 | return COLOR((*scr2rgb)(&fbaddress[POINTPOS(x, y)])); |
- | |
243 | } |
- | |
244 | - | ||
245 | - | ||
246 | /** Fill screen with background color */ |
- | |
247 | static void clear_screen(void) |
- | |
248 | { |
200 | { |
- | 201 | unsigned int x = COL2X(col); |
|
- | 202 | unsigned int y = ROW2Y(row); |
|
249 | unsigned int y; |
203 | unsigned int yd; |
250 | 204 | ||
251 | for (y = 0; y < yres; y++) { |
205 | if (y >= ytrim) |
252 | memcpy(&fbaddress[scanline * y], blankline, xres * pixelbytes); |
- | |
253 | if (dbbuffer) |
206 | logo_hide(); |
- | 207 | ||
254 | memcpy(&dbbuffer[scanline * y], blankline, |
208 | backbuf[BB_POS(col, row)] = glyph; |
255 | xres * pixelbytes); |
- | |
256 | } |
209 | |
- | 210 | for (yd = 0; yd < FONT_SCANLINES; yd++) |
|
- | 211 | memcpy(&fb_addr[FB_POS(x, y + yd + ylogo)], |
|
- | 212 | &glyphs[GLYPH_POS(glyph, yd)], glyphscanline); |
|
257 | } |
213 | } |
258 | 214 | ||
259 | 215 | ||
260 | /** Scroll screen one row up */ |
216 | /** Scroll screen down by one row |
- | 217 | * |
|
- | 218 | * |
|
- | 219 | */ |
|
261 | static void scroll_screen(void) |
220 | static void screen_scroll(void) |
262 | { |
221 | { |
263 | if (dbbuffer) { |
222 | if (ylogo > 0) |
264 | count_t first; |
223 | logo_hide(); |
265 | 224 | ||
266 | /* Clear the last row */ |
225 | unsigned int row; |
267 | memcpy(&dbbuffer[dboffset * scanline], blankline, ROW_BYTES); |
- | |
268 | - | ||
269 | dboffset = (dboffset + FONT_SCANLINES) % yres; |
- | |
270 | first = yres - dboffset; |
- | |
271 | 226 | ||
272 | /* Move all rows one row up */ |
227 | for (row = 0; row < rows; row++) { |
273 | if (xres * pixelbytes == scanline) { |
- | |
274 | memcpy(fbaddress, &dbbuffer[dboffset * scanline], |
- | |
275 | first * scanline); |
- | |
276 | memcpy(&fbaddress[first * scanline], dbbuffer, |
- | |
277 | dboffset * scanline); |
- | |
278 | } else { |
- | |
279 | /* |
- | |
280 | * When the scanline is bigger than number of bytes |
- | |
281 | * in the X-resolution, chances are that the |
- | |
282 | * frame buffer memory past the X-resolution is special |
- | |
283 | * in some way. For example, the SUNW,ffb framebuffer |
- | |
284 | * wraps this area around the beginning of the same |
- | |
285 | * line. To avoid troubles, copy only memory as |
- | |
286 | * specified by the resolution. |
228 | unsigned int y = ROW2Y(row); |
287 | */ |
- | |
288 | unsigned int i; |
229 | unsigned int yd; |
289 | - | ||
290 | for (i = 0; i < first; i++) |
- | |
291 | memcpy(&fbaddress[i * scanline], |
- | |
292 | &dbbuffer[(dboffset + i) * scanline], |
- | |
293 | xres * pixelbytes); |
- | |
294 | for (i = 0; i < dboffset; i++) |
- | |
295 | memcpy(&fbaddress[(first + i) * scanline], |
- | |
296 | &dbbuffer[i * scanline], xres * pixelbytes); |
- | |
297 | } |
- | |
298 | } else { |
- | |
299 | uint8_t *lastline = &fbaddress[(rows - 1) * ROW_BYTES]; |
- | |
300 | 230 | ||
301 | if (xres * pixelbytes == scanline) { |
231 | for (yd = 0; yd < FONT_SCANLINES; yd++) { |
302 | /* Move all rows one row up */ |
232 | unsigned int x; |
303 | memcpy((void *) fbaddress, |
233 | unsigned int col; |
- | 234 | ||
304 | (void *) &fbaddress[ROW_BYTES], |
235 | for (col = 0, x = 0; col < cols; col++, x += FONT_WIDTH) { |
305 | scanline * yres - ROW_BYTES); |
236 | uint8_t glyph; |
- | 237 | ||
306 | /* Clear the last row */ |
238 | if (row < rows - 1) { |
307 | memcpy((void *) lastline, (void *) blankline, |
239 | if (backbuf[BB_POS(col, row)] == backbuf[BB_POS(col, row + 1)]) |
308 | ROW_BYTES); |
240 | continue; |
309 | } else { |
- | |
310 | /* |
241 | |
311 | * See the comment in the dbbuffer case. |
242 | glyph = backbuf[BB_POS(col, row + 1)]; |
312 | */ |
243 | } else |
313 | unsigned int i; |
244 | glyph = 0; |
314 | 245 | ||
315 | /* Move all rows one row up */ |
- | |
316 | for (i = 0; i < yres - FONT_SCANLINES; i++) |
- | |
317 | memcpy(&fbaddress[i * scanline], |
246 | memcpy(&fb_addr[FB_POS(x, y + yd)], |
318 | &fbaddress[(i + FONT_SCANLINES) * scanline], |
247 | &glyphs[GLYPH_POS(glyph, yd)], glyphscanline); |
319 | xres * pixelbytes); |
- | |
320 | /* Clear the last row */ |
- | |
321 | for (i = 0; i < FONT_SCANLINES; i++) |
- | |
322 | memcpy(&lastline[i * scanline], |
- | |
323 | &blankline[i * scanline], |
- | |
324 | xres * pixelbytes); |
248 | } |
325 | } |
249 | } |
326 | } |
250 | } |
- | 251 | ||
- | 252 | memcpy(backbuf, backbuf + cols, cols * (rows - 1)); |
|
- | 253 | memsetb(&backbuf[BB_POS(0, rows - 1)], cols, 0); |
|
327 | } |
254 | } |
328 | 255 | ||
329 | 256 | ||
330 | static void invert_pixel(unsigned int x, unsigned int y) |
- | |
331 | { |
- | |
332 | putpixel(x, y, ~getpixel(x, y)); |
257 | static void cursor_put(void) |
333 | } |
- | |
334 | - | ||
335 | - | ||
336 | /** Draw one line of glyph at a given position */ |
- | |
337 | static void draw_glyph_line(unsigned int glline, unsigned int x, unsigned int y) |
- | |
338 | { |
- | |
339 | unsigned int i; |
- | |
340 | - | ||
341 | for (i = 0; i < 8; i++) |
- | |
342 | if (glline & (1 << (7 - i))) { |
- | |
343 | putpixel(x + i, y, FGCOLOR); |
- | |
344 | } else |
- | |
345 | putpixel(x + i, y, BGCOLOR); |
- | |
346 | } |
- | |
347 | - | ||
348 | /***************************************************************/ |
- | |
349 | /* Character-console functions */ |
- | |
350 | - | ||
351 | /** Draw character at given position */ |
- | |
352 | static void draw_glyph(uint8_t glyph, unsigned int col, unsigned int row) |
- | |
353 | { |
258 | { |
354 | unsigned int y; |
- | |
355 | - | ||
356 | for (y = 0; y < FONT_SCANLINES; y++) |
- | |
357 | draw_glyph_line(fb_font[glyph * FONT_SCANLINES + y], |
- | |
358 | col * COL_WIDTH, row * FONT_SCANLINES + y); |
259 | glyph_draw(CURSOR, position % cols, position / cols); |
359 | } |
260 | } |
360 | 261 | ||
361 | /** Invert character at given position */ |
- | |
362 | static void invert_char(unsigned int col, unsigned int row) |
- | |
363 | { |
- | |
364 | unsigned int x; |
- | |
365 | unsigned int y; |
- | |
366 | - | ||
367 | for (x = 0; x < COL_WIDTH; x++) |
- | |
368 | for (y = 0; y < FONT_SCANLINES; y++) |
- | |
369 | invert_pixel(col * COL_WIDTH + x, |
- | |
370 | row * FONT_SCANLINES + y); |
- | |
371 | } |
- | |
372 | 262 | ||
373 | /** Draw character at default position */ |
- | |
374 | static void draw_char(char chr) |
263 | static void cursor_remove(void) |
375 | { |
264 | { |
376 | draw_glyph(chr, position % columns, position / columns); |
265 | glyph_draw(0, position % cols, position / cols); |
377 | } |
- | |
378 | - | ||
379 | static void draw_logo(unsigned int startx, unsigned int starty) |
- | |
380 | { |
- | |
381 | unsigned int x; |
- | |
382 | unsigned int y; |
- | |
383 | unsigned int byte; |
- | |
384 | unsigned int rowbytes; |
- | |
385 | - | ||
386 | rowbytes = (helenos_width - 1) / 8 + 1; |
- | |
387 | - | ||
388 | for (y = 0; y < helenos_height; y++) |
- | |
389 | for (x = 0; x < helenos_width; x++) { |
- | |
390 | byte = helenos_bits[rowbytes * y + x / 8]; |
- | |
391 | byte >>= x % 8; |
- | |
392 | if (byte & 1) |
- | |
393 | putpixel(startx + x, starty + y, |
- | |
394 | COLOR(LOGOCOLOR)); |
- | |
395 | } |
- | |
396 | } |
266 | } |
397 | 267 | ||
398 | /***************************************************************/ |
- | |
399 | /* Stdout specific functions */ |
- | |
400 | - | ||
401 | static void invert_cursor(void) |
- | |
402 | { |
- | |
403 | invert_char(position % columns, position / columns); |
- | |
404 | } |
- | |
405 | 268 | ||
406 | /** Print character to screen |
269 | /** Print character to screen |
407 | * |
270 | * |
408 | * Emulate basic terminal commands |
271 | * Emulate basic terminal commands. |
- | 272 | * |
|
409 | */ |
273 | */ |
410 | static void fb_putchar(chardev_t *dev, char ch) |
274 | static void fb_putchar(chardev_t *dev, char ch) |
411 | { |
275 | { |
412 | spinlock_lock(&fb_lock); |
276 | spinlock_lock(&fb_lock); |
413 | 277 | ||
414 | switch (ch) { |
278 | switch (ch) { |
415 | case '\n': |
279 | case '\n': |
416 | invert_cursor(); |
280 | cursor_remove(); |
417 | position += columns; |
281 | position += cols; |
418 | position -= position % columns; |
282 | position -= position % cols; |
419 | break; |
283 | break; |
420 | case '\r': |
284 | case '\r': |
421 | invert_cursor(); |
285 | cursor_remove(); |
422 | position -= position % columns; |
286 | position -= position % cols; |
423 | break; |
287 | break; |
424 | case '\b': |
288 | case '\b': |
425 | invert_cursor(); |
289 | cursor_remove(); |
426 | if (position % columns) |
290 | if (position % cols) |
427 | position--; |
291 | position--; |
428 | break; |
292 | break; |
429 | case '\t': |
293 | case '\t': |
430 | invert_cursor(); |
294 | cursor_remove(); |
431 | do { |
295 | do { |
432 | draw_char(' '); |
296 | glyph_draw((uint8_t) ' ', position % cols, position / cols); |
433 | position++; |
297 | position++; |
434 | } while ((position % 8) && position < columns * rows); |
298 | } while ((position % 8) && (position < cols * rows)); |
435 | break; |
299 | break; |
436 | default: |
300 | default: |
437 | draw_char(ch); |
301 | glyph_draw((uint8_t) ch, position % cols, position / cols); |
438 | position++; |
302 | position++; |
439 | } |
303 | } |
440 | 304 | ||
441 | if (position >= columns * rows) { |
305 | if (position >= cols * rows) { |
442 | position -= columns; |
306 | position -= cols; |
443 | scroll_screen(); |
307 | screen_scroll(); |
444 | } |
308 | } |
445 | 309 | ||
446 | invert_cursor(); |
310 | cursor_put(); |
447 | 311 | ||
448 | spinlock_unlock(&fb_lock); |
312 | spinlock_unlock(&fb_lock); |
449 | } |
313 | } |
450 | 314 | ||
451 | static chardev_t framebuffer; |
315 | static chardev_t framebuffer; |
452 | static chardev_operations_t fb_ops = { |
316 | static chardev_operations_t fb_ops = { |
453 | .write = fb_putchar, |
317 | .write = fb_putchar, |
454 | }; |
318 | }; |
455 | 319 | ||
456 | 320 | ||
- | 321 | /** Render glyphs |
|
- | 322 | * |
|
- | 323 | * Convert glyphs from device independent font |
|
- | 324 | * description to current visual representation. |
|
- | 325 | * |
|
- | 326 | */ |
|
- | 327 | static void glyphs_render(void) |
|
- | 328 | { |
|
- | 329 | /* Prerender glyphs */ |
|
- | 330 | unsigned int glyph; |
|
- | 331 | ||
- | 332 | for (glyph = 0; glyph < FONT_GLYPHS; glyph++) { |
|
- | 333 | unsigned int y; |
|
- | 334 | ||
- | 335 | for (y = 0; y < FONT_SCANLINES; y++) { |
|
- | 336 | unsigned int x; |
|
- | 337 | ||
- | 338 | for (x = 0; x < FONT_WIDTH; x++) |
|
- | 339 | rgb_conv(&glyphs[GLYPH_POS(glyph, y) + x * pixelbytes], |
|
- | 340 | (fb_font[ROW2Y(glyph) + y] & (1 << (7 - x))) ? FG_COLOR : BG_COLOR); |
|
- | 341 | } |
|
- | 342 | } |
|
- | 343 | ||
- | 344 | /* Prerender background scanline */ |
|
- | 345 | unsigned int x; |
|
- | 346 | ||
- | 347 | for (x = 0; x < xres; x++) |
|
- | 348 | rgb_conv(&bgscan[x * pixelbytes], BG_COLOR); |
|
- | 349 | } |
|
- | 350 | ||
- | 351 | ||
- | 352 | /** Refresh the screen |
|
- | 353 | * |
|
- | 354 | */ |
|
- | 355 | void fb_redraw(void) |
|
- | 356 | { |
|
- | 357 | if (ylogo > 0) { |
|
- | 358 | unsigned int y; |
|
- | 359 | ||
- | 360 | for (y = 0; y < LOGO_HEIGHT; y++) { |
|
- | 361 | unsigned int x; |
|
- | 362 | ||
- | 363 | for (x = 0; x < xres; x++) |
|
- | 364 | rgb_conv(&fb_addr[FB_POS(x, y)], |
|
- | 365 | (x < LOGO_WIDTH) ? fb_logo[y * LOGO_WIDTH + x] : LOGO_COLOR); |
|
- | 366 | } |
|
- | 367 | } |
|
- | 368 | ||
- | 369 | unsigned int row; |
|
- | 370 | ||
- | 371 | for (row = 0; row < rowtrim; row++) { |
|
- | 372 | unsigned int y = ylogo + ROW2Y(row); |
|
- | 373 | unsigned int yd; |
|
- | 374 | ||
- | 375 | for (yd = 0; yd < FONT_SCANLINES; yd++) { |
|
- | 376 | unsigned int x; |
|
- | 377 | unsigned int col; |
|
- | 378 | ||
- | 379 | for (col = 0, x = 0; col < cols; col++, x += FONT_WIDTH) |
|
- | 380 | memcpy(&fb_addr[FB_POS(x, y + yd)], |
|
- | 381 | &glyphs[GLYPH_POS(backbuf[BB_POS(col, row)], yd)], |
|
- | 382 | glyphscanline); |
|
- | 383 | } |
|
- | 384 | } |
|
- | 385 | ||
- | 386 | if (COL2X(cols) < xres) { |
|
- | 387 | unsigned int y; |
|
- | 388 | unsigned int size = (xres - COL2X(cols)) * pixelbytes; |
|
- | 389 | ||
- | 390 | for (y = ylogo; y < yres; y++) |
|
- | 391 | memcpy(&fb_addr[FB_POS(COL2X(cols), y)], bgscan, size); |
|
- | 392 | } |
|
- | 393 | ||
- | 394 | if (ROW2Y(rowtrim) < yres) { |
|
- | 395 | unsigned int y; |
|
- | 396 | ||
- | 397 | for (y = ROW2Y(rowtrim); y < yres; y++) |
|
- | 398 | memcpy(&fb_addr[FB_POS(0, y)], bgscan, bgscanbytes); |
|
- | 399 | } |
|
- | 400 | } |
|
- | 401 | ||
- | 402 | ||
457 | /** Initialize framebuffer as a chardev output device |
403 | /** Initialize framebuffer as a chardev output device |
458 | * |
404 | * |
459 | * @param props properties of the framebuffer device |
405 | * @param addr Physical address of the framebuffer |
- | 406 | * @param x Screen width in pixels |
|
- | 407 | * @param y Screen height in pixels |
|
- | 408 | * @param scan Bytes per one scanline |
|
- | 409 | * @param visual Color model |
|
460 | * |
410 | * |
461 | */ |
411 | */ |
462 | void fb_init(fb_properties_t *props) |
412 | void fb_init(fb_properties_t *props) |
463 | { |
413 | { |
464 | switch (props->visual) { |
414 | switch (props->visual) { |
465 | case VISUAL_INDIRECT_8: |
415 | case VISUAL_INDIRECT_8: |
466 | rgb2scr = rgb_byte8; |
416 | rgb_conv = rgb_323; |
467 | scr2rgb = byte8_rgb; |
- | |
468 | pixelbytes = 1; |
- | |
469 | break; |
- | |
470 | case VISUAL_SB1500_PALETTE: |
- | |
471 | rgb2scr = sb1500rgb_byte8; |
- | |
472 | scr2rgb = byte8_rgb; |
- | |
473 | pixelbytes = 1; |
417 | pixelbytes = 1; |
474 | break; |
418 | break; |
475 | case VISUAL_RGB_5_5_5: |
419 | case VISUAL_RGB_5_5_5: |
476 | rgb2scr = rgb_byte555; |
420 | rgb_conv = rgb_555; |
477 | scr2rgb = byte555_rgb; |
- | |
478 | pixelbytes = 2; |
421 | pixelbytes = 2; |
479 | break; |
422 | break; |
480 | case VISUAL_RGB_5_6_5: |
423 | case VISUAL_RGB_5_6_5: |
481 | rgb2scr = rgb_byte565; |
424 | rgb_conv = rgb_565; |
482 | scr2rgb = byte565_rgb; |
- | |
483 | pixelbytes = 2; |
425 | pixelbytes = 2; |
484 | break; |
426 | break; |
485 | case VISUAL_RGB_8_8_8: |
427 | case VISUAL_RGB_8_8_8: |
486 | rgb2scr = rgb_byte888; |
428 | rgb_conv = rgb_888; |
487 | scr2rgb = byte888_rgb; |
- | |
488 | pixelbytes = 3; |
429 | pixelbytes = 3; |
489 | break; |
430 | break; |
490 | case VISUAL_RGB_8_8_8_0: |
431 | case VISUAL_RGB_8_8_8_0: |
491 | rgb2scr = rgb_byte888; |
432 | rgb_conv = rgb_888; |
492 | scr2rgb = byte888_rgb; |
- | |
493 | pixelbytes = 4; |
433 | pixelbytes = 4; |
494 | break; |
434 | break; |
495 | case VISUAL_RGB_0_8_8_8: |
435 | case VISUAL_RGB_0_8_8_8: |
496 | rgb2scr = rgb_byte0888; |
436 | rgb_conv = rgb_0888; |
497 | scr2rgb = byte0888_rgb; |
- | |
498 | pixelbytes = 4; |
437 | pixelbytes = 4; |
499 | break; |
438 | break; |
500 | case VISUAL_BGR_0_8_8_8: |
439 | case VISUAL_BGR_0_8_8_8: |
501 | rgb2scr = bgr_byte0888; |
440 | rgb_conv = bgr_0888; |
502 | scr2rgb = byte0888_bgr; |
- | |
503 | pixelbytes = 4; |
441 | pixelbytes = 4; |
504 | break; |
442 | break; |
505 | default: |
443 | default: |
506 | panic("Unsupported visual.\n"); |
444 | panic("Unsupported visual.\n"); |
507 | } |
445 | } |
508 | 446 | ||
509 | unsigned int fbsize = (props->scan) * (props->y) + (props->fb_start); |
- | |
510 | - | ||
511 | /* Map the framebuffer */ |
- | |
512 | fbaddress = (uint8_t *) hw_map((uintptr_t) (props->addr), fbsize); |
- | |
513 | fbaddress += props->fb_start; |
- | |
514 | - | ||
515 | xres = props->x; |
447 | xres = props->x; |
516 | yres = props->y; |
448 | yres = props->y; |
517 | scanline = props->scan; |
449 | scanline = props->scan; |
518 | 450 | ||
- | 451 | cols = X2COL(xres); |
|
- | 452 | rows = Y2ROW(yres); |
|
- | 453 | ||
- | 454 | if (yres > ylogo) { |
|
- | 455 | ylogo = LOGO_HEIGHT; |
|
- | 456 | rowtrim = rows - Y2ROW(ylogo); |
|
519 | rows = (props->y) / FONT_SCANLINES; |
457 | if (ylogo % FONT_SCANLINES > 0) |
- | 458 | rowtrim--; |
|
- | 459 | ytrim = ROW2Y(rowtrim); |
|
- | 460 | } else { |
|
- | 461 | ylogo = 0; |
|
- | 462 | ytrim = yres; |
|
- | 463 | rowtrim = rows; |
|
- | 464 | } |
|
- | 465 | ||
- | 466 | glyphscanline = FONT_WIDTH * pixelbytes; |
|
- | 467 | glyphbytes = ROW2Y(glyphscanline); |
|
- | 468 | bgscanbytes = xres * pixelbytes; |
|
- | 469 | ||
- | 470 | unsigned int fbsize = scanline * yres; |
|
- | 471 | unsigned int bbsize = cols * rows; |
|
- | 472 | unsigned int glyphsize = FONT_GLYPHS * glyphbytes; |
|
- | 473 | ||
- | 474 | backbuf = (uint8_t *) malloc(bbsize, 0); |
|
- | 475 | if (!backbuf) |
|
- | 476 | panic("Unable to allocate backbuffer.\n"); |
|
- | 477 | ||
- | 478 | glyphs = (uint8_t *) malloc(glyphsize, 0); |
|
- | 479 | if (!glyphs) |
|
- | 480 | panic("Unable to allocate glyphs.\n"); |
|
- | 481 | ||
520 | columns = (props->x) / COL_WIDTH; |
482 | bgscan = malloc(bgscanbytes, 0); |
- | 483 | if (!bgscan) |
|
- | 484 | panic("Unable to allocate background pixel.\n"); |
|
- | 485 | ||
- | 486 | memsetb(backbuf, bbsize, 0); |
|
- | 487 | ||
- | 488 | glyphs_render(); |
|
- | 489 | ||
- | 490 | fb_addr = (uint8_t *) hw_map((uintptr_t) props->addr, fbsize); |
|
521 | 491 | ||
522 | fb_parea.pbase = (uintptr_t) (props->addr); |
492 | fb_parea.pbase = (uintptr_t) props->addr + props->offset; |
523 | fb_parea.vbase = (uintptr_t) fbaddress; |
493 | fb_parea.vbase = (uintptr_t) fb_addr; |
524 | fb_parea.frames = SIZE2FRAMES(fbsize); |
494 | fb_parea.frames = SIZE2FRAMES(fbsize); |
525 | fb_parea.cacheable = false; |
495 | fb_parea.cacheable = false; |
526 | ddi_parea_register(&fb_parea); |
496 | ddi_parea_register(&fb_parea); |
527 | 497 | ||
528 | sysinfo_set_item_val("fb", NULL, true); |
498 | sysinfo_set_item_val("fb", NULL, true); |
529 | sysinfo_set_item_val("fb.kind", NULL, 1); |
499 | sysinfo_set_item_val("fb.kind", NULL, 1); |
530 | sysinfo_set_item_val("fb.width", NULL, xres); |
500 | sysinfo_set_item_val("fb.width", NULL, xres); |
531 | sysinfo_set_item_val("fb.height", NULL, yres); |
501 | sysinfo_set_item_val("fb.height", NULL, yres); |
532 | sysinfo_set_item_val("fb.scanline", NULL, (props->scan)); |
502 | sysinfo_set_item_val("fb.scanline", NULL, scanline); |
533 | sysinfo_set_item_val("fb.visual", NULL, (props->visual)); |
503 | sysinfo_set_item_val("fb.visual", NULL, props->visual); |
534 | sysinfo_set_item_val("fb.address.physical", NULL, (props->addr)); |
504 | sysinfo_set_item_val("fb.address.physical", NULL, props->addr); |
535 | sysinfo_set_item_val("fb.invert-colors", NULL, invert_colors); |
- | |
536 | 505 | ||
537 | /* Allocate double buffer */ |
- | |
538 | unsigned int order = fnzb(SIZE2FRAMES(fbsize) - 1) + 1; |
- | |
539 | dbbuffer = (uint8_t *) frame_alloc(order, FRAME_ATOMIC | FRAME_KA); |
- | |
540 | if (!dbbuffer) |
- | |
541 | printf("Failed to allocate scroll buffer.\n"); |
- | |
542 | dboffset = 0; |
506 | fb_redraw(); |
543 | - | ||
544 | /* Initialized blank line */ |
- | |
545 | blankline = (uint8_t *) malloc(ROW_BYTES, FRAME_ATOMIC); |
- | |
546 | if (!blankline) |
- | |
547 | panic("Failed to allocate blank line for framebuffer."); |
- | |
548 | unsigned int x, y; |
- | |
549 | for (y = 0; y < FONT_SCANLINES; y++) |
- | |
550 | for (x = 0; x < xres; x++) |
- | |
551 | (*rgb2scr)(&blankline[POINTPOS(x, y)], COLOR(BGCOLOR)); |
- | |
552 | 507 | ||
553 | clear_screen(); |
- | |
554 | - | ||
555 | /* Update size of screen to match text area */ |
- | |
556 | yres = rows * FONT_SCANLINES; |
- | |
557 | - | ||
558 | draw_logo(xres - helenos_width, 0); |
- | |
559 | invert_cursor(); |
- | |
560 | - | ||
561 | chardev_initialize("fb", &framebuffer, &fb_ops); |
508 | chardev_initialize("fb", &framebuffer, &fb_ops); |
562 | stdout = &framebuffer; |
509 | stdout = &framebuffer; |
563 | } |
510 | } |
564 | 511 | ||
565 | /** @} |
512 | /** @} |