st/xorg: render throttling in block handler
[mesa.git] / src / gallium / state_trackers / xorg / xorg_driver.c
1 /*
2 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 *
26 * Author: Alan Hourihane <alanh@tungstengraphics.com>
27 * Author: Jakob Bornecrantz <wallbraker@gmail.com>
28 *
29 */
30
31
32 #include "xorg-server.h"
33 #include "xf86.h"
34 #include "xf86_OSproc.h"
35 #include "compiler.h"
36 #include "xf86PciInfo.h"
37 #include "xf86Pci.h"
38 #include "mipointer.h"
39 #include "micmap.h"
40 #include <X11/extensions/randr.h>
41 #include "fb.h"
42 #include "edid.h"
43 #include "xf86i2c.h"
44 #include "xf86Crtc.h"
45 #include "miscstruct.h"
46 #include "dixstruct.h"
47 #include "xf86xv.h"
48 #include <X11/extensions/Xv.h>
49 #ifndef XSERVER_LIBPCIACCESS
50 #error "libpciaccess needed"
51 #endif
52
53 #include <pciaccess.h>
54
55 #include "pipe/p_context.h"
56 #include "xorg_tracker.h"
57 #include "xorg_winsys.h"
58
59 #ifdef HAVE_LIBKMS
60 #include "libkms.h"
61 #endif
62
63 /*
64 * Functions and symbols exported to Xorg via pointers.
65 */
66
67 static Bool drv_pre_init(ScrnInfoPtr pScrn, int flags);
68 static Bool drv_screen_init(int scrnIndex, ScreenPtr pScreen, int argc,
69 char **argv);
70 static Bool drv_switch_mode(int scrnIndex, DisplayModePtr mode, int flags);
71 static void drv_adjust_frame(int scrnIndex, int x, int y, int flags);
72 static Bool drv_enter_vt(int scrnIndex, int flags);
73 static void drv_leave_vt(int scrnIndex, int flags);
74 static void drv_free_screen(int scrnIndex, int flags);
75 static ModeStatus drv_valid_mode(int scrnIndex, DisplayModePtr mode, Bool verbose,
76 int flags);
77
78 typedef enum
79 {
80 OPTION_SW_CURSOR,
81 OPTION_2D_ACCEL,
82 } drv_option_enums;
83
84 static const OptionInfoRec drv_options[] = {
85 {OPTION_SW_CURSOR, "SWcursor", OPTV_BOOLEAN, {0}, FALSE},
86 {OPTION_2D_ACCEL, "2DAccel", OPTV_BOOLEAN, {0}, FALSE},
87 {-1, NULL, OPTV_NONE, {0}, FALSE}
88 };
89
90
91 /*
92 * Exported Xorg driver functions to winsys
93 */
94
95 const OptionInfoRec *
96 xorg_tracker_available_options(int chipid, int busid)
97 {
98 return drv_options;
99 }
100
101 void
102 xorg_tracker_set_functions(ScrnInfoPtr scrn)
103 {
104 scrn->PreInit = drv_pre_init;
105 scrn->ScreenInit = drv_screen_init;
106 scrn->SwitchMode = drv_switch_mode;
107 scrn->AdjustFrame = drv_adjust_frame;
108 scrn->EnterVT = drv_enter_vt;
109 scrn->LeaveVT = drv_leave_vt;
110 scrn->FreeScreen = drv_free_screen;
111 scrn->ValidMode = drv_valid_mode;
112 }
113
114
115 /*
116 * Internal function definitions
117 */
118
119 static Bool drv_init_front_buffer_functions(ScrnInfoPtr pScrn);
120 static Bool drv_close_screen(int scrnIndex, ScreenPtr pScreen);
121 static Bool drv_save_hw_state(ScrnInfoPtr pScrn);
122 static Bool drv_restore_hw_state(ScrnInfoPtr pScrn);
123
124
125 /*
126 * Internal functions
127 */
128
129 static Bool
130 drv_get_rec(ScrnInfoPtr pScrn)
131 {
132 if (pScrn->driverPrivate)
133 return TRUE;
134
135 pScrn->driverPrivate = xnfcalloc(sizeof(modesettingRec), 1);
136
137 return TRUE;
138 }
139
140 static void
141 drv_free_rec(ScrnInfoPtr pScrn)
142 {
143 if (!pScrn)
144 return;
145
146 if (!pScrn->driverPrivate)
147 return;
148
149 xfree(pScrn->driverPrivate);
150
151 pScrn->driverPrivate = NULL;
152 }
153
154 static void
155 drv_probe_ddc(ScrnInfoPtr pScrn, int index)
156 {
157 ConfiguredMonitor = NULL;
158 }
159
160 static Bool
161 drv_crtc_resize(ScrnInfoPtr pScrn, int width, int height)
162 {
163 modesettingPtr ms = modesettingPTR(pScrn);
164 PixmapPtr rootPixmap;
165 ScreenPtr pScreen = pScrn->pScreen;
166
167 if (width == pScrn->virtualX && height == pScrn->virtualY)
168 return TRUE;
169
170 pScrn->virtualX = width;
171 pScrn->virtualY = height;
172
173 /*
174 * Remove the old framebuffer & texture.
175 */
176 drmModeRmFB(ms->fd, ms->fb_id);
177 if (!ms->destroy_front_buffer(pScrn))
178 FatalError("failed to destroy front buffer\n");
179
180 rootPixmap = pScreen->GetScreenPixmap(pScreen);
181 if (!pScreen->ModifyPixmapHeader(rootPixmap, width, height, -1, -1, -1, NULL))
182 return FALSE;
183
184 /* HW dependent - FIXME */
185 pScrn->displayWidth = pScrn->virtualX;
186
187 /* now create new frontbuffer */
188 return ms->create_front_buffer(pScrn) && ms->bind_front_buffer(pScrn);
189 }
190
191 static const xf86CrtcConfigFuncsRec crtc_config_funcs = {
192 .resize = drv_crtc_resize
193 };
194
195 static Bool
196 drv_init_drm(ScrnInfoPtr pScrn)
197 {
198 modesettingPtr ms = modesettingPTR(pScrn);
199
200 /* deal with server regeneration */
201 if (ms->fd < 0) {
202 char *BusID;
203
204 BusID = xalloc(64);
205 sprintf(BusID, "PCI:%d:%d:%d",
206 ((ms->PciInfo->domain << 8) | ms->PciInfo->bus),
207 ms->PciInfo->dev, ms->PciInfo->func
208 );
209
210 ms->fd = drmOpen(NULL, BusID);
211
212 if (ms->fd < 0)
213 return FALSE;
214 }
215
216 return TRUE;
217 }
218
219 static Bool
220 drv_init_resource_management(ScrnInfoPtr pScrn)
221 {
222 modesettingPtr ms = modesettingPTR(pScrn);
223
224 if (ms->screen || ms->kms)
225 return TRUE;
226
227 ms->api = drm_api_create();
228 if (ms->api) {
229 ms->screen = ms->api->create_screen(ms->api, ms->fd, NULL);
230
231 if (ms->screen)
232 return TRUE;
233
234 if (ms->api->destroy)
235 ms->api->destroy(ms->api);
236
237 ms->api = NULL;
238 }
239
240 #ifdef HAVE_LIBKMS
241 if (!kms_create(ms->fd, &ms->kms))
242 return TRUE;
243 #endif
244
245 return FALSE;
246 }
247
248 static Bool
249 drv_close_resource_management(ScrnInfoPtr pScrn)
250 {
251 modesettingPtr ms = modesettingPTR(pScrn);
252
253 if (ms->screen)
254 ms->screen->destroy(ms->screen);
255 ms->screen = NULL;
256
257 if (ms->api && ms->api->destroy)
258 ms->api->destroy(ms->api);
259 ms->api = NULL;
260
261 #ifdef HAVE_LIBKMS
262 if (ms->kms)
263 kms_destroy(ms->kms);
264 ms->kms = NULL;
265 #endif
266
267 return TRUE;
268 }
269
270 static Bool
271 drv_pre_init(ScrnInfoPtr pScrn, int flags)
272 {
273 xf86CrtcConfigPtr xf86_config;
274 modesettingPtr ms;
275 rgb defaultWeight = { 0, 0, 0 };
276 EntityInfoPtr pEnt;
277 EntPtr msEnt = NULL;
278 int max_width, max_height;
279
280 if (pScrn->numEntities != 1)
281 return FALSE;
282
283 pEnt = xf86GetEntityInfo(pScrn->entityList[0]);
284
285 if (flags & PROBE_DETECT) {
286 drv_probe_ddc(pScrn, pEnt->index);
287 return TRUE;
288 }
289
290 /* Allocate driverPrivate */
291 if (!drv_get_rec(pScrn))
292 return FALSE;
293
294 ms = modesettingPTR(pScrn);
295 ms->SaveGeneration = -1;
296 ms->pEnt = pEnt;
297
298 pScrn->displayWidth = 640; /* default it */
299
300 if (ms->pEnt->location.type != BUS_PCI)
301 return FALSE;
302
303 ms->PciInfo = xf86GetPciInfoForEntity(ms->pEnt->index);
304
305 /* Allocate an entity private if necessary */
306 if (xf86IsEntityShared(pScrn->entityList[0])) {
307 FatalError("Entity");
308 #if 0
309 msEnt = xf86GetEntityPrivate(pScrn->entityList[0],
310 modesettingEntityIndex)->ptr;
311 ms->entityPrivate = msEnt;
312 #else
313 (void)msEnt;
314 #endif
315 } else
316 ms->entityPrivate = NULL;
317
318 if (xf86IsEntityShared(pScrn->entityList[0])) {
319 if (xf86IsPrimInitDone(pScrn->entityList[0])) {
320 /* do something */
321 } else {
322 xf86SetPrimInitDone(pScrn->entityList[0]);
323 }
324 }
325
326 ms->fd = -1;
327 ms->api = NULL;
328 if (!drv_init_drm(pScrn))
329 return FALSE;
330
331 pScrn->monitor = pScrn->confScreen->monitor;
332 pScrn->progClock = TRUE;
333 pScrn->rgbBits = 8;
334
335 if (!xf86SetDepthBpp
336 (pScrn, 0, 0, 0,
337 PreferConvert24to32 | SupportConvert24to32 | Support32bppFb))
338 return FALSE;
339
340 switch (pScrn->depth) {
341 case 15:
342 case 16:
343 case 24:
344 break;
345 default:
346 xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
347 "Given depth (%d) is not supported by the driver\n",
348 pScrn->depth);
349 return FALSE;
350 }
351 xf86PrintDepthBpp(pScrn);
352
353 if (!xf86SetWeight(pScrn, defaultWeight, defaultWeight))
354 return FALSE;
355 if (!xf86SetDefaultVisual(pScrn, -1))
356 return FALSE;
357
358 /* Process the options */
359 xf86CollectOptions(pScrn, NULL);
360 if (!(ms->Options = xalloc(sizeof(drv_options))))
361 return FALSE;
362 memcpy(ms->Options, drv_options, sizeof(drv_options));
363 xf86ProcessOptions(pScrn->scrnIndex, pScrn->options, ms->Options);
364
365 /* Allocate an xf86CrtcConfig */
366 xf86CrtcConfigInit(pScrn, &crtc_config_funcs);
367 xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
368
369 max_width = 8192;
370 max_height = 8192;
371 xf86CrtcSetSizeRange(pScrn, 320, 200, max_width, max_height);
372
373 if (xf86ReturnOptValBool(ms->Options, OPTION_SW_CURSOR, FALSE)) {
374 ms->SWCursor = TRUE;
375 }
376
377 drv_save_hw_state(pScrn);
378
379 xorg_crtc_init(pScrn);
380 xorg_output_init(pScrn);
381
382 if (!xf86InitialConfiguration(pScrn, TRUE)) {
383 xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "No valid modes.\n");
384 drv_restore_hw_state(pScrn);
385 return FALSE;
386 }
387
388 drv_restore_hw_state(pScrn);
389
390 /*
391 * If the driver can do gamma correction, it should call xf86SetGamma() here.
392 */
393 {
394 Gamma zeros = { 0.0, 0.0, 0.0 };
395
396 if (!xf86SetGamma(pScrn, zeros)) {
397 return FALSE;
398 }
399 }
400
401 if (pScrn->modes == NULL) {
402 xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "No modes.\n");
403 return FALSE;
404 }
405
406 pScrn->currentMode = pScrn->modes;
407
408 /* Set display resolution */
409 xf86SetDpi(pScrn, 0, 0);
410
411 /* Load the required sub modules */
412 if (!xf86LoadSubModule(pScrn, "fb"))
413 return FALSE;
414
415 /* XXX: these aren't needed when we are using libkms */
416 if (!xf86LoadSubModule(pScrn, "exa"))
417 return FALSE;
418
419 #ifdef DRI2
420 if (!xf86LoadSubModule(pScrn, "dri2"))
421 return FALSE;
422 #endif
423
424 return TRUE;
425 }
426
427 static Bool
428 drv_save_hw_state(ScrnInfoPtr pScrn)
429 {
430 /*xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);*/
431
432 return TRUE;
433 }
434
435 static Bool
436 drv_restore_hw_state(ScrnInfoPtr pScrn)
437 {
438 /*xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);*/
439
440 return TRUE;
441 }
442
443 static void drv_block_handler(int i, pointer blockData, pointer pTimeout,
444 pointer pReadmask)
445 {
446 ScreenPtr pScreen = screenInfo.screens[i];
447 modesettingPtr ms = modesettingPTR(xf86Screens[pScreen->myNum]);
448
449 pScreen->BlockHandler = ms->blockHandler;
450 pScreen->BlockHandler(i, blockData, pTimeout, pReadmask);
451 pScreen->BlockHandler = drv_block_handler;
452
453 if (ms->ctx) {
454 int j;
455
456 ms->ctx->flush(ms->ctx, PIPE_FLUSH_RENDER_CACHE, &ms->fence[XORG_NR_FENCES-1]);
457
458 if (ms->fence[0])
459 ms->ctx->screen->fence_finish(ms->ctx->screen, ms->fence[0], 0);
460
461 /* The amount of rendering generated by a block handler can be
462 * quite small. Let us get a fair way ahead of hardware before
463 * throttling.
464 */
465 for (j = 0; j < XORG_NR_FENCES; j++)
466 ms->screen->fence_reference(ms->screen,
467 &ms->fence[j],
468 ms->fence[j+1]);
469 }
470
471
472 #ifdef DRM_MODE_FEATURE_DIRTYFB
473 {
474 RegionPtr dirty = DamageRegion(ms->damage);
475 unsigned num_cliprects = REGION_NUM_RECTS(dirty);
476
477 if (num_cliprects) {
478 drmModeClip *clip = alloca(num_cliprects * sizeof(drmModeClip));
479 BoxPtr rect = REGION_RECTS(dirty);
480 int i;
481
482 /* XXX no need for copy? */
483 for (i = 0; i < num_cliprects; i++, rect++) {
484 clip[i].x1 = rect->x1;
485 clip[i].y1 = rect->y1;
486 clip[i].x2 = rect->x2;
487 clip[i].y2 = rect->y2;
488 }
489
490 /* TODO query connector property to see if this is needed */
491 drmModeDirtyFB(ms->fd, ms->fb_id, clip, num_cliprects);
492
493 DamageEmpty(ms->damage);
494 }
495 }
496 #endif
497 }
498
499 static Bool
500 drv_create_screen_resources(ScreenPtr pScreen)
501 {
502 ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
503 modesettingPtr ms = modesettingPTR(pScrn);
504 PixmapPtr rootPixmap;
505 Bool ret;
506
507 ms->noEvict = TRUE;
508
509 pScreen->CreateScreenResources = ms->createScreenResources;
510 ret = pScreen->CreateScreenResources(pScreen);
511 pScreen->CreateScreenResources = drv_create_screen_resources;
512
513 ms->bind_front_buffer(pScrn);
514
515 ms->noEvict = FALSE;
516
517 drv_adjust_frame(pScrn->scrnIndex, pScrn->frameX0, pScrn->frameY0, 0);
518
519 #ifdef DRM_MODE_FEATURE_DIRTYFB
520 rootPixmap = pScreen->GetScreenPixmap(pScreen);
521 ms->damage = DamageCreate(NULL, NULL, DamageReportNone, TRUE,
522 pScreen, rootPixmap);
523
524 if (ms->damage) {
525 DamageRegister(&rootPixmap->drawable, ms->damage);
526
527 xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Damage tracking initialized\n");
528 } else {
529 xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
530 "Failed to create screen damage record\n");
531 return FALSE;
532 }
533 #else
534 (void)rootPixmap;
535 #endif
536
537 return ret;
538 }
539
540 static Bool
541 drv_screen_init(int scrnIndex, ScreenPtr pScreen, int argc, char **argv)
542 {
543 ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
544 modesettingPtr ms = modesettingPTR(pScrn);
545 VisualPtr visual;
546
547 if (!drv_init_drm(pScrn)) {
548 FatalError("Could not init DRM");
549 return FALSE;
550 }
551
552 if (!drv_init_resource_management(pScrn)) {
553 FatalError("Could not init resource management (!pipe_screen && !libkms)");
554 return FALSE;
555 }
556
557 if (!drv_init_front_buffer_functions(pScrn)) {
558 FatalError("Could not init front buffer manager");
559 return FALSE;
560 }
561
562 pScrn->pScreen = pScreen;
563
564 /* HW dependent - FIXME */
565 pScrn->displayWidth = pScrn->virtualX;
566
567 miClearVisualTypes();
568
569 if (!miSetVisualTypes(pScrn->depth,
570 miGetDefaultVisualMask(pScrn->depth),
571 pScrn->rgbBits, pScrn->defaultVisual))
572 return FALSE;
573
574 if (!miSetPixmapDepths())
575 return FALSE;
576
577 pScrn->memPhysBase = 0;
578 pScrn->fbOffset = 0;
579
580 if (!fbScreenInit(pScreen, NULL,
581 pScrn->virtualX, pScrn->virtualY,
582 pScrn->xDpi, pScrn->yDpi,
583 pScrn->displayWidth, pScrn->bitsPerPixel))
584 return FALSE;
585
586 if (pScrn->bitsPerPixel > 8) {
587 /* Fixup RGB ordering */
588 visual = pScreen->visuals + pScreen->numVisuals;
589 while (--visual >= pScreen->visuals) {
590 if ((visual->class | DynamicClass) == DirectColor) {
591 visual->offsetRed = pScrn->offset.red;
592 visual->offsetGreen = pScrn->offset.green;
593 visual->offsetBlue = pScrn->offset.blue;
594 visual->redMask = pScrn->mask.red;
595 visual->greenMask = pScrn->mask.green;
596 visual->blueMask = pScrn->mask.blue;
597 }
598 }
599 }
600
601 fbPictureInit(pScreen, NULL, 0);
602
603 ms->blockHandler = pScreen->BlockHandler;
604 pScreen->BlockHandler = drv_block_handler;
605 ms->createScreenResources = pScreen->CreateScreenResources;
606 pScreen->CreateScreenResources = drv_create_screen_resources;
607
608 xf86SetBlackWhitePixels(pScreen);
609
610 if (ms->screen) {
611 ms->exa = xorg_exa_init(pScrn, xf86ReturnOptValBool(ms->Options,
612 OPTION_2D_ACCEL, TRUE));
613 ms->debug_fallback = debug_get_bool_option("XORG_DEBUG_FALLBACK", TRUE);
614
615 xorg_xv_init(pScreen);
616 #ifdef DRI2
617 xorg_dri2_init(pScreen);
618 #endif
619 }
620
621 miInitializeBackingStore(pScreen);
622 xf86SetBackingStore(pScreen);
623 xf86SetSilkenMouse(pScreen);
624 miDCInitialize(pScreen, xf86GetPointerScreenFuncs());
625
626 /* Need to extend HWcursor support to handle mask interleave */
627 if (!ms->SWCursor)
628 xf86_cursors_init(pScreen, 64, 64,
629 HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_64 |
630 HARDWARE_CURSOR_ARGB);
631
632 /* Must force it before EnterVT, so we are in control of VT and
633 * later memory should be bound when allocating, e.g rotate_mem */
634 pScrn->vtSema = TRUE;
635
636 pScreen->SaveScreen = xf86SaveScreen;
637 ms->CloseScreen = pScreen->CloseScreen;
638 pScreen->CloseScreen = drv_close_screen;
639
640 if (!xf86CrtcScreenInit(pScreen))
641 return FALSE;
642
643 if (!miCreateDefColormap(pScreen))
644 return FALSE;
645
646 xf86DPMSInit(pScreen, xf86DPMSSet, 0);
647
648 if (serverGeneration == 1)
649 xf86ShowUnusedOptions(pScrn->scrnIndex, pScrn->options);
650
651 return drv_enter_vt(scrnIndex, 1);
652 }
653
654 static void
655 drv_adjust_frame(int scrnIndex, int x, int y, int flags)
656 {
657 ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
658 xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
659 xf86OutputPtr output = config->output[config->compat_output];
660 xf86CrtcPtr crtc = output->crtc;
661
662 if (crtc && crtc->enabled) {
663 crtc->funcs->set_mode_major(crtc, pScrn->currentMode,
664 RR_Rotate_0, x, y);
665 crtc->x = output->initial_x + x;
666 crtc->y = output->initial_y + y;
667 }
668 }
669
670 static void
671 drv_free_screen(int scrnIndex, int flags)
672 {
673 drv_free_rec(xf86Screens[scrnIndex]);
674 }
675
676 static void
677 drv_leave_vt(int scrnIndex, int flags)
678 {
679 ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
680 modesettingPtr ms = modesettingPTR(pScrn);
681 xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
682 int o;
683
684 for (o = 0; o < config->num_crtc; o++) {
685 xf86CrtcPtr crtc = config->crtc[o];
686
687 xorg_crtc_cursor_destroy(crtc);
688
689 if (crtc->rotatedPixmap || crtc->rotatedData) {
690 crtc->funcs->shadow_destroy(crtc, crtc->rotatedPixmap,
691 crtc->rotatedData);
692 crtc->rotatedPixmap = NULL;
693 crtc->rotatedData = NULL;
694 }
695 }
696
697 drmModeRmFB(ms->fd, ms->fb_id);
698
699 drv_restore_hw_state(pScrn);
700
701 if (drmDropMaster(ms->fd))
702 xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
703 "drmDropMaster failed: %s\n", strerror(errno));
704
705 pScrn->vtSema = FALSE;
706 }
707
708 /*
709 * This gets called when gaining control of the VT, and from ScreenInit().
710 */
711 static Bool
712 drv_enter_vt(int scrnIndex, int flags)
713 {
714 ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
715 modesettingPtr ms = modesettingPTR(pScrn);
716
717 if (drmSetMaster(ms->fd)) {
718 if (errno == EINVAL) {
719 xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
720 "drmSetMaster failed: 2.6.29 or newer kernel required for "
721 "multi-server DRI\n");
722 } else {
723 xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
724 "drmSetMaster failed: %s\n", strerror(errno));
725 }
726 }
727
728 /*
729 * Only save state once per server generation since that's what most
730 * drivers do. Could change this to save state at each VT enter.
731 */
732 if (ms->SaveGeneration != serverGeneration) {
733 ms->SaveGeneration = serverGeneration;
734 drv_save_hw_state(pScrn);
735 }
736
737 if (!ms->create_front_buffer(pScrn))
738 return FALSE;
739
740 if (!flags && !ms->bind_front_buffer(pScrn))
741 return FALSE;
742
743 if (!xf86SetDesiredModes(pScrn))
744 return FALSE;
745
746 return TRUE;
747 }
748
749 static Bool
750 drv_switch_mode(int scrnIndex, DisplayModePtr mode, int flags)
751 {
752 ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
753
754 return xf86SetSingleMode(pScrn, mode, RR_Rotate_0);
755 }
756
757 static Bool
758 drv_close_screen(int scrnIndex, ScreenPtr pScreen)
759 {
760 ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
761 modesettingPtr ms = modesettingPTR(pScrn);
762
763 if (pScrn->vtSema) {
764 drv_leave_vt(scrnIndex, 0);
765 }
766
767 #ifdef DRI2
768 if (ms->screen)
769 xorg_dri2_close(pScreen);
770 #endif
771
772 pScreen->BlockHandler = ms->blockHandler;
773 pScreen->CreateScreenResources = ms->createScreenResources;
774
775 #ifdef DRM_MODE_FEATURE_DIRTYFB
776 if (ms->damage) {
777 DamageUnregister(&pScreen->GetScreenPixmap(pScreen)->drawable, ms->damage);
778 DamageDestroy(ms->damage);
779 ms->damage = NULL;
780 }
781 #endif
782
783 drmModeRmFB(ms->fd, ms->fb_id);
784 ms->destroy_front_buffer(pScrn);
785
786 if (ms->exa)
787 xorg_exa_close(pScrn);
788 ms->exa = NULL;
789
790 drv_close_resource_management(pScrn);
791
792 drmClose(ms->fd);
793 ms->fd = -1;
794
795 pScrn->vtSema = FALSE;
796 pScreen->CloseScreen = ms->CloseScreen;
797 return (*pScreen->CloseScreen) (scrnIndex, pScreen);
798 }
799
800 static ModeStatus
801 drv_valid_mode(int scrnIndex, DisplayModePtr mode, Bool verbose, int flags)
802 {
803 return MODE_OK;
804 }
805
806
807 /*
808 * Front buffer backing store functions.
809 */
810
811 static Bool
812 drv_destroy_front_buffer_ga3d(ScrnInfoPtr pScrn)
813 {
814 modesettingPtr ms = modesettingPTR(pScrn);
815 pipe_texture_reference(&ms->root_texture, NULL);
816 return TRUE;
817 }
818
819 static Bool
820 drv_create_front_buffer_ga3d(ScrnInfoPtr pScrn)
821 {
822 modesettingPtr ms = modesettingPTR(pScrn);
823 unsigned handle, stride;
824 struct pipe_texture *tex;
825
826 ms->noEvict = TRUE;
827
828 tex = xorg_exa_create_root_texture(pScrn, pScrn->virtualX, pScrn->virtualY,
829 pScrn->depth, pScrn->bitsPerPixel);
830
831 if (!tex)
832 return FALSE;
833
834 if (!ms->api->local_handle_from_texture(ms->api, ms->screen,
835 tex,
836 &stride,
837 &handle))
838 return FALSE;
839
840 drmModeAddFB(ms->fd,
841 pScrn->virtualX,
842 pScrn->virtualY,
843 pScrn->depth,
844 pScrn->bitsPerPixel,
845 stride,
846 handle,
847 &ms->fb_id);
848
849 pScrn->frameX0 = 0;
850 pScrn->frameY0 = 0;
851 drv_adjust_frame(pScrn->scrnIndex, pScrn->frameX0, pScrn->frameY0, 0);
852
853 pipe_texture_reference(&ms->root_texture, tex);
854 pipe_texture_reference(&tex, NULL);
855
856 return TRUE;
857 }
858
859 static Bool
860 drv_bind_front_buffer_ga3d(ScrnInfoPtr pScrn)
861 {
862 modesettingPtr ms = modesettingPTR(pScrn);
863 ScreenPtr pScreen = pScrn->pScreen;
864 PixmapPtr rootPixmap = pScreen->GetScreenPixmap(pScreen);
865 struct pipe_texture *check;
866
867 xorg_exa_set_displayed_usage(rootPixmap);
868 xorg_exa_set_shared_usage(rootPixmap);
869 xorg_exa_set_texture(rootPixmap, ms->root_texture);
870 if (!pScreen->ModifyPixmapHeader(rootPixmap, -1, -1, -1, -1, -1, NULL))
871 FatalError("Couldn't adjust screen pixmap\n");
872
873 check = xorg_exa_get_texture(rootPixmap);
874 if (ms->root_texture != check)
875 FatalError("Created new root texture\n");
876
877 pipe_texture_reference(&check, NULL);
878 return TRUE;
879 }
880
881 #ifdef HAVE_LIBKMS
882 static Bool
883 drv_destroy_front_buffer_kms(ScrnInfoPtr pScrn)
884 {
885 modesettingPtr ms = modesettingPTR(pScrn);
886
887 if (!ms->root_bo)
888 return TRUE;
889
890 kms_bo_unmap(ms->root_bo);
891 kms_bo_destroy(ms->root_bo);
892 ms->root_bo = NULL;
893 return TRUE;
894 }
895
896 static Bool
897 drv_create_front_buffer_kms(ScrnInfoPtr pScrn)
898 {
899 modesettingPtr ms = modesettingPTR(pScrn);
900 unsigned handle, stride;
901 struct kms_bo *bo;
902 unsigned attr[8];
903
904 attr[0] = KMS_BO_TYPE;
905 attr[1] = KMS_BO_TYPE_SCANOUT;
906 attr[2] = KMS_WIDTH;
907 attr[3] = pScrn->virtualX;
908 attr[4] = KMS_HEIGHT;
909 attr[5] = pScrn->virtualY;
910 attr[6] = 0;
911
912 if (kms_bo_create(ms->kms, attr, &bo))
913 return FALSE;
914
915 if (kms_bo_get_prop(bo, KMS_PITCH, &stride))
916 goto err_destroy;
917
918 if (kms_bo_get_prop(bo, KMS_HANDLE, &handle))
919 goto err_destroy;
920
921 drmModeAddFB(ms->fd,
922 pScrn->virtualX,
923 pScrn->virtualY,
924 pScrn->depth,
925 pScrn->bitsPerPixel,
926 stride,
927 handle,
928 &ms->fb_id);
929
930 pScrn->frameX0 = 0;
931 pScrn->frameY0 = 0;
932 drv_adjust_frame(pScrn->scrnIndex, pScrn->frameX0, pScrn->frameY0, 0);
933 ms->root_bo = bo;
934
935 return TRUE;
936
937 err_destroy:
938 kms_bo_destroy(bo);
939 return FALSE;
940 }
941
942 static Bool
943 drv_bind_front_buffer_kms(ScrnInfoPtr pScrn)
944 {
945 modesettingPtr ms = modesettingPTR(pScrn);
946 ScreenPtr pScreen = pScrn->pScreen;
947 PixmapPtr rootPixmap = pScreen->GetScreenPixmap(pScreen);
948 unsigned stride;
949 void *ptr;
950
951 if (kms_bo_get_prop(ms->root_bo, KMS_PITCH, &stride))
952 return FALSE;
953
954 if (kms_bo_map(ms->root_bo, &ptr))
955 return FALSE;
956
957 pScreen->ModifyPixmapHeader(rootPixmap,
958 pScreen->width,
959 pScreen->height,
960 pScreen->rootDepth,
961 pScrn->bitsPerPixel,
962 stride,
963 ptr);
964 return TRUE;
965 }
966 #endif /* HAVE_LIBKMS */
967
968 static Bool drv_init_front_buffer_functions(ScrnInfoPtr pScrn)
969 {
970 modesettingPtr ms = modesettingPTR(pScrn);
971 if (ms->screen) {
972 ms->destroy_front_buffer = drv_destroy_front_buffer_ga3d;
973 ms->create_front_buffer = drv_create_front_buffer_ga3d;
974 ms->bind_front_buffer = drv_bind_front_buffer_ga3d;
975 #ifdef HAVE_LIBKMS
976 } else if (ms->kms) {
977 ms->destroy_front_buffer = drv_destroy_front_buffer_kms;
978 ms->create_front_buffer = drv_create_front_buffer_kms;
979 ms->bind_front_buffer = drv_bind_front_buffer_kms;
980 #endif
981 } else
982 return FALSE;
983
984 return TRUE;
985 }
986
987 /* vim: set sw=4 ts=8 sts=4: */