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
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
|
/* $OpenBSD: wildcatfb_driver.c,v 1.9 2011/11/05 14:55:51 matthieu Exp $ */
/*
* Copyright (c) 2009 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.
*/
/*
* Heavily based on the xf86-video-wsfb driver:
*
* Copyright (c) 2001 Matthieu Herrb
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - 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.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "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
* COPYRIGHT HOLDERS OR CONTRIBUTORS 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.
*
* Based on fbdev.c written by:
*
* Authors: Alan Hourihane, <alanh@fairlite.demon.co.uk>
* Michel Dänzer, <michdaen@iiic.ethz.ch>
*/
/*
* WildcatFBShadowUpdate() is derived from shadowUpdatePacked():
*
* Copyright © 2000 Keith Packard
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the name of Keith Packard not be used in
* advertising or publicity pertaining to distribution of the software without
* specific, written prior permission. Keith Packard makes no
* representations about the suitability of this software for any purpose. It
* is provided "as is" without express or implied warranty.
*
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
* EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/time.h>
#include <dev/wscons/wsconsio.h>
/* All drivers need this. */
#include "xf86.h"
#include "xf86_OSproc.h"
#include "mipointer.h"
#include "mibstore.h"
#include "micmap.h"
#include "colormapst.h"
#include "xf86cmap.h"
#include "shadow.h"
#include "fb.h"
#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6
#include "xf86Resources.h"
#include "xf86RAC.h"
#endif
#ifdef XvExtension
#include "xf86xv.h"
#endif
/* extra includes for shadow */
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include <X11/fonts/font.h>
#include "dixfontstr.h"
#include <X11/fonts/fontstruct.h>
#include "mi.h"
#include "regionstr.h"
#include "globals.h"
#include "gcstruct.h"
#ifdef X_PRIVSEP
extern int priv_open_device(const char *);
#else
#define priv_open_device(n) open(n,O_RDWR|O_NONBLOCK|O_EXCL)
#endif
#define WILDCATFB_DEFAULT_DEV "/dev/ttyC0"
#define DEBUG 0
#if DEBUG
# define TRACE_ENTER(str) ErrorF("wildcatfb: " str " %d\n",pScrn->scrnIndex)
# define TRACE_EXIT(str) ErrorF("wildcatfb: " str " done\n")
# define TRACE(str) ErrorF("wildcatfb trace: " str "\n")
#else
# define TRACE_ENTER(str)
# define TRACE_EXIT(str)
# define TRACE(str)
#endif
/* Prototypes */
static pointer WildcatFBSetup(pointer, pointer, int *, int *);
static Bool WildcatFBGetRec(ScrnInfoPtr);
static void WildcatFBFreeRec(ScrnInfoPtr);
static const OptionInfoRec * WildcatFBAvailableOptions(int, int);
static void WildcatFBIdentify(int);
static Bool WildcatFBProbe(DriverPtr, int);
static Bool WildcatFBPreInit(ScrnInfoPtr, int);
static Bool WildcatFBScreenInit(int, ScreenPtr, int, char **);
static Bool WildcatFBCloseScreen(int, ScreenPtr);
static void *WildcatFBWindowLinear(ScreenPtr, CARD32, CARD32, int, CARD32 *,
void *);
static Bool WildcatFBEnterVT(int, int);
static void WildcatFBLeaveVT(int, int);
static Bool WildcatFBSwitchMode(int, DisplayModePtr, int);
static int WildcatFBValidMode(int, DisplayModePtr, Bool, int);
static void WildcatFBLoadPalette(ScrnInfoPtr, int, int *, LOCO *, VisualPtr);
static Bool WildcatFBSaveScreen(ScreenPtr, int);
static void WildcatFBSave(ScrnInfoPtr);
static void WildcatFBRestore(ScrnInfoPtr);
static void WildcatFBShadowUpdate(ScreenPtr, shadowBufPtr);
static Bool WildcatFBDriverFunc(ScrnInfoPtr pScrn, xorgDriverFuncOp op,
pointer ptr);
/* Helper functions */
static int wildcatfb_open(char *);
static pointer wildcatfb_mmap(size_t, off_t, int);
#define WILDCATFB_VERSION 0000
#define WILDCATFB_NAME "wildcatfb"
#define WILDCATFB_DRIVER_NAME "wildcatfb"
_X_EXPORT DriverRec WILDCATFB = {
WILDCATFB_VERSION,
WILDCATFB_DRIVER_NAME,
WildcatFBIdentify,
WildcatFBProbe,
WildcatFBAvailableOptions,
NULL,
0,
WildcatFBDriverFunc
};
/* Supported "chipsets" */
static SymTabRec WildcatFBChipsets[] = {
{ 0, "wildcatfb" },
{ -1, NULL }
};
/* Supported options */
static const OptionInfoRec WildcatFBOptions[] = {
{ -1, NULL, OPTV_NONE, {0}, FALSE}
};
static XF86ModuleVersionInfo WildcatFBVersRec = {
"wildcatfb",
MODULEVENDORSTRING,
MODINFOSTRING1,
MODINFOSTRING2,
XORG_VERSION_CURRENT,
PACKAGE_VERSION_MAJOR,
PACKAGE_VERSION_MINOR,
PACKAGE_VERSION_PATCHLEVEL,
ABI_CLASS_VIDEODRV,
ABI_VIDEODRV_VERSION,
NULL,
{0, 0, 0, 0}
};
_X_EXPORT XF86ModuleData wildcatfbModuleData = { &WildcatFBVersRec, WildcatFBSetup, NULL };
static pointer
WildcatFBSetup(pointer module, pointer opts, int *errmaj, int *errmin)
{
static Bool setupDone = FALSE;
const char *osname;
/* Check that we're being loaded on a OpenBSD system. */
LoaderGetOS(&osname, NULL, NULL, NULL);
if (!osname || strcmp(osname, "openbsd") != 0) {
if (errmaj)
*errmaj = LDR_BADOS;
if (errmin)
*errmin = 0;
return NULL;
}
if (!setupDone) {
setupDone = TRUE;
xf86AddDriver(&WILDCATFB, module, HaveDriverFuncs);
return (pointer)1;
} else {
if (errmaj != NULL)
*errmaj = LDR_ONCEONLY;
return NULL;
}
}
/* Private data */
typedef struct {
int fd; /* File descriptor of open device. */
struct wsdisplay_fbinfo info; /* Frame buffer characteristics. */
int linebytes; /* Number of bytes per row. */
unsigned char* ov0;
unsigned char* ov1;
size_t ov_len;
void * shadow;
CloseScreenProcPtr CloseScreen;
CreateScreenResourcesProcPtr CreateScreenResources;
EntityInfoPtr pEnt;
struct wsdisplay_cmap saved_cmap;
OptionInfoPtr Options;
} WildcatFBRec, *WildcatFBPtr;
#define WILDCATFBPTR(p) ((WildcatFBPtr)((p)->driverPrivate))
static Bool
WildcatFBGetRec(ScrnInfoPtr pScrn)
{
if (pScrn->driverPrivate != NULL)
return TRUE;
pScrn->driverPrivate = xnfcalloc(sizeof(WildcatFBRec), 1);
return TRUE;
}
static void
WildcatFBFreeRec(ScrnInfoPtr pScrn)
{
if (pScrn->driverPrivate == NULL)
return;
free(pScrn->driverPrivate);
pScrn->driverPrivate = NULL;
}
static const OptionInfoRec *
WildcatFBAvailableOptions(int chipid, int busid)
{
return WildcatFBOptions;
}
static void
WildcatFBIdentify(int flags)
{
xf86PrintChipsets(WILDCATFB_NAME, "driver for ``Wildcat'' wsdisplay framebuffer",
WildcatFBChipsets);
}
/* Open the framebuffer device. */
static int
wildcatfb_open(char *dev)
{
int fd = -1;
/* Try argument from xorg.conf first. */
if (dev == NULL || ((fd = priv_open_device(dev)) == -1)) {
/* Second: environment variable. */
dev = getenv("XDEVICE");
if (dev == NULL || ((fd = priv_open_device(dev)) == -1)) {
/* Last try: default device. */
dev = WILDCATFB_DEFAULT_DEV;
if ((fd = priv_open_device(dev)) == -1) {
return -1;
}
}
}
return fd;
}
/* Map the framebuffer's memory. */
static pointer
wildcatfb_mmap(size_t len, off_t off, int fd)
{
int pagemask, mapsize;
caddr_t addr;
pointer mapaddr;
pagemask = getpagesize() - 1;
mapsize = ((int) len + pagemask) & ~pagemask;
addr = 0;
/*
* Try and make it private first, that way once we get it, an
* interloper, e.g. another server, can't get this frame buffer,
* and if another server already has it, this one won't.
*/
mapaddr = (pointer) mmap(addr, mapsize,
PROT_READ | PROT_WRITE, MAP_SHARED,
fd, off);
if (mapaddr == (pointer) -1) {
mapaddr = NULL;
}
#if DEBUG
ErrorF("mmap returns: addr %p len 0x%x\n", mapaddr, mapsize);
#endif
return mapaddr;
}
static Bool
WildcatFBProbe(DriverPtr drv, int flags)
{
int i, fd, entity;
GDevPtr *devSections;
int numDevSections;
char *dev;
Bool foundScreen = FALSE;
TRACE("probe start");
/* For now, just bail out for PROBE_DETECT. */
if (flags & PROBE_DETECT)
return FALSE;
if ((numDevSections = xf86MatchDevice(WILDCATFB_DRIVER_NAME,
&devSections)) <= 0)
return FALSE;
for (i = 0; i < numDevSections; i++) {
ScrnInfoPtr pScrn = NULL;
dev = xf86FindOptionValue(devSections[i]->options, "device");
if ((fd = wildcatfb_open(dev)) >= 0) {
entity = xf86ClaimFbSlot(drv, 0, devSections[i], TRUE);
pScrn = xf86ConfigFbEntity(NULL,0,entity,
NULL,NULL,NULL,NULL);
if (pScrn != NULL) {
foundScreen = TRUE;
pScrn->driverVersion = WILDCATFB_VERSION;
pScrn->driverName = WILDCATFB_DRIVER_NAME;
pScrn->name = WILDCATFB_NAME;
pScrn->Probe = WildcatFBProbe;
pScrn->PreInit = WildcatFBPreInit;
pScrn->ScreenInit = WildcatFBScreenInit;
pScrn->SwitchMode = WildcatFBSwitchMode;
pScrn->AdjustFrame = NULL;
pScrn->EnterVT = WildcatFBEnterVT;
pScrn->LeaveVT = WildcatFBLeaveVT;
pScrn->ValidMode = WildcatFBValidMode;
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"using %s\n", dev != NULL ? dev :
"default device");
}
}
}
free(devSections);
TRACE("probe done");
return foundScreen;
}
static Bool
WildcatFBPreInit(ScrnInfoPtr pScrn, int flags)
{
WildcatFBPtr fPtr;
int defaultDepth, depths, wstype;
char *dev, *s;
Gamma zeros = {0.0, 0.0, 0.0};
DisplayModePtr mode;
if (flags & PROBE_DETECT) return FALSE;
TRACE_ENTER("PreInit");
if (pScrn->numEntities != 1) return FALSE;
pScrn->monitor = pScrn->confScreen->monitor;
WildcatFBGetRec(pScrn);
fPtr = WILDCATFBPTR(pScrn);
fPtr->pEnt = xf86GetEntityInfo(pScrn->entityList[0]);
#ifndef XSERVER_LIBPCIACCESS
pScrn->racMemFlags = RAC_FB | RAC_COLORMAP | RAC_CURSOR | RAC_VIEWPORT;
pScrn->racIoFlags = pScrn->racMemFlags;
#endif
dev = xf86FindOptionValue(fPtr->pEnt->device->options, "device");
fPtr->fd = wildcatfb_open(dev);
if (fPtr->fd == -1) {
return FALSE;
}
if (ioctl(fPtr->fd, WSDISPLAYIO_GTYPE, &wstype) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"ioctl WSDISPLAY_GTYPE: %s\n",
strerror(errno));
return FALSE;
}
if (wstype != WSDISPLAY_TYPE_IFB) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"not an Wildcat device (WSDISPLAY_GTYPE: %d)\n",
wstype);
return FALSE;
}
/*
* Depth
*/
defaultDepth = 7; /* high bit is too magic for us */
if (!xf86SetDepthBpp(pScrn, defaultDepth, 0, 0, 0))
return FALSE;
if (ioctl(fPtr->fd, WSDISPLAYIO_GINFO, &fPtr->info) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"ioctl WSDISPLAY_GINFO: %s\n",
strerror(errno));
return FALSE;
}
if (ioctl(fPtr->fd, WSDISPLAYIO_LINEBYTES, &fPtr->linebytes) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"ioctl WSDISPLAYIO_LINEBYTES: %s\n",
strerror(errno));
return FALSE;
}
/*
* Allocate room for saving the colormap.
*/
if (fPtr->info.cmsize != 0) {
fPtr->saved_cmap.red =
(unsigned char *)malloc(fPtr->info.cmsize);
if (fPtr->saved_cmap.red == NULL) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"Cannot malloc %d bytes\n", fPtr->info.cmsize);
return FALSE;
}
fPtr->saved_cmap.green =
(unsigned char *)malloc(fPtr->info.cmsize);
if (fPtr->saved_cmap.green == NULL) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"Cannot malloc %d bytes\n", fPtr->info.cmsize);
free(fPtr->saved_cmap.red);
return FALSE;
}
fPtr->saved_cmap.blue =
(unsigned char *)malloc(fPtr->info.cmsize);
if (fPtr->saved_cmap.blue == NULL) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"Cannot malloc %d bytes\n", fPtr->info.cmsize);
free(fPtr->saved_cmap.red);
free(fPtr->saved_cmap.green);
return FALSE;
}
}
/* Check consistency. */
if (pScrn->bitsPerPixel != fPtr->info.depth) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"specified depth (%d) or bpp (%d) doesn't match "
"framebuffer depth (%d)\n", pScrn->depth,
pScrn->bitsPerPixel, fPtr->info.depth);
return FALSE;
}
xf86PrintDepthBpp(pScrn);
/* Visual init */
if (!xf86SetDefaultVisual(pScrn, -1))
return FALSE;
xf86SetGamma(pScrn,zeros);
pScrn->progClock = TRUE;
pScrn->rgbBits = 6;
pScrn->chipset = "wildcatfb";
pScrn->videoRam = fPtr->linebytes * fPtr->info.height;
xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Vidmem: %dk\n",
pScrn->videoRam/1024);
/* Handle options. */
xf86CollectOptions(pScrn, NULL);
if (!(fPtr->Options = malloc(sizeof(WildcatFBOptions))))
return FALSE;
memcpy(fPtr->Options, WildcatFBOptions, sizeof(WildcatFBOptions));
xf86ProcessOptions(pScrn->scrnIndex, fPtr->pEnt->device->options,
fPtr->Options);
/* Fake video mode struct. */
mode = (DisplayModePtr)malloc(sizeof(DisplayModeRec));
mode->prev = mode;
mode->next = mode;
mode->name = "wildcatfb current mode";
mode->status = MODE_OK;
mode->type = M_T_BUILTIN;
mode->Clock = 0;
mode->HDisplay = fPtr->info.width;
mode->HSyncStart = 0;
mode->HSyncEnd = 0;
mode->HTotal = 0;
mode->HSkew = 0;
mode->VDisplay = fPtr->info.height;
mode->VSyncStart = 0;
mode->VSyncEnd = 0;
mode->VTotal = 0;
mode->VScan = 0;
mode->Flags = 0;
pScrn->currentMode = pScrn->modes = mode;
pScrn->virtualX = fPtr->info.width;
pScrn->virtualY = fPtr->info.height;
pScrn->displayWidth = pScrn->virtualX;
/* Set the display resolution. */
xf86SetDpi(pScrn, 0, 0);
/* Load shadow. */
xf86DrvMsg(pScrn->scrnIndex, X_CONFIG,
"Using \"Shadow Framebuffer\"\n");
if (xf86LoadSubModule(pScrn, "shadow") == NULL) {
WildcatFBFreeRec(pScrn);
return FALSE;
}
if (xf86LoadSubModule(pScrn, "fb") == NULL) {
WildcatFBFreeRec(pScrn);
return FALSE;
}
TRACE_EXIT("PreInit");
return TRUE;
}
static Bool
WildcatFBCreateScreenResources(ScreenPtr pScreen)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
PixmapPtr pPixmap;
Bool ret;
pScreen->CreateScreenResources = fPtr->CreateScreenResources;
ret = pScreen->CreateScreenResources(pScreen);
pScreen->CreateScreenResources = WildcatFBCreateScreenResources;
if (!ret)
return FALSE;
pPixmap = pScreen->GetScreenPixmap(pScreen);
if (!shadowAdd(pScreen, pPixmap, WildcatFBShadowUpdate,
WildcatFBWindowLinear, 0, NULL)) {
return FALSE;
}
return TRUE;
}
static Bool
WildcatFBShadowInit(ScreenPtr pScreen)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
if (!shadowSetup(pScreen))
return FALSE;
fPtr->CreateScreenResources = pScreen->CreateScreenResources;
pScreen->CreateScreenResources = WildcatFBCreateScreenResources;
return TRUE;
}
static Bool
WildcatFBScreenInit(int scrnIndex, ScreenPtr pScreen, int argc, char **argv)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
VisualPtr visual;
int ret, flags, ncolors;
int wsmode = WSDISPLAYIO_MODE_MAPPED;
size_t len;
TRACE_ENTER("WildcatFBScreenInit");
len = fPtr->linebytes*fPtr->info.height;
/* Switch to graphics mode - required before mmap. */
if (ioctl(fPtr->fd, WSDISPLAYIO_SMODE, &wsmode) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"ioctl WSDISPLAYIO_SMODE: %s\n",
strerror(errno));
return FALSE;
}
/* Try to map the two overlay areas */
fPtr->ov0 = wildcatfb_mmap(len, 0x00000000, fPtr->fd);
if (fPtr->ov0 == NULL) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"wildcatfb_mmap: %s\n", strerror(errno));
return FALSE;
}
fPtr->ov1 = wildcatfb_mmap(len, 0x01000000, fPtr->fd);
if (fPtr->ov1 == NULL) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"wildcatfb_mmap: %s\n", strerror(errno));
if (munmap(fPtr->ov0, len) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"munmap: %s\n", strerror(errno));
}
return FALSE;
}
fPtr->ov_len = len;
WildcatFBSave(pScrn);
pScrn->vtSema = TRUE;
/* MI layer */
miClearVisualTypes();
if (!miSetVisualTypes(pScrn->depth,
miGetDefaultVisualMask(pScrn->depth),
pScrn->rgbBits, pScrn->defaultVisual))
return FALSE;
if (!miSetPixmapDepths())
return FALSE;
fPtr->shadow = calloc(1, pScrn->virtualX * pScrn->virtualY *
pScrn->bitsPerPixel/8);
if (!fPtr->shadow) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"Failed to allocate shadow framebuffer\n");
return FALSE;
}
ret = fbScreenInit(pScreen,
fPtr->shadow,
pScrn->virtualX, pScrn->virtualY,
pScrn->xDpi, pScrn->yDpi,
pScrn->displayWidth, pScrn->bitsPerPixel);
if (!ret) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"fbScreenInit error");
return FALSE;
}
if (!fbPictureInit(pScreen, NULL, 0))
xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
"RENDER extension initialisation failed.");
if (!WildcatFBShadowInit(pScreen)) {
xf86DrvMsg(scrnIndex, X_ERROR,
"shadow framebuffer initialization failed\n");
return FALSE;
}
xf86SetBlackWhitePixels(pScreen);
miInitializeBackingStore(pScreen);
xf86SetBackingStore(pScreen);
/* Software cursor. */
miDCInitialize(pScreen, xf86GetPointerScreenFuncs());
/* Colormap */
if (!miCreateDefColormap(pScreen))
return FALSE;
flags = CMAP_RELOAD_ON_MODE_SWITCH;
ncolors = fPtr->info.cmsize;
if(!xf86HandleColormaps(pScreen, ncolors, 8, WildcatFBLoadPalette,
NULL, flags))
return FALSE;
pScreen->SaveScreen = WildcatFBSaveScreen;
#ifdef XvExtension
{
XF86VideoAdaptorPtr *ptr;
int n = xf86XVListGenericAdaptors(pScrn,&ptr);
if (n) {
xf86XVScreenInit(pScreen,ptr,n);
}
}
#endif
/* Wrap the current CloseScreen function. */
fPtr->CloseScreen = pScreen->CloseScreen;
pScreen->CloseScreen = WildcatFBCloseScreen;
TRACE_EXIT("WildcatFBScreenInit");
return TRUE;
}
static Bool
WildcatFBCloseScreen(int scrnIndex, ScreenPtr pScreen)
{
ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
PixmapPtr pPixmap = pScreen->GetScreenPixmap(pScreen);
TRACE_ENTER("WildcatFBCloseScreen");
shadowRemove(pScreen, pPixmap);
if (pScrn->vtSema) {
WildcatFBRestore(pScrn);
if (munmap(fPtr->ov0, fPtr->ov_len) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"munmap: %s\n", strerror(errno));
}
fPtr->ov0 = NULL;
if (munmap(fPtr->ov1, fPtr->ov_len) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"munmap: %s\n", strerror(errno));
}
fPtr->ov1 = NULL;
}
pScrn->vtSema = FALSE;
/* Unwrap CloseScreen. */
pScreen->CloseScreen = fPtr->CloseScreen;
TRACE_EXIT("WildcatFBCloseScreen");
return (*pScreen->CloseScreen)(scrnIndex, pScreen);
}
static void *
WildcatFBWindowLinear(ScreenPtr pScreen, CARD32 row, CARD32 offset, int mode,
CARD32 *size, void *closure)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"%s called, but never should be!\n", __func__);
return NULL;
}
static Bool
WildcatFBEnterVT(int scrnIndex, int flags)
{
ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
int wsmode = WSDISPLAYIO_MODE_DUMBFB;
TRACE_ENTER("EnterVT");
/* Switch to graphics mode. */
if (ioctl(fPtr->fd, WSDISPLAYIO_SMODE, &wsmode) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"ioctl WSDISPLAYIO_SMODE: %s\n",
strerror(errno));
return FALSE;
}
pScrn->vtSema = TRUE;
TRACE_EXIT("EnterVT");
return TRUE;
}
static void
WildcatFBLeaveVT(int scrnIndex, int flags)
{
ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
TRACE_ENTER("LeaveVT");
WildcatFBRestore(pScrn);
TRACE_EXIT("LeaveVT");
}
static Bool
WildcatFBSwitchMode(int scrnIndex, DisplayModePtr mode, int flags)
{
#if DEBUG
ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
#endif
TRACE_ENTER("SwitchMode");
/* Nothing else to do. */
return TRUE;
}
static int
WildcatFBValidMode(int scrnIndex, DisplayModePtr mode, Bool verbose, int flags)
{
#if DEBUG
ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
#endif
TRACE_ENTER("ValidMode");
return MODE_OK;
}
static void
WildcatFBLoadPalette(ScrnInfoPtr pScrn, int numColors, int *indices,
LOCO *colors, VisualPtr pVisual)
{
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
struct wsdisplay_cmap cmap;
unsigned char red[256],green[256],blue[256];
int i, indexMin=256, indexMax=0;
TRACE_ENTER("LoadPalette");
/*
* Change all colors in 2 ioctls
* and limit the data to be transfered.
*/
for (i = 0; i < numColors; i++) {
if (indices[i] < indexMin)
indexMin = indices[i];
if (indices[i] > indexMax)
indexMax = indices[i];
}
cmap.index = indexMin;
cmap.count = indexMax - indexMin + 1;
cmap.red = &red[indexMin];
cmap.green = &green[indexMin];
cmap.blue = &blue[indexMin];
/* Get current map. */
if (ioctl(fPtr->fd, WSDISPLAYIO_GETCMAP, &cmap) == -1)
ErrorF("ioctl FBIOGETCMAP: %s\n", strerror(errno));
/* Change the colors that require updating. */
for (i = 0; i < numColors; i++) {
red[indices[i]] = colors[indices[i]].red;
green[indices[i]] = colors[indices[i]].green;
blue[indices[i]] = colors[indices[i]].blue;
}
/* Write the colormap back. */
if (ioctl(fPtr->fd,WSDISPLAYIO_PUTCMAP, &cmap) == -1)
ErrorF("ioctl FBIOPUTCMAP: %s\n", strerror(errno));
TRACE_EXIT("LoadPalette");
}
static Bool
WildcatFBSaveScreen(ScreenPtr pScreen, int mode)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
int state;
TRACE_ENTER("SaveScreen");
if (!pScrn->vtSema)
return TRUE;
if (mode != SCREEN_SAVER_FORCER) {
state = xf86IsUnblank(mode)?WSDISPLAYIO_VIDEO_ON:
WSDISPLAYIO_VIDEO_OFF;
ioctl(fPtr->fd,
WSDISPLAYIO_SVIDEO, &state);
}
TRACE_EXIT("SaveScreen");
return TRUE;
}
static void
WildcatFBSave(ScrnInfoPtr pScrn)
{
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
TRACE_ENTER("WildcatFBSave");
if (fPtr->info.cmsize == 0)
return;
fPtr->saved_cmap.index = 0;
fPtr->saved_cmap.count = fPtr->info.cmsize;
if (ioctl(fPtr->fd, WSDISPLAYIO_GETCMAP,
&(fPtr->saved_cmap)) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"error saving colormap %s\n", strerror(errno));
}
TRACE_EXIT("WildcatFBSave");
}
static void
WildcatFBRestore(ScrnInfoPtr pScrn)
{
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
int mode;
TRACE_ENTER("WildcatFBRestore");
if (fPtr->info.cmsize != 0) {
/* reset colormap for text mode */
if (ioctl(fPtr->fd, WSDISPLAYIO_PUTCMAP,
&(fPtr->saved_cmap)) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"error restoring colormap %s\n",
strerror(errno));
}
}
/* Clear the screen. */
memset(fPtr->ov0, 0, fPtr->ov_len);
memset(fPtr->ov1, 0, fPtr->ov_len);
/* Restore the text mode. */
mode = WSDISPLAYIO_MODE_EMUL;
if (ioctl(fPtr->fd, WSDISPLAYIO_SMODE, &mode) == -1) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"error setting text mode %s\n", strerror(errno));
}
TRACE_EXIT("WildcatFBRestore");
}
static Bool
WildcatFBDriverFunc(ScrnInfoPtr pScrn, xorgDriverFuncOp op, pointer ptr)
{
xorgHWFlags *flag;
switch (op) {
case GET_REQUIRED_HW_INTERFACES:
flag = (CARD32*)ptr;
*flag = 0;
return TRUE;
default:
return FALSE;
}
}
static void
WildcatFBShadowUpdate(ScreenPtr pScreen, shadowBufPtr pBuf)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
WildcatFBPtr fPtr = WILDCATFBPTR(pScrn);
RegionPtr damage = shadowDamage (pBuf);
PixmapPtr pShadow = pBuf->pPixmap;
int nbox = REGION_NUM_RECTS (damage);
BoxPtr pbox = REGION_RECTS (damage);
FbBits *shaBase, *shaLine, *sha;
FbStride shaStride;
int scrBase, scrLine, scr;
int shaBpp;
int shaXoff, shaYoff; /* XXX assumed to be zero */
int x, y, w, h, width;
int i;
FbBits *winBase0 = NULL, *winBase1 = NULL, *win0, *win1;
int winoffset;
CARD32 winSize;
fbGetDrawable (&pShadow->drawable, shaBase, shaStride, shaBpp, shaXoff, shaYoff);
while (nbox--)
{
x = pbox->x1 * shaBpp;
y = pbox->y1;
w = (pbox->x2 - pbox->x1) * shaBpp;
h = pbox->y2 - pbox->y1;
scrLine = (x >> FB_SHIFT);
shaLine = shaBase + y * shaStride + (x >> FB_SHIFT);
x &= FB_MASK;
w = (w + x + FB_MASK) >> FB_SHIFT;
while (h--)
{
winSize = 0;
scrBase = 0;
width = w;
scr = scrLine;
sha = shaLine;
while (width) {
/* how much remains in this window */
i = scrBase + winSize - scr;
if (i <= 0 || scr < scrBase)
{
winSize = fPtr->linebytes;
winoffset = y * winSize + scr * sizeof (FbBits);
winBase0 = (FbBits *)((CARD8 *)fPtr->ov0 + winoffset);
winBase1 = (FbBits *)((CARD8 *)fPtr->ov1 + winoffset);
scrBase = scr;
winSize /= sizeof (FbBits);
i = winSize;
}
win0 = winBase0 + (scr - scrBase);
win1 = winBase1 + (scr - scrBase);
if (i > width)
i = width;
width -= i;
scr += i;
while (i--) {
*win0++ = *sha;
*win1++ = *sha++;
}
}
shaLine += shaStride;
y++;
}
pbox++;
}
}
|