2012-03-04 09:01:12 -07:00
|
|
|
/*
|
|
|
|
* Copyright © 2007 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Dave Airlie <airlied@redhat.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#ifdef XF86DRM_MODE
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include "micmap.h"
|
|
|
|
#include "xf86cmap.h"
|
|
|
|
#include "radeon.h"
|
|
|
|
#include "radeon_reg.h"
|
|
|
|
#include "radeon_drm.h"
|
|
|
|
#include "sarea.h"
|
|
|
|
|
|
|
|
#include "drmmode_display.h"
|
|
|
|
|
|
|
|
/* DPMS */
|
|
|
|
#ifdef HAVE_XEXTPROTO_71
|
|
|
|
#include <X11/extensions/dpmsconst.h>
|
|
|
|
#else
|
|
|
|
#define DPMS_SERVER
|
|
|
|
#include <X11/extensions/dpms.h>
|
|
|
|
#endif
|
|
|
|
|
2012-06-07 14:55:34 -06:00
|
|
|
static PixmapPtr drmmode_create_bo_pixmap(ScrnInfoPtr pScrn,
|
2012-03-04 09:01:12 -07:00
|
|
|
int width, int height,
|
|
|
|
int depth, int bpp,
|
2012-06-07 14:55:34 -06:00
|
|
|
int pitch, int tiling,
|
2012-08-08 10:25:21 -06:00
|
|
|
struct radeon_bo *bo, struct radeon_surface *psurf)
|
2012-03-04 09:01:12 -07:00
|
|
|
{
|
2012-06-07 14:55:34 -06:00
|
|
|
RADEONInfoPtr info = RADEONPTR(pScrn);
|
|
|
|
ScreenPtr pScreen = pScrn->pScreen;
|
2012-03-04 09:01:12 -07:00
|
|
|
PixmapPtr pixmap;
|
2012-06-07 14:55:34 -06:00
|
|
|
struct radeon_surface *surface;
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
pixmap = (*pScreen->CreatePixmap)(pScreen, 0, 0, depth, 0);
|
|
|
|
if (!pixmap)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!(*pScreen->ModifyPixmapHeader)(pixmap, width, height,
|
|
|
|
depth, bpp, pitch, NULL)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
exaMoveInPixmap(pixmap);
|
|
|
|
radeon_set_pixmap_bo(pixmap, bo);
|
2012-06-07 14:55:34 -06:00
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
surface = radeon_get_pixmap_surface(pixmap);
|
2012-08-08 10:25:21 -06:00
|
|
|
if (surface && psurf)
|
|
|
|
*surface = *psurf;
|
|
|
|
else if (surface) {
|
2012-06-07 14:55:34 -06:00
|
|
|
memset(surface, 0, sizeof(struct radeon_surface));
|
|
|
|
surface->npix_x = width;
|
|
|
|
surface->npix_y = height;
|
|
|
|
surface->npix_z = 1;
|
|
|
|
surface->blk_w = 1;
|
|
|
|
surface->blk_h = 1;
|
|
|
|
surface->blk_d = 1;
|
|
|
|
surface->array_size = 1;
|
|
|
|
surface->last_level = 0;
|
|
|
|
surface->bpe = bpp / 8;
|
|
|
|
surface->nsamples = 1;
|
|
|
|
surface->flags = RADEON_SURF_SCANOUT;
|
|
|
|
surface->flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_2D, TYPE);
|
|
|
|
surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR_ALIGNED, MODE);
|
|
|
|
if (tiling & RADEON_TILING_MICRO) {
|
|
|
|
surface->flags = RADEON_SURF_CLR(surface->flags, MODE);
|
|
|
|
surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_1D, MODE);
|
|
|
|
}
|
|
|
|
if (tiling & RADEON_TILING_MACRO) {
|
|
|
|
surface->flags = RADEON_SURF_CLR(surface->flags, MODE);
|
|
|
|
surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_2D, MODE);
|
|
|
|
}
|
|
|
|
if (radeon_surface_best(info->surf_man, surface)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (radeon_surface_init(info->surf_man, surface)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
return pixmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void drmmode_destroy_bo_pixmap(PixmapPtr pixmap)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pixmap->drawable.pScreen;
|
|
|
|
|
|
|
|
(*pScreen->DestroyPixmap)(pixmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_ConvertFromKMode(ScrnInfoPtr scrn,
|
|
|
|
drmModeModeInfo *kmode,
|
|
|
|
DisplayModePtr mode)
|
|
|
|
{
|
|
|
|
memset(mode, 0, sizeof(DisplayModeRec));
|
|
|
|
mode->status = MODE_OK;
|
|
|
|
|
|
|
|
mode->Clock = kmode->clock;
|
|
|
|
|
|
|
|
mode->HDisplay = kmode->hdisplay;
|
|
|
|
mode->HSyncStart = kmode->hsync_start;
|
|
|
|
mode->HSyncEnd = kmode->hsync_end;
|
|
|
|
mode->HTotal = kmode->htotal;
|
|
|
|
mode->HSkew = kmode->hskew;
|
|
|
|
|
|
|
|
mode->VDisplay = kmode->vdisplay;
|
|
|
|
mode->VSyncStart = kmode->vsync_start;
|
|
|
|
mode->VSyncEnd = kmode->vsync_end;
|
|
|
|
mode->VTotal = kmode->vtotal;
|
|
|
|
mode->VScan = kmode->vscan;
|
|
|
|
|
|
|
|
mode->Flags = kmode->flags; //& FLAG_BITS;
|
|
|
|
mode->name = strdup(kmode->name);
|
|
|
|
|
|
|
|
if (kmode->type & DRM_MODE_TYPE_DRIVER)
|
|
|
|
mode->type = M_T_DRIVER;
|
|
|
|
if (kmode->type & DRM_MODE_TYPE_PREFERRED)
|
|
|
|
mode->type |= M_T_PREFERRED;
|
|
|
|
xf86SetModeCrtc (mode, scrn->adjustFlags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_ConvertToKMode(ScrnInfoPtr scrn,
|
|
|
|
drmModeModeInfo *kmode,
|
|
|
|
DisplayModePtr mode)
|
|
|
|
{
|
|
|
|
memset(kmode, 0, sizeof(*kmode));
|
|
|
|
|
|
|
|
kmode->clock = mode->Clock;
|
|
|
|
kmode->hdisplay = mode->HDisplay;
|
|
|
|
kmode->hsync_start = mode->HSyncStart;
|
|
|
|
kmode->hsync_end = mode->HSyncEnd;
|
|
|
|
kmode->htotal = mode->HTotal;
|
|
|
|
kmode->hskew = mode->HSkew;
|
|
|
|
|
|
|
|
kmode->vdisplay = mode->VDisplay;
|
|
|
|
kmode->vsync_start = mode->VSyncStart;
|
|
|
|
kmode->vsync_end = mode->VSyncEnd;
|
|
|
|
kmode->vtotal = mode->VTotal;
|
|
|
|
kmode->vscan = mode->VScan;
|
|
|
|
|
|
|
|
kmode->flags = mode->Flags; //& FLAG_BITS;
|
|
|
|
if (mode->name)
|
|
|
|
strncpy(kmode->name, mode->name, DRM_DISPLAY_MODE_LEN);
|
|
|
|
kmode->name[DRM_DISPLAY_MODE_LEN-1] = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_crtc_dpms(xf86CrtcPtr crtc, int mode)
|
|
|
|
{
|
2012-08-08 10:25:21 -06:00
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
2012-03-04 09:01:12 -07:00
|
|
|
// drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
drmmode_crtc->dpms_mode = mode;
|
|
|
|
|
|
|
|
#if 0
|
2012-03-04 09:01:12 -07:00
|
|
|
/* bonghits in the randr 1.2 - uses dpms to disable crtc - bad buzz */
|
|
|
|
if (mode == DPMSModeOff) {
|
|
|
|
// drmModeSetCrtc(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id,
|
|
|
|
// 0, 0, 0, NULL, 0, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static PixmapPtr
|
|
|
|
create_pixmap_for_fbcon(drmmode_ptr drmmode,
|
2012-08-08 10:25:21 -06:00
|
|
|
ScrnInfoPtr pScrn, int fbcon_id)
|
2012-03-04 09:01:12 -07:00
|
|
|
{
|
2012-08-08 10:25:21 -06:00
|
|
|
PixmapPtr pixmap = NULL;
|
2012-03-04 09:01:12 -07:00
|
|
|
struct radeon_bo *bo;
|
|
|
|
drmModeFBPtr fbcon;
|
|
|
|
struct drm_gem_flink flink;
|
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
fbcon = drmModeGetFB(drmmode->fd, fbcon_id);
|
2012-03-04 09:01:12 -07:00
|
|
|
if (fbcon == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
if (fbcon->depth != pScrn->depth ||
|
|
|
|
fbcon->width != pScrn->virtualX ||
|
|
|
|
fbcon->height != pScrn->virtualY)
|
|
|
|
goto out_free_fb;
|
|
|
|
|
2012-03-04 09:01:12 -07:00
|
|
|
flink.handle = fbcon->handle;
|
|
|
|
if (ioctl(drmmode->fd, DRM_IOCTL_GEM_FLINK, &flink) < 0) {
|
|
|
|
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
|
|
|
|
"Couldn't flink fbcon handle\n");
|
2012-08-08 10:25:21 -06:00
|
|
|
goto out_free_fb;
|
2012-03-04 09:01:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bo = radeon_bo_open(drmmode->bufmgr, flink.name, 0, 0, 0, 0);
|
|
|
|
if (bo == NULL) {
|
|
|
|
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
|
|
|
|
"Couldn't allocate bo for fbcon handle\n");
|
2012-08-08 10:25:21 -06:00
|
|
|
goto out_free_fb;
|
2012-03-04 09:01:12 -07:00
|
|
|
}
|
|
|
|
|
2012-06-07 14:55:34 -06:00
|
|
|
pixmap = drmmode_create_bo_pixmap(pScrn, fbcon->width, fbcon->height,
|
2012-03-04 09:01:12 -07:00
|
|
|
fbcon->depth, fbcon->bpp,
|
2012-08-08 10:25:21 -06:00
|
|
|
fbcon->pitch, 0, bo, NULL);
|
2012-03-04 09:01:12 -07:00
|
|
|
radeon_bo_unref(bo);
|
2012-08-08 10:25:21 -06:00
|
|
|
out_free_fb:
|
2012-03-04 09:01:12 -07:00
|
|
|
drmModeFreeFB(fbcon);
|
|
|
|
return pixmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drmmode_copy_fb(ScrnInfoPtr pScrn, drmmode_ptr drmmode)
|
|
|
|
{
|
|
|
|
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
|
|
|
|
RADEONInfoPtr info = RADEONPTR(pScrn);
|
|
|
|
PixmapPtr src, dst;
|
|
|
|
ScreenPtr pScreen = pScrn->pScreen;
|
2012-08-08 10:25:21 -06:00
|
|
|
int fbcon_id = 0;
|
2012-03-04 09:01:12 -07:00
|
|
|
int i;
|
|
|
|
int pitch;
|
|
|
|
uint32_t tiling_flags = 0;
|
|
|
|
Bool ret;
|
|
|
|
|
|
|
|
if (info->accelOn == FALSE)
|
2012-08-08 10:25:21 -06:00
|
|
|
goto fallback;
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
for (i = 0; i < xf86_config->num_crtc; i++) {
|
2012-08-08 10:25:21 -06:00
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = xf86_config->crtc[i]->driver_private;
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
if (drmmode_crtc->mode_crtc->buffer_id)
|
2012-08-08 10:25:21 -06:00
|
|
|
fbcon_id = drmmode_crtc->mode_crtc->buffer_id;
|
2012-03-04 09:01:12 -07:00
|
|
|
}
|
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
if (!fbcon_id)
|
|
|
|
goto fallback;
|
|
|
|
|
|
|
|
src = create_pixmap_for_fbcon(drmmode, pScrn, fbcon_id);
|
2012-03-04 09:01:12 -07:00
|
|
|
if (!src)
|
2012-08-08 10:25:21 -06:00
|
|
|
goto fallback;
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
if (info->allowColorTiling) {
|
2012-06-07 14:55:34 -06:00
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
if (info->allowColorTiling2D) {
|
|
|
|
tiling_flags |= RADEON_TILING_MACRO;
|
|
|
|
} else {
|
|
|
|
tiling_flags |= RADEON_TILING_MICRO;
|
|
|
|
}
|
|
|
|
} else
|
2012-03-04 09:01:12 -07:00
|
|
|
tiling_flags |= RADEON_TILING_MACRO;
|
|
|
|
}
|
|
|
|
|
|
|
|
pitch = RADEON_ALIGN(pScrn->displayWidth,
|
|
|
|
drmmode_get_pitch_align(pScrn, info->CurrentLayout.pixel_bytes, tiling_flags)) *
|
|
|
|
info->CurrentLayout.pixel_bytes;
|
|
|
|
|
2012-06-07 14:55:34 -06:00
|
|
|
dst = drmmode_create_bo_pixmap(pScrn, pScrn->virtualX,
|
2012-03-04 09:01:12 -07:00
|
|
|
pScrn->virtualY, pScrn->depth,
|
|
|
|
pScrn->bitsPerPixel, pitch,
|
2012-08-08 10:25:21 -06:00
|
|
|
tiling_flags, info->front_bo, &info->front_surface);
|
2012-03-04 09:01:12 -07:00
|
|
|
if (!dst)
|
|
|
|
goto out_free_src;
|
|
|
|
|
|
|
|
ret = info->accel_state->exa->PrepareCopy (src, dst,
|
|
|
|
-1, -1, GXcopy, FB_ALLONES);
|
|
|
|
if (!ret)
|
|
|
|
goto out_free_src;
|
|
|
|
info->accel_state->exa->Copy (dst, 0, 0, 0, 0,
|
|
|
|
pScrn->virtualX, pScrn->virtualY);
|
|
|
|
info->accel_state->exa->DoneCopy (dst);
|
|
|
|
radeon_cs_flush_indirect(pScrn);
|
|
|
|
|
2012-06-07 14:55:34 -06:00
|
|
|
#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) >= 10
|
|
|
|
pScreen->canDoBGNoneRoot = TRUE;
|
|
|
|
#endif
|
2012-03-04 09:01:12 -07:00
|
|
|
drmmode_destroy_bo_pixmap(dst);
|
|
|
|
out_free_src:
|
|
|
|
drmmode_destroy_bo_pixmap(src);
|
2012-08-08 10:25:21 -06:00
|
|
|
return;
|
2012-03-04 09:01:12 -07:00
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
fallback:
|
|
|
|
/* map and memset the bo */
|
|
|
|
if (radeon_bo_map(info->front_bo, 1))
|
|
|
|
return;
|
|
|
|
|
|
|
|
memset(info->front_bo->ptr, 0x00, info->front_bo->size);
|
|
|
|
radeon_bo_unmap(info->front_bo);
|
2012-03-04 09:01:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode,
|
|
|
|
Rotation rotation, int x, int y)
|
|
|
|
{
|
|
|
|
ScrnInfoPtr pScrn = crtc->scrn;
|
|
|
|
RADEONInfoPtr info = RADEONPTR(pScrn);
|
|
|
|
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(crtc->scrn);
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
int saved_x, saved_y;
|
|
|
|
Rotation saved_rotation;
|
|
|
|
DisplayModeRec saved_mode;
|
|
|
|
uint32_t *output_ids;
|
|
|
|
int output_count = 0;
|
|
|
|
Bool ret = TRUE;
|
|
|
|
int i;
|
|
|
|
int fb_id;
|
|
|
|
drmModeModeInfo kmode;
|
|
|
|
int pitch;
|
|
|
|
uint32_t tiling_flags = 0;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
if (info->allowColorTiling) {
|
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600)
|
|
|
|
tiling_flags |= RADEON_TILING_MICRO;
|
|
|
|
else
|
|
|
|
tiling_flags |= RADEON_TILING_MACRO;
|
|
|
|
}
|
|
|
|
|
|
|
|
pitch = RADEON_ALIGN(pScrn->displayWidth, drmmode_get_pitch_align(pScrn, info->CurrentLayout.pixel_bytes, tiling_flags)) *
|
|
|
|
info->CurrentLayout.pixel_bytes;
|
|
|
|
height = RADEON_ALIGN(pScrn->virtualY, drmmode_get_height_align(pScrn, tiling_flags));
|
2012-06-07 14:55:34 -06:00
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
pitch = info->front_surface.level[0].pitch_bytes;
|
|
|
|
}
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
if (drmmode->fb_id == 0) {
|
|
|
|
ret = drmModeAddFB(drmmode->fd,
|
|
|
|
pScrn->virtualX, height,
|
|
|
|
pScrn->depth, pScrn->bitsPerPixel,
|
|
|
|
pitch,
|
|
|
|
info->front_bo->handle,
|
|
|
|
&drmmode->fb_id);
|
|
|
|
if (ret < 0) {
|
|
|
|
ErrorF("failed to add fb\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
saved_mode = crtc->mode;
|
|
|
|
saved_x = crtc->x;
|
|
|
|
saved_y = crtc->y;
|
|
|
|
saved_rotation = crtc->rotation;
|
|
|
|
|
|
|
|
if (mode) {
|
|
|
|
crtc->mode = *mode;
|
|
|
|
crtc->x = x;
|
|
|
|
crtc->y = y;
|
|
|
|
crtc->rotation = rotation;
|
|
|
|
#if XORG_VERSION_CURRENT >= XORG_VERSION_NUMERIC(1,5,99,0,0)
|
|
|
|
crtc->transformPresent = FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
output_ids = calloc(sizeof(uint32_t), xf86_config->num_output);
|
|
|
|
if (!output_ids) {
|
|
|
|
ret = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode) {
|
|
|
|
for (i = 0; i < xf86_config->num_output; i++) {
|
|
|
|
xf86OutputPtr output = xf86_config->output[i];
|
|
|
|
drmmode_output_private_ptr drmmode_output;
|
|
|
|
|
|
|
|
if (output->crtc != crtc)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
drmmode_output = output->driver_private;
|
|
|
|
output_ids[output_count] = drmmode_output->mode_output->connector_id;
|
|
|
|
output_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xf86CrtcRotate(crtc)) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
#if XORG_VERSION_CURRENT >= XORG_VERSION_NUMERIC(1,7,0,0,0)
|
|
|
|
crtc->funcs->gamma_set(crtc, crtc->gamma_red, crtc->gamma_green,
|
|
|
|
crtc->gamma_blue, crtc->gamma_size);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
drmmode_ConvertToKMode(crtc->scrn, &kmode, mode);
|
|
|
|
|
|
|
|
fb_id = drmmode->fb_id;
|
|
|
|
if (drmmode_crtc->rotate_fb_id) {
|
|
|
|
fb_id = drmmode_crtc->rotate_fb_id;
|
|
|
|
x = y = 0;
|
|
|
|
}
|
|
|
|
ret = drmModeSetCrtc(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id,
|
|
|
|
fb_id, x, y, output_ids, output_count, &kmode);
|
|
|
|
if (ret)
|
|
|
|
xf86DrvMsg(crtc->scrn->scrnIndex, X_ERROR,
|
|
|
|
"failed to set mode: %s", strerror(-ret));
|
|
|
|
else
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
if (crtc->scrn->pScreen)
|
|
|
|
xf86CrtcSetScreenSubpixelOrder(crtc->scrn->pScreen);
|
|
|
|
/* go through all the outputs and force DPMS them back on? */
|
|
|
|
for (i = 0; i < xf86_config->num_output; i++) {
|
|
|
|
xf86OutputPtr output = xf86_config->output[i];
|
|
|
|
|
|
|
|
if (output->crtc != crtc)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
output->funcs->dpms(output, DPMSModeOn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pScrn->pScreen &&
|
|
|
|
!xf86ReturnOptValBool(info->Options, OPTION_SW_CURSOR, FALSE))
|
|
|
|
xf86_reload_cursors(pScrn->pScreen);
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (!ret) {
|
|
|
|
crtc->x = saved_x;
|
|
|
|
crtc->y = saved_y;
|
|
|
|
crtc->rotation = saved_rotation;
|
|
|
|
crtc->mode = saved_mode;
|
|
|
|
}
|
|
|
|
#if defined(XF86_CRTC_VERSION) && XF86_CRTC_VERSION >= 3
|
|
|
|
else
|
|
|
|
crtc->active = TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_set_cursor_colors (xf86CrtcPtr crtc, int bg, int fg)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_set_cursor_position (xf86CrtcPtr crtc, int x, int y)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
|
|
|
|
drmModeMoveCursor(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_load_cursor_argb (xf86CrtcPtr crtc, CARD32 *image)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
int i;
|
|
|
|
uint32_t *ptr;
|
|
|
|
|
|
|
|
/* cursor should be mapped already */
|
|
|
|
ptr = (uint32_t *)(drmmode_crtc->cursor_bo->ptr);
|
|
|
|
|
|
|
|
for (i = 0; i < 64 * 64; i++)
|
|
|
|
ptr[i] = cpu_to_le32(image[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_hide_cursor (xf86CrtcPtr crtc)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
|
|
|
|
drmModeSetCursor(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id, 0, 64, 64);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_show_cursor (xf86CrtcPtr crtc)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
uint32_t handle = drmmode_crtc->cursor_bo->handle;
|
|
|
|
|
|
|
|
drmModeSetCursor(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id, handle, 64, 64);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
drmmode_crtc_shadow_allocate(xf86CrtcPtr crtc, int width, int height)
|
|
|
|
{
|
|
|
|
ScrnInfoPtr pScrn = crtc->scrn;
|
|
|
|
RADEONInfoPtr info = RADEONPTR(pScrn);
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
int size;
|
|
|
|
struct radeon_bo *rotate_bo;
|
|
|
|
int ret;
|
|
|
|
unsigned long rotate_pitch;
|
|
|
|
int base_align;
|
|
|
|
|
|
|
|
/* rotation requires acceleration */
|
|
|
|
if (info->r600_shadow_fb) {
|
|
|
|
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
|
|
|
|
"Rotation requires acceleration!\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rotate_pitch =
|
|
|
|
RADEON_ALIGN(width, drmmode_get_pitch_align(crtc->scrn, drmmode->cpp, 0)) * drmmode->cpp;
|
|
|
|
height = RADEON_ALIGN(height, drmmode_get_height_align(crtc->scrn, 0));
|
|
|
|
base_align = drmmode_get_base_align(crtc->scrn, drmmode->cpp, 0);
|
|
|
|
size = RADEON_ALIGN(rotate_pitch * height, RADEON_GPU_PAGE_SIZE);
|
|
|
|
|
|
|
|
rotate_bo = radeon_bo_open(drmmode->bufmgr, 0, size, base_align, RADEON_GEM_DOMAIN_VRAM, 0);
|
|
|
|
if (rotate_bo == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
radeon_bo_map(rotate_bo, 1);
|
|
|
|
|
|
|
|
ret = drmModeAddFB(drmmode->fd, width, height, crtc->scrn->depth,
|
|
|
|
crtc->scrn->bitsPerPixel, rotate_pitch,
|
|
|
|
rotate_bo->handle,
|
|
|
|
&drmmode_crtc->rotate_fb_id);
|
|
|
|
if (ret) {
|
|
|
|
ErrorF("failed to add rotate fb\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
drmmode_crtc->rotate_bo = rotate_bo;
|
|
|
|
return drmmode_crtc->rotate_bo->ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PixmapPtr
|
|
|
|
drmmode_crtc_shadow_create(xf86CrtcPtr crtc, void *data, int width, int height)
|
|
|
|
{
|
|
|
|
ScrnInfoPtr pScrn = crtc->scrn;
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
unsigned long rotate_pitch;
|
|
|
|
PixmapPtr rotate_pixmap;
|
|
|
|
|
|
|
|
if (!data)
|
|
|
|
data = drmmode_crtc_shadow_allocate (crtc, width, height);
|
|
|
|
|
|
|
|
rotate_pitch = RADEON_ALIGN(width, drmmode_get_pitch_align(pScrn, drmmode->cpp, 0)) * drmmode->cpp;
|
|
|
|
|
2012-06-07 14:55:34 -06:00
|
|
|
rotate_pixmap = drmmode_create_bo_pixmap(pScrn,
|
2012-03-04 09:01:12 -07:00
|
|
|
width, height,
|
|
|
|
pScrn->depth,
|
|
|
|
pScrn->bitsPerPixel,
|
|
|
|
rotate_pitch,
|
2012-08-08 10:25:21 -06:00
|
|
|
0, drmmode_crtc->rotate_bo, NULL);
|
2012-03-04 09:01:12 -07:00
|
|
|
if (rotate_pixmap == NULL) {
|
|
|
|
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
|
|
|
|
"Couldn't allocate shadow pixmap for rotated CRTC\n");
|
|
|
|
}
|
|
|
|
return rotate_pixmap;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_crtc_shadow_destroy(xf86CrtcPtr crtc, PixmapPtr rotate_pixmap, void *data)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
|
|
|
|
if (rotate_pixmap)
|
|
|
|
drmmode_destroy_bo_pixmap(rotate_pixmap);
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
drmModeRmFB(drmmode->fd, drmmode_crtc->rotate_fb_id);
|
|
|
|
drmmode_crtc->rotate_fb_id = 0;
|
|
|
|
radeon_bo_unmap(drmmode_crtc->rotate_bo);
|
|
|
|
radeon_bo_unref(drmmode_crtc->rotate_bo);
|
|
|
|
drmmode_crtc->rotate_bo = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_crtc_gamma_set(xf86CrtcPtr crtc, uint16_t *red, uint16_t *green,
|
|
|
|
uint16_t *blue, int size)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
|
|
|
|
drmModeCrtcSetGamma(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id,
|
|
|
|
size, red, green, blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const xf86CrtcFuncsRec drmmode_crtc_funcs = {
|
|
|
|
.dpms = drmmode_crtc_dpms,
|
|
|
|
.set_mode_major = drmmode_set_mode_major,
|
|
|
|
.set_cursor_colors = drmmode_set_cursor_colors,
|
|
|
|
.set_cursor_position = drmmode_set_cursor_position,
|
|
|
|
.show_cursor = drmmode_show_cursor,
|
|
|
|
.hide_cursor = drmmode_hide_cursor,
|
|
|
|
.load_cursor_argb = drmmode_load_cursor_argb,
|
|
|
|
|
|
|
|
.gamma_set = drmmode_crtc_gamma_set,
|
|
|
|
.shadow_create = drmmode_crtc_shadow_create,
|
|
|
|
.shadow_allocate = drmmode_crtc_shadow_allocate,
|
|
|
|
.shadow_destroy = drmmode_crtc_shadow_destroy,
|
|
|
|
.destroy = NULL, /* XXX */
|
|
|
|
};
|
|
|
|
|
|
|
|
int drmmode_get_crtc_id(xf86CrtcPtr crtc)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
return drmmode_crtc->hw_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drmmode_crtc_hw_id(xf86CrtcPtr crtc)
|
|
|
|
{
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
ScrnInfoPtr pScrn = crtc->scrn;
|
|
|
|
RADEONInfoPtr info = RADEONPTR(pScrn);
|
|
|
|
struct drm_radeon_info ginfo;
|
|
|
|
int r;
|
|
|
|
uint32_t tmp;
|
|
|
|
|
|
|
|
memset(&ginfo, 0, sizeof(ginfo));
|
|
|
|
ginfo.request = 0x4;
|
|
|
|
tmp = drmmode_crtc->mode_crtc->crtc_id;
|
|
|
|
ginfo.value = (uintptr_t)&tmp;
|
|
|
|
r = drmCommandWriteRead(info->dri->drmFD, DRM_RADEON_INFO, &ginfo, sizeof(ginfo));
|
|
|
|
if (r) {
|
|
|
|
drmmode_crtc->hw_id = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
drmmode_crtc->hw_id = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_crtc_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num)
|
|
|
|
{
|
|
|
|
xf86CrtcPtr crtc;
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc;
|
|
|
|
|
|
|
|
crtc = xf86CrtcCreate(pScrn, &drmmode_crtc_funcs);
|
|
|
|
if (crtc == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
drmmode_crtc = xnfcalloc(sizeof(drmmode_crtc_private_rec), 1);
|
|
|
|
drmmode_crtc->mode_crtc = drmModeGetCrtc(drmmode->fd, drmmode->mode_res->crtcs[num]);
|
|
|
|
drmmode_crtc->drmmode = drmmode;
|
|
|
|
crtc->driver_private = drmmode_crtc;
|
|
|
|
drmmode_crtc_hw_id(crtc);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static xf86OutputStatus
|
|
|
|
drmmode_output_detect(xf86OutputPtr output)
|
|
|
|
{
|
|
|
|
/* go to the hw and retrieve a new output struct */
|
|
|
|
drmmode_output_private_ptr drmmode_output = output->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_output->drmmode;
|
|
|
|
xf86OutputStatus status;
|
|
|
|
drmModeFreeConnector(drmmode_output->mode_output);
|
|
|
|
|
|
|
|
drmmode_output->mode_output = drmModeGetConnector(drmmode->fd, drmmode_output->output_id);
|
|
|
|
|
|
|
|
switch (drmmode_output->mode_output->connection) {
|
|
|
|
case DRM_MODE_CONNECTED:
|
|
|
|
status = XF86OutputStatusConnected;
|
|
|
|
break;
|
|
|
|
case DRM_MODE_DISCONNECTED:
|
|
|
|
status = XF86OutputStatusDisconnected;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case DRM_MODE_UNKNOWNCONNECTION:
|
|
|
|
status = XF86OutputStatusUnknown;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
drmmode_output_mode_valid(xf86OutputPtr output, DisplayModePtr pModes)
|
|
|
|
{
|
|
|
|
return MODE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DisplayModePtr
|
|
|
|
drmmode_output_get_modes(xf86OutputPtr output)
|
|
|
|
{
|
|
|
|
drmmode_output_private_ptr drmmode_output = output->driver_private;
|
|
|
|
drmModeConnectorPtr koutput = drmmode_output->mode_output;
|
|
|
|
drmmode_ptr drmmode = drmmode_output->drmmode;
|
|
|
|
int i;
|
|
|
|
DisplayModePtr Modes = NULL, Mode;
|
|
|
|
drmModePropertyPtr props;
|
|
|
|
xf86MonPtr mon = NULL;
|
|
|
|
|
|
|
|
/* look for an EDID property */
|
|
|
|
for (i = 0; i < koutput->count_props; i++) {
|
|
|
|
props = drmModeGetProperty(drmmode->fd, koutput->props[i]);
|
|
|
|
if (props && (props->flags & DRM_MODE_PROP_BLOB)) {
|
|
|
|
if (!strcmp(props->name, "EDID")) {
|
|
|
|
if (drmmode_output->edid_blob)
|
|
|
|
drmModeFreePropertyBlob(drmmode_output->edid_blob);
|
|
|
|
drmmode_output->edid_blob = drmModeGetPropertyBlob(drmmode->fd, koutput->prop_values[i]);
|
|
|
|
}
|
|
|
|
drmModeFreeProperty(props);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drmmode_output->edid_blob) {
|
|
|
|
mon = xf86InterpretEDID(output->scrn->scrnIndex,
|
|
|
|
drmmode_output->edid_blob->data);
|
|
|
|
if (mon && drmmode_output->edid_blob->length > 128)
|
|
|
|
mon->flags |= MONITOR_EDID_COMPLETE_RAWDATA;
|
|
|
|
}
|
|
|
|
xf86OutputSetEDID(output, mon);
|
|
|
|
|
|
|
|
/* modes should already be available */
|
|
|
|
for (i = 0; i < koutput->count_modes; i++) {
|
|
|
|
Mode = xnfalloc(sizeof(DisplayModeRec));
|
|
|
|
|
|
|
|
drmmode_ConvertFromKMode(output->scrn, &koutput->modes[i], Mode);
|
|
|
|
Modes = xf86ModesAdd(Modes, Mode);
|
|
|
|
|
|
|
|
}
|
|
|
|
return Modes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_output_destroy(xf86OutputPtr output)
|
|
|
|
{
|
|
|
|
drmmode_output_private_ptr drmmode_output = output->driver_private;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (drmmode_output->edid_blob)
|
|
|
|
drmModeFreePropertyBlob(drmmode_output->edid_blob);
|
|
|
|
for (i = 0; i < drmmode_output->num_props; i++) {
|
|
|
|
drmModeFreeProperty(drmmode_output->props[i].mode_prop);
|
|
|
|
free(drmmode_output->props[i].atoms);
|
|
|
|
}
|
|
|
|
for (i = 0; i < drmmode_output->mode_output->count_encoders; i++) {
|
|
|
|
drmModeFreeEncoder(drmmode_output->mode_encoders[i]);
|
|
|
|
free(drmmode_output->mode_encoders);
|
|
|
|
}
|
|
|
|
free(drmmode_output->props);
|
|
|
|
drmModeFreeConnector(drmmode_output->mode_output);
|
|
|
|
free(drmmode_output);
|
|
|
|
output->driver_private = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_output_dpms(xf86OutputPtr output, int mode)
|
|
|
|
{
|
|
|
|
drmmode_output_private_ptr drmmode_output = output->driver_private;
|
|
|
|
drmModeConnectorPtr koutput = drmmode_output->mode_output;
|
|
|
|
drmmode_ptr drmmode = drmmode_output->drmmode;
|
|
|
|
|
|
|
|
drmModeConnectorSetProperty(drmmode->fd, koutput->connector_id,
|
|
|
|
drmmode_output->dpms_enum_id, mode);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
drmmode_property_ignore(drmModePropertyPtr prop)
|
|
|
|
{
|
|
|
|
if (!prop)
|
|
|
|
return TRUE;
|
|
|
|
/* ignore blob prop */
|
|
|
|
if (prop->flags & DRM_MODE_PROP_BLOB)
|
|
|
|
return TRUE;
|
|
|
|
/* ignore standard property */
|
|
|
|
if (!strcmp(prop->name, "EDID") ||
|
|
|
|
!strcmp(prop->name, "DPMS"))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_output_create_resources(xf86OutputPtr output)
|
|
|
|
{
|
|
|
|
drmmode_output_private_ptr drmmode_output = output->driver_private;
|
|
|
|
drmModeConnectorPtr mode_output = drmmode_output->mode_output;
|
|
|
|
drmmode_ptr drmmode = drmmode_output->drmmode;
|
|
|
|
drmModePropertyPtr drmmode_prop;
|
|
|
|
int i, j, err;
|
|
|
|
|
|
|
|
drmmode_output->props = calloc(mode_output->count_props, sizeof(drmmode_prop_rec));
|
|
|
|
if (!drmmode_output->props)
|
|
|
|
return;
|
|
|
|
|
|
|
|
drmmode_output->num_props = 0;
|
|
|
|
for (i = 0, j = 0; i < mode_output->count_props; i++) {
|
|
|
|
drmmode_prop = drmModeGetProperty(drmmode->fd, mode_output->props[i]);
|
|
|
|
if (drmmode_property_ignore(drmmode_prop)) {
|
|
|
|
drmModeFreeProperty(drmmode_prop);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
drmmode_output->props[j].mode_prop = drmmode_prop;
|
|
|
|
drmmode_output->props[j].value = mode_output->prop_values[i];
|
|
|
|
drmmode_output->num_props++;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < drmmode_output->num_props; i++) {
|
|
|
|
drmmode_prop_ptr p = &drmmode_output->props[i];
|
|
|
|
drmmode_prop = p->mode_prop;
|
|
|
|
|
|
|
|
if (drmmode_prop->flags & DRM_MODE_PROP_RANGE) {
|
|
|
|
INT32 range[2];
|
|
|
|
INT32 value = p->value;
|
|
|
|
|
|
|
|
p->num_atoms = 1;
|
|
|
|
p->atoms = calloc(p->num_atoms, sizeof(Atom));
|
|
|
|
if (!p->atoms)
|
|
|
|
continue;
|
|
|
|
p->atoms[0] = MakeAtom(drmmode_prop->name, strlen(drmmode_prop->name), TRUE);
|
|
|
|
range[0] = drmmode_prop->values[0];
|
|
|
|
range[1] = drmmode_prop->values[1];
|
|
|
|
err = RRConfigureOutputProperty(output->randr_output, p->atoms[0],
|
|
|
|
FALSE, TRUE,
|
|
|
|
drmmode_prop->flags & DRM_MODE_PROP_IMMUTABLE ? TRUE : FALSE,
|
|
|
|
2, range);
|
|
|
|
if (err != 0) {
|
|
|
|
xf86DrvMsg(output->scrn->scrnIndex, X_ERROR,
|
|
|
|
"RRConfigureOutputProperty error, %d\n", err);
|
|
|
|
}
|
|
|
|
err = RRChangeOutputProperty(output->randr_output, p->atoms[0],
|
|
|
|
XA_INTEGER, 32, PropModeReplace, 1, &value, FALSE, TRUE);
|
|
|
|
if (err != 0) {
|
|
|
|
xf86DrvMsg(output->scrn->scrnIndex, X_ERROR,
|
|
|
|
"RRChangeOutputProperty error, %d\n", err);
|
|
|
|
}
|
|
|
|
} else if (drmmode_prop->flags & DRM_MODE_PROP_ENUM) {
|
|
|
|
p->num_atoms = drmmode_prop->count_enums + 1;
|
|
|
|
p->atoms = calloc(p->num_atoms, sizeof(Atom));
|
|
|
|
if (!p->atoms)
|
|
|
|
continue;
|
|
|
|
p->atoms[0] = MakeAtom(drmmode_prop->name, strlen(drmmode_prop->name), TRUE);
|
|
|
|
for (j = 1; j <= drmmode_prop->count_enums; j++) {
|
|
|
|
struct drm_mode_property_enum *e = &drmmode_prop->enums[j-1];
|
|
|
|
p->atoms[j] = MakeAtom(e->name, strlen(e->name), TRUE);
|
|
|
|
}
|
|
|
|
err = RRConfigureOutputProperty(output->randr_output, p->atoms[0],
|
|
|
|
FALSE, FALSE,
|
|
|
|
drmmode_prop->flags & DRM_MODE_PROP_IMMUTABLE ? TRUE : FALSE,
|
|
|
|
p->num_atoms - 1, (INT32 *)&p->atoms[1]);
|
|
|
|
if (err != 0) {
|
|
|
|
xf86DrvMsg(output->scrn->scrnIndex, X_ERROR,
|
|
|
|
"RRConfigureOutputProperty error, %d\n", err);
|
|
|
|
}
|
|
|
|
for (j = 0; j < drmmode_prop->count_enums; j++)
|
|
|
|
if (drmmode_prop->enums[j].value == p->value)
|
|
|
|
break;
|
|
|
|
/* there's always a matching value */
|
|
|
|
err = RRChangeOutputProperty(output->randr_output, p->atoms[0],
|
|
|
|
XA_ATOM, 32, PropModeReplace, 1, &p->atoms[j+1], FALSE, TRUE);
|
|
|
|
if (err != 0) {
|
|
|
|
xf86DrvMsg(output->scrn->scrnIndex, X_ERROR,
|
|
|
|
"RRChangeOutputProperty error, %d\n", err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
drmmode_output_set_property(xf86OutputPtr output, Atom property,
|
|
|
|
RRPropertyValuePtr value)
|
|
|
|
{
|
|
|
|
drmmode_output_private_ptr drmmode_output = output->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_output->drmmode;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < drmmode_output->num_props; i++) {
|
|
|
|
drmmode_prop_ptr p = &drmmode_output->props[i];
|
|
|
|
|
|
|
|
if (p->atoms[0] != property)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (p->mode_prop->flags & DRM_MODE_PROP_RANGE) {
|
|
|
|
uint32_t val;
|
|
|
|
|
|
|
|
if (value->type != XA_INTEGER || value->format != 32 ||
|
|
|
|
value->size != 1)
|
|
|
|
return FALSE;
|
|
|
|
val = *(uint32_t *)value->data;
|
|
|
|
|
|
|
|
drmModeConnectorSetProperty(drmmode->fd, drmmode_output->output_id,
|
|
|
|
p->mode_prop->prop_id, (uint64_t)val);
|
|
|
|
return TRUE;
|
|
|
|
} else if (p->mode_prop->flags & DRM_MODE_PROP_ENUM) {
|
|
|
|
Atom atom;
|
|
|
|
const char *name;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
if (value->type != XA_ATOM || value->format != 32 || value->size != 1)
|
|
|
|
return FALSE;
|
|
|
|
memcpy(&atom, value->data, 4);
|
|
|
|
name = NameForAtom(atom);
|
|
|
|
|
|
|
|
/* search for matching name string, then set its value down */
|
|
|
|
for (j = 0; j < p->mode_prop->count_enums; j++) {
|
|
|
|
if (!strcmp(p->mode_prop->enums[j].name, name)) {
|
|
|
|
drmModeConnectorSetProperty(drmmode->fd, drmmode_output->output_id,
|
|
|
|
p->mode_prop->prop_id, p->mode_prop->enums[j].value);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
drmmode_output_get_property(xf86OutputPtr output, Atom property)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const xf86OutputFuncsRec drmmode_output_funcs = {
|
|
|
|
.dpms = drmmode_output_dpms,
|
|
|
|
.create_resources = drmmode_output_create_resources,
|
|
|
|
#ifdef RANDR_12_INTERFACE
|
|
|
|
.set_property = drmmode_output_set_property,
|
|
|
|
.get_property = drmmode_output_get_property,
|
|
|
|
#endif
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
.save = drmmode_crt_save,
|
|
|
|
.restore = drmmode_crt_restore,
|
|
|
|
.mode_fixup = drmmode_crt_mode_fixup,
|
|
|
|
.prepare = drmmode_output_prepare,
|
|
|
|
.mode_set = drmmode_crt_mode_set,
|
|
|
|
.commit = drmmode_output_commit,
|
|
|
|
#endif
|
|
|
|
.detect = drmmode_output_detect,
|
|
|
|
.mode_valid = drmmode_output_mode_valid,
|
|
|
|
|
|
|
|
.get_modes = drmmode_output_get_modes,
|
|
|
|
.destroy = drmmode_output_destroy
|
|
|
|
};
|
|
|
|
|
|
|
|
static int subpixel_conv_table[7] = { 0, SubPixelUnknown,
|
|
|
|
SubPixelHorizontalRGB,
|
|
|
|
SubPixelHorizontalBGR,
|
|
|
|
SubPixelVerticalRGB,
|
|
|
|
SubPixelVerticalBGR,
|
|
|
|
SubPixelNone };
|
|
|
|
|
|
|
|
const char *output_names[] = { "None",
|
|
|
|
"VGA",
|
|
|
|
"DVI",
|
|
|
|
"DVI",
|
|
|
|
"DVI",
|
|
|
|
"Composite",
|
|
|
|
"S-video",
|
|
|
|
"LVDS",
|
|
|
|
"CTV",
|
|
|
|
"DIN",
|
|
|
|
"DisplayPort",
|
|
|
|
"HDMI",
|
|
|
|
"HDMI",
|
|
|
|
"TV",
|
|
|
|
"eDP"
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_output_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num, int *num_dvi, int *num_hdmi)
|
|
|
|
{
|
|
|
|
RADEONInfoPtr info = RADEONPTR(pScrn);
|
|
|
|
xf86OutputPtr output;
|
|
|
|
drmModeConnectorPtr koutput;
|
|
|
|
drmModeEncoderPtr *kencoders = NULL;
|
|
|
|
drmmode_output_private_ptr drmmode_output;
|
|
|
|
drmModePropertyPtr props;
|
|
|
|
char name[32];
|
|
|
|
int i;
|
|
|
|
const char *s;
|
|
|
|
|
|
|
|
koutput = drmModeGetConnector(drmmode->fd, drmmode->mode_res->connectors[num]);
|
|
|
|
if (!koutput)
|
|
|
|
return;
|
|
|
|
|
|
|
|
kencoders = calloc(sizeof(drmModeEncoderPtr), koutput->count_encoders);
|
|
|
|
if (!kencoders) {
|
|
|
|
goto out_free_encoders;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < koutput->count_encoders; i++) {
|
|
|
|
kencoders[i] = drmModeGetEncoder(drmmode->fd, koutput->encoders[i]);
|
|
|
|
if (!kencoders[i]) {
|
|
|
|
goto out_free_encoders;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* need to do smart conversion here for compat with non-kms ATI driver */
|
|
|
|
if (koutput->connector_type_id == 1) {
|
|
|
|
switch(koutput->connector_type) {
|
|
|
|
case DRM_MODE_CONNECTOR_DVII:
|
|
|
|
case DRM_MODE_CONNECTOR_DVID:
|
|
|
|
case DRM_MODE_CONNECTOR_DVIA:
|
|
|
|
snprintf(name, 32, "%s-%d", output_names[koutput->connector_type], *num_dvi);
|
|
|
|
(*num_dvi)++;
|
|
|
|
break;
|
|
|
|
case DRM_MODE_CONNECTOR_HDMIA:
|
|
|
|
case DRM_MODE_CONNECTOR_HDMIB:
|
|
|
|
snprintf(name, 32, "%s-%d", output_names[koutput->connector_type], *num_hdmi);
|
|
|
|
(*num_hdmi)++;
|
|
|
|
break;
|
|
|
|
case DRM_MODE_CONNECTOR_VGA:
|
|
|
|
case DRM_MODE_CONNECTOR_DisplayPort:
|
|
|
|
snprintf(name, 32, "%s-%d", output_names[koutput->connector_type], koutput->connector_type_id - 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
snprintf(name, 32, "%s", output_names[koutput->connector_type]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
snprintf(name, 32, "%s-%d", output_names[koutput->connector_type], koutput->connector_type_id - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xf86IsEntityShared(pScrn->entityList[0])) {
|
|
|
|
if ((s = xf86GetOptValString(info->Options, OPTION_ZAPHOD_HEADS))) {
|
|
|
|
if (!RADEONZaphodStringMatches(pScrn, s, name))
|
|
|
|
goto out_free_encoders;
|
|
|
|
} else {
|
|
|
|
if (info->IsPrimary && (num != 0))
|
|
|
|
goto out_free_encoders;
|
|
|
|
else if (info->IsSecondary && (num != 1))
|
|
|
|
goto out_free_encoders;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
output = xf86OutputCreate (pScrn, &drmmode_output_funcs, name);
|
|
|
|
if (!output) {
|
|
|
|
goto out_free_encoders;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmmode_output = calloc(sizeof(drmmode_output_private_rec), 1);
|
|
|
|
if (!drmmode_output) {
|
|
|
|
xf86OutputDestroy(output);
|
|
|
|
goto out_free_encoders;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmmode_output->output_id = drmmode->mode_res->connectors[num];
|
|
|
|
drmmode_output->mode_output = koutput;
|
|
|
|
drmmode_output->mode_encoders = kencoders;
|
|
|
|
drmmode_output->drmmode = drmmode;
|
|
|
|
output->mm_width = koutput->mmWidth;
|
|
|
|
output->mm_height = koutput->mmHeight;
|
|
|
|
|
|
|
|
output->subpixel_order = subpixel_conv_table[koutput->subpixel];
|
|
|
|
output->interlaceAllowed = TRUE;
|
|
|
|
output->doubleScanAllowed = TRUE;
|
|
|
|
output->driver_private = drmmode_output;
|
|
|
|
|
2012-06-07 14:55:34 -06:00
|
|
|
output->possible_crtcs = 0xffffffff;
|
2012-03-04 09:01:12 -07:00
|
|
|
for (i = 0; i < koutput->count_encoders; i++) {
|
|
|
|
output->possible_crtcs &= kencoders[i]->possible_crtcs;
|
|
|
|
}
|
|
|
|
/* work out the possible clones later */
|
|
|
|
output->possible_clones = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < koutput->count_props; i++) {
|
|
|
|
props = drmModeGetProperty(drmmode->fd, koutput->props[i]);
|
|
|
|
if (props && (props->flags & DRM_MODE_PROP_ENUM)) {
|
|
|
|
if (!strcmp(props->name, "DPMS")) {
|
|
|
|
drmmode_output->dpms_enum_id = koutput->props[i];
|
|
|
|
drmModeFreeProperty(props);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
drmModeFreeProperty(props);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
out_free_encoders:
|
|
|
|
if (kencoders){
|
|
|
|
for (i = 0; i < koutput->count_encoders; i++)
|
|
|
|
drmModeFreeEncoder(kencoders[i]);
|
|
|
|
free(kencoders);
|
|
|
|
}
|
|
|
|
drmModeFreeConnector(koutput);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t find_clones(ScrnInfoPtr scrn, xf86OutputPtr output)
|
|
|
|
{
|
|
|
|
drmmode_output_private_ptr drmmode_output = output->driver_private, clone_drmout;
|
|
|
|
int i;
|
|
|
|
xf86OutputPtr clone_output;
|
|
|
|
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn);
|
|
|
|
int index_mask = 0;
|
|
|
|
|
|
|
|
if (drmmode_output->enc_clone_mask == 0)
|
|
|
|
return index_mask;
|
|
|
|
|
|
|
|
for (i = 0; i < xf86_config->num_output; i++) {
|
|
|
|
clone_output = xf86_config->output[i];
|
|
|
|
clone_drmout = clone_output->driver_private;
|
|
|
|
if (output == clone_output)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (clone_drmout->enc_mask == 0)
|
|
|
|
continue;
|
|
|
|
if (drmmode_output->enc_clone_mask == clone_drmout->enc_mask)
|
|
|
|
index_mask |= (1 << i);
|
|
|
|
}
|
|
|
|
return index_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_clones_init(ScrnInfoPtr scrn, drmmode_ptr drmmode)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn);
|
|
|
|
|
|
|
|
for (i = 0; i < xf86_config->num_output; i++) {
|
|
|
|
xf86OutputPtr output = xf86_config->output[i];
|
|
|
|
drmmode_output_private_ptr drmmode_output;
|
|
|
|
|
|
|
|
drmmode_output = output->driver_private;
|
|
|
|
drmmode_output->enc_clone_mask = 0xff;
|
|
|
|
/* and all the possible encoder clones for this output together */
|
|
|
|
for (j = 0; j < drmmode_output->mode_output->count_encoders; j++)
|
|
|
|
{
|
|
|
|
int k;
|
|
|
|
for (k = 0; k < drmmode->mode_res->count_encoders; k++) {
|
|
|
|
if (drmmode->mode_res->encoders[k] == drmmode_output->mode_encoders[j]->encoder_id)
|
|
|
|
drmmode_output->enc_mask |= (1 << k);
|
|
|
|
}
|
|
|
|
|
|
|
|
drmmode_output->enc_clone_mask &= drmmode_output->mode_encoders[j]->possible_clones;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < xf86_config->num_output; i++) {
|
|
|
|
xf86OutputPtr output = xf86_config->output[i];
|
|
|
|
output->possible_clones = find_clones(scrn, output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns height alignment in pixels */
|
|
|
|
int drmmode_get_height_align(ScrnInfoPtr scrn, uint32_t tiling)
|
|
|
|
{
|
|
|
|
RADEONInfoPtr info = RADEONPTR(scrn);
|
|
|
|
int height_align = 1;
|
|
|
|
|
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
if (tiling & RADEON_TILING_MACRO)
|
|
|
|
height_align = info->num_channels * 8;
|
|
|
|
else if (tiling & RADEON_TILING_MICRO)
|
|
|
|
height_align = 8;
|
|
|
|
else
|
|
|
|
height_align = 8;
|
|
|
|
} else {
|
|
|
|
if (tiling)
|
|
|
|
height_align = 16;
|
|
|
|
else
|
|
|
|
height_align = 1;
|
|
|
|
}
|
|
|
|
return height_align;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns pitch alignment in pixels */
|
|
|
|
int drmmode_get_pitch_align(ScrnInfoPtr scrn, int bpe, uint32_t tiling)
|
|
|
|
{
|
|
|
|
RADEONInfoPtr info = RADEONPTR(scrn);
|
|
|
|
int pitch_align = 1;
|
|
|
|
|
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
if (tiling & RADEON_TILING_MACRO) {
|
|
|
|
/* general surface requirements */
|
|
|
|
pitch_align = MAX(info->num_banks,
|
|
|
|
(((info->group_bytes / 8) / bpe) * info->num_banks)) * 8;
|
|
|
|
/* further restrictions for scanout */
|
|
|
|
pitch_align = MAX(info->num_banks * 8, pitch_align);
|
|
|
|
} else if (tiling & RADEON_TILING_MICRO) {
|
|
|
|
/* general surface requirements */
|
|
|
|
pitch_align = MAX(8, (info->group_bytes / (8 * bpe)));
|
|
|
|
/* further restrictions for scanout */
|
|
|
|
pitch_align = MAX(info->group_bytes / bpe, pitch_align);
|
|
|
|
} else {
|
|
|
|
if (info->have_tiling_info)
|
|
|
|
/* linear aligned requirements */
|
|
|
|
pitch_align = MAX(64, info->group_bytes / bpe);
|
|
|
|
else
|
|
|
|
/* default to 512 elements if we don't know the real
|
|
|
|
* group size otherwise the kernel may reject the CS
|
|
|
|
* if the group sizes don't match as the pitch won't
|
|
|
|
* be aligned properly.
|
|
|
|
*/
|
|
|
|
pitch_align = 512;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* general surface requirements */
|
|
|
|
if (tiling)
|
|
|
|
pitch_align = 256 / bpe;
|
|
|
|
else
|
|
|
|
pitch_align = 64;
|
|
|
|
}
|
|
|
|
return pitch_align;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns base alignment in bytes */
|
|
|
|
int drmmode_get_base_align(ScrnInfoPtr scrn, int bpe, uint32_t tiling)
|
|
|
|
{
|
|
|
|
RADEONInfoPtr info = RADEONPTR(scrn);
|
|
|
|
int pixel_align = drmmode_get_pitch_align(scrn, bpe, tiling);
|
|
|
|
int height_align = drmmode_get_height_align(scrn, tiling);
|
|
|
|
int base_align = RADEON_GPU_PAGE_SIZE;
|
|
|
|
|
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
if (tiling & RADEON_TILING_MACRO)
|
|
|
|
base_align = MAX(info->num_banks * info->num_channels * 8 * 8 * bpe,
|
|
|
|
pixel_align * bpe * height_align);
|
|
|
|
else {
|
|
|
|
if (info->have_tiling_info)
|
|
|
|
base_align = info->group_bytes;
|
|
|
|
else
|
|
|
|
/* default to 512 if we don't know the real
|
|
|
|
* group size otherwise the kernel may reject the CS
|
|
|
|
* if the group sizes don't match as the base won't
|
|
|
|
* be aligned properly.
|
|
|
|
*/
|
|
|
|
base_align = 512;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return base_align;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
drmmode_xf86crtc_resize (ScrnInfoPtr scrn, int width, int height)
|
|
|
|
{
|
|
|
|
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn);
|
|
|
|
drmmode_crtc_private_ptr
|
|
|
|
drmmode_crtc = xf86_config->crtc[0]->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
RADEONInfoPtr info = RADEONPTR(scrn);
|
|
|
|
struct radeon_bo *old_front = NULL;
|
|
|
|
Bool ret;
|
2012-08-08 10:25:21 -06:00
|
|
|
ScreenPtr screen = xf86ScrnToScreen(scrn);
|
2012-03-04 09:01:12 -07:00
|
|
|
uint32_t old_fb_id;
|
|
|
|
int i, pitch, old_width, old_height, old_pitch;
|
|
|
|
int screen_size;
|
|
|
|
int cpp = info->CurrentLayout.pixel_bytes;
|
|
|
|
struct radeon_bo *front_bo;
|
2012-06-07 14:55:34 -06:00
|
|
|
struct radeon_surface surface;
|
|
|
|
struct radeon_surface *psurface;
|
|
|
|
uint32_t tiling_flags = 0, base_align;
|
2012-03-04 09:01:12 -07:00
|
|
|
PixmapPtr ppix = screen->GetScreenPixmap(screen);
|
|
|
|
void *fb_shadow;
|
|
|
|
|
|
|
|
if (scrn->virtualX == width && scrn->virtualY == height)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
front_bo = info->front_bo;
|
|
|
|
radeon_cs_flush_indirect(scrn);
|
|
|
|
|
|
|
|
if (front_bo)
|
|
|
|
radeon_bo_wait(front_bo);
|
|
|
|
|
|
|
|
if (info->allowColorTiling) {
|
2012-06-07 14:55:34 -06:00
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
if (info->allowColorTiling2D) {
|
|
|
|
tiling_flags |= RADEON_TILING_MACRO;
|
|
|
|
} else {
|
|
|
|
tiling_flags |= RADEON_TILING_MICRO;
|
|
|
|
}
|
|
|
|
} else
|
2012-03-04 09:01:12 -07:00
|
|
|
tiling_flags |= RADEON_TILING_MACRO;
|
|
|
|
}
|
|
|
|
|
|
|
|
pitch = RADEON_ALIGN(width, drmmode_get_pitch_align(scrn, cpp, tiling_flags)) * cpp;
|
|
|
|
height = RADEON_ALIGN(height, drmmode_get_height_align(scrn, tiling_flags));
|
|
|
|
screen_size = RADEON_ALIGN(pitch * height, RADEON_GPU_PAGE_SIZE);
|
2012-06-07 14:55:34 -06:00
|
|
|
base_align = 4096;
|
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600) {
|
|
|
|
memset(&surface, 0, sizeof(struct radeon_surface));
|
|
|
|
surface.npix_x = width;
|
|
|
|
surface.npix_y = height;
|
|
|
|
surface.npix_z = 1;
|
|
|
|
surface.blk_w = 1;
|
|
|
|
surface.blk_h = 1;
|
|
|
|
surface.blk_d = 1;
|
|
|
|
surface.array_size = 1;
|
|
|
|
surface.last_level = 0;
|
|
|
|
surface.bpe = cpp;
|
|
|
|
surface.nsamples = 1;
|
|
|
|
surface.flags = RADEON_SURF_SCANOUT;
|
|
|
|
surface.flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_2D, TYPE);
|
|
|
|
surface.flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR_ALIGNED, MODE);
|
|
|
|
if (tiling_flags & RADEON_TILING_MICRO) {
|
|
|
|
surface.flags = RADEON_SURF_CLR(surface.flags, MODE);
|
|
|
|
surface.flags |= RADEON_SURF_SET(RADEON_SURF_MODE_1D, MODE);
|
|
|
|
}
|
|
|
|
if (tiling_flags & RADEON_TILING_MACRO) {
|
|
|
|
surface.flags = RADEON_SURF_CLR(surface.flags, MODE);
|
|
|
|
surface.flags |= RADEON_SURF_SET(RADEON_SURF_MODE_2D, MODE);
|
|
|
|
}
|
|
|
|
if (radeon_surface_best(info->surf_man, &surface)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (radeon_surface_init(info->surf_man, &surface)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
screen_size = surface.bo_size;
|
|
|
|
base_align = surface.bo_alignment;
|
|
|
|
pitch = surface.level[0].pitch_bytes;
|
|
|
|
tiling_flags = 0;
|
|
|
|
switch (surface.level[0].mode) {
|
|
|
|
case RADEON_SURF_MODE_2D:
|
|
|
|
tiling_flags |= RADEON_TILING_MACRO;
|
|
|
|
tiling_flags |= surface.bankw << RADEON_TILING_EG_BANKW_SHIFT;
|
|
|
|
tiling_flags |= surface.bankh << RADEON_TILING_EG_BANKH_SHIFT;
|
|
|
|
tiling_flags |= surface.mtilea << RADEON_TILING_EG_MACRO_TILE_ASPECT_SHIFT;
|
|
|
|
tiling_flags |= eg_tile_split(surface.tile_split) << RADEON_TILING_EG_TILE_SPLIT_SHIFT;
|
|
|
|
break;
|
|
|
|
case RADEON_SURF_MODE_1D:
|
|
|
|
tiling_flags |= RADEON_TILING_MICRO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
info->front_surface = surface;
|
|
|
|
}
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
xf86DrvMsg(scrn->scrnIndex, X_INFO,
|
|
|
|
"Allocate new frame buffer %dx%d stride %d\n",
|
|
|
|
width, height, pitch / cpp);
|
|
|
|
|
|
|
|
old_width = scrn->virtualX;
|
|
|
|
old_height = scrn->virtualY;
|
|
|
|
old_pitch = scrn->displayWidth;
|
|
|
|
old_fb_id = drmmode->fb_id;
|
|
|
|
old_front = info->front_bo;
|
|
|
|
|
|
|
|
scrn->virtualX = width;
|
|
|
|
scrn->virtualY = height;
|
|
|
|
scrn->displayWidth = pitch / cpp;
|
|
|
|
|
2012-06-07 14:55:34 -06:00
|
|
|
info->front_bo = radeon_bo_open(info->bufmgr, 0, screen_size, base_align, RADEON_GEM_DOMAIN_VRAM, 0);
|
2012-03-04 09:01:12 -07:00
|
|
|
if (!info->front_bo)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
#if X_BYTE_ORDER == X_BIG_ENDIAN
|
|
|
|
switch (cpp) {
|
|
|
|
case 4:
|
|
|
|
tiling_flags |= RADEON_TILING_SWAP_32BIT;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
tiling_flags |= RADEON_TILING_SWAP_16BIT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (tiling_flags)
|
|
|
|
radeon_bo_set_tiling(info->front_bo, tiling_flags, pitch);
|
|
|
|
|
|
|
|
ret = drmModeAddFB(drmmode->fd, width, height, scrn->depth,
|
|
|
|
scrn->bitsPerPixel, pitch,
|
|
|
|
info->front_bo->handle,
|
|
|
|
&drmmode->fb_id);
|
|
|
|
if (ret)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (!info->r600_shadow_fb) {
|
|
|
|
radeon_set_pixmap_bo(ppix, info->front_bo);
|
2012-06-07 14:55:34 -06:00
|
|
|
psurface = radeon_get_pixmap_surface(ppix);
|
|
|
|
*psurface = info->front_surface;
|
2012-03-04 09:01:12 -07:00
|
|
|
screen->ModifyPixmapHeader(ppix,
|
|
|
|
width, height, -1, -1, pitch, NULL);
|
|
|
|
} else {
|
|
|
|
if (radeon_bo_map(info->front_bo, 1))
|
|
|
|
goto fail;
|
|
|
|
fb_shadow = calloc(1, screen_size);
|
|
|
|
if (fb_shadow == NULL)
|
|
|
|
goto fail;
|
|
|
|
free(info->fb_shadow);
|
|
|
|
info->fb_shadow = fb_shadow;
|
|
|
|
screen->ModifyPixmapHeader(ppix,
|
|
|
|
width, height, -1, -1, pitch,
|
|
|
|
info->fb_shadow);
|
|
|
|
}
|
|
|
|
#if XORG_VERSION_CURRENT < XORG_VERSION_NUMERIC(1,9,99,1,0)
|
|
|
|
scrn->pixmapPrivate.ptr = ppix->devPrivate.ptr;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (i = 0; i < xf86_config->num_crtc; i++) {
|
|
|
|
xf86CrtcPtr crtc = xf86_config->crtc[i];
|
|
|
|
|
|
|
|
if (!crtc->enabled)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
drmmode_set_mode_major(crtc, &crtc->mode,
|
|
|
|
crtc->rotation, crtc->x, crtc->y);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old_fb_id)
|
|
|
|
drmModeRmFB(drmmode->fd, old_fb_id);
|
|
|
|
if (old_front)
|
|
|
|
radeon_bo_unref(old_front);
|
|
|
|
|
|
|
|
radeon_kms_update_vram_limit(scrn, screen_size);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (info->front_bo)
|
|
|
|
radeon_bo_unref(info->front_bo);
|
|
|
|
info->front_bo = old_front;
|
|
|
|
scrn->virtualX = old_width;
|
|
|
|
scrn->virtualY = old_height;
|
|
|
|
scrn->displayWidth = old_pitch;
|
|
|
|
drmmode->fb_id = old_fb_id;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const xf86CrtcConfigFuncsRec drmmode_xf86crtc_config_funcs = {
|
|
|
|
drmmode_xf86crtc_resize
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
drmmode_vblank_handler(int fd, unsigned int frame, unsigned int tv_sec,
|
|
|
|
unsigned int tv_usec, void *event_data)
|
|
|
|
{
|
|
|
|
radeon_dri2_frame_event_handler(frame, tv_sec, tv_usec, event_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
static void
|
|
|
|
drmmode_flip_handler(int fd, unsigned int frame, unsigned int tv_sec,
|
|
|
|
unsigned int tv_usec, void *event_data)
|
|
|
|
{
|
|
|
|
drmmode_flipevtcarrier_ptr flipcarrier = event_data;
|
|
|
|
drmmode_flipdata_ptr flipdata = flipcarrier->flipdata;
|
|
|
|
drmmode_ptr drmmode = flipdata->drmmode;
|
|
|
|
|
|
|
|
/* Is this the event whose info shall be delivered to higher level? */
|
|
|
|
if (flipcarrier->dispatch_me) {
|
|
|
|
/* Yes: Cache msc, ust for later delivery. */
|
|
|
|
flipdata->fe_frame = frame;
|
|
|
|
flipdata->fe_tv_sec = tv_sec;
|
|
|
|
flipdata->fe_tv_usec = tv_usec;
|
|
|
|
}
|
|
|
|
free(flipcarrier);
|
|
|
|
|
|
|
|
/* Last crtc completed flip? */
|
|
|
|
flipdata->flip_count--;
|
|
|
|
if (flipdata->flip_count > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Release framebuffer */
|
|
|
|
drmModeRmFB(drmmode->fd, flipdata->old_fb_id);
|
|
|
|
|
|
|
|
if (flipdata->event_data == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Deliver cached msc, ust from reference crtc to flip event handler */
|
|
|
|
radeon_dri2_flip_event_handler(flipdata->fe_frame, flipdata->fe_tv_sec,
|
|
|
|
flipdata->fe_tv_usec, flipdata->event_data);
|
|
|
|
|
|
|
|
free(flipdata);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
|
2012-03-04 09:01:12 -07:00
|
|
|
static void
|
|
|
|
drm_wakeup_handler(pointer data, int err, pointer p)
|
|
|
|
{
|
|
|
|
drmmode_ptr drmmode = data;
|
|
|
|
fd_set *read_mask = p;
|
|
|
|
|
|
|
|
if (err >= 0 && FD_ISSET(drmmode->fd, read_mask)) {
|
|
|
|
drmHandleEvent(drmmode->fd, &drmmode->event_context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool drmmode_pre_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int cpp)
|
|
|
|
{
|
|
|
|
xf86CrtcConfigPtr xf86_config;
|
|
|
|
int i, num_dvi = 0, num_hdmi = 0;
|
|
|
|
|
|
|
|
xf86CrtcConfigInit(pScrn, &drmmode_xf86crtc_config_funcs);
|
|
|
|
xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
|
|
|
|
|
|
|
|
drmmode->scrn = pScrn;
|
|
|
|
drmmode->cpp = cpp;
|
|
|
|
drmmode->mode_res = drmModeGetResources(drmmode->fd);
|
|
|
|
if (!drmmode->mode_res)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
xf86CrtcSetSizeRange(pScrn, 320, 200, drmmode->mode_res->max_width, drmmode->mode_res->max_height);
|
|
|
|
for (i = 0; i < drmmode->mode_res->count_crtcs; i++)
|
|
|
|
if (!xf86IsEntityShared(pScrn->entityList[0]) || pScrn->confScreen->device->screen == i)
|
|
|
|
drmmode_crtc_init(pScrn, drmmode, i);
|
|
|
|
|
|
|
|
for (i = 0; i < drmmode->mode_res->count_connectors; i++)
|
|
|
|
drmmode_output_init(pScrn, drmmode, i, &num_dvi, &num_hdmi);
|
|
|
|
|
|
|
|
/* workout clones */
|
|
|
|
drmmode_clones_init(pScrn, drmmode);
|
|
|
|
|
|
|
|
xf86InitialConfiguration(pScrn, TRUE);
|
|
|
|
|
|
|
|
drmmode->event_context.version = DRM_EVENT_CONTEXT_VERSION;
|
|
|
|
drmmode->event_context.vblank_handler = drmmode_vblank_handler;
|
|
|
|
#ifdef __linux__
|
|
|
|
drmmode->event_context.page_flip_handler = drmmode_flip_handler;
|
|
|
|
#endif
|
2012-06-07 14:55:34 -06:00
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
return TRUE;
|
2012-06-07 14:55:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void drmmode_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode)
|
|
|
|
{
|
2012-08-08 10:25:21 -06:00
|
|
|
RADEONEntPtr pRADEONEnt = RADEONEntPriv(pScrn);
|
|
|
|
RADEONInfoPtr info = RADEONPTR(pScrn);
|
2012-06-07 14:55:34 -06:00
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
if (pRADEONEnt->fd_wakeup_registered != serverGeneration &&
|
|
|
|
info->dri->pKernelDRMVersion->version_minor >= 4) {
|
2012-03-04 09:01:12 -07:00
|
|
|
AddGeneralSocket(drmmode->fd);
|
|
|
|
RegisterBlockAndWakeupHandlers((BlockHandlerProcPtr)NoopDDA,
|
|
|
|
drm_wakeup_handler, drmmode);
|
2012-06-07 14:55:34 -06:00
|
|
|
pRADEONEnt->fd_wakeup_registered = serverGeneration;
|
2012-03-04 09:01:12 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool drmmode_set_bufmgr(ScrnInfoPtr pScrn, drmmode_ptr drmmode, struct radeon_bo_manager *bufmgr)
|
|
|
|
{
|
|
|
|
drmmode->bufmgr = bufmgr;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void drmmode_set_cursor(ScrnInfoPtr scrn, drmmode_ptr drmmode, int id, struct radeon_bo *bo)
|
|
|
|
{
|
|
|
|
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn);
|
|
|
|
xf86CrtcPtr crtc = xf86_config->crtc[id];
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
|
|
|
|
drmmode_crtc->cursor_bo = bo;
|
|
|
|
}
|
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
void drmmode_adjust_frame(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int x, int y)
|
2012-03-04 09:01:12 -07:00
|
|
|
{
|
|
|
|
xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
|
|
|
|
xf86OutputPtr output = config->output[config->compat_output];
|
|
|
|
xf86CrtcPtr crtc = output->crtc;
|
|
|
|
|
|
|
|
if (crtc && crtc->enabled) {
|
|
|
|
drmmode_set_mode_major(crtc, &crtc->mode, crtc->rotation,
|
|
|
|
x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool drmmode_set_desired_modes(ScrnInfoPtr pScrn, drmmode_ptr drmmode)
|
|
|
|
{
|
|
|
|
xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
|
|
|
|
int c;
|
|
|
|
|
|
|
|
drmmode_copy_fb(pScrn, drmmode);
|
|
|
|
|
|
|
|
for (c = 0; c < config->num_crtc; c++) {
|
|
|
|
xf86CrtcPtr crtc = config->crtc[c];
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
xf86OutputPtr output = NULL;
|
|
|
|
int o;
|
|
|
|
|
|
|
|
/* Skip disabled CRTCs */
|
|
|
|
if (!crtc->enabled) {
|
|
|
|
drmModeSetCrtc(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id,
|
|
|
|
0, 0, 0, NULL, 0, NULL);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->output[config->compat_output]->crtc == crtc)
|
|
|
|
output = config->output[config->compat_output];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (o = 0; o < config->num_output; o++)
|
|
|
|
if (config->output[o]->crtc == crtc)
|
|
|
|
{
|
|
|
|
output = config->output[o];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* paranoia */
|
|
|
|
if (!output)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Mark that we'll need to re-set the mode for sure */
|
|
|
|
memset(&crtc->mode, 0, sizeof(crtc->mode));
|
|
|
|
if (!crtc->desiredMode.CrtcHDisplay)
|
|
|
|
{
|
|
|
|
DisplayModePtr mode = xf86OutputFindClosestMode (output, pScrn->currentMode);
|
|
|
|
|
|
|
|
if (!mode)
|
|
|
|
return FALSE;
|
|
|
|
crtc->desiredMode = *mode;
|
|
|
|
crtc->desiredRotation = RR_Rotate_0;
|
|
|
|
crtc->desiredX = 0;
|
|
|
|
crtc->desiredY = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!crtc->funcs->set_mode_major(crtc, &crtc->desiredMode, crtc->desiredRotation,
|
|
|
|
crtc->desiredX, crtc->desiredY))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void drmmode_load_palette(ScrnInfoPtr pScrn, int numColors,
|
|
|
|
int *indices, LOCO *colors, VisualPtr pVisual)
|
|
|
|
{
|
|
|
|
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
|
|
|
|
uint16_t lut_r[256], lut_g[256], lut_b[256];
|
|
|
|
int index, j, i;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
for (c = 0; c < xf86_config->num_crtc; c++) {
|
|
|
|
xf86CrtcPtr crtc = xf86_config->crtc[c];
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
|
|
|
|
|
|
|
for (i = 0 ; i < 256; i++) {
|
|
|
|
lut_r[i] = drmmode_crtc->lut_r[i] << 6;
|
|
|
|
lut_g[i] = drmmode_crtc->lut_g[i] << 6;
|
|
|
|
lut_b[i] = drmmode_crtc->lut_b[i] << 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(pScrn->depth) {
|
|
|
|
case 15:
|
|
|
|
for (i = 0; i < numColors; i++) {
|
|
|
|
index = indices[i];
|
|
|
|
for (j = 0; j < 8; j++) {
|
|
|
|
lut_r[index * 8 + j] = colors[index].red << 6;
|
|
|
|
lut_g[index * 8 + j] = colors[index].green << 6;
|
|
|
|
lut_b[index * 8 + j] = colors[index].blue << 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
for (i = 0; i < numColors; i++) {
|
|
|
|
index = indices[i];
|
|
|
|
|
|
|
|
if (i <= 31) {
|
|
|
|
for (j = 0; j < 8; j++) {
|
|
|
|
lut_r[index * 8 + j] = colors[index].red << 6;
|
|
|
|
lut_b[index * 8 + j] = colors[index].blue << 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 0; j < 4; j++) {
|
|
|
|
lut_g[index * 4 + j] = colors[index].green << 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
for (i = 0; i < numColors; i++) {
|
|
|
|
index = indices[i];
|
|
|
|
lut_r[index] = colors[index].red << 6;
|
|
|
|
lut_g[index] = colors[index].green << 6;
|
|
|
|
lut_b[index] = colors[index].blue << 6;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make the change through RandR */
|
|
|
|
#ifdef RANDR_12_INTERFACE
|
|
|
|
if (crtc->randr_crtc)
|
|
|
|
RRCrtcGammaSet(crtc->randr_crtc, lut_r, lut_g, lut_b);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
crtc->funcs->gamma_set(crtc, lut_r, lut_g, lut_b, 256);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool drmmode_setup_colormap(ScreenPtr pScreen, ScrnInfoPtr pScrn)
|
|
|
|
{
|
|
|
|
xf86DrvMsgVerb(pScrn->scrnIndex, X_INFO, RADEON_LOGLEVEL_DEBUG,
|
|
|
|
"Initializing kms color map\n");
|
|
|
|
if (!miCreateDefColormap(pScreen))
|
|
|
|
return FALSE;
|
|
|
|
/* all radeons support 10 bit CLUTs */
|
|
|
|
if (!xf86HandleColormaps(pScreen, 256, 10,
|
|
|
|
drmmode_load_palette, NULL,
|
|
|
|
CMAP_PALETTED_TRUECOLOR
|
|
|
|
#if 0 /* This option messes up text mode! (eich@suse.de) */
|
|
|
|
| CMAP_LOAD_EVEN_IF_OFFSCREEN
|
|
|
|
#endif
|
|
|
|
| CMAP_RELOAD_ON_MODE_SWITCH))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBUDEV
|
|
|
|
static void
|
|
|
|
drmmode_handle_uevents(int fd, void *closure)
|
|
|
|
{
|
|
|
|
drmmode_ptr drmmode = closure;
|
|
|
|
ScrnInfoPtr scrn = drmmode->scrn;
|
|
|
|
struct udev_device *dev;
|
|
|
|
dev = udev_monitor_receive_device(drmmode->uevent_monitor);
|
|
|
|
if (!dev)
|
|
|
|
return;
|
|
|
|
|
2012-08-08 10:25:21 -06:00
|
|
|
RRGetInfo(xf86ScrnToScreen(scrn), TRUE);
|
2012-03-04 09:01:12 -07:00
|
|
|
udev_device_unref(dev);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void drmmode_uevent_init(ScrnInfoPtr scrn, drmmode_ptr drmmode)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBUDEV
|
|
|
|
struct udev *u;
|
|
|
|
struct udev_monitor *mon;
|
|
|
|
|
|
|
|
u = udev_new();
|
|
|
|
if (!u)
|
|
|
|
return;
|
|
|
|
mon = udev_monitor_new_from_netlink(u, "udev");
|
|
|
|
if (!mon) {
|
|
|
|
udev_unref(u);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (udev_monitor_filter_add_match_subsystem_devtype(mon,
|
|
|
|
"drm",
|
|
|
|
"drm_minor") < 0 ||
|
|
|
|
udev_monitor_enable_receiving(mon) < 0) {
|
|
|
|
udev_monitor_unref(mon);
|
|
|
|
udev_unref(u);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmmode->uevent_handler =
|
|
|
|
xf86AddGeneralHandler(udev_monitor_get_fd(mon),
|
|
|
|
drmmode_handle_uevents,
|
|
|
|
drmmode);
|
|
|
|
|
|
|
|
drmmode->uevent_monitor = mon;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void drmmode_uevent_fini(ScrnInfoPtr scrn, drmmode_ptr drmmode)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBUDEV
|
|
|
|
if (drmmode->uevent_handler) {
|
|
|
|
struct udev *u = udev_monitor_get_udev(drmmode->uevent_monitor);
|
|
|
|
xf86RemoveGeneralHandler(drmmode->uevent_handler);
|
|
|
|
|
|
|
|
udev_monitor_unref(drmmode->uevent_monitor);
|
|
|
|
udev_unref(u);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
Bool radeon_do_pageflip(ScrnInfoPtr scrn, struct radeon_bo *new_front, void *data, int ref_crtc_hw_id)
|
|
|
|
{
|
|
|
|
RADEONInfoPtr info = RADEONPTR(scrn);
|
|
|
|
xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(scrn);
|
|
|
|
drmmode_crtc_private_ptr drmmode_crtc = config->crtc[0]->driver_private;
|
|
|
|
drmmode_ptr drmmode = drmmode_crtc->drmmode;
|
|
|
|
unsigned int pitch;
|
|
|
|
int i, old_fb_id;
|
|
|
|
uint32_t tiling_flags = 0;
|
|
|
|
int height, emitted = 0;
|
|
|
|
drmmode_flipdata_ptr flipdata;
|
|
|
|
drmmode_flipevtcarrier_ptr flipcarrier;
|
|
|
|
|
|
|
|
if (info->allowColorTiling) {
|
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600)
|
|
|
|
tiling_flags |= RADEON_TILING_MICRO;
|
|
|
|
else
|
|
|
|
tiling_flags |= RADEON_TILING_MACRO;
|
|
|
|
}
|
|
|
|
|
|
|
|
pitch = RADEON_ALIGN(scrn->displayWidth, drmmode_get_pitch_align(scrn, info->CurrentLayout.pixel_bytes, tiling_flags)) *
|
|
|
|
info->CurrentLayout.pixel_bytes;
|
|
|
|
height = RADEON_ALIGN(scrn->virtualY, drmmode_get_height_align(scrn, tiling_flags));
|
2012-06-07 14:55:34 -06:00
|
|
|
if (info->ChipFamily >= CHIP_FAMILY_R600 && info->surf_man) {
|
|
|
|
pitch = info->front_surface.level[0].pitch_bytes;
|
|
|
|
}
|
2012-03-04 09:01:12 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a new handle for the back buffer
|
|
|
|
*/
|
|
|
|
old_fb_id = drmmode->fb_id;
|
|
|
|
if (drmModeAddFB(drmmode->fd, scrn->virtualX, height,
|
|
|
|
scrn->depth, scrn->bitsPerPixel, pitch,
|
|
|
|
new_front->handle, &drmmode->fb_id))
|
|
|
|
goto error_out;
|
|
|
|
|
|
|
|
flipdata = calloc(1, sizeof(drmmode_flipdata_rec));
|
|
|
|
if (!flipdata) {
|
|
|
|
xf86DrvMsg(scrn->scrnIndex, X_WARNING,
|
|
|
|
"flip queue: data alloc failed.\n");
|
|
|
|
goto error_undo;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Queue flips on all enabled CRTCs
|
|
|
|
* Note that if/when we get per-CRTC buffers, we'll have to update this.
|
|
|
|
* Right now it assumes a single shared fb across all CRTCs, with the
|
|
|
|
* kernel fixing up the offset of each CRTC as necessary.
|
|
|
|
*
|
|
|
|
* Also, flips queued on disabled or incorrectly configured displays
|
|
|
|
* may never complete; this is a configuration error.
|
|
|
|
*/
|
|
|
|
|
|
|
|
flipdata->event_data = data;
|
|
|
|
flipdata->drmmode = drmmode;
|
|
|
|
|
|
|
|
for (i = 0; i < config->num_crtc; i++) {
|
|
|
|
if (!config->crtc[i]->enabled)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
flipdata->flip_count++;
|
|
|
|
drmmode_crtc = config->crtc[i]->driver_private;
|
|
|
|
|
|
|
|
flipcarrier = calloc(1, sizeof(drmmode_flipevtcarrier_rec));
|
|
|
|
if (!flipcarrier) {
|
|
|
|
xf86DrvMsg(scrn->scrnIndex, X_WARNING,
|
|
|
|
"flip queue: carrier alloc failed.\n");
|
|
|
|
if (emitted == 0)
|
|
|
|
free(flipdata);
|
|
|
|
goto error_undo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only the reference crtc will finally deliver its page flip
|
|
|
|
* completion event. All other crtc's events will be discarded.
|
|
|
|
*/
|
|
|
|
flipcarrier->dispatch_me = (drmmode_crtc->hw_id == ref_crtc_hw_id);
|
|
|
|
flipcarrier->flipdata = flipdata;
|
|
|
|
|
|
|
|
if (drmModePageFlip(drmmode->fd, drmmode_crtc->mode_crtc->crtc_id,
|
|
|
|
drmmode->fb_id, DRM_MODE_PAGE_FLIP_EVENT, flipcarrier)) {
|
|
|
|
xf86DrvMsg(scrn->scrnIndex, X_WARNING,
|
|
|
|
"flip queue failed: %s\n", strerror(errno));
|
|
|
|
free(flipcarrier);
|
|
|
|
if (emitted == 0)
|
|
|
|
free(flipdata);
|
|
|
|
goto error_undo;
|
|
|
|
}
|
|
|
|
emitted++;
|
|
|
|
}
|
|
|
|
|
|
|
|
flipdata->old_fb_id = old_fb_id;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
error_undo:
|
|
|
|
drmModeRmFB(drmmode->fd, drmmode->fb_id);
|
|
|
|
drmmode->fb_id = old_fb_id;
|
|
|
|
|
|
|
|
error_out:
|
|
|
|
xf86DrvMsg(scrn->scrnIndex, X_WARNING, "Page flip failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-08-08 10:25:21 -06:00
|
|
|
|
2012-03-04 09:01:12 -07:00
|
|
|
#endif
|
|
|
|
#endif
|