xorg_driver.c revision bfd065c71ed6df1e1ce1a2a7e6bcf6bdacac38d4
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#ifndef XSERVER_LIBPCIACCESS
49#error "libpciaccess needed"
50#endif
51
52#include <pciaccess.h>
53
54#include "state_tracker/drm_driver.h"
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
67static Bool drv_pre_init(ScrnInfoPtr pScrn, int flags);
68static Bool drv_screen_init(int scrnIndex, ScreenPtr pScreen, int argc,
69			    char **argv);
70static Bool drv_switch_mode(int scrnIndex, DisplayModePtr mode, int flags);
71static void drv_adjust_frame(int scrnIndex, int x, int y, int flags);
72static Bool drv_enter_vt(int scrnIndex, int flags);
73static void drv_leave_vt(int scrnIndex, int flags);
74static void drv_free_screen(int scrnIndex, int flags);
75static ModeStatus drv_valid_mode(int scrnIndex, DisplayModePtr mode, Bool verbose,
76			         int flags);
77
78typedef enum
79{
80    OPTION_SW_CURSOR,
81    OPTION_2D_ACCEL,
82    OPTION_DEBUG_FALLBACK,
83    OPTION_THROTTLE_SWAP,
84    OPTION_THROTTLE_DIRTY,
85    OPTION_3D_ACCEL
86} drv_option_enums;
87
88static const OptionInfoRec drv_options[] = {
89    {OPTION_SW_CURSOR, "SWcursor", OPTV_BOOLEAN, {0}, FALSE},
90    {OPTION_2D_ACCEL, "2DAccel", OPTV_BOOLEAN, {0}, FALSE},
91    {OPTION_DEBUG_FALLBACK, "DebugFallback", OPTV_BOOLEAN, {0}, FALSE},
92    {OPTION_THROTTLE_SWAP, "SwapThrottling", OPTV_BOOLEAN, {0}, FALSE},
93    {OPTION_THROTTLE_DIRTY, "DirtyThrottling", OPTV_BOOLEAN, {0}, FALSE},
94    {OPTION_3D_ACCEL, "3DAccel", OPTV_BOOLEAN, {0}, FALSE},
95    {-1, NULL, OPTV_NONE, {0}, FALSE}
96};
97
98
99/*
100 * Exported Xorg driver functions to winsys
101 */
102
103const OptionInfoRec *
104xorg_tracker_available_options(int chipid, int busid)
105{
106    return drv_options;
107}
108
109void
110xorg_tracker_set_functions(ScrnInfoPtr scrn)
111{
112    scrn->PreInit = drv_pre_init;
113    scrn->ScreenInit = drv_screen_init;
114    scrn->SwitchMode = drv_switch_mode;
115    scrn->AdjustFrame = drv_adjust_frame;
116    scrn->EnterVT = drv_enter_vt;
117    scrn->LeaveVT = drv_leave_vt;
118    scrn->FreeScreen = drv_free_screen;
119    scrn->ValidMode = drv_valid_mode;
120}
121
122Bool
123xorg_tracker_have_modesetting(ScrnInfoPtr pScrn, struct pci_device *device)
124{
125    char *BusID = xalloc(64);
126    sprintf(BusID, "pci:%04x:%02x:%02x.%d",
127	    device->domain, device->bus,
128	    device->dev, device->func);
129
130    if (drmCheckModesettingSupported(BusID)) {
131	xf86DrvMsgVerb(pScrn->scrnIndex, X_INFO, 0,
132		       "Drm modesetting not supported %s\n", BusID);
133	xfree(BusID);
134	return FALSE;
135    }
136
137    xf86DrvMsgVerb(pScrn->scrnIndex, X_INFO, 0,
138		   "Drm modesetting supported on %s\n", BusID);
139
140    xfree(BusID);
141    return TRUE;
142}
143
144
145/*
146 * Internal function definitions
147 */
148
149static Bool drv_init_front_buffer_functions(ScrnInfoPtr pScrn);
150static Bool drv_close_screen(int scrnIndex, ScreenPtr pScreen);
151
152
153/*
154 * Internal functions
155 */
156
157static Bool
158drv_get_rec(ScrnInfoPtr pScrn)
159{
160    if (pScrn->driverPrivate)
161	return TRUE;
162
163    pScrn->driverPrivate = xnfcalloc(1, sizeof(modesettingRec));
164
165    return TRUE;
166}
167
168static void
169drv_free_rec(ScrnInfoPtr pScrn)
170{
171    if (!pScrn)
172	return;
173
174    if (!pScrn->driverPrivate)
175	return;
176
177    xfree(pScrn->driverPrivate);
178
179    pScrn->driverPrivate = NULL;
180}
181
182static void
183drv_probe_ddc(ScrnInfoPtr pScrn, int index)
184{
185    ConfiguredMonitor = NULL;
186}
187
188static Bool
189drv_crtc_resize(ScrnInfoPtr pScrn, int width, int height)
190{
191    xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
192    modesettingPtr ms = modesettingPTR(pScrn);
193    CustomizerPtr cust = ms->cust;
194    ScreenPtr pScreen = pScrn->pScreen;
195    int old_width, old_height;
196    PixmapPtr rootPixmap;
197    int i;
198
199    if (width == pScrn->virtualX && height == pScrn->virtualY)
200	return TRUE;
201
202    if (cust && cust->winsys_check_fb_size &&
203	!cust->winsys_check_fb_size(cust, width*pScrn->bitsPerPixel / 8,
204				    height)) {
205	xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
206		   "Requested framebuffer size %dx%dx%d will not fit "
207		   "in display memory.\n",
208		   width, height, pScrn->bitsPerPixel);
209	return FALSE;
210    }
211
212    old_width = pScrn->virtualX;
213    old_height = pScrn->virtualY;
214    pScrn->virtualX = width;
215    pScrn->virtualY = height;
216
217    /* ms->create_front_buffer will remove the old front buffer */
218
219    rootPixmap = pScreen->GetScreenPixmap(pScreen);
220    if (!pScreen->ModifyPixmapHeader(rootPixmap, width, height, -1, -1, -1, NULL))
221	goto error_modify;
222
223    pScrn->displayWidth = rootPixmap->devKind / (rootPixmap->drawable.bitsPerPixel / 8);
224
225    if (!ms->create_front_buffer(pScrn) || !ms->bind_front_buffer(pScrn))
226	goto error_create;
227
228    /*
229     * create && bind will turn off all crtc(s) in the kernel so we need to
230     * re-enable all the crtcs again. For real HW we might want to do this
231     * before destroying the old framebuffer.
232     */
233    for (i = 0; i < xf86_config->num_crtc; i++) {
234	xf86CrtcPtr crtc = xf86_config->crtc[i];
235
236	if (!crtc->enabled)
237	    continue;
238
239	crtc->funcs->set_mode_major(crtc, &crtc->mode, crtc->rotation, crtc->x, crtc->y);
240    }
241
242    return TRUE;
243
244    /*
245     * This is the error recovery path.
246     */
247error_create:
248    if (!pScreen->ModifyPixmapHeader(rootPixmap, old_width, old_height, -1, -1, -1, NULL))
249	FatalError("failed to resize rootPixmap error path\n");
250
251    pScrn->displayWidth = rootPixmap->devKind / (rootPixmap->drawable.bitsPerPixel / 8);
252
253error_modify:
254    pScrn->virtualX = old_width;
255    pScrn->virtualY = old_height;
256
257    if (ms->create_front_buffer(pScrn) && ms->bind_front_buffer(pScrn))
258	return FALSE;
259
260    FatalError("failed to setup old framebuffer\n");
261    return FALSE;
262}
263
264static const xf86CrtcConfigFuncsRec crtc_config_funcs = {
265    .resize = drv_crtc_resize
266};
267
268static Bool
269drv_init_drm(ScrnInfoPtr pScrn)
270{
271    modesettingPtr ms = modesettingPTR(pScrn);
272
273    /* deal with server regeneration */
274    if (ms->fd < 0) {
275	char *BusID;
276
277	BusID = xalloc(64);
278	sprintf(BusID, "PCI:%d:%d:%d",
279		((ms->PciInfo->domain << 8) | ms->PciInfo->bus),
280		ms->PciInfo->dev, ms->PciInfo->func
281	    );
282
283
284	ms->fd = drmOpen(driver_descriptor.driver_name, BusID);
285	ms->isMaster = TRUE;
286	xfree(BusID);
287
288	if (ms->fd >= 0)
289	    return TRUE;
290
291	return FALSE;
292    }
293
294    return TRUE;
295}
296
297static Bool
298drv_init_resource_management(ScrnInfoPtr pScrn)
299{
300    modesettingPtr ms = modesettingPTR(pScrn);
301    /*
302    ScreenPtr pScreen = pScrn->pScreen;
303    PixmapPtr rootPixmap = pScreen->GetScreenPixmap(pScreen);
304    Bool fbAccessDisabled;
305    CARD8 *fbstart;
306     */
307
308    if (ms->screen || ms->kms)
309	return TRUE;
310
311    if (!ms->no3D)
312	ms->screen = driver_descriptor.create_screen(ms->fd);
313
314    if (ms->screen)
315	return TRUE;
316
317#ifdef HAVE_LIBKMS
318    if (!kms_create(ms->fd, &ms->kms))
319	return TRUE;
320#endif
321
322    return FALSE;
323}
324
325static void
326drv_cleanup_fences(ScrnInfoPtr pScrn)
327{
328    modesettingPtr ms = modesettingPTR(pScrn);
329    int i;
330
331    assert(ms->screen);
332
333    for (i = 0; i < XORG_NR_FENCES; i++) {
334	if (ms->fence[i]) {
335	    ms->screen->fence_finish(ms->screen, ms->fence[i], 0);
336	    ms->screen->fence_reference(ms->screen, &ms->fence[i], NULL);
337	}
338    }
339}
340
341static Bool
342drv_pre_init(ScrnInfoPtr pScrn, int flags)
343{
344    xf86CrtcConfigPtr xf86_config;
345    modesettingPtr ms;
346    rgb defaultWeight = { 0, 0, 0 };
347    EntityInfoPtr pEnt;
348    EntPtr msEnt = NULL;
349    CustomizerPtr cust;
350    Bool use3D;
351
352    if (pScrn->numEntities != 1)
353	return FALSE;
354
355    pEnt = xf86GetEntityInfo(pScrn->entityList[0]);
356
357    if (flags & PROBE_DETECT) {
358	drv_probe_ddc(pScrn, pEnt->index);
359	return TRUE;
360    }
361
362    cust = (CustomizerPtr) pScrn->driverPrivate;
363    pScrn->driverPrivate = NULL;
364
365    /* Allocate driverPrivate */
366    if (!drv_get_rec(pScrn))
367	return FALSE;
368
369    ms = modesettingPTR(pScrn);
370    ms->pEnt = pEnt;
371    ms->cust = cust;
372
373    pScrn->displayWidth = 640;	       /* default it */
374
375    if (ms->pEnt->location.type != BUS_PCI)
376	return FALSE;
377
378    ms->PciInfo = xf86GetPciInfoForEntity(ms->pEnt->index);
379
380    /* Allocate an entity private if necessary */
381    if (xf86IsEntityShared(pScrn->entityList[0])) {
382	FatalError("Entity");
383#if 0
384	msEnt = xf86GetEntityPrivate(pScrn->entityList[0],
385				     modesettingEntityIndex)->ptr;
386	ms->entityPrivate = msEnt;
387#else
388	(void)msEnt;
389#endif
390    } else
391	ms->entityPrivate = NULL;
392
393    if (xf86IsEntityShared(pScrn->entityList[0])) {
394	if (xf86IsPrimInitDone(pScrn->entityList[0])) {
395	    /* do something */
396	} else {
397	    xf86SetPrimInitDone(pScrn->entityList[0]);
398	}
399    }
400
401    ms->fd = -1;
402    if (!drv_init_drm(pScrn))
403	return FALSE;
404
405    pScrn->monitor = pScrn->confScreen->monitor;
406    pScrn->progClock = TRUE;
407    pScrn->rgbBits = 8;
408
409    if (!xf86SetDepthBpp
410	(pScrn, 0, 0, 0,
411	 PreferConvert24to32 | SupportConvert24to32 | Support32bppFb))
412	return FALSE;
413
414    switch (pScrn->depth) {
415    case 15:
416    case 16:
417    case 24:
418	break;
419    default:
420	xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
421		   "Given depth (%d) is not supported by the driver\n",
422		   pScrn->depth);
423	return FALSE;
424    }
425    xf86PrintDepthBpp(pScrn);
426
427    if (!xf86SetWeight(pScrn, defaultWeight, defaultWeight))
428	return FALSE;
429    if (!xf86SetDefaultVisual(pScrn, -1))
430	return FALSE;
431
432    /* Process the options */
433    xf86CollectOptions(pScrn, NULL);
434    if (!(ms->Options = xalloc(sizeof(drv_options))))
435	return FALSE;
436    memcpy(ms->Options, drv_options, sizeof(drv_options));
437    xf86ProcessOptions(pScrn->scrnIndex, pScrn->options, ms->Options);
438
439    use3D = cust ? !cust->no_3d : TRUE;
440    ms->from_3D = xf86GetOptValBool(ms->Options, OPTION_3D_ACCEL,
441				    &use3D) ?
442	X_CONFIG : X_PROBED;
443
444    ms->no3D = !use3D;
445
446    if (!drv_init_resource_management(pScrn)) {
447	xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "Could not init "
448					       "Gallium3D or libKMS.");
449	return FALSE;
450    }
451
452    /* Allocate an xf86CrtcConfig */
453    xf86CrtcConfigInit(pScrn, &crtc_config_funcs);
454    xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
455
456    /* get max width and height */
457    {
458	drmModeResPtr res;
459	int max_width, max_height;
460
461	res = drmModeGetResources(ms->fd);
462	max_width = res->max_width;
463	max_height = res->max_height;
464
465	if (ms->screen) {
466	    int max;
467
468	    max = ms->screen->get_param(ms->screen,
469					PIPE_CAP_MAX_TEXTURE_2D_LEVELS);
470	    max = 1 << (max - 1);
471	    max_width = max < max_width ? max : max_width;
472	    max_height = max < max_height ? max : max_height;
473	}
474
475	xf86CrtcSetSizeRange(pScrn, res->min_width,
476			     res->min_height, max_width, max_height);
477	xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
478		   "Min width %d, Max Width %d.\n",
479		   res->min_width, max_width);
480	xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
481		   "Min height %d, Max Height %d.\n",
482		   res->min_height, max_height);
483	drmModeFreeResources(res);
484    }
485
486
487    if (xf86ReturnOptValBool(ms->Options, OPTION_SW_CURSOR, FALSE)) {
488	ms->SWCursor = TRUE;
489    }
490
491    xorg_crtc_init(pScrn);
492    xorg_output_init(pScrn);
493
494    if (cust && cust->winsys_pre_init && !cust->winsys_pre_init(cust, ms->fd))
495	return FALSE;
496
497    if (!xf86InitialConfiguration(pScrn, TRUE)) {
498	xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "No valid modes.\n");
499	return FALSE;
500    }
501
502    /*
503     * If the driver can do gamma correction, it should call xf86SetGamma() here.
504     */
505    {
506	Gamma zeros = { 0.0, 0.0, 0.0 };
507
508	if (!xf86SetGamma(pScrn, zeros)) {
509	    return FALSE;
510	}
511    }
512
513    if (pScrn->modes == NULL) {
514	xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "No modes.\n");
515	return FALSE;
516    }
517
518    pScrn->currentMode = pScrn->modes;
519
520    /* Set display resolution */
521    xf86SetDpi(pScrn, 0, 0);
522
523    /* Load the required sub modules */
524    if (!xf86LoadSubModule(pScrn, "fb"))
525	return FALSE;
526
527    /* XXX: these aren't needed when we are using libkms */
528    if (!xf86LoadSubModule(pScrn, "exa"))
529	return FALSE;
530
531#ifdef DRI2
532    if (!xf86LoadSubModule(pScrn, "dri2"))
533	return FALSE;
534#endif
535
536    return TRUE;
537}
538
539static void drv_block_handler(int i, pointer blockData, pointer pTimeout,
540                              pointer pReadmask)
541{
542    ScreenPtr pScreen = screenInfo.screens[i];
543    modesettingPtr ms = modesettingPTR(xf86Screens[pScreen->myNum]);
544
545    pScreen->BlockHandler = ms->blockHandler;
546    pScreen->BlockHandler(i, blockData, pTimeout, pReadmask);
547    pScreen->BlockHandler = drv_block_handler;
548
549    if (ms->ctx) {
550       int j;
551
552       ms->ctx->flush(ms->ctx, PIPE_FLUSH_RENDER_CACHE,
553		      ms->dirtyThrottling ?
554		      &ms->fence[XORG_NR_FENCES-1] :
555		      NULL);
556
557       if (ms->dirtyThrottling) {
558	   if (ms->fence[0])
559	       ms->ctx->screen->fence_finish(ms->ctx->screen,
560					     ms->fence[0], 0);
561
562	   /* The amount of rendering generated by a block handler can be
563	    * quite small.  Let us get a fair way ahead of hardware before
564	    * throttling.
565	    */
566	   for (j = 0; j < XORG_NR_FENCES - 1; j++)
567	       ms->screen->fence_reference(ms->screen,
568					   &ms->fence[j],
569					   ms->fence[j+1]);
570
571	   ms->screen->fence_reference(ms->screen,
572				       &ms->fence[XORG_NR_FENCES-1],
573				       NULL);
574       }
575    }
576
577
578#ifdef DRM_MODE_FEATURE_DIRTYFB
579    {
580	RegionPtr dirty = DamageRegion(ms->damage);
581	unsigned num_cliprects = REGION_NUM_RECTS(dirty);
582
583	if (num_cliprects) {
584	    drmModeClip *clip = alloca(num_cliprects * sizeof(drmModeClip));
585	    BoxPtr rect = REGION_RECTS(dirty);
586	    int i, ret;
587
588	    /* XXX no need for copy? */
589	    for (i = 0; i < num_cliprects; i++, rect++) {
590		clip[i].x1 = rect->x1;
591		clip[i].y1 = rect->y1;
592		clip[i].x2 = rect->x2;
593		clip[i].y2 = rect->y2;
594	    }
595
596	    /* TODO query connector property to see if this is needed */
597	    ret = drmModeDirtyFB(ms->fd, ms->fb_id, clip, num_cliprects);
598	    if (ret) {
599		debug_printf("%s: failed to send dirty (%i, %s)\n",
600			     __func__, ret, strerror(-ret));
601	    }
602
603	    DamageEmpty(ms->damage);
604	}
605    }
606#endif
607}
608
609static Bool
610drv_create_screen_resources(ScreenPtr pScreen)
611{
612    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
613    modesettingPtr ms = modesettingPTR(pScrn);
614    PixmapPtr rootPixmap;
615    Bool ret;
616
617    ms->noEvict = TRUE;
618
619    pScreen->CreateScreenResources = ms->createScreenResources;
620    ret = pScreen->CreateScreenResources(pScreen);
621    pScreen->CreateScreenResources = drv_create_screen_resources;
622
623    ms->bind_front_buffer(pScrn);
624
625    ms->noEvict = FALSE;
626
627    drv_adjust_frame(pScrn->scrnIndex, pScrn->frameX0, pScrn->frameY0, 0);
628
629#ifdef DRM_MODE_FEATURE_DIRTYFB
630    rootPixmap = pScreen->GetScreenPixmap(pScreen);
631    ms->damage = DamageCreate(NULL, NULL, DamageReportNone, TRUE,
632                              pScreen, rootPixmap);
633
634    if (ms->damage) {
635       DamageRegister(&rootPixmap->drawable, ms->damage);
636
637       xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Damage tracking initialized\n");
638    } else {
639       xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
640                  "Failed to create screen damage record\n");
641       return FALSE;
642    }
643#else
644    (void)rootPixmap;
645#endif
646
647    return ret;
648}
649
650static Bool
651drv_set_master(ScrnInfoPtr pScrn)
652{
653    modesettingPtr ms = modesettingPTR(pScrn);
654
655    if (!ms->isMaster && drmSetMaster(ms->fd) != 0) {
656	if (errno == EINVAL) {
657	    xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
658		       "drmSetMaster failed: 2.6.29 or newer kernel required for "
659		       "multi-server DRI\n");
660	} else {
661	    xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
662		       "drmSetMaster failed: %s\n", strerror(errno));
663	}
664	return FALSE;
665    }
666
667    ms->isMaster = TRUE;
668    return TRUE;
669}
670
671
672static Bool
673drv_screen_init(int scrnIndex, ScreenPtr pScreen, int argc, char **argv)
674{
675    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
676    modesettingPtr ms = modesettingPTR(pScrn);
677    VisualPtr visual;
678    CustomizerPtr cust = ms->cust;
679    MessageType from_st;
680    MessageType from_dt;
681
682    if (!drv_set_master(pScrn))
683	return FALSE;
684
685    if (!drv_init_front_buffer_functions(pScrn)) {
686	FatalError("Could not init front buffer manager");
687	return FALSE;
688    }
689
690    pScrn->pScreen = pScreen;
691
692    /* HW dependent - FIXME */
693    pScrn->displayWidth = pScrn->virtualX;
694
695    miClearVisualTypes();
696
697    if (!miSetVisualTypes(pScrn->depth,
698			  miGetDefaultVisualMask(pScrn->depth),
699			  pScrn->rgbBits, pScrn->defaultVisual))
700	return FALSE;
701
702    if (!miSetPixmapDepths())
703	return FALSE;
704
705    pScrn->memPhysBase = 0;
706    pScrn->fbOffset = 0;
707
708    if (!fbScreenInit(pScreen, NULL,
709		      pScrn->virtualX, pScrn->virtualY,
710		      pScrn->xDpi, pScrn->yDpi,
711		      pScrn->displayWidth, pScrn->bitsPerPixel))
712	return FALSE;
713
714    if (pScrn->bitsPerPixel > 8) {
715	/* Fixup RGB ordering */
716	visual = pScreen->visuals + pScreen->numVisuals;
717	while (--visual >= pScreen->visuals) {
718	    if ((visual->class | DynamicClass) == DirectColor) {
719		visual->offsetRed = pScrn->offset.red;
720		visual->offsetGreen = pScrn->offset.green;
721		visual->offsetBlue = pScrn->offset.blue;
722		visual->redMask = pScrn->mask.red;
723		visual->greenMask = pScrn->mask.green;
724		visual->blueMask = pScrn->mask.blue;
725	    }
726	}
727    }
728
729    fbPictureInit(pScreen, NULL, 0);
730
731    ms->blockHandler = pScreen->BlockHandler;
732    pScreen->BlockHandler = drv_block_handler;
733    ms->createScreenResources = pScreen->CreateScreenResources;
734    pScreen->CreateScreenResources = drv_create_screen_resources;
735
736    xf86SetBlackWhitePixels(pScreen);
737
738    ms->accelerate_2d = xf86ReturnOptValBool(ms->Options, OPTION_2D_ACCEL, FALSE);
739    ms->debug_fallback = xf86ReturnOptValBool(ms->Options, OPTION_DEBUG_FALLBACK, ms->accelerate_2d);
740
741    if (cust && cust->winsys_screen_init)
742	cust->winsys_screen_init(cust);
743
744    ms->swapThrottling = cust ?  cust->swap_throttling : TRUE;
745    from_st = xf86GetOptValBool(ms->Options, OPTION_THROTTLE_SWAP,
746				&ms->swapThrottling) ?
747	X_CONFIG : X_DEFAULT;
748
749    ms->dirtyThrottling = cust ?  cust->dirty_throttling : TRUE;
750    from_dt = xf86GetOptValBool(ms->Options, OPTION_THROTTLE_DIRTY,
751				&ms->dirtyThrottling) ?
752	X_CONFIG : X_DEFAULT;
753
754    if (ms->screen) {
755	ms->exa = xorg_exa_init(pScrn, ms->accelerate_2d);
756
757	xorg_xv_init(pScreen);
758#ifdef DRI2
759	xorg_dri2_init(pScreen);
760#endif
761    }
762
763    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "##################################\n");
764    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "# Usefull debugging info follows #\n");
765    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "##################################\n");
766    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Using %s backend\n",
767	       ms->screen ? "Gallium3D" : "libkms");
768    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "2D Acceleration is %s\n",
769	       ms->screen && ms->accelerate_2d ? "enabled" : "disabled");
770    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Fallback debugging is %s\n",
771	       ms->debug_fallback ? "enabled" : "disabled");
772#ifdef DRI2
773    xf86DrvMsg(pScrn->scrnIndex, ms->from_3D, "3D Acceleration is %s\n",
774	       ms->screen ? "enabled" : "disabled");
775#else
776    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "3D Acceleration is disabled\n");
777#endif
778    xf86DrvMsg(pScrn->scrnIndex, from_st, "Swap Throttling is %s.\n",
779	       ms->swapThrottling ? "enabled" : "disabled");
780    xf86DrvMsg(pScrn->scrnIndex, from_dt, "Dirty Throttling is %s.\n",
781	       ms->dirtyThrottling ? "enabled" : "disabled");
782
783    xf86DrvMsg(pScrn->scrnIndex, X_INFO, "##################################\n");
784
785    miInitializeBackingStore(pScreen);
786    xf86SetBackingStore(pScreen);
787    xf86SetSilkenMouse(pScreen);
788    miDCInitialize(pScreen, xf86GetPointerScreenFuncs());
789
790    /* Need to extend HWcursor support to handle mask interleave */
791    if (!ms->SWCursor)
792	xf86_cursors_init(pScreen, 64, 64,
793			  HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_64 |
794			  HARDWARE_CURSOR_ARGB |
795			  ((cust && cust->unhidden_hw_cursor_update) ?
796			   HARDWARE_CURSOR_UPDATE_UNHIDDEN : 0));
797
798    /* Must force it before EnterVT, so we are in control of VT and
799     * later memory should be bound when allocating, e.g rotate_mem */
800    pScrn->vtSema = TRUE;
801
802    pScreen->SaveScreen = xf86SaveScreen;
803    ms->CloseScreen = pScreen->CloseScreen;
804    pScreen->CloseScreen = drv_close_screen;
805
806    if (!xf86CrtcScreenInit(pScreen))
807	return FALSE;
808
809    if (!miCreateDefColormap(pScreen))
810	return FALSE;
811
812    xf86DPMSInit(pScreen, xf86DPMSSet, 0);
813
814    if (serverGeneration == 1)
815	xf86ShowUnusedOptions(pScrn->scrnIndex, pScrn->options);
816
817    return drv_enter_vt(scrnIndex, 1);
818}
819
820static void
821drv_adjust_frame(int scrnIndex, int x, int y, int flags)
822{
823    ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
824    xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
825    xf86OutputPtr output = config->output[config->compat_output];
826    xf86CrtcPtr crtc = output->crtc;
827
828    if (crtc && crtc->enabled) {
829	crtc->funcs->set_mode_major(crtc, pScrn->currentMode,
830				    RR_Rotate_0, x, y);
831	crtc->x = output->initial_x + x;
832	crtc->y = output->initial_y + y;
833    }
834}
835
836static void
837drv_free_screen(int scrnIndex, int flags)
838{
839    drv_free_rec(xf86Screens[scrnIndex]);
840}
841
842static void
843drv_leave_vt(int scrnIndex, int flags)
844{
845    ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
846    modesettingPtr ms = modesettingPTR(pScrn);
847    xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
848    CustomizerPtr cust = ms->cust;
849    int o;
850
851    if (cust && cust->winsys_leave_vt)
852	cust->winsys_leave_vt(cust);
853
854    for (o = 0; o < config->num_crtc; o++) {
855	xf86CrtcPtr crtc = config->crtc[o];
856
857	xorg_crtc_cursor_destroy(crtc);
858
859	if (crtc->rotatedPixmap || crtc->rotatedData) {
860	    crtc->funcs->shadow_destroy(crtc, crtc->rotatedPixmap,
861					crtc->rotatedData);
862	    crtc->rotatedPixmap = NULL;
863	    crtc->rotatedData = NULL;
864	}
865    }
866
867    drmModeRmFB(ms->fd, ms->fb_id);
868    ms->fb_id = -1;
869
870    /* idle hardware */
871    if (!ms->kms)
872	drv_cleanup_fences(pScrn);
873
874    if (drmDropMaster(ms->fd))
875	xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
876		   "drmDropMaster failed: %s\n", strerror(errno));
877
878    ms->isMaster = FALSE;
879    pScrn->vtSema = FALSE;
880}
881
882/*
883 * This gets called when gaining control of the VT, and from ScreenInit().
884 */
885static Bool
886drv_enter_vt(int scrnIndex, int flags)
887{
888    ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
889    modesettingPtr ms = modesettingPTR(pScrn);
890    CustomizerPtr cust = ms->cust;
891
892    if (!drv_set_master(pScrn))
893	return FALSE;
894
895    if (!ms->create_front_buffer(pScrn))
896	return FALSE;
897
898    if (!flags && !ms->bind_front_buffer(pScrn))
899	return FALSE;
900
901    if (!xf86SetDesiredModes(pScrn))
902	return FALSE;
903
904    if (cust && cust->winsys_enter_vt)
905	cust->winsys_enter_vt(cust);
906
907    return TRUE;
908}
909
910static Bool
911drv_switch_mode(int scrnIndex, DisplayModePtr mode, int flags)
912{
913    ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
914
915    return xf86SetSingleMode(pScrn, mode, RR_Rotate_0);
916}
917
918static Bool
919drv_close_screen(int scrnIndex, ScreenPtr pScreen)
920{
921    ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
922    modesettingPtr ms = modesettingPTR(pScrn);
923    CustomizerPtr cust = ms->cust;
924
925    if (ms->cursor) {
926       FreeCursor(ms->cursor, None);
927       ms->cursor = NULL;
928    }
929
930    if (cust && cust->winsys_screen_close)
931	cust->winsys_screen_close(cust);
932
933#ifdef DRI2
934    if (ms->screen)
935	xorg_dri2_close(pScreen);
936#endif
937
938    pScreen->BlockHandler = ms->blockHandler;
939    pScreen->CreateScreenResources = ms->createScreenResources;
940
941#ifdef DRM_MODE_FEATURE_DIRTYFB
942    if (ms->damage) {
943	DamageUnregister(&pScreen->GetScreenPixmap(pScreen)->drawable, ms->damage);
944	DamageDestroy(ms->damage);
945	ms->damage = NULL;
946    }
947#endif
948
949    drmModeRmFB(ms->fd, ms->fb_id);
950    ms->destroy_front_buffer(pScrn);
951
952    if (ms->exa)
953	xorg_exa_close(pScrn);
954    ms->exa = NULL;
955
956    /* calls drop master make sure we don't talk to 3D HW after that */
957    if (pScrn->vtSema) {
958	drv_leave_vt(scrnIndex, 0);
959    }
960
961    pScrn->vtSema = FALSE;
962    pScreen->CloseScreen = ms->CloseScreen;
963
964    return (*pScreen->CloseScreen) (scrnIndex, pScreen);
965}
966
967static ModeStatus
968drv_valid_mode(int scrnIndex, DisplayModePtr mode, Bool verbose, int flags)
969{
970    return MODE_OK;
971}
972
973
974/*
975 * Front buffer backing store functions.
976 */
977
978static Bool
979drv_destroy_front_buffer_ga3d(ScrnInfoPtr pScrn)
980{
981    modesettingPtr ms = modesettingPTR(pScrn);
982
983    if (!ms->root_texture)
984	return TRUE;
985
986    if (ms->fb_id != -1) {
987	drmModeRmFB(ms->fd, ms->fb_id);
988	ms->fb_id = -1;
989    }
990
991    pipe_resource_reference(&ms->root_texture, NULL);
992    return TRUE;
993}
994
995static Bool
996drv_create_front_buffer_ga3d(ScrnInfoPtr pScrn)
997{
998    modesettingPtr ms = modesettingPTR(pScrn);
999    struct pipe_resource *tex;
1000    struct winsys_handle whandle;
1001    unsigned fb_id;
1002    int ret;
1003
1004    ms->noEvict = TRUE;
1005
1006    tex = xorg_exa_create_root_texture(pScrn, pScrn->virtualX, pScrn->virtualY,
1007				       pScrn->depth, pScrn->bitsPerPixel);
1008
1009    if (!tex)
1010	return FALSE;
1011
1012    memset(&whandle, 0, sizeof(whandle));
1013    whandle.type = DRM_API_HANDLE_TYPE_KMS;
1014
1015    if (!ms->screen->resource_get_handle(ms->screen, tex, &whandle))
1016	goto err_destroy;
1017
1018    ret = drmModeAddFB(ms->fd,
1019		       pScrn->virtualX,
1020		       pScrn->virtualY,
1021		       pScrn->depth,
1022		       pScrn->bitsPerPixel,
1023		       whandle.stride,
1024		       whandle.handle,
1025		       &fb_id);
1026    if (ret) {
1027	debug_printf("%s: failed to create framebuffer (%i, %s)\n",
1028		     __func__, ret, strerror(-ret));
1029	goto err_destroy;
1030    }
1031
1032    if (!drv_destroy_front_buffer_ga3d(pScrn))
1033	FatalError("%s: failed to take down old framebuffer\n", __func__);
1034
1035    pScrn->frameX0 = 0;
1036    pScrn->frameY0 = 0;
1037    drv_adjust_frame(pScrn->scrnIndex, pScrn->frameX0, pScrn->frameY0, 0);
1038
1039    pipe_resource_reference(&ms->root_texture, tex);
1040    pipe_resource_reference(&tex, NULL);
1041    ms->fb_id = fb_id;
1042
1043    return TRUE;
1044
1045err_destroy:
1046    pipe_resource_reference(&tex, NULL);
1047    return FALSE;
1048}
1049
1050static Bool
1051drv_bind_front_buffer_ga3d(ScrnInfoPtr pScrn)
1052{
1053    modesettingPtr ms = modesettingPTR(pScrn);
1054    ScreenPtr pScreen = pScrn->pScreen;
1055    PixmapPtr rootPixmap = pScreen->GetScreenPixmap(pScreen);
1056    struct pipe_resource *check;
1057
1058    xorg_exa_set_displayed_usage(rootPixmap);
1059    xorg_exa_set_shared_usage(rootPixmap);
1060    xorg_exa_set_texture(rootPixmap, ms->root_texture);
1061    if (!pScreen->ModifyPixmapHeader(rootPixmap, -1, -1, -1, -1, -1, NULL))
1062	FatalError("Couldn't adjust screen pixmap\n");
1063
1064    check = xorg_exa_get_texture(rootPixmap);
1065    if (ms->root_texture != check)
1066	FatalError("Created new root texture\n");
1067
1068    pipe_resource_reference(&check, NULL);
1069    return TRUE;
1070}
1071
1072#ifdef HAVE_LIBKMS
1073static Bool
1074drv_destroy_front_buffer_kms(ScrnInfoPtr pScrn)
1075{
1076    modesettingPtr ms = modesettingPTR(pScrn);
1077    ScreenPtr pScreen = pScrn->pScreen;
1078    PixmapPtr rootPixmap = pScreen->GetScreenPixmap(pScreen);
1079
1080    /* XXX Do something with the rootPixmap.
1081     * This currently works fine but if we are getting crashes in
1082     * the fb functions after VT switches maybe look more into it.
1083     */
1084    (void)rootPixmap;
1085
1086    if (!ms->root_bo)
1087	return TRUE;
1088
1089    if (ms->fb_id != -1) {
1090	drmModeRmFB(ms->fd, ms->fb_id);
1091	ms->fb_id = -1;
1092    }
1093
1094    kms_bo_unmap(ms->root_bo);
1095    kms_bo_destroy(&ms->root_bo);
1096    return TRUE;
1097}
1098
1099static Bool
1100drv_create_front_buffer_kms(ScrnInfoPtr pScrn)
1101{
1102    modesettingPtr ms = modesettingPTR(pScrn);
1103    unsigned handle, stride;
1104    struct kms_bo *bo;
1105    unsigned attr[8];
1106    unsigned fb_id;
1107    int ret;
1108
1109    attr[0] = KMS_BO_TYPE;
1110#ifdef KMS_BO_TYPE_SCANOUT_X8R8G8B8
1111    attr[1] = KMS_BO_TYPE_SCANOUT_X8R8G8B8;
1112#else
1113    attr[1] = KMS_BO_TYPE_SCANOUT;
1114#endif
1115    attr[2] = KMS_WIDTH;
1116    attr[3] = pScrn->virtualX;
1117    attr[4] = KMS_HEIGHT;
1118    attr[5] = pScrn->virtualY;
1119    attr[6] = 0;
1120
1121    if (kms_bo_create(ms->kms, attr, &bo))
1122	return FALSE;
1123
1124    if (kms_bo_get_prop(bo, KMS_PITCH, &stride))
1125	goto err_destroy;
1126
1127    if (kms_bo_get_prop(bo, KMS_HANDLE, &handle))
1128	goto err_destroy;
1129
1130    ret = drmModeAddFB(ms->fd,
1131		       pScrn->virtualX,
1132		       pScrn->virtualY,
1133		       pScrn->depth,
1134		       pScrn->bitsPerPixel,
1135		       stride,
1136		       handle,
1137		       &fb_id);
1138    if (ret) {
1139	debug_printf("%s: failed to create framebuffer (%i, %s)",
1140		     __func__, ret, strerror(-ret));
1141	goto err_destroy;
1142    }
1143
1144    if (!drv_destroy_front_buffer_kms(pScrn))
1145	FatalError("%s: could not takedown old bo", __func__);
1146
1147    pScrn->frameX0 = 0;
1148    pScrn->frameY0 = 0;
1149    drv_adjust_frame(pScrn->scrnIndex, pScrn->frameX0, pScrn->frameY0, 0);
1150    ms->root_bo = bo;
1151    ms->fb_id = fb_id;
1152
1153    return TRUE;
1154
1155err_destroy:
1156    kms_bo_destroy(&bo);
1157    return FALSE;
1158}
1159
1160static Bool
1161drv_bind_front_buffer_kms(ScrnInfoPtr pScrn)
1162{
1163    modesettingPtr ms = modesettingPTR(pScrn);
1164    ScreenPtr pScreen = pScrn->pScreen;
1165    PixmapPtr rootPixmap = pScreen->GetScreenPixmap(pScreen);
1166    unsigned stride;
1167    void *ptr;
1168
1169    if (kms_bo_get_prop(ms->root_bo, KMS_PITCH, &stride))
1170	return FALSE;
1171
1172    if (kms_bo_map(ms->root_bo, &ptr))
1173	goto err_destroy;
1174
1175    pScreen->ModifyPixmapHeader(rootPixmap,
1176				pScrn->virtualX,
1177				pScrn->virtualY,
1178				pScreen->rootDepth,
1179				pScrn->bitsPerPixel,
1180				stride,
1181				ptr);
1182
1183    /* This a hack to work around EnableDisableFBAccess setting the pointer
1184     * the real fix would be to replace pScrn->EnableDisableFBAccess hook
1185     * and set the rootPixmap->devPrivate.ptr to something valid before that.
1186     *
1187     * But in its infinit visdome something uses either this some times before
1188     * that, so our hook doesn't get called before the crash happens.
1189     */
1190    pScrn->pixmapPrivate.ptr = ptr;
1191
1192    return TRUE;
1193
1194err_destroy:
1195    kms_bo_destroy(&ms->root_bo);
1196    return FALSE;
1197}
1198#endif /* HAVE_LIBKMS */
1199
1200static Bool drv_init_front_buffer_functions(ScrnInfoPtr pScrn)
1201{
1202    modesettingPtr ms = modesettingPTR(pScrn);
1203    if (ms->screen) {
1204	ms->destroy_front_buffer = drv_destroy_front_buffer_ga3d;
1205	ms->create_front_buffer = drv_create_front_buffer_ga3d;
1206	ms->bind_front_buffer = drv_bind_front_buffer_ga3d;
1207#ifdef HAVE_LIBKMS
1208    } else if (ms->kms) {
1209	ms->destroy_front_buffer = drv_destroy_front_buffer_kms;
1210	ms->create_front_buffer = drv_create_front_buffer_kms;
1211	ms->bind_front_buffer = drv_bind_front_buffer_kms;
1212#endif
1213    } else
1214	return FALSE;
1215
1216    return TRUE;
1217}
1218
1219CustomizerPtr xorg_customizer(ScrnInfoPtr pScrn)
1220{
1221    return modesettingPTR(pScrn)->cust;
1222}
1223
1224Bool xorg_has_gallium(ScrnInfoPtr pScrn)
1225{
1226    return modesettingPTR(pScrn)->screen != NULL;
1227}
1228
1229/* vim: set sw=4 ts=8 sts=4: */
1230