1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
|
/*
* Mach Operating System
* Copyright (c) 1991,1990,1989 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie Mellon
* the rights to redistribute these changes.
*/
/*
* File: pm_misc.c
* Author: Alessandro Forin, Carnegie Mellon University
* Date: 9/90
*
* Driver for the VFB01/02 Mono/Color framebuffer (pmax)
* Hardware-independent operations, mostly shared with
* the CFB driver (see each individual function header),
* and possibly others.
*/
#include <platforms.h>
#include <fb.h>
#if defined(DECSTATION) || defined(FLAMINGO)
#include <cfb.h>
#include <mfb.h>
#include <xcfb.h>
#include <sfb.h>
#define NPM (NFB+NCFB+NMFB+NXCFB+NSFB)
#endif /*DECSTATION*/
#ifdef VAXSTATION
#define NPM (NFB)
#endif /*VAXSTATION*/
#if (NPM > 0)
#include <mach/vm_param.h> /* PAGE_SIZE */
#include <device/device_types.h>
#include <vm/vm_map.h> /* kernel_pmap */
#include <chips/screen_defs.h>
#include <chips/pm_defs.h>
#ifdef DECSTATION
#define machine_btop mips_btop
#define MONO_BM (256*1024)
#endif /*DECSTATION*/
#ifdef VAXSTATION
#define machine_btop vax_btop
/*
For now we use the last page of the frame for
the user_info structure.
*/
#define MONO_BM (256*1024-PAGE_SIZE)
#endif /*VAXSTATION*/
#ifdef FLAMINGO
#define machine_btop alpha_btop
#define MONO_BM (256*1024)
#define LOG2_SIZEOF_LONG 3 /* 64bit archies */
#endif /* FLAMINGO */
#ifndef LOG2_SIZEOF_LONG
#define LOG2_SIZEOF_LONG 2 /* 32bit archies */
#endif
/* Hardware state */
pm_softc_t pm_softc_data[NPM];
pm_softc_t*
pm_alloc(
int unit,
char *cur,
unsigned char *fb,
unsigned char *pl)
{
pm_softc_t *pm = &pm_softc_data[unit];
pm->cursor_registers = cur;
pm->framebuffer = fb;
pm->plane_mask = pl;
pm->vdac_registers = 0; /* later, if ever */
screen_attach(unit, (char *) pm);
return pm;
}
/*
* Routine to paint a char on a simple framebuffer.
* This is common to the pm, fb and cfb drivers.
*/
pm_char_paint(
screen_softc_t sc,
int c,
int row,
int col)
{
register int incr;
int line_size;
register unsigned char *font, *bmap;
pm_softc_t *pm = (pm_softc_t*)sc->hw_state;
/*
* Here are the magic numbers that drive the loops below:
* incr bytes between scanlines of the glyph
* line_size bytes in a row, using the system font
*
* This code has been optimized to avoid multiplications,
* and is therefore much less obvious than it could be.
*/
if (sc->flags & MONO_SCREEN) {
/*
* B&W screen: 1 bit/pixel
* incr --> 1 * BytesPerLine, with possible stride
*/
incr = sc->frame_scanline_width >> 3;
} else {
/*
* Color screen: 8 bits/pixel
* incr --> 8 * BytesPerLine, with possible stride
*/
incr = sc->frame_scanline_width;
col <<= 3;
}
/* not all compilers are smart about multiply by 15 */
#if (KfontHeight==15)
# define TIMES_KfontHeight(w) (((w)<<4)-(w))
#else
# define TIMES_KfontHeight(w) ((w)*KfontHeight)
#endif
line_size = TIMES_KfontHeight(incr);
bmap = pm->framebuffer + col + (row * line_size);
font = &kfont_7x14[ (int)(c - ' ') * 15];
if (sc->flags & MONO_SCREEN) {
/*
* Unroll simple loops, take note of common cases
*/
if (sc->standout) {
# define mv() *bmap = ~*font++; bmap += incr;
mv();mv();mv();mv();mv();mv();mv();mv();
mv();mv();mv();mv();mv();mv();mv();
# undef mv
} else if (c == ' ') {
# define mv() *bmap = 0; bmap += incr;
mv();mv();mv();mv();mv();mv();mv();mv();
mv();mv();mv();mv();mv();mv();mv();
# undef mv
} else {
# define mv() *bmap = *font++; bmap += incr;
mv();mv();mv();mv();mv();mv();mv();mv();
mv();mv();mv();mv();mv();mv();mv();
# undef mv
}
} else {
/*
* 8 bits per pixel --> paint one byte per each font bit.
* In order to spread out the 8 bits of a glyph line over
* the 64 bits per scanline use a simple vector multiply,
* taking 4 bits at a time to get the two resulting words
*/
static unsigned int spread[16] = {
0x00000000, 0x00000001, 0x00000100, 0x00000101,
0x00010000, 0x00010001, 0x00010100, 0x00010101,
0x01000000, 0x01000001, 0x01000100, 0x01000101,
0x01010000, 0x01010001, 0x01010100, 0x01010101,
};
register int rev_video = sc->standout;
register int j;
for (j = 0; j < KfontHeight; j++) {
register unsigned char c = *font++;
if (rev_video) c = ~c;
#if (LOG2_SIZEOF_LONG==3)
*((long*)bmap) = (long)spread[ c & 0xf ] |
((long)(spread[ (c>>4) & 0xf ]) << 32);
#else
((int*)bmap)[0] = spread[ c & 0xf ];
((int*)bmap)[1] = spread[ (c>>4) & 0xf ];
#endif
bmap += incr;
}
}
}
/*
* Delete the line at the given row.
* This is common to the pm, fb and cfb drivers.
*/
pm_remove_line(
screen_softc_t sc,
short row)
{
register long *dest, *src;
register long *end;
register long temp0,temp1,temp2,temp3;
register long i, scaninc, blockcnt;
long line_size, incr;
unsigned char *framebuffer;
pm_softc_t *pm = (pm_softc_t*)sc->hw_state;
long CharRows, CharCols;
CharRows = sc->up->max_row;
CharCols = sc->up->max_col;
framebuffer = pm->framebuffer;
/* Inner loop works 4 long words at a time (writebuffer deep) */
# define BlockSizeShift (2+LOG2_SIZEOF_LONG)
/* To copy one (MONO) line, we need to iterate this many times */
# define Blocks (CharCols>>BlockSizeShift)
/* Skip this many bytes to get to the next line */
# define Slop(w) ((w) - (blockcnt<<BlockSizeShift))
if (sc->flags & MONO_SCREEN) {
blockcnt = Blocks;
/* See comments in pm_char_paint() */
incr = sc->frame_scanline_width >> 3;
} else {
blockcnt = Blocks << 3;
/* See comments in pm_char_paint() */
incr = sc->frame_scanline_width;
}
line_size = TIMES_KfontHeight(incr);
scaninc = (Slop(incr)) >> LOG2_SIZEOF_LONG; /* pointers are long* */
dest = (long *)(framebuffer + row * line_size);
src = (long *)((char*)dest + line_size);
end = (long *)(framebuffer + CharRows * line_size);
while (src < end) {
i = 0;
do {
temp0 = src[0];
temp1 = src[1];
temp2 = src[2];
temp3 = src[3];
dest[0] = temp0;
dest[1] = temp1;
dest[2] = temp2;
dest[3] = temp3;
dest += 4;
src += 4;
i++;
} while (i < blockcnt);
src += scaninc;
dest += scaninc;
}
/* Now zero out the last line */
bzero(framebuffer + (CharRows - 1) * line_size, line_size);
ascii_screen_rem_update(sc, row);
}
/*
* Open a new blank line at the given row.
* This is common to the pm, fb and cfb drivers.
*/
pm_insert_line(
screen_softc_t sc,
short row)
{
register long *dest, *src;
register long *end;
register long temp0,temp1,temp2,temp3;
register long i, scaninc, blockcnt;
long line_size, incr;
unsigned char *framebuffer;
pm_softc_t *pm = (pm_softc_t*)sc->hw_state;
long CharRows, CharCols;
CharRows = sc->up->max_row;
CharCols = sc->up->max_col;
framebuffer = pm->framebuffer;
/* See above for comments */
if (sc->flags & MONO_SCREEN) {
blockcnt = Blocks;
/* See comments in pm_char_paint() */
incr = sc->frame_scanline_width >> 3;
} else {
blockcnt = Blocks << 3;
/* See comments in pm_char_paint() */
incr = sc->frame_scanline_width;
}
line_size = TIMES_KfontHeight(incr);
scaninc = Slop(incr) + ((2 * blockcnt) << BlockSizeShift);
scaninc >>= LOG2_SIZEOF_LONG; /* pointers are long* */
dest = (long *)(framebuffer + (CharRows - 1) * line_size);
src = (long *)((char*)dest - line_size);
end = (long *)(framebuffer + row * line_size);
while (src >= end) {
i = 0;
do {
temp0 = src[0];
temp1 = src[1];
temp2 = src[2];
temp3 = src[3];
dest[0] = temp0;
dest[1] = temp1;
dest[2] = temp2;
dest[3] = temp3;
dest += 4;
src += 4;
i++;
} while (i < blockcnt);
src -= scaninc;
dest -= scaninc;
}
/* Now zero out the line being opened */
bzero(framebuffer + row * line_size, line_size);
ascii_screen_ins_update(sc, row);
}
#undef Slop
/*
* Initialize screen parameters in the
* user-mapped descriptor.
* This is common to various drivers.
*/
pm_init_screen_params(
screen_softc_t sc,
user_info_t *up)
{
register int vis_x, vis_y;
up->frame_scanline_width = sc->frame_scanline_width;
up->frame_height = sc->frame_height;
vis_x = sc->frame_visible_width;
vis_y = sc->frame_visible_height;
up->max_x = vis_x;
up->max_y = vis_y;
up->max_cur_x = vis_x - 1;
up->max_cur_y = vis_y - 1;
up->min_cur_x = -15;
up->min_cur_y = -15;
up->max_row = vis_y / KfontHeight;
up->max_col = vis_x / KfontWidth;
up->version = 11;
up->mouse_threshold = 4;
up->mouse_scale = 2;
up->dev_dep_2.pm.tablet_scale_x = ((vis_x - 1) * 1000) / 2200;
up->dev_dep_2.pm.tablet_scale_y = ((vis_y - 1) * 1000) / 2200;
}
/*
* Clear the screen
* Used by pm, fb and cfb
*/
pm_clear_bitmap(
screen_softc_t sc)
{
pm_softc_t *pm = (pm_softc_t *) sc->hw_state;
unsigned int screen_size;
/* Do not touch the non visible part */
screen_size = sc->frame_scanline_width * sc->frame_visible_height;
blkclr((char *)pm->framebuffer,
(sc->flags & MONO_SCREEN) ? (screen_size>>3) : screen_size);
/* clear ascii screenmap */
ascii_screen_fill(sc, ' ');
}
/*
* Size of the user-mapped structure
* Used by both pm and cfb
*/
pm_mem_need()
{
return USER_INFO_SIZE;
}
/*
* Device-specific get status.
* Used by fb and cfb also.
*/
pm_get_status(
screen_softc_t sc,
dev_flavor_t flavor,
dev_status_t status,
natural_t *status_count)
{
if (flavor == SCREEN_GET_OFFSETS) {
unsigned *offs = (unsigned *) status;
offs[0] = PM_SIZE(sc); /* virtual size */
offs[1] = 0; /* offset of user_info_t */
*status_count = 2;
return D_SUCCESS;
} else
return D_INVALID_OPERATION;
}
/*
* Driver-specific set status
* Only partially used by fb and cfb.
*/
pm_set_status(
screen_softc_t sc,
dev_flavor_t flavor,
dev_status_t status,
natural_t status_count)
{
switch (flavor) {
case SCREEN_ADJ_MAPPED_INFO: {
unsigned user_addr = *(unsigned *) status;
user_info_t *up = sc->up;
/* Make it point to the event_queue, in user virtual */
up->evque.events = (screen_event_t *)(user_addr +
((char*)up->event_queue - (char*)up));
/* Make it point to the point_track, in user virtual */
up->evque.track = (screen_timed_point_t *)(user_addr +
((char*)up->point_track - (char*)up));
up->dev_dep_1.pm.planemask = (unsigned char *)(user_addr + USER_INFO_SIZE);
up->dev_dep_1.pm.bitmap = up->dev_dep_1.pm.planemask + PMASK_SIZE;
break;
}
case SCREEN_LOAD_CURSOR: {
sc->flags |= SCREEN_BEING_UPDATED;
dc503_load_cursor(sc->hw_state, (unsigned short*)status);
sc->flags &= ~SCREEN_BEING_UPDATED;
break;
}
#ifdef DECSTATION
case SCREEN_SET_CURSOR_COLOR: {
pm_softc_t *pm = (pm_softc_t*) sc->hw_state;
sc->flags |= SCREEN_BEING_UPDATED;
bt478_cursor_color (pm->vdac_registers, (cursor_color_t*) status);
sc->flags &= ~SCREEN_BEING_UPDATED;
break;
}
case SCREEN_SET_CMAP_ENTRY: {
pm_softc_t *pm = (pm_softc_t*) sc->hw_state;
color_map_entry_t *e = (color_map_entry_t*) status;
if (e->index < 256) {
sc->flags |= SCREEN_BEING_UPDATED;
bt478_load_colormap_entry( pm->vdac_registers, e->index, &e->value);
sc->flags &= ~SCREEN_BEING_UPDATED;
}
break;
}
#endif /*DECSTATION*/
default:
return D_INVALID_OPERATION;
}
return D_SUCCESS;
}
/*
* Map pages to user space
*/
vm_offset_t pm_map_page_empty = (vm_offset_t) 0;
integer_t
pm_map_page(
screen_softc_t sc,
vm_offset_t off,
int prot)
{
int bitmapsize;
integer_t addr;
pm_softc_t *pm = (pm_softc_t *)sc->hw_state;
extern vm_offset_t pmap_extract( pmap_t map, vm_offset_t addr);
bitmapsize = BITMAP_SIZE(sc);
#define OFF0 USER_INFO_SIZE /* user mapped info */
#define OFF1 OFF0+PMASK_SIZE /* plane mask register */
#define OFF2 OFF1+bitmapsize /* frame buffer mem */
if (off < OFF0)
#ifdef DECSTATION
addr = kvtophys(sc->up);
#else
addr = (integer_t) pmap_extract(kernel_pmap,
(vm_offset_t)sc->up);
#endif
else
if (off < OFF1) {
#ifdef VAXSTATION
if (pm_map_page_empty == 0) {
pm_map_page_empty = vm_page_grab_phys_addr();
}
addr = (integer_t)pmap_extract(kernel_pmap, pm_map_page_empty);
#else
addr = (integer_t) pm->plane_mask;
#endif
off -= OFF0;
} else
if (off < OFF2) {
#ifdef DECSTATION
addr = (integer_t)pm->framebuffer;
#else
addr = (integer_t)pmap_extract(kernel_pmap,
(vm_offset_t)pm->framebuffer);
#endif
off -= OFF1;
} else
return D_INVALID_SIZE; /* ??? */
addr = machine_btop(addr + off);
return (addr);
}
/*
*-----------------------------------------------------------
* The rest of this file is stricly pmax/pvax-specific
*-----------------------------------------------------------
*/
#if (NFB > 0)
/*
* Do what's needed when the X server exits
*/
pm_soft_reset(
screen_softc_t sc)
{
pm_softc_t *pm = (pm_softc_t*) sc->hw_state;
user_info_t *up = sc->up;
/*
* Restore params in mapped structure
*/
pm_init_screen_params(sc, up);
up->row = up->max_row - 2;
dc503_init(pm);
#ifdef DECSTATION
if (sc->flags & MONO_SCREEN)
bt478_init_bw_map(pm->vdac_registers, pm->plane_mask);
else
bt478_init_color_map(pm->vdac_registers, pm->plane_mask);
#endif /*DECSTATION*/
}
#endif /* NFB > 0 */
#endif /* NPM > 0 */
|