2008-12-17 11:09:49 -07:00
|
|
|
/*
|
|
|
|
* DRM based mode setting test program
|
|
|
|
* Copyright 2008 Tungsten Graphics
|
|
|
|
* Jakob Bornecrantz <jakob@tungstengraphics.com>
|
|
|
|
* Copyright 2008 Intel Corporation
|
|
|
|
* Jesse Barnes <jesse.barnes@intel.com>
|
|
|
|
*
|
|
|
|
* 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 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This fairly simple test program dumps output in a similar format to the
|
|
|
|
* "xrandr" tool everyone knows & loves. It's necessarily slightly different
|
|
|
|
* since the kernel separates outputs into encoder and connector structures,
|
|
|
|
* each with their own unique ID. The program also allows test testing of the
|
|
|
|
* memory management and mode setting APIs by allowing the user to specify a
|
|
|
|
* connector and mode to use for mode setting. If all works as expected, a
|
|
|
|
* blue background should be painted on the monitor attached to the specified
|
|
|
|
* connector after the selected mode is set.
|
|
|
|
*
|
|
|
|
* TODO: use cairo to write the mode info on the selected output once
|
|
|
|
* the mode has been programmed, along with possible test patterns.
|
|
|
|
*/
|
2009-02-03 13:03:41 -07:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2009-11-17 13:32:23 -07:00
|
|
|
#include <sys/poll.h>
|
2010-01-29 19:14:44 -07:00
|
|
|
#include <sys/time.h>
|
2008-12-17 11:09:49 -07:00
|
|
|
|
|
|
|
#include "xf86drm.h"
|
|
|
|
#include "xf86drmMode.h"
|
2011-02-17 02:47:47 -07:00
|
|
|
#include "libkms.h"
|
2008-12-17 11:09:49 -07:00
|
|
|
|
2009-02-03 13:03:41 -07:00
|
|
|
#ifdef HAVE_CAIRO
|
|
|
|
#include <math.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#endif
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
drmModeRes *resources;
|
|
|
|
int fd, modes;
|
|
|
|
|
|
|
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
|
|
|
|
|
|
|
struct type_name {
|
|
|
|
int type;
|
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define type_name_fn(res) \
|
|
|
|
char * res##_str(int type) { \
|
|
|
|
int i; \
|
|
|
|
for (i = 0; i < ARRAY_SIZE(res##_names); i++) { \
|
|
|
|
if (res##_names[i].type == type) \
|
|
|
|
return res##_names[i].name; \
|
|
|
|
} \
|
|
|
|
return "(invalid)"; \
|
|
|
|
}
|
|
|
|
|
|
|
|
struct type_name encoder_type_names[] = {
|
|
|
|
{ DRM_MODE_ENCODER_NONE, "none" },
|
|
|
|
{ DRM_MODE_ENCODER_DAC, "DAC" },
|
|
|
|
{ DRM_MODE_ENCODER_TMDS, "TMDS" },
|
|
|
|
{ DRM_MODE_ENCODER_LVDS, "LVDS" },
|
|
|
|
{ DRM_MODE_ENCODER_TVDAC, "TVDAC" },
|
|
|
|
};
|
|
|
|
|
|
|
|
type_name_fn(encoder_type)
|
|
|
|
|
|
|
|
struct type_name connector_status_names[] = {
|
|
|
|
{ DRM_MODE_CONNECTED, "connected" },
|
|
|
|
{ DRM_MODE_DISCONNECTED, "disconnected" },
|
|
|
|
{ DRM_MODE_UNKNOWNCONNECTION, "unknown" },
|
|
|
|
};
|
|
|
|
|
|
|
|
type_name_fn(connector_status)
|
|
|
|
|
|
|
|
struct type_name connector_type_names[] = {
|
|
|
|
{ DRM_MODE_CONNECTOR_Unknown, "unknown" },
|
|
|
|
{ DRM_MODE_CONNECTOR_VGA, "VGA" },
|
|
|
|
{ DRM_MODE_CONNECTOR_DVII, "DVI-I" },
|
|
|
|
{ DRM_MODE_CONNECTOR_DVID, "DVI-D" },
|
|
|
|
{ DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
|
|
|
|
{ DRM_MODE_CONNECTOR_Composite, "composite" },
|
|
|
|
{ DRM_MODE_CONNECTOR_SVIDEO, "s-video" },
|
|
|
|
{ DRM_MODE_CONNECTOR_LVDS, "LVDS" },
|
|
|
|
{ DRM_MODE_CONNECTOR_Component, "component" },
|
|
|
|
{ DRM_MODE_CONNECTOR_9PinDIN, "9-pin DIN" },
|
|
|
|
{ DRM_MODE_CONNECTOR_DisplayPort, "displayport" },
|
|
|
|
{ DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
|
|
|
|
{ DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
|
2010-09-07 14:10:15 -06:00
|
|
|
{ DRM_MODE_CONNECTOR_TV, "TV" },
|
|
|
|
{ DRM_MODE_CONNECTOR_eDP, "embedded displayport" },
|
2008-12-17 11:09:49 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
type_name_fn(connector_type)
|
|
|
|
|
|
|
|
void dump_encoders(void)
|
|
|
|
{
|
|
|
|
drmModeEncoder *encoder;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
printf("Encoders:\n");
|
|
|
|
printf("id\tcrtc\ttype\tpossible crtcs\tpossible clones\t\n");
|
|
|
|
for (i = 0; i < resources->count_encoders; i++) {
|
|
|
|
encoder = drmModeGetEncoder(fd, resources->encoders[i]);
|
|
|
|
|
|
|
|
if (!encoder) {
|
|
|
|
fprintf(stderr, "could not get encoder %i: %s\n",
|
|
|
|
resources->encoders[i], strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
printf("%d\t%d\t%s\t0x%08x\t0x%08x\n",
|
|
|
|
encoder->encoder_id,
|
|
|
|
encoder->crtc_id,
|
|
|
|
encoder_type_str(encoder->encoder_type),
|
|
|
|
encoder->possible_crtcs,
|
|
|
|
encoder->possible_clones);
|
|
|
|
drmModeFreeEncoder(encoder);
|
|
|
|
}
|
2008-12-17 22:02:43 -07:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2009-02-23 13:08:03 -07:00
|
|
|
void dump_mode(drmModeModeInfo *mode)
|
2008-12-17 22:02:43 -07:00
|
|
|
{
|
2010-02-27 08:04:42 -07:00
|
|
|
printf(" %s %d %d %d %d %d %d %d %d %d\n",
|
2008-12-17 22:02:43 -07:00
|
|
|
mode->name,
|
2010-02-27 08:04:42 -07:00
|
|
|
mode->vrefresh,
|
2008-12-17 22:02:43 -07:00
|
|
|
mode->hdisplay,
|
|
|
|
mode->hsync_start,
|
|
|
|
mode->hsync_end,
|
|
|
|
mode->htotal,
|
|
|
|
mode->vdisplay,
|
|
|
|
mode->vsync_start,
|
|
|
|
mode->vsync_end,
|
|
|
|
mode->vtotal);
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
2009-02-23 13:08:03 -07:00
|
|
|
static void
|
|
|
|
dump_props(drmModeConnector *connector)
|
|
|
|
{
|
|
|
|
drmModePropertyPtr props;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < connector->count_props; i++) {
|
|
|
|
props = drmModeGetProperty(fd, connector->props[i]);
|
|
|
|
printf("\t%s, flags %d\n", props->name, props->flags);
|
|
|
|
drmModeFreeProperty(props);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
void dump_connectors(void)
|
|
|
|
{
|
|
|
|
drmModeConnector *connector;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
printf("Connectors:\n");
|
2009-11-17 13:32:23 -07:00
|
|
|
printf("id\tencoder\tstatus\t\ttype\tsize (mm)\tmodes\tencoders\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
for (i = 0; i < resources->count_connectors; i++) {
|
|
|
|
connector = drmModeGetConnector(fd, resources->connectors[i]);
|
|
|
|
|
|
|
|
if (!connector) {
|
|
|
|
fprintf(stderr, "could not get connector %i: %s\n",
|
|
|
|
resources->connectors[i], strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-11-17 13:32:23 -07:00
|
|
|
printf("%d\t%d\t%s\t%s\t%dx%d\t\t%d\t",
|
2008-12-17 11:09:49 -07:00
|
|
|
connector->connector_id,
|
|
|
|
connector->encoder_id,
|
|
|
|
connector_status_str(connector->connection),
|
|
|
|
connector_type_str(connector->connector_type),
|
|
|
|
connector->mmWidth, connector->mmHeight,
|
|
|
|
connector->count_modes);
|
|
|
|
|
2009-11-17 13:32:23 -07:00
|
|
|
for (j = 0; j < connector->count_encoders; j++)
|
|
|
|
printf("%s%d", j > 0 ? ", " : "", connector->encoders[j]);
|
|
|
|
printf("\n");
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
if (!connector->count_modes)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
printf(" modes:\n");
|
|
|
|
printf(" name refresh (Hz) hdisp hss hse htot vdisp "
|
|
|
|
"vss vse vtot)\n");
|
2008-12-17 22:02:43 -07:00
|
|
|
for (j = 0; j < connector->count_modes; j++)
|
|
|
|
dump_mode(&connector->modes[j]);
|
|
|
|
|
2009-02-23 13:08:03 -07:00
|
|
|
printf(" props:\n");
|
|
|
|
dump_props(connector);
|
2010-02-27 08:04:40 -07:00
|
|
|
|
|
|
|
drmModeFreeConnector(connector);
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
2008-12-17 22:02:43 -07:00
|
|
|
printf("\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void dump_crtcs(void)
|
|
|
|
{
|
|
|
|
drmModeCrtc *crtc;
|
|
|
|
int i;
|
|
|
|
|
2008-12-17 22:02:43 -07:00
|
|
|
printf("CRTCs:\n");
|
|
|
|
printf("id\tfb\tpos\tsize\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
for (i = 0; i < resources->count_crtcs; i++) {
|
|
|
|
crtc = drmModeGetCrtc(fd, resources->crtcs[i]);
|
|
|
|
|
|
|
|
if (!crtc) {
|
|
|
|
fprintf(stderr, "could not get crtc %i: %s\n",
|
|
|
|
resources->crtcs[i], strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
2008-12-17 22:02:43 -07:00
|
|
|
printf("%d\t%d\t(%d,%d)\t(%dx%d)\n",
|
|
|
|
crtc->crtc_id,
|
|
|
|
crtc->buffer_id,
|
|
|
|
crtc->x, crtc->y,
|
|
|
|
crtc->width, crtc->height);
|
|
|
|
dump_mode(&crtc->mode);
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
drmModeFreeCrtc(crtc);
|
|
|
|
}
|
2008-12-17 22:02:43 -07:00
|
|
|
printf("\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void dump_framebuffers(void)
|
|
|
|
{
|
|
|
|
drmModeFB *fb;
|
|
|
|
int i;
|
|
|
|
|
2008-12-17 22:02:43 -07:00
|
|
|
printf("Frame buffers:\n");
|
|
|
|
printf("id\tsize\tpitch\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
for (i = 0; i < resources->count_fbs; i++) {
|
|
|
|
fb = drmModeGetFB(fd, resources->fbs[i]);
|
|
|
|
|
|
|
|
if (!fb) {
|
|
|
|
fprintf(stderr, "could not get fb %i: %s\n",
|
|
|
|
resources->fbs[i], strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
2010-01-29 19:14:44 -07:00
|
|
|
printf("%u\t(%ux%u)\t%u\n",
|
2008-12-17 22:02:43 -07:00
|
|
|
fb->fb_id,
|
2010-01-29 19:14:44 -07:00
|
|
|
fb->width, fb->height,
|
|
|
|
fb->pitch);
|
2008-12-17 22:02:43 -07:00
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
drmModeFreeFB(fb);
|
|
|
|
}
|
2008-12-17 22:02:43 -07:00
|
|
|
printf("\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mode setting with the kernel interfaces is a bit of a chore.
|
|
|
|
* First you have to find the connector in question and make sure the
|
|
|
|
* requested mode is available.
|
|
|
|
* Then you need to find the encoder attached to that connector so you
|
|
|
|
* can bind it with a free crtc.
|
|
|
|
*/
|
2009-02-03 12:00:00 -07:00
|
|
|
struct connector {
|
2010-01-29 19:14:44 -07:00
|
|
|
uint32_t id;
|
2009-02-03 12:00:00 -07:00
|
|
|
char mode_str[64];
|
2009-02-23 13:08:03 -07:00
|
|
|
drmModeModeInfo *mode;
|
2009-02-03 12:00:00 -07:00
|
|
|
drmModeEncoder *encoder;
|
2009-02-04 10:17:13 -07:00
|
|
|
int crtc;
|
2009-11-17 13:32:23 -07:00
|
|
|
unsigned int fb_id[2], current_fb_id;
|
|
|
|
struct timeval start;
|
|
|
|
|
|
|
|
int swap_count;
|
2009-02-03 12:00:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
connector_find_mode(struct connector *c)
|
2008-12-17 11:09:49 -07:00
|
|
|
{
|
|
|
|
drmModeConnector *connector;
|
2010-01-29 19:14:44 -07:00
|
|
|
int i, j;
|
2008-12-17 11:09:49 -07:00
|
|
|
|
|
|
|
/* First, find the connector & mode */
|
2009-02-03 12:00:00 -07:00
|
|
|
c->mode = NULL;
|
2008-12-17 11:09:49 -07:00
|
|
|
for (i = 0; i < resources->count_connectors; i++) {
|
|
|
|
connector = drmModeGetConnector(fd, resources->connectors[i]);
|
|
|
|
|
|
|
|
if (!connector) {
|
|
|
|
fprintf(stderr, "could not get connector %i: %s\n",
|
|
|
|
resources->connectors[i], strerror(errno));
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!connector->count_modes) {
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
if (connector->connector_id != c->id) {
|
2008-12-17 11:09:49 -07:00
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 0; j < connector->count_modes; j++) {
|
2009-02-03 12:00:00 -07:00
|
|
|
c->mode = &connector->modes[j];
|
|
|
|
if (!strcmp(c->mode->name, c->mode_str))
|
2008-12-17 11:09:49 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Found it, break out */
|
2009-02-03 12:00:00 -07:00
|
|
|
if (c->mode)
|
2008-12-17 11:09:49 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
}
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
if (!c->mode) {
|
|
|
|
fprintf(stderr, "failed to find mode \"%s\"\n", c->mode_str);
|
2008-12-17 11:09:49 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now get the encoder */
|
|
|
|
for (i = 0; i < resources->count_encoders; i++) {
|
2009-02-03 12:00:00 -07:00
|
|
|
c->encoder = drmModeGetEncoder(fd, resources->encoders[i]);
|
2008-12-17 11:09:49 -07:00
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
if (!c->encoder) {
|
2008-12-17 11:09:49 -07:00
|
|
|
fprintf(stderr, "could not get encoder %i: %s\n",
|
|
|
|
resources->encoders[i], strerror(errno));
|
2009-02-03 12:00:00 -07:00
|
|
|
drmModeFreeEncoder(c->encoder);
|
2008-12-17 11:09:49 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
if (c->encoder->encoder_id == connector->encoder_id)
|
2008-12-17 11:09:49 -07:00
|
|
|
break;
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
drmModeFreeEncoder(c->encoder);
|
|
|
|
}
|
2009-02-04 10:17:13 -07:00
|
|
|
|
|
|
|
if (c->crtc == -1)
|
|
|
|
c->crtc = c->encoder->crtc_id;
|
2009-02-03 12:00:00 -07:00
|
|
|
}
|
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
static struct kms_bo *
|
|
|
|
allocate_buffer(struct kms_driver *kms,
|
2010-09-09 11:52:28 -06:00
|
|
|
int width, int height, int *stride)
|
|
|
|
{
|
2011-02-17 02:47:47 -07:00
|
|
|
struct kms_bo *bo;
|
|
|
|
unsigned bo_attribs[] = {
|
|
|
|
KMS_WIDTH, 0,
|
|
|
|
KMS_HEIGHT, 0,
|
|
|
|
KMS_BO_TYPE, KMS_BO_TYPE_SCANOUT_X8R8G8B8,
|
|
|
|
KMS_TERMINATE_PROP_LIST
|
|
|
|
};
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
bo_attribs[1] = width;
|
|
|
|
bo_attribs[3] = height;
|
|
|
|
|
|
|
|
ret = kms_bo_create(kms, bo_attribs, &bo);
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to alloc buffer: %s\n",
|
|
|
|
strerror(-ret));
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-02-03 13:03:41 -07:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
ret = kms_bo_get_prop(bo, KMS_PITCH, stride);
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to retreive buffer stride: %s\n",
|
|
|
|
strerror(-ret));
|
|
|
|
kms_bo_destroy(&bo);
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-09-09 11:52:28 -06:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
return bo;
|
2010-09-09 11:52:28 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-02-17 02:47:47 -07:00
|
|
|
make_pwetty(void *data, int width, int height, int stride)
|
2009-02-03 12:00:00 -07:00
|
|
|
{
|
2010-09-09 11:52:28 -06:00
|
|
|
#ifdef HAVE_CAIRO
|
2009-02-03 13:03:41 -07:00
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
|
|
|
int x, y;
|
2009-02-03 12:00:00 -07:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
surface = cairo_image_surface_create_for_data(data,
|
2010-09-09 11:52:28 -06:00
|
|
|
CAIRO_FORMAT_ARGB32,
|
|
|
|
width, height,
|
|
|
|
stride);
|
2009-02-03 13:03:41 -07:00
|
|
|
cr = cairo_create(surface);
|
2010-09-09 11:52:28 -06:00
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
|
2009-02-03 13:03:41 -07:00
|
|
|
cairo_set_line_cap(cr, CAIRO_LINE_CAP_SQUARE);
|
|
|
|
for (x = 0; x < width; x += 250)
|
|
|
|
for (y = 0; y < height; y += 250) {
|
2010-09-09 11:52:28 -06:00
|
|
|
char buf[64];
|
|
|
|
|
2009-02-03 13:03:41 -07:00
|
|
|
cairo_move_to(cr, x, y - 20);
|
|
|
|
cairo_line_to(cr, x, y + 20);
|
|
|
|
cairo_move_to(cr, x - 20, y);
|
|
|
|
cairo_line_to(cr, x + 20, y);
|
|
|
|
cairo_new_sub_path(cr);
|
|
|
|
cairo_arc(cr, x, y, 10, 0, M_PI * 2);
|
|
|
|
cairo_set_line_width(cr, 4);
|
|
|
|
cairo_set_source_rgb(cr, 0, 0, 0);
|
|
|
|
cairo_stroke_preserve(cr);
|
|
|
|
cairo_set_source_rgb(cr, 1, 1, 1);
|
|
|
|
cairo_set_line_width(cr, 2);
|
|
|
|
cairo_stroke(cr);
|
2010-09-09 11:52:28 -06:00
|
|
|
|
2009-02-03 13:03:41 -07:00
|
|
|
snprintf(buf, sizeof buf, "%d, %d", x, y);
|
|
|
|
cairo_move_to(cr, x + 20, y + 20);
|
|
|
|
cairo_text_path(cr, buf);
|
|
|
|
cairo_set_source_rgb(cr, 0, 0, 0);
|
|
|
|
cairo_stroke_preserve(cr);
|
|
|
|
cairo_set_source_rgb(cr, 1, 1, 1);
|
|
|
|
cairo_fill(cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
cairo_destroy(cr);
|
2010-09-09 11:52:28 -06:00
|
|
|
#endif
|
2009-02-03 13:03:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2011-02-17 02:47:47 -07:00
|
|
|
create_test_buffer(struct kms_driver *kms,
|
|
|
|
int width, int height, int *stride_out,
|
|
|
|
struct kms_bo **bo_out)
|
2009-02-03 13:03:41 -07:00
|
|
|
{
|
2011-02-17 02:47:47 -07:00
|
|
|
struct kms_bo *bo;
|
2010-09-09 11:52:28 -06:00
|
|
|
int ret, i, j, stride;
|
2011-02-17 02:47:47 -07:00
|
|
|
void *virtual;
|
2009-02-03 13:03:41 -07:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
bo = allocate_buffer(kms, width, height, &stride);
|
|
|
|
if (!bo)
|
2009-02-03 13:03:41 -07:00
|
|
|
return -1;
|
2008-12-17 11:09:49 -07:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
ret = kms_bo_map(bo, &virtual);
|
2008-12-17 11:09:49 -07:00
|
|
|
if (ret) {
|
2011-02-17 02:47:47 -07:00
|
|
|
fprintf(stderr, "failed to map buffer: %s\n",
|
|
|
|
strerror(-ret));
|
|
|
|
kms_bo_destroy(&bo);
|
2009-02-03 13:03:41 -07:00
|
|
|
return -1;
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
2009-02-03 11:26:22 -07:00
|
|
|
/* paint the buffer with colored tiles */
|
2010-09-09 11:52:28 -06:00
|
|
|
for (j = 0; j < height; j++) {
|
2011-02-17 02:47:47 -07:00
|
|
|
uint32_t *fb_ptr = (uint32_t*)((char*)virtual + j * stride);
|
2010-09-09 11:52:28 -06:00
|
|
|
for (i = 0; i < width; i++) {
|
|
|
|
div_t d = div(i, width);
|
|
|
|
fb_ptr[i] =
|
|
|
|
0x00130502 * (d.quot >> 6) +
|
|
|
|
0x000a1120 * (d.rem >> 6);
|
|
|
|
}
|
2009-02-03 11:26:22 -07:00
|
|
|
}
|
2010-09-09 11:52:28 -06:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
make_pwetty(virtual, width, height, stride);
|
2010-09-09 11:52:28 -06:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
kms_bo_unmap(bo);
|
2009-02-03 13:03:41 -07:00
|
|
|
|
|
|
|
*bo_out = bo;
|
|
|
|
*stride_out = stride;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-17 13:32:23 -07:00
|
|
|
static int
|
2011-02-17 02:47:47 -07:00
|
|
|
create_grey_buffer(struct kms_driver *kms,
|
|
|
|
int width, int height, int *stride_out,
|
|
|
|
struct kms_bo **bo_out)
|
2009-11-17 13:32:23 -07:00
|
|
|
{
|
2011-02-17 02:47:47 -07:00
|
|
|
struct kms_bo *bo;
|
2010-01-29 19:14:44 -07:00
|
|
|
int size, ret, stride;
|
2011-02-17 02:47:47 -07:00
|
|
|
void *virtual;
|
2009-11-17 13:32:23 -07:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
bo = allocate_buffer(kms, width, height, &stride);
|
|
|
|
if (!bo)
|
2009-11-17 13:32:23 -07:00
|
|
|
return -1;
|
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
ret = kms_bo_map(bo, &virtual);
|
2009-11-17 13:32:23 -07:00
|
|
|
if (ret) {
|
2011-02-17 02:47:47 -07:00
|
|
|
fprintf(stderr, "failed to map buffer: %s\n",
|
|
|
|
strerror(-ret));
|
|
|
|
kms_bo_destroy(&bo);
|
2009-11-17 13:32:23 -07:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
size = stride * height;
|
|
|
|
memset(virtual, 0x77, size);
|
|
|
|
kms_bo_unmap(bo);
|
2009-11-17 13:32:23 -07:00
|
|
|
|
|
|
|
*bo_out = bo;
|
|
|
|
*stride_out = stride;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
page_flip_handler(int fd, unsigned int frame,
|
|
|
|
unsigned int sec, unsigned int usec, void *data)
|
|
|
|
{
|
|
|
|
struct connector *c;
|
|
|
|
unsigned int new_fb_id;
|
|
|
|
struct timeval end;
|
|
|
|
double t;
|
|
|
|
|
|
|
|
c = data;
|
|
|
|
if (c->current_fb_id == c->fb_id[0])
|
|
|
|
new_fb_id = c->fb_id[1];
|
|
|
|
else
|
|
|
|
new_fb_id = c->fb_id[0];
|
|
|
|
|
|
|
|
drmModePageFlip(fd, c->crtc, new_fb_id,
|
|
|
|
DRM_MODE_PAGE_FLIP_EVENT, c);
|
|
|
|
c->current_fb_id = new_fb_id;
|
|
|
|
c->swap_count++;
|
|
|
|
if (c->swap_count == 60) {
|
|
|
|
gettimeofday(&end, NULL);
|
|
|
|
t = end.tv_sec + end.tv_usec * 1e-6 -
|
|
|
|
(c->start.tv_sec + c->start.tv_usec * 1e-6);
|
|
|
|
fprintf(stderr, "freq: %.02fHz\n", c->swap_count / t);
|
|
|
|
c->swap_count = 0;
|
|
|
|
c->start = end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-03 13:03:41 -07:00
|
|
|
static void
|
2009-11-17 13:32:23 -07:00
|
|
|
set_mode(struct connector *c, int count, int page_flip)
|
2009-02-03 13:03:41 -07:00
|
|
|
{
|
2011-02-17 02:47:47 -07:00
|
|
|
struct kms_driver *kms;
|
|
|
|
struct kms_bo *bo, *other_bo;
|
2009-11-17 13:32:23 -07:00
|
|
|
unsigned int fb_id, other_fb_id;
|
2010-01-29 19:14:44 -07:00
|
|
|
int i, ret, width, height, x, stride;
|
2011-02-17 02:47:47 -07:00
|
|
|
unsigned handle;
|
2009-11-17 13:32:23 -07:00
|
|
|
drmEventContext evctx;
|
2009-02-03 13:03:41 -07:00
|
|
|
|
|
|
|
width = 0;
|
|
|
|
height = 0;
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
connector_find_mode(&c[i]);
|
|
|
|
if (c[i].mode == NULL)
|
|
|
|
continue;
|
|
|
|
width += c[i].mode->hdisplay;
|
|
|
|
if (height < c[i].mode->vdisplay)
|
|
|
|
height = c[i].mode->vdisplay;
|
|
|
|
}
|
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
ret = kms_create(fd, &kms);
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to create kms driver: %s\n",
|
|
|
|
strerror(-ret));
|
2009-02-03 13:03:41 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
if (create_test_buffer(kms, width, height, &stride, &bo))
|
2009-02-03 13:03:41 -07:00
|
|
|
return;
|
2008-12-17 11:09:49 -07:00
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handle);
|
|
|
|
ret = drmModeAddFB(fd, width, height, 32, 32, stride, handle, &fb_id);
|
2008-12-17 11:09:49 -07:00
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to add fb: %s\n", strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
x = 0;
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
if (c[i].mode == NULL)
|
|
|
|
continue;
|
2009-02-04 10:17:13 -07:00
|
|
|
|
|
|
|
printf("setting mode %s on connector %d, crtc %d\n",
|
|
|
|
c[i].mode_str, c[i].id, c[i].crtc);
|
|
|
|
|
|
|
|
ret = drmModeSetCrtc(fd, c[i].crtc, fb_id, x, 0,
|
2009-02-03 12:00:00 -07:00
|
|
|
&c[i].id, 1, c[i].mode);
|
|
|
|
x += c[i].mode->hdisplay;
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to set mode: %s\n", strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
2009-11-17 13:32:23 -07:00
|
|
|
|
|
|
|
if (!page_flip)
|
|
|
|
return;
|
2011-02-17 02:47:47 -07:00
|
|
|
|
|
|
|
if (create_grey_buffer(kms, width, height, &stride, &other_bo))
|
2009-11-17 13:32:23 -07:00
|
|
|
return;
|
|
|
|
|
2011-02-17 02:47:47 -07:00
|
|
|
kms_bo_get_prop(other_bo, KMS_HANDLE, &handle);
|
|
|
|
ret = drmModeAddFB(fd, width, height, 32, 32, stride, handle,
|
2009-11-17 13:32:23 -07:00
|
|
|
&other_fb_id);
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to add fb: %s\n", strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
if (c[i].mode == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
drmModePageFlip(fd, c[i].crtc, other_fb_id,
|
|
|
|
DRM_MODE_PAGE_FLIP_EVENT, &c[i]);
|
|
|
|
gettimeofday(&c[i].start, NULL);
|
|
|
|
c[i].swap_count = 0;
|
2010-01-29 19:14:44 -07:00
|
|
|
c[i].fb_id[0] = fb_id;
|
|
|
|
c[i].fb_id[1] = other_fb_id;
|
|
|
|
c[i].current_fb_id = fb_id;
|
2009-11-17 13:32:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
memset(&evctx, 0, sizeof evctx);
|
|
|
|
evctx.version = DRM_EVENT_CONTEXT_VERSION;
|
|
|
|
evctx.vblank_handler = NULL;
|
2009-12-04 10:09:19 -07:00
|
|
|
evctx.page_flip_handler = page_flip_handler;
|
2009-11-17 13:32:23 -07:00
|
|
|
|
|
|
|
while (1) {
|
2010-03-26 14:13:57 -06:00
|
|
|
#if 0
|
2009-11-17 13:32:23 -07:00
|
|
|
struct pollfd pfd[2];
|
|
|
|
|
|
|
|
pfd[0].fd = 0;
|
|
|
|
pfd[0].events = POLLIN;
|
|
|
|
pfd[1].fd = fd;
|
|
|
|
pfd[1].events = POLLIN;
|
|
|
|
|
|
|
|
if (poll(pfd, 2, -1) < 0) {
|
|
|
|
fprintf(stderr, "poll error\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pfd[0].revents)
|
|
|
|
break;
|
2010-03-26 14:13:57 -06:00
|
|
|
#else
|
|
|
|
struct timeval timeout = { .tv_sec = 3, .tv_usec = 0 };
|
|
|
|
fd_set fds;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(0, &fds);
|
|
|
|
FD_SET(fd, &fds);
|
|
|
|
ret = select(fd + 1, &fds, NULL, NULL, &timeout);
|
|
|
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
fprintf(stderr, "select timed out or error (ret %d)\n",
|
|
|
|
ret);
|
|
|
|
continue;
|
|
|
|
} else if (FD_ISSET(0, &fds)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2009-11-17 13:32:23 -07:00
|
|
|
|
|
|
|
drmHandleEvent(fd, &evctx);
|
|
|
|
}
|
2011-02-17 02:47:47 -07:00
|
|
|
|
|
|
|
kms_bo_destroy(&bo);
|
|
|
|
kms_bo_destroy(&other_bo);
|
|
|
|
kms_destroy(&kms);
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
extern char *optarg;
|
|
|
|
extern int optind, opterr, optopt;
|
2009-11-17 13:32:23 -07:00
|
|
|
static char optstr[] = "ecpmfs:v";
|
2008-12-17 11:09:49 -07:00
|
|
|
|
|
|
|
void usage(char *name)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "usage: %s [-ecpmf]\n", name);
|
|
|
|
fprintf(stderr, "\t-e\tlist encoders\n");
|
|
|
|
fprintf(stderr, "\t-c\tlist connectors\n");
|
|
|
|
fprintf(stderr, "\t-p\tlist CRTCs (pipes)\n");
|
|
|
|
fprintf(stderr, "\t-m\tlist modes\n");
|
|
|
|
fprintf(stderr, "\t-f\tlist framebuffers\n");
|
2009-11-17 13:32:23 -07:00
|
|
|
fprintf(stderr, "\t-v\ttest vsynced page flipping\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
fprintf(stderr, "\t-s <connector_id>:<mode>\tset a mode\n");
|
2009-02-04 10:17:13 -07:00
|
|
|
fprintf(stderr, "\t-s <connector_id>@<crtc_id>:<mode>\tset a mode\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
fprintf(stderr, "\n\tDefault is to dump all info.\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define dump_resource(res) if (res) dump_##res()
|
|
|
|
|
2009-12-09 08:36:53 -07:00
|
|
|
static int page_flipping_supported(int fd)
|
|
|
|
{
|
2011-02-17 02:47:47 -07:00
|
|
|
/*FIXME: generic ioctl needed? */
|
|
|
|
return 1;
|
|
|
|
#if 0
|
2009-12-09 08:36:53 -07:00
|
|
|
int ret, value;
|
|
|
|
struct drm_i915_getparam gp;
|
|
|
|
|
|
|
|
gp.param = I915_PARAM_HAS_PAGEFLIPPING;
|
|
|
|
gp.value = &value;
|
|
|
|
|
|
|
|
ret = drmCommandWriteRead(fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "drm_i915_getparam: %m\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-29 19:14:44 -07:00
|
|
|
return *gp.value;
|
2011-02-17 02:47:47 -07:00
|
|
|
#endif
|
2009-12-09 08:36:53 -07:00
|
|
|
}
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
int encoders = 0, connectors = 0, crtcs = 0, framebuffers = 0;
|
2009-11-17 13:32:23 -07:00
|
|
|
int test_vsync = 0;
|
2010-02-27 08:04:41 -07:00
|
|
|
char *modules[] = { "i915", "radeon", "nouveau" };
|
2010-01-29 19:14:44 -07:00
|
|
|
char *modeset = NULL;
|
|
|
|
int i, count = 0;
|
2009-02-03 12:00:00 -07:00
|
|
|
struct connector con_args[2];
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
opterr = 0;
|
|
|
|
while ((c = getopt(argc, argv, optstr)) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'e':
|
|
|
|
encoders = 1;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
connectors = 1;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
crtcs = 1;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
modes = 1;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
framebuffers = 1;
|
|
|
|
break;
|
2009-11-17 13:32:23 -07:00
|
|
|
case 'v':
|
|
|
|
test_vsync = 1;
|
|
|
|
break;
|
2008-12-17 11:09:49 -07:00
|
|
|
case 's':
|
|
|
|
modeset = strdup(optarg);
|
2009-02-04 10:17:13 -07:00
|
|
|
con_args[count].crtc = -1;
|
2009-02-03 12:00:00 -07:00
|
|
|
if (sscanf(optarg, "%d:%64s",
|
|
|
|
&con_args[count].id,
|
2010-01-29 19:14:44 -07:00
|
|
|
con_args[count].mode_str) != 2 &&
|
2009-02-04 10:17:13 -07:00
|
|
|
sscanf(optarg, "%d@%d:%64s",
|
|
|
|
&con_args[count].id,
|
|
|
|
&con_args[count].crtc,
|
2010-01-29 19:14:44 -07:00
|
|
|
con_args[count].mode_str) != 3)
|
2009-02-03 12:00:00 -07:00
|
|
|
usage(argv[0]);
|
|
|
|
count++;
|
2008-12-17 11:09:49 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(argv[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == 1)
|
|
|
|
encoders = connectors = crtcs = modes = framebuffers = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(modules); i++) {
|
|
|
|
printf("trying to load module %s...", modules[i]);
|
|
|
|
fd = drmOpen(modules[i], NULL);
|
|
|
|
if (fd < 0) {
|
|
|
|
printf("failed.\n");
|
|
|
|
} else {
|
|
|
|
printf("success.\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-09 08:36:53 -07:00
|
|
|
if (test_vsync && !page_flipping_supported(fd)) {
|
|
|
|
fprintf(stderr, "page flipping not supported by drm.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
if (i == ARRAY_SIZE(modules)) {
|
|
|
|
fprintf(stderr, "failed to load any modules, aborting.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
resources = drmModeGetResources(fd);
|
|
|
|
if (!resources) {
|
|
|
|
fprintf(stderr, "drmModeGetResources failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
drmClose(fd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dump_resource(encoders);
|
|
|
|
dump_resource(connectors);
|
|
|
|
dump_resource(crtcs);
|
|
|
|
dump_resource(framebuffers);
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
if (count > 0) {
|
2009-11-17 13:32:23 -07:00
|
|
|
set_mode(con_args, count, test_vsync);
|
2009-02-03 12:02:50 -07:00
|
|
|
getchar();
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeResources(resources);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|