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
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
|
/* $OpenBSD: grtwo.c,v 1.6 2013/06/11 18:15:55 deraadt Exp $ */
/* $NetBSD: grtwo.c,v 1.11 2009/11/22 19:09:15 mbalmer Exp $ */
/*
* Copyright (c) 2012 Miodrag Vallat.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Copyright (c) 2004 Christopher SEKIYA
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* <<Id: LICENSE_GC,v 1.1 2001/10/01 23:24:05 cgd Exp>>
*/
/* wscons driver for SGI GR2 family of framebuffers
*
* Heavily based on the newport wscons driver.
*/
/*
* GR2 coordinates start from (0,0) in the lower left corner, to (1279,1023)
* in the upper right. The low-level drawing routines will take care of
* converting the traditional ``y goes down'' coordinates to those expected
* by the hardware.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <machine/autoconf.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsdisplayvar.h>
#include <dev/rasops/rasops.h>
#include <sgi/dev/gl.h>
#include <sgi/gio/gioreg.h>
#include <sgi/gio/giovar.h>
#include <sgi/gio/grtworeg.h>
#include <sgi/gio/grtwovar.h>
#include <sgi/localbus/intreg.h>
#include <sgi/localbus/intvar.h>
#include <dev/cons.h>
#define GRTWO_WIDTH 1280
#define GRTWO_HEIGHT 1024
struct grtwo_softc {
struct device sc_dev;
struct grtwo_devconfig *sc_dc;
int sc_nscreens;
struct wsscreen_list sc_wsl;
const struct wsscreen_descr *sc_scrlist[1];
};
struct grtwo_devconfig {
struct rasops_info dc_ri;
long dc_defattr;
struct wsdisplay_charcell *dc_bs;
uint32_t dc_addr;
bus_space_tag_t iot;
bus_space_handle_t ioh;
uint8_t boardrev;
uint8_t backendrev;
int hq2rev;
int ge7rev;
int vc1rev;
int zbuffer;
int depth;
int monitor;
struct grtwo_softc *dc_sc;
struct wsscreen_descr dc_wsd;
};
int grtwo_match(struct device *, void *, void *);
void grtwo_attach(struct device *, struct device *, void *);
struct cfdriver grtwo_cd = {
NULL, "grtwo", DV_DULL
};
const struct cfattach grtwo_ca = {
sizeof(struct grtwo_softc), grtwo_match, grtwo_attach
};
/* accessops */
int grtwo_ioctl(void *, u_long, caddr_t, int, struct proc *);
paddr_t grtwo_mmap(void *, off_t, int);
int grtwo_alloc_screen(void *, const struct wsscreen_descr *, void **,
int *, int *, long *);
void grtwo_free_screen(void *, void *);
int grtwo_show_screen(void *, void *, int, void (*)(void *, int, int),
void *);
static struct wsdisplay_accessops grtwo_accessops = {
.ioctl = grtwo_ioctl,
.mmap = grtwo_mmap,
.alloc_screen = grtwo_alloc_screen,
.free_screen = grtwo_free_screen,
.show_screen = grtwo_show_screen,
};
int grtwo_cursor(void *, int, int, int);
int grtwo_putchar(void *, int, int, u_int, long);
int grtwo_copycols(void *, int, int, int, int);
int grtwo_erasecols(void *, int, int, int, long);
int grtwo_copyrows(void *, int, int, int);
int grtwo_eraserows(void *, int, int, long);
void grtwo_wait_gfifo(struct grtwo_devconfig *);
static __inline__
void grtwo_set_color(bus_space_tag_t, bus_space_handle_t, int);
void grtwo_fillrect(struct grtwo_devconfig *, int, int, int, int, int);
void grtwo_copyrect(struct grtwo_devconfig *, int, int, int, int, int, int);
void grtwo_cmap_setrgb(struct grtwo_devconfig *, int, uint, uint, uint);
int grtwo_setup_hw(struct grtwo_devconfig *);
static __inline__
int grtwo_attach_common(struct grtwo_devconfig *, struct gio_attach_args *);
int grtwo_init_screen(struct grtwo_devconfig *, int);
int grtwo_putchar_internal(struct rasops_info *, int, int, u_int, int, int,
int);
static struct grtwo_devconfig grtwo_console_dc;
/* console backing store, worst cast font selection */
static struct wsdisplay_charcell
grtwo_console_bs[(GRTWO_WIDTH / 8) * (GRTWO_HEIGHT / 16)];
void
grtwo_wait_gfifo(struct grtwo_devconfig *dc)
{
int i;
/*
* This loop is for paranoia. Of course there is currently no
* known way to whack the FIFO (or reset the board) in case it
* gets stuck... but this code is careful to avoid this situation
* and it should never happen (famous last words)
*/
for (i = 100000; i != 0; i--) {
if (!int2_is_intr_pending(INT2_L0_FIFO))
break;
delay(1);
}
#ifdef DIAGNOSTIC
if (i == 0) {
if (dc != &grtwo_console_dc && dc->dc_sc != NULL)
printf("%s: FIFO is stuck\n",
dc->dc_sc->sc_dev.dv_xname);
}
#endif
}
static __inline__ void
grtwo_set_color(bus_space_tag_t iot, bus_space_handle_t ioh, int color)
{
bus_space_write_4(iot, ioh, GR2_FIFO_COLOR, color);
}
/*
* Rectangle fill with the given background.
*/
void
grtwo_fillrect(struct grtwo_devconfig *dc, int x1, int y1, int x2,
int y2, int bg)
{
struct rasops_info *ri = &dc->dc_ri;
grtwo_wait_gfifo(dc);
grtwo_set_color(dc->iot, dc->ioh, ri->ri_devcmap[bg] & 0xff);
grtwo_wait_gfifo(dc);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_RECTI2D, x1);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA,
GRTWO_HEIGHT - 1 - y1);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, x2);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA,
GRTWO_HEIGHT - 1 - y2);
}
/*
* Rectangle copy.
* Does not handle overlapping copies; this is handled at the wsdisplay
* emulops level by splitting overlapping copies in smaller, non-overlapping,
* operations.
*/
void
grtwo_copyrect(struct grtwo_devconfig *dc, int x1, int y1, int x2,
int y2, int width, int height)
{
int length = (width + 3) >> 2;
int lines = 4864 / length;
int step;
y1 += height; y2 += height;
while (height != 0) {
step = imin(height, lines);
y1 -= step; y2 -= step;
grtwo_wait_gfifo(dc);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_RECTCOPY, length);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, lines);
/* source */
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, x1);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, y1);
/* span */
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, width);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, step);
/* dest */
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, x2);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, y2);
height -= step;
}
}
void
grtwo_cmap_setrgb(struct grtwo_devconfig *dc, int index, uint r,
uint g, uint b)
{
grtwo_wait_gfifo(dc);
bus_space_write_1(dc->iot, dc->ioh, XMAPALL_ADDRHI,
((index & 0x1f00) >> 8));
bus_space_write_1(dc->iot, dc->ioh, XMAPALL_ADDRLO,
(index & 0xff));
bus_space_write_1(dc->iot, dc->ioh, XMAPALL_CLUT, r);
bus_space_write_1(dc->iot, dc->ioh, XMAPALL_CLUT, g);
bus_space_write_1(dc->iot, dc->ioh, XMAPALL_CLUT, b);
}
int
grtwo_setup_hw(struct grtwo_devconfig *dc)
{
int i = 0;
uint8_t rd0, rd1, rd2, rd3;
uint32_t vc1;
rd0 = bus_space_read_1(dc->iot, dc->ioh, GR2_REVISION_RD0);
rd1 = bus_space_read_1(dc->iot, dc->ioh, GR2_REVISION_RD1);
rd2 = bus_space_read_1(dc->iot, dc->ioh, GR2_REVISION_RD2);
rd3 = bus_space_read_1(dc->iot, dc->ioh, GR2_REVISION_RD3);
/* Get various revisions */
dc->boardrev = ~rd0 & GR2_REVISION_RD0_VERSION_MASK;
/*
* Boards prior to rev 4 have a pretty whacky config scheme.
* What is doubly weird is that i have a rev 2 board, but the rev 4
* probe routines work just fine.
* We'll trust SGI, though, and separate things a bit. It's only
* critical for the display depth calculation.
*/
if (dc->boardrev < 4) {
dc->backendrev = ~(rd2 & GR2_REVISION_RD2_BACKEND_REV) >>
GR2_REVISION_RD2_BACKEND_SHIFT;
if (dc->backendrev == 0)
return ENXIO;
dc->zbuffer = ~rd1 & GR2_REVISION_RD1_ZBUFFER;
if ((rd3 & GR2_REVISION_RD3_VMA) != GR2_REVISION_RD3_VMA)
i++;
if ((rd3 & GR2_REVISION_RD3_VMB) != GR2_REVISION_RD3_VMB)
i++;
if ((rd3 & GR2_REVISION_RD3_VMC) != GR2_REVISION_RD3_VMC)
i++;
dc->depth = 8 * i;
dc->monitor = ((rd2 & 0x03) << 1) | (rd1 & 0x01);
} else {
dc->backendrev = ~rd1 & GR2_REVISION4_RD1_BACKEND;
if (dc->backendrev == 0)
return ENXIO;
dc->zbuffer = rd1 & GR2_REVISION4_RD1_ZBUFFER;
dc->depth = (rd1 & GR2_REVISION4_RD1_24BPP) ? 24 : 8;
dc->monitor = (rd0 & GR2_REVISION4_RD0_MONITOR_MASK) >>
GR2_REVISION4_RD0_MONITOR_SHIFT;
}
dc->hq2rev = (bus_space_read_4(dc->iot, dc->ioh, HQ2_VERSION) &
HQ2_VERSION_MASK) >> HQ2_VERSION_SHIFT;
dc->ge7rev = (bus_space_read_4(dc->iot, dc->ioh, GE7_REVISION) &
GE7_REVISION_MASK) >> GE7_REVISION_SHIFT;
/* dc->vc1rev = vc1_read_ireg(dc, 5) & 0x07; */
vc1 = bus_space_read_4(dc->iot, dc->ioh, VC1_SYSCTL);
if (vc1 == -1)
return ENXIO; /* XXX would need a reset */
/* Turn on display, DID, disable cursor display */
bus_space_write_4(dc->iot, dc->ioh, VC1_SYSCTL,
VC1_SYSCTL_VC1 | VC1_SYSCTL_DID);
/* Setup CMAP */
for (i = 0; i < 8 /* 256 */; i++)
grtwo_cmap_setrgb(dc, i, rasops_cmap[i * 3],
rasops_cmap[i * 3 + 1], rasops_cmap[i * 3 + 2]);
return 0;
}
/* Attach routines */
int
grtwo_match(struct device *parent, void *vcf, void *aux)
{
struct gio_attach_args *ga = aux;
if (ga->ga_product != GIO_PRODUCT_FAKEID_GRTWO)
return 0;
return 1;
}
void
grtwo_attach(struct device *parent, struct device *self, void *aux)
{
struct grtwo_softc *sc = (struct grtwo_softc *)self;
struct gio_attach_args *ga = aux;
struct grtwo_devconfig *dc;
struct wsemuldisplaydev_attach_args waa;
const char *descr;
extern struct consdev wsdisplay_cons;
descr = ga->ga_descr;
if (descr == NULL || *descr == '\0')
descr = "GR2";
printf(": %s", descr);
if (cn_tab == &wsdisplay_cons &&
ga->ga_addr == grtwo_console_dc.dc_addr) {
waa.console = 1;
dc = &grtwo_console_dc;
sc->sc_nscreens = 1;
} else {
/*
* XXX The driver will not work correctly if we are not the
* XXX console device. An initialization is missing - it
* XXX seems that everything works, but the colormap is
* XXX stuck as black, which makes the device unusable.
*/
printf("\n%s: device has not been setup by firmware!\n",
self->dv_xname);
return;
#if 0
waa.console = 0;
dc = malloc(sizeof(struct grtwo_devconfig),
M_DEVBUF, M_WAITOK | M_CANFAIL | M_ZERO);
if (dc == NULL)
goto out;
if (grtwo_attach_common(dc, ga) != 0) {
printf("\n%s: not responding\n", self->dv_xname);
free(dc, M_DEVBUF);
return;
}
if (grtwo_init_screen(dc, M_WAITOK | M_CANFAIL) != 0) {
free(dc, M_DEVBUF);
goto out;
}
#endif
}
sc->sc_dc = dc;
dc->dc_sc = sc;
printf(", revision %d, monitor sense %d\n", dc->boardrev, dc->monitor);
printf("%s: %dx%d %d-bit frame buffer\n",
self->dv_xname, GRTWO_WIDTH, GRTWO_HEIGHT, dc->depth);
sc->sc_scrlist[0] = &dc->dc_wsd;
sc->sc_wsl.nscreens = 1;
sc->sc_wsl.screens = sc->sc_scrlist;
waa.scrdata = &sc->sc_wsl;
waa.accessops = &grtwo_accessops;
waa.accesscookie = dc;
waa.defaultscreens = 0;
config_found(self, &waa, wsemuldisplaydevprint);
return;
#if 0
out:
printf("\n%s: failed to allocate memory\n", self->dv_xname);
return;
#endif
}
int
grtwo_cnprobe(struct gio_attach_args *ga)
{
return grtwo_match(NULL, NULL, ga);
}
int
grtwo_cnattach(struct gio_attach_args *ga)
{
struct rasops_info *ri = &grtwo_console_dc.dc_ri;
struct wsdisplay_charcell *cell;
long defattr;
int rc;
int i;
rc = grtwo_attach_common(&grtwo_console_dc, ga);
if (rc != 0)
return rc;
grtwo_console_dc.dc_bs = grtwo_console_bs;
rc = grtwo_init_screen(&grtwo_console_dc, M_NOWAIT);
if (rc != 0)
return rc;
ri->ri_ops.alloc_attr(ri, 0, 0, 0, &defattr);
cell = grtwo_console_bs;
for (i = ri->ri_cols * ri->ri_rows; i != 0; i--, cell++)
cell->attr = defattr;
wsdisplay_cnattach(&grtwo_console_dc.dc_wsd, ri, 0, 0, defattr);
return 0;
}
static __inline__ int
grtwo_attach_common(struct grtwo_devconfig *dc, struct gio_attach_args * ga)
{
dc->dc_addr = ga->ga_addr;
dc->iot = ga->ga_iot;
dc->ioh = ga->ga_ioh;
return grtwo_setup_hw(dc);
}
int
grtwo_init_screen(struct grtwo_devconfig *dc, int malloc_flags)
{
struct rasops_info *ri = &dc->dc_ri;
memset(ri, 0, sizeof(struct rasops_info));
ri->ri_hw = dc;
ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
/* for the proper operation of rasops computations, pretend 8bpp */
ri->ri_depth = 8;
ri->ri_stride = GRTWO_WIDTH;
ri->ri_width = GRTWO_WIDTH;
ri->ri_height = GRTWO_HEIGHT;
rasops_init(ri, 160, 160);
/* we can only use 8 colors so far */
ri->ri_caps &= ~WSSCREEN_HILIT;
/*
* Allocate backing store to remember character cells, to
* be able to paint an inverted cursor.
*/
if (dc->dc_bs == NULL) {
dc->dc_bs = malloc(ri->ri_rows * ri->ri_cols *
sizeof(struct wsdisplay_charcell), M_DEVBUF,
malloc_flags | M_ZERO);
if (dc->dc_bs == NULL)
return ENOMEM;
}
ri->ri_ops.cursor = grtwo_cursor;
ri->ri_ops.copyrows = grtwo_copyrows;
ri->ri_ops.eraserows = grtwo_eraserows;
ri->ri_ops.copycols = grtwo_copycols;
ri->ri_ops.erasecols = grtwo_erasecols;
ri->ri_ops.putchar = grtwo_putchar;
strlcpy(dc->dc_wsd.name, "std", sizeof(dc->dc_wsd.name));
dc->dc_wsd.ncols = ri->ri_cols;
dc->dc_wsd.nrows = ri->ri_rows;
dc->dc_wsd.textops = &ri->ri_ops;
dc->dc_wsd.fontwidth = ri->ri_font->fontwidth;
dc->dc_wsd.fontheight = ri->ri_font->fontheight;
dc->dc_wsd.capabilities = ri->ri_caps;
grtwo_fillrect(dc, 0, 0, GRTWO_WIDTH - 1, GRTWO_HEIGHT - 1,
WSCOL_BLACK);
return 0;
}
/* wsdisplay textops */
int
grtwo_cursor(void *c, int on, int row, int col)
{
struct rasops_info *ri = c;
struct grtwo_devconfig *dc = ri->ri_hw;
struct wsdisplay_charcell *cell;
int bg, fg, ul;
cell = dc->dc_bs + row * ri->ri_cols + col;
ri->ri_ops.unpack_attr(ri, cell->attr, &fg, &bg, &ul);
if (on) {
/* redraw the existing character with inverted colors */
return grtwo_putchar_internal(ri, row, col, cell->uc,
bg, fg, ul);
} else {
/* redraw the existing character with correct colors */
return grtwo_putchar_internal(ri, row, col, cell->uc,
fg, bg, ul);
}
}
int
grtwo_putchar(void *c, int row, int col, u_int ch, long attr)
{
struct rasops_info *ri = c;
struct grtwo_devconfig *dc = ri->ri_hw;
struct wsdisplay_charcell *cell;
int bg, fg, ul;
/* Update backing store. */
cell = dc->dc_bs + row * ri->ri_cols + col;
cell->uc = ch;
cell->attr = attr;
ri->ri_ops.unpack_attr(ri, attr, &fg, &bg, &ul);
return grtwo_putchar_internal(ri, row, col, ch, fg, bg, ul);
}
int
grtwo_putchar_internal(struct rasops_info *ri, int row, int col, u_int ch,
int fg, int bg, int ul)
{
struct grtwo_devconfig *dc = ri->ri_hw;
struct wsdisplay_font *font = ri->ri_font;
uint8_t *bitmap;
uint32_t pattern;
int x, y;
int h = font->fontheight;
int w = font->fontwidth;
int i;
/*
* The `draw char' operation below writes on top of the existing
* background. We need to paint the background first.
*/
x = ri->ri_xorigin + col * w;
y = ri->ri_yorigin + row * h;
grtwo_fillrect(dc, x, y, x + w - 1, y + h - 1, bg);
if ((ch == ' ' || ch == 0) && ul == 0)
return 0;
/* Set the drawing color */
grtwo_wait_gfifo(dc);
grtwo_set_color(dc->iot, dc->ioh, ri->ri_devcmap[fg] & 0xff);
/*
* This character drawing operation apparently expects a 18 pixel
* character cell height. We will perform as many cell fillings as
* necessary to draw a complete glyph.
*/
bitmap = (uint8_t *)font->data +
(ch - font->firstchar + 1) * ri->ri_fontscale;
y = ri->ri_height - h - y;
while (h != 0) {
/* Set drawing coordinates */
grtwo_wait_gfifo(dc);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_CMOV2I, x);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, y);
grtwo_wait_gfifo(dc);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DRAWCHAR, w);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA,
h > GR2_DRAWCHAR_HEIGHT ? GR2_DRAWCHAR_HEIGHT : h);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, 2);
/* (x,y) offset */
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, 0);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, 0);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, 0);
bus_space_write_4(dc->iot, dc->ioh, GR2_FIFO_DATA, 0);
grtwo_wait_gfifo(dc);
if (w <= 8) {
for (i = 0; i < GR2_DRAWCHAR_HEIGHT; i++) {
if (h != 0) {
bitmap -= font->stride;
if (ul && h == font->fontheight - 1)
pattern = 0xff00;
else
pattern = *bitmap << 8;
h--;
} else
pattern = 0;
bus_space_write_4(dc->iot, dc->ioh,
GR2_FIFO_DATA, pattern);
}
} else {
for (i = 0; i < GR2_DRAWCHAR_HEIGHT; i++) {
if (h != 0) {
bitmap -= font->stride;
if (ul && h == font->fontheight - 1)
pattern = 0xffff;
else
pattern = *(uint16_t *)bitmap;
h--;
} else
pattern = 0;
bus_space_write_4(dc->iot, dc->ioh,
GR2_FIFO_DATA, pattern);
}
}
y += GR2_DRAWCHAR_HEIGHT;
}
return 0;
}
int
grtwo_copycols(void *c, int row, int src, int dst, int ncol)
{
struct rasops_info *ri = c;
struct grtwo_devconfig *dc = ri->ri_hw;
struct wsdisplay_font *font = ri->ri_font;
struct wsdisplay_charcell *cell;
int y = ri->ri_yorigin + row * font->fontheight;
int i;
/* Copy columns in backing store. */
cell = dc->dc_bs + row * ri->ri_cols;
memmove(cell + dst, cell + src, ncol * sizeof(*cell));
if (src > dst) {
/* may overlap, copy cell by cell */
for (i = 0; i < ncol; i++)
grtwo_copyrect(dc,
ri->ri_xorigin + (src + i) * font->fontwidth, y,
ri->ri_xorigin + (dst + i) * font->fontwidth, y,
font->fontwidth, font->fontheight);
} else {
grtwo_copyrect(dc,
ri->ri_xorigin + src * font->fontwidth, y,
ri->ri_xorigin + dst * font->fontwidth, y,
ncol * font->fontwidth, font->fontheight);
}
return 0;
}
int
grtwo_erasecols(void *c, int row, int startcol, int ncol, long attr)
{
struct rasops_info *ri = c;
struct grtwo_devconfig *dc = ri->ri_hw;
struct wsdisplay_font *font = ri->ri_font;
struct wsdisplay_charcell *cell;
int y = ri->ri_yorigin + row * font->fontheight;
int i, bg, fg;
/* Erase columns in backing store. */
cell = dc->dc_bs + row * ri->ri_cols + startcol;
for (i = ncol; i != 0; i--, cell++) {
cell->uc = 0;
cell->attr = attr;
}
ri->ri_ops.unpack_attr(ri, attr, &fg, &bg, NULL);
grtwo_fillrect(dc, ri->ri_xorigin + startcol * font->fontwidth, y,
ri->ri_xorigin + (startcol + ncol) * font->fontwidth - 1,
y + font->fontheight - 1, bg);
return 0;
}
int
grtwo_copyrows(void *c, int src, int dst, int nrow)
{
struct rasops_info *ri = c;
struct grtwo_devconfig *dc = ri->ri_hw;
struct wsdisplay_font *font = ri->ri_font;
struct wsdisplay_charcell *cell;
int i;
/* Copy rows in backing store. */
cell = dc->dc_bs + dst * ri->ri_cols;
memmove(cell, dc->dc_bs + src * ri->ri_cols,
nrow * ri->ri_cols * sizeof(*cell));
if (src > dst) {
/* may overlap, copy row by row */
for (i = 0; i < nrow; i++)
grtwo_copyrect(dc, ri->ri_xorigin,
ri->ri_yorigin + (src + i) * font->fontheight,
ri->ri_xorigin,
ri->ri_yorigin + (dst + i) * font->fontheight,
ri->ri_emuwidth, font->fontheight);
} else {
grtwo_copyrect(dc, ri->ri_xorigin,
ri->ri_yorigin + src * font->fontheight, ri->ri_xorigin,
ri->ri_yorigin + dst * font->fontheight, ri->ri_emuwidth,
nrow * font->fontheight);
}
return 0;
}
int
grtwo_eraserows(void *c, int startrow, int nrow, long attr)
{
struct rasops_info *ri = c;
struct grtwo_devconfig *dc = ri->ri_hw;
struct wsdisplay_font *font = ri->ri_font;
struct wsdisplay_charcell *cell;
int i, bg, fg;
/* Erase rows in backing store. */
cell = dc->dc_bs + startrow * ri->ri_cols;
for (i = ri->ri_cols; i != 0; i--, cell++) {
cell->uc = 0;
cell->attr = attr;
}
for (i = 1; i < nrow; i++)
memmove(dc->dc_bs + (startrow + i) * ri->ri_cols,
dc->dc_bs + startrow * ri->ri_cols,
ri->ri_cols * sizeof(*cell));
ri->ri_ops.unpack_attr(ri, attr, &fg, &bg, NULL);
if (nrow == ri->ri_rows && (ri->ri_flg & RI_FULLCLEAR)) {
grtwo_fillrect(dc, 0, 0, GRTWO_WIDTH - 1,
GRTWO_HEIGHT - 1, bg);
return 0;
}
grtwo_fillrect(dc, ri->ri_xorigin,
ri->ri_yorigin + startrow * font->fontheight,
ri->ri_xorigin + ri->ri_emuwidth - 1,
ri->ri_yorigin + (startrow + nrow) * font->fontheight - 1, bg);
return 0;
}
/* wsdisplay accessops */
int
grtwo_alloc_screen(void *v, const struct wsscreen_descr * type, void **cookiep,
int *curxp, int *curyp, long *attrp)
{
struct grtwo_devconfig *dc = v;
struct rasops_info *ri = &dc->dc_ri;
struct grtwo_softc *sc = dc->dc_sc;
struct wsdisplay_charcell *cell;
int i;
if (sc->sc_nscreens > 0)
return ENOMEM;
sc->sc_nscreens++;
*cookiep = ri;
*curxp = *curyp = 0;
ri->ri_ops.alloc_attr(ri, 0, 0, 0, &dc->dc_defattr);
*attrp = dc->dc_defattr;
cell = dc->dc_bs;
for (i = ri->ri_cols * ri->ri_rows; i != 0; i--, cell++)
cell->attr = dc->dc_defattr;
return 0;
}
void
grtwo_free_screen(void *v, void *cookie)
{
}
int
grtwo_show_screen(void *v, void *cookie, int waitok,
void (*cb) (void *, int, int), void *cbarg)
{
return 0;
}
int
grtwo_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
{
struct grtwo_devconfig *dc = v;
struct rasops_info *ri = &dc->dc_ri;
struct wsdisplay_fbinfo *fb;
switch (cmd) {
case WSDISPLAYIO_GTYPE:
*(u_int *) data = WSDISPLAY_TYPE_GRTWO;
break;
case WSDISPLAYIO_GINFO:
fb = (struct wsdisplay_fbinfo *)data;
fb->width = ri->ri_width;
fb->height = ri->ri_height;
fb->depth = dc->depth; /* real depth */
if (dc->depth > 8)
fb->cmsize = 0;
else
fb->cmsize = 1 << dc->depth;
break;
default:
return -1;
}
return 0;
}
paddr_t
grtwo_mmap(void *v, off_t offset, int prot)
{
return -1;
}
|