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>
|
2012-04-21 14:51:53 -06:00
|
|
|
#include <inttypes.h>
|
2008-12-17 11:09:49 -07:00
|
|
|
#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-12-14 20:06:43 -07:00
|
|
|
#include "drm_fourcc.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) { \
|
2012-04-21 14:51:50 -06:00
|
|
|
unsigned int i; \
|
2008-12-17 11:09:49 -07:00
|
|
|
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)
|
|
|
|
|
2012-06-28 08:48:31 -06:00
|
|
|
#define bit_name_fn(res) \
|
|
|
|
char * res##_str(int type) { \
|
|
|
|
int i; \
|
|
|
|
const char *sep = ""; \
|
|
|
|
for (i = 0; i < ARRAY_SIZE(res##_names); i++) { \
|
|
|
|
if (type & (1 << i)) { \
|
|
|
|
printf("%s%s", sep, res##_names[i]); \
|
|
|
|
sep = ", "; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *mode_type_names[] = {
|
|
|
|
"builtin",
|
|
|
|
"clock_c",
|
|
|
|
"crtc_c",
|
|
|
|
"preferred",
|
|
|
|
"default",
|
|
|
|
"userdef",
|
|
|
|
"driver",
|
|
|
|
};
|
|
|
|
|
|
|
|
bit_name_fn(mode_type)
|
|
|
|
|
|
|
|
static const char *mode_flag_names[] = {
|
|
|
|
"phsync",
|
|
|
|
"nhsync",
|
|
|
|
"pvsync",
|
|
|
|
"nvsync",
|
|
|
|
"interlace",
|
|
|
|
"dblscan",
|
|
|
|
"csync",
|
|
|
|
"pcsync",
|
|
|
|
"ncsync",
|
|
|
|
"hskew",
|
|
|
|
"bcast",
|
|
|
|
"pixmux",
|
|
|
|
"dblclk",
|
|
|
|
"clkdiv2"
|
|
|
|
};
|
|
|
|
|
|
|
|
bit_name_fn(mode_flag)
|
|
|
|
|
2008-12-17 11:09:49 -07:00
|
|
|
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
|
|
|
{
|
2012-06-28 08:48:31 -06:00
|
|
|
printf(" %s %d %d %d %d %d %d %d %d %d",
|
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);
|
2012-06-28 08:48:31 -06:00
|
|
|
|
|
|
|
printf(" flags: ");
|
|
|
|
mode_flag_str(mode->flags);
|
|
|
|
printf("; type: ");
|
|
|
|
mode_type_str(mode->type);
|
|
|
|
printf("\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
2009-02-23 13:08:03 -07:00
|
|
|
static void
|
2012-04-21 14:51:53 -06:00
|
|
|
dump_blob(uint32_t blob_id)
|
|
|
|
{
|
|
|
|
uint32_t i;
|
|
|
|
unsigned char *blob_data;
|
|
|
|
drmModePropertyBlobPtr blob;
|
|
|
|
|
|
|
|
blob = drmModeGetPropertyBlob(fd, blob_id);
|
|
|
|
if (!blob)
|
|
|
|
return;
|
|
|
|
|
|
|
|
blob_data = blob->data;
|
|
|
|
|
|
|
|
for (i = 0; i < blob->length; i++) {
|
|
|
|
if (i % 16 == 0)
|
|
|
|
printf("\n\t\t\t");
|
|
|
|
printf("%.2hhx", blob_data[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
drmModeFreePropertyBlob(blob);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_prop(uint32_t prop_id, uint64_t value)
|
2009-02-23 13:08:03 -07:00
|
|
|
{
|
|
|
|
int i;
|
2012-04-21 14:51:53 -06:00
|
|
|
drmModePropertyPtr prop;
|
|
|
|
|
|
|
|
prop = drmModeGetProperty(fd, prop_id);
|
|
|
|
|
|
|
|
printf("\t%d", prop_id);
|
|
|
|
if (!prop) {
|
|
|
|
printf("\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf(" %s:\n", prop->name);
|
|
|
|
|
|
|
|
printf("\t\tflags:");
|
|
|
|
if (prop->flags & DRM_MODE_PROP_PENDING)
|
|
|
|
printf(" pending");
|
|
|
|
if (prop->flags & DRM_MODE_PROP_RANGE)
|
|
|
|
printf(" range");
|
|
|
|
if (prop->flags & DRM_MODE_PROP_IMMUTABLE)
|
|
|
|
printf(" immutable");
|
|
|
|
if (prop->flags & DRM_MODE_PROP_ENUM)
|
|
|
|
printf(" enum");
|
2012-06-05 11:28:38 -06:00
|
|
|
if (prop->flags & DRM_MODE_PROP_BITMASK)
|
|
|
|
printf(" bitmask");
|
2012-04-21 14:51:53 -06:00
|
|
|
if (prop->flags & DRM_MODE_PROP_BLOB)
|
|
|
|
printf(" blob");
|
|
|
|
printf("\n");
|
2009-02-23 13:08:03 -07:00
|
|
|
|
2012-04-21 14:51:53 -06:00
|
|
|
if (prop->flags & DRM_MODE_PROP_RANGE) {
|
|
|
|
printf("\t\tvalues:");
|
|
|
|
for (i = 0; i < prop->count_values; i++)
|
|
|
|
printf(" %"PRIu64, prop->values[i]);
|
|
|
|
printf("\n");
|
2009-02-23 13:08:03 -07:00
|
|
|
}
|
2012-04-21 14:51:53 -06:00
|
|
|
|
|
|
|
if (prop->flags & DRM_MODE_PROP_ENUM) {
|
|
|
|
printf("\t\tenums:");
|
|
|
|
for (i = 0; i < prop->count_enums; i++)
|
|
|
|
printf(" %s=%llu", prop->enums[i].name,
|
|
|
|
prop->enums[i].value);
|
|
|
|
printf("\n");
|
2012-06-05 11:28:38 -06:00
|
|
|
} else if (prop->flags & DRM_MODE_PROP_BITMASK) {
|
|
|
|
printf("\t\tvalues:");
|
|
|
|
for (i = 0; i < prop->count_enums; i++)
|
|
|
|
printf(" %s=0x%llx", prop->enums[i].name,
|
|
|
|
(1LL << prop->enums[i].value));
|
|
|
|
printf("\n");
|
2012-04-21 14:51:53 -06:00
|
|
|
} else {
|
|
|
|
assert(prop->count_enums == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prop->flags & DRM_MODE_PROP_BLOB) {
|
|
|
|
printf("\t\tblobs:\n");
|
|
|
|
for (i = 0; i < prop->count_blobs; i++)
|
|
|
|
dump_blob(prop->blob_ids[i]);
|
|
|
|
printf("\n");
|
|
|
|
} else {
|
|
|
|
assert(prop->count_blobs == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\t\tvalue:");
|
|
|
|
if (prop->flags & DRM_MODE_PROP_BLOB)
|
|
|
|
dump_blob(value);
|
|
|
|
else
|
|
|
|
printf(" %"PRIu64"\n", value);
|
|
|
|
|
|
|
|
drmModeFreeProperty(prop);
|
2009-02-23 13:08:03 -07:00
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
|
2012-04-21 14:51:51 -06:00
|
|
|
if (connector->count_modes) {
|
|
|
|
printf(" modes:\n");
|
2012-04-21 14:51:53 -06:00
|
|
|
printf("\tname refresh (Hz) hdisp hss hse htot vdisp "
|
2012-04-21 14:51:51 -06:00
|
|
|
"vss vse vtot)\n");
|
|
|
|
for (j = 0; j < connector->count_modes; j++)
|
|
|
|
dump_mode(&connector->modes[j]);
|
|
|
|
|
|
|
|
printf(" props:\n");
|
2012-04-21 14:51:53 -06:00
|
|
|
for (j = 0; j < connector->count_props; j++)
|
|
|
|
dump_prop(connector->props[j],
|
|
|
|
connector->prop_values[j]);
|
2012-04-21 14:51:51 -06:00
|
|
|
}
|
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;
|
2012-05-15 15:38:29 -06:00
|
|
|
drmModeObjectPropertiesPtr props;
|
2008-12-17 11:09:49 -07:00
|
|
|
int i;
|
2012-05-15 15:38:29 -06:00
|
|
|
uint32_t j;
|
2008-12-17 11:09:49 -07:00
|
|
|
|
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);
|
|
|
|
|
2012-05-15 15:38:29 -06:00
|
|
|
printf(" props:\n");
|
|
|
|
props = drmModeObjectGetProperties(fd, crtc->crtc_id,
|
|
|
|
DRM_MODE_OBJECT_CRTC);
|
|
|
|
if (props) {
|
|
|
|
for (j = 0; j < props->count_props; j++)
|
|
|
|
dump_prop(props->props[j],
|
|
|
|
props->prop_values[j]);
|
|
|
|
drmModeFreeObjectProperties(props);
|
|
|
|
} else {
|
|
|
|
printf("\tcould not get crtc properties: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-12-14 20:06:43 -07:00
|
|
|
static void dump_planes(void)
|
|
|
|
{
|
2012-06-05 11:28:47 -06:00
|
|
|
drmModeObjectPropertiesPtr props;
|
2011-12-14 20:06:43 -07:00
|
|
|
drmModePlaneRes *plane_resources;
|
|
|
|
drmModePlane *ovr;
|
2012-04-21 14:51:50 -06:00
|
|
|
unsigned int i, j;
|
2011-12-14 20:06:43 -07:00
|
|
|
|
|
|
|
plane_resources = drmModeGetPlaneResources(fd);
|
|
|
|
if (!plane_resources) {
|
|
|
|
fprintf(stderr, "drmModeGetPlaneResources failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Planes:\n");
|
|
|
|
printf("id\tcrtc\tfb\tCRTC x,y\tx,y\tgamma size\n");
|
|
|
|
for (i = 0; i < plane_resources->count_planes; i++) {
|
|
|
|
ovr = drmModeGetPlane(fd, plane_resources->planes[i]);
|
|
|
|
if (!ovr) {
|
|
|
|
fprintf(stderr, "drmModeGetPlane failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%d\t%d\t%d\t%d,%d\t\t%d,%d\t%d\n",
|
|
|
|
ovr->plane_id, ovr->crtc_id, ovr->fb_id,
|
|
|
|
ovr->crtc_x, ovr->crtc_y, ovr->x, ovr->y,
|
|
|
|
ovr->gamma_size);
|
|
|
|
|
|
|
|
if (!ovr->count_formats)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
printf(" formats:");
|
|
|
|
for (j = 0; j < ovr->count_formats; j++)
|
|
|
|
printf(" %4.4s", (char *)&ovr->formats[j]);
|
|
|
|
printf("\n");
|
|
|
|
|
2012-06-05 11:28:47 -06:00
|
|
|
printf(" props:\n");
|
|
|
|
props = drmModeObjectGetProperties(fd, ovr->plane_id,
|
|
|
|
DRM_MODE_OBJECT_PLANE);
|
|
|
|
if (props) {
|
|
|
|
for (j = 0; j < props->count_props; j++)
|
|
|
|
dump_prop(props->props[j],
|
|
|
|
props->prop_values[j]);
|
|
|
|
drmModeFreeObjectProperties(props);
|
|
|
|
} else {
|
|
|
|
printf("\tcould not get plane properties: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
2011-12-14 20:06:43 -07:00
|
|
|
drmModeFreePlane(ovr);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
2012-04-21 14:51:52 -06:00
|
|
|
drmModeFreePlaneResources(plane_resources);
|
2011-12-14 20:06:43 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Connectors and planes
|
|
|
|
*/
|
|
|
|
|
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;
|
2011-12-14 20:06:43 -07:00
|
|
|
int pipe;
|
2009-11-17 13:32:23 -07:00
|
|
|
unsigned int fb_id[2], current_fb_id;
|
|
|
|
struct timeval start;
|
|
|
|
|
|
|
|
int swap_count;
|
2011-12-14 20:06:43 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct plane {
|
|
|
|
uint32_t con_id; /* the id of connector to bind to */
|
|
|
|
uint32_t w, h;
|
|
|
|
unsigned int fb_id;
|
2011-12-14 21:24:14 -07:00
|
|
|
char format_str[5]; /* need to leave room for terminating \0 */
|
2012-07-20 06:50:47 -06:00
|
|
|
unsigned int fourcc;
|
2011-12-14 20:06:43 -07:00
|
|
|
};
|
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;
|
2011-12-14 20:06:43 -07:00
|
|
|
|
|
|
|
/* and figure out which crtc index it is: */
|
|
|
|
for (i = 0; i < resources->count_crtcs; i++) {
|
|
|
|
if (c->crtc == resources->crtcs[i]) {
|
|
|
|
c->pipe = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Formats
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct color_component {
|
|
|
|
unsigned int length;
|
|
|
|
unsigned int offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rgb_info {
|
|
|
|
struct color_component red;
|
|
|
|
struct color_component green;
|
|
|
|
struct color_component blue;
|
|
|
|
struct color_component alpha;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum yuv_order {
|
|
|
|
YUV_YCbCr = 1,
|
|
|
|
YUV_YCrCb = 2,
|
|
|
|
YUV_YC = 4,
|
|
|
|
YUV_CY = 8,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct yuv_info {
|
|
|
|
enum yuv_order order;
|
|
|
|
unsigned int xsub;
|
|
|
|
unsigned int ysub;
|
|
|
|
unsigned int chroma_stride;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct format_info {
|
|
|
|
unsigned int format;
|
|
|
|
const char *name;
|
|
|
|
const struct rgb_info rgb;
|
|
|
|
const struct yuv_info yuv;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MAKE_RGB_INFO(rl, ro, bl, bo, gl, go, al, ao) \
|
|
|
|
.rgb = { { (rl), (ro) }, { (bl), (bo) }, { (gl), (go) }, { (al), (ao) } }
|
|
|
|
|
|
|
|
#define MAKE_YUV_INFO(order, xsub, ysub, chroma_stride) \
|
|
|
|
.yuv = { (order), (xsub), (ysub), (chroma_stride) }
|
|
|
|
|
|
|
|
static const struct format_info format_info[] = {
|
2012-07-20 06:50:44 -06:00
|
|
|
/* YUV packed */
|
|
|
|
{ DRM_FORMAT_UYVY, "UYVY", MAKE_YUV_INFO(YUV_YCbCr | YUV_CY, 2, 2, 2) },
|
|
|
|
{ DRM_FORMAT_VYUY, "VYUY", MAKE_YUV_INFO(YUV_YCrCb | YUV_CY, 2, 2, 2) },
|
2012-07-20 06:50:42 -06:00
|
|
|
{ DRM_FORMAT_YUYV, "YUYV", MAKE_YUV_INFO(YUV_YCbCr | YUV_YC, 2, 2, 2) },
|
2012-07-20 06:50:44 -06:00
|
|
|
{ DRM_FORMAT_YVYU, "YVYU", MAKE_YUV_INFO(YUV_YCrCb | YUV_YC, 2, 2, 2) },
|
|
|
|
/* YUV semi-planar */
|
2012-07-20 06:50:42 -06:00
|
|
|
{ DRM_FORMAT_NV12, "NV12", MAKE_YUV_INFO(YUV_YCbCr, 2, 2, 2) },
|
|
|
|
{ DRM_FORMAT_NV21, "NV21", MAKE_YUV_INFO(YUV_YCrCb, 2, 2, 2) },
|
2012-07-20 06:50:45 -06:00
|
|
|
{ DRM_FORMAT_NV16, "NV16", MAKE_YUV_INFO(YUV_YCbCr, 2, 1, 2) },
|
|
|
|
{ DRM_FORMAT_NV61, "NV61", MAKE_YUV_INFO(YUV_YCrCb, 2, 1, 2) },
|
2012-07-20 06:50:44 -06:00
|
|
|
/* YUV planar */
|
2012-07-20 06:50:42 -06:00
|
|
|
{ DRM_FORMAT_YVU420, "YV12", MAKE_YUV_INFO(YUV_YCrCb, 2, 2, 1) },
|
2012-07-20 06:50:46 -06:00
|
|
|
/* RGB16 */
|
|
|
|
{ DRM_FORMAT_ARGB1555, "AR15", MAKE_RGB_INFO(5, 10, 5, 5, 5, 0, 1, 15) },
|
2012-07-20 06:50:42 -06:00
|
|
|
{ DRM_FORMAT_XRGB1555, "XR15", MAKE_RGB_INFO(5, 10, 5, 5, 5, 0, 0, 0) },
|
2012-07-20 06:50:46 -06:00
|
|
|
{ DRM_FORMAT_RGB565, "RG16", MAKE_RGB_INFO(5, 11, 6, 5, 5, 0, 0, 0) },
|
|
|
|
/* RGB24 */
|
|
|
|
{ DRM_FORMAT_BGR888, "BG24", MAKE_RGB_INFO(8, 0, 8, 8, 8, 16, 0, 0) },
|
|
|
|
{ DRM_FORMAT_RGB888, "RG24", MAKE_RGB_INFO(8, 16, 8, 8, 8, 0, 0, 0) },
|
|
|
|
/* RGB32 */
|
|
|
|
{ DRM_FORMAT_ARGB8888, "AR24", MAKE_RGB_INFO(8, 16, 8, 8, 8, 0, 8, 24) },
|
|
|
|
{ DRM_FORMAT_BGRA8888, "BA24", MAKE_RGB_INFO(8, 8, 8, 16, 8, 24, 8, 0) },
|
2012-07-20 06:50:42 -06:00
|
|
|
{ DRM_FORMAT_XRGB8888, "XR24", MAKE_RGB_INFO(8, 16, 8, 8, 8, 0, 0, 0) },
|
2012-07-20 06:50:46 -06:00
|
|
|
{ DRM_FORMAT_BGRX8888, "BX24", MAKE_RGB_INFO(8, 8, 8, 16, 8, 24, 0, 0) },
|
2012-07-20 06:50:42 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int format_fourcc(const char *name)
|
2010-09-09 11:52:28 -06:00
|
|
|
{
|
2012-07-20 06:50:42 -06:00
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(format_info); i++) {
|
|
|
|
if (!strcmp(format_info[i].name, name))
|
|
|
|
return format_info[i].format;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Test patterns
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum fill_pattern {
|
|
|
|
PATTERN_TILES = 0,
|
|
|
|
PATTERN_PLAIN = 1,
|
|
|
|
PATTERN_SMPTE = 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct color_rgb24 {
|
|
|
|
unsigned int value:24;
|
|
|
|
} __attribute__((__packed__));
|
|
|
|
|
|
|
|
struct color_yuv {
|
|
|
|
unsigned char y;
|
|
|
|
unsigned char u;
|
|
|
|
unsigned char v;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MAKE_YUV_601_Y(r, g, b) \
|
|
|
|
((( 66 * (r) + 129 * (g) + 25 * (b) + 128) >> 8) + 16)
|
|
|
|
#define MAKE_YUV_601_U(r, g, b) \
|
|
|
|
(((-38 * (r) - 74 * (g) + 112 * (b) + 128) >> 8) + 128)
|
|
|
|
#define MAKE_YUV_601_V(r, g, b) \
|
|
|
|
(((112 * (r) - 94 * (g) - 18 * (b) + 128) >> 8) + 128)
|
|
|
|
|
|
|
|
#define MAKE_YUV_601(r, g, b) \
|
|
|
|
{ .y = MAKE_YUV_601_Y(r, g, b), \
|
|
|
|
.u = MAKE_YUV_601_U(r, g, b), \
|
|
|
|
.v = MAKE_YUV_601_V(r, g, b) }
|
|
|
|
|
|
|
|
#define MAKE_RGBA(rgb, r, g, b, a) \
|
|
|
|
((((r) >> (8 - (rgb)->red.length)) << (rgb)->red.offset) | \
|
|
|
|
(((g) >> (8 - (rgb)->green.length)) << (rgb)->green.offset) | \
|
|
|
|
(((b) >> (8 - (rgb)->blue.length)) << (rgb)->blue.offset) | \
|
|
|
|
(((a) >> (8 - (rgb)->alpha.length)) << (rgb)->alpha.offset))
|
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
#define MAKE_RGB24(rgb, r, g, b) \
|
|
|
|
{ .value = MAKE_RGBA(rgb, r, g, b, 0) }
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
static void
|
|
|
|
fill_smpte_yuv_planar(const struct yuv_info *yuv,
|
|
|
|
unsigned char *y_mem, unsigned char *u_mem,
|
|
|
|
unsigned char *v_mem, unsigned int width,
|
|
|
|
unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
const struct color_yuv colors_top[] = {
|
|
|
|
MAKE_YUV_601(191, 192, 192), /* grey */
|
|
|
|
MAKE_YUV_601(192, 192, 0), /* yellow */
|
|
|
|
MAKE_YUV_601(0, 192, 192), /* cyan */
|
|
|
|
MAKE_YUV_601(0, 192, 0), /* green */
|
|
|
|
MAKE_YUV_601(192, 0, 192), /* magenta */
|
|
|
|
MAKE_YUV_601(192, 0, 0), /* red */
|
|
|
|
MAKE_YUV_601(0, 0, 192), /* blue */
|
2011-02-17 02:47:47 -07:00
|
|
|
};
|
2012-07-20 06:50:42 -06:00
|
|
|
const struct color_yuv colors_middle[] = {
|
|
|
|
MAKE_YUV_601(0, 0, 192), /* blue */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(192, 0, 192), /* magenta */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(0, 192, 192), /* cyan */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(192, 192, 192), /* grey */
|
|
|
|
};
|
|
|
|
const struct color_yuv colors_bottom[] = {
|
|
|
|
MAKE_YUV_601(0, 33, 76), /* in-phase */
|
|
|
|
MAKE_YUV_601(255, 255, 255), /* super white */
|
|
|
|
MAKE_YUV_601(50, 0, 106), /* quadrature */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(9, 9, 9), /* 3.5% */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* 7.5% */
|
|
|
|
MAKE_YUV_601(29, 29, 29), /* 11.5% */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
};
|
|
|
|
unsigned int cs = yuv->chroma_stride;
|
|
|
|
unsigned int xsub = yuv->xsub;
|
|
|
|
unsigned int ysub = yuv->ysub;
|
|
|
|
unsigned int x;
|
|
|
|
unsigned int y;
|
|
|
|
|
|
|
|
/* Luma */
|
|
|
|
for (y = 0; y < height * 6 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
y_mem[x] = colors_top[x * 7 / width].y;
|
|
|
|
y_mem += stride;
|
|
|
|
}
|
2011-02-17 02:47:47 -07:00
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
for (; y < height * 7 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
y_mem[x] = colors_middle[x * 7 / width].y;
|
|
|
|
y_mem += stride;
|
|
|
|
}
|
2011-02-17 02:47:47 -07:00
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
for (; y < height; ++y) {
|
|
|
|
for (x = 0; x < width * 5 / 7; ++x)
|
|
|
|
y_mem[x] = colors_bottom[x * 4 / (width * 5 / 7)].y;
|
|
|
|
for (; x < width * 6 / 7; ++x)
|
|
|
|
y_mem[x] = colors_bottom[(x - width * 5 / 7) * 3
|
|
|
|
/ (width / 7) + 4].y;
|
|
|
|
for (; x < width; ++x)
|
|
|
|
y_mem[x] = colors_bottom[7].y;
|
|
|
|
y_mem += stride;
|
2011-02-17 02:47:47 -07:00
|
|
|
}
|
2009-02-03 13:03:41 -07:00
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
/* Chroma */
|
|
|
|
for (y = 0; y < height / ysub * 6 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; x += xsub) {
|
|
|
|
u_mem[x*cs/xsub] = colors_top[x * 7 / width].u;
|
|
|
|
v_mem[x*cs/xsub] = colors_top[x * 7 / width].v;
|
|
|
|
}
|
|
|
|
u_mem += stride * cs / xsub;
|
|
|
|
v_mem += stride * cs / xsub;
|
2011-02-17 02:47:47 -07:00
|
|
|
}
|
2010-09-09 11:52:28 -06:00
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
for (; y < height / ysub * 7 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; x += xsub) {
|
|
|
|
u_mem[x*cs/xsub] = colors_middle[x * 7 / width].u;
|
|
|
|
v_mem[x*cs/xsub] = colors_middle[x * 7 / width].v;
|
|
|
|
}
|
|
|
|
u_mem += stride * cs / xsub;
|
|
|
|
v_mem += stride * cs / xsub;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height / ysub; ++y) {
|
|
|
|
for (x = 0; x < width * 5 / 7; x += xsub) {
|
|
|
|
u_mem[x*cs/xsub] =
|
|
|
|
colors_bottom[x * 4 / (width * 5 / 7)].u;
|
|
|
|
v_mem[x*cs/xsub] =
|
|
|
|
colors_bottom[x * 4 / (width * 5 / 7)].v;
|
|
|
|
}
|
|
|
|
for (; x < width * 6 / 7; x += xsub) {
|
|
|
|
u_mem[x*cs/xsub] = colors_bottom[(x - width * 5 / 7) *
|
|
|
|
3 / (width / 7) + 4].u;
|
|
|
|
v_mem[x*cs/xsub] = colors_bottom[(x - width * 5 / 7) *
|
|
|
|
3 / (width / 7) + 4].v;
|
|
|
|
}
|
|
|
|
for (; x < width; x += xsub) {
|
|
|
|
u_mem[x*cs/xsub] = colors_bottom[7].u;
|
|
|
|
v_mem[x*cs/xsub] = colors_bottom[7].v;
|
|
|
|
}
|
|
|
|
u_mem += stride * cs / xsub;
|
|
|
|
v_mem += stride * cs / xsub;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_smpte_yuv_packed(const struct yuv_info *yuv, unsigned char *mem,
|
|
|
|
unsigned int width, unsigned int height,
|
|
|
|
unsigned int stride)
|
|
|
|
{
|
|
|
|
const struct color_yuv colors_top[] = {
|
|
|
|
MAKE_YUV_601(191, 192, 192), /* grey */
|
|
|
|
MAKE_YUV_601(192, 192, 0), /* yellow */
|
|
|
|
MAKE_YUV_601(0, 192, 192), /* cyan */
|
|
|
|
MAKE_YUV_601(0, 192, 0), /* green */
|
|
|
|
MAKE_YUV_601(192, 0, 192), /* magenta */
|
|
|
|
MAKE_YUV_601(192, 0, 0), /* red */
|
|
|
|
MAKE_YUV_601(0, 0, 192), /* blue */
|
|
|
|
};
|
|
|
|
const struct color_yuv colors_middle[] = {
|
|
|
|
MAKE_YUV_601(0, 0, 192), /* blue */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(192, 0, 192), /* magenta */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(0, 192, 192), /* cyan */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(192, 192, 192), /* grey */
|
|
|
|
};
|
|
|
|
const struct color_yuv colors_bottom[] = {
|
|
|
|
MAKE_YUV_601(0, 33, 76), /* in-phase */
|
|
|
|
MAKE_YUV_601(255, 255, 255), /* super white */
|
|
|
|
MAKE_YUV_601(50, 0, 106), /* quadrature */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
MAKE_YUV_601(9, 9, 9), /* 3.5% */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* 7.5% */
|
|
|
|
MAKE_YUV_601(29, 29, 29), /* 11.5% */
|
|
|
|
MAKE_YUV_601(19, 19, 19), /* black */
|
|
|
|
};
|
|
|
|
unsigned char *y_mem = (yuv->order & YUV_YC) ? mem : mem + 1;
|
|
|
|
unsigned char *c_mem = (yuv->order & YUV_CY) ? mem : mem + 1;
|
|
|
|
unsigned int u = (yuv->order & YUV_YCrCb) ? 2 : 0;
|
|
|
|
unsigned int v = (yuv->order & YUV_YCbCr) ? 2 : 0;
|
|
|
|
unsigned int x;
|
|
|
|
unsigned int y;
|
|
|
|
|
|
|
|
/* Luma */
|
|
|
|
for (y = 0; y < height * 6 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
y_mem[2*x] = colors_top[x * 7 / width].y;
|
|
|
|
y_mem += stride * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height * 7 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
y_mem[2*x] = colors_middle[x * 7 / width].y;
|
|
|
|
y_mem += stride * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height; ++y) {
|
|
|
|
for (x = 0; x < width * 5 / 7; ++x)
|
|
|
|
y_mem[2*x] = colors_bottom[x * 4 / (width * 5 / 7)].y;
|
|
|
|
for (; x < width * 6 / 7; ++x)
|
|
|
|
y_mem[2*x] = colors_bottom[(x - width * 5 / 7) * 3
|
|
|
|
/ (width / 7) + 4].y;
|
|
|
|
for (; x < width; ++x)
|
|
|
|
y_mem[2*x] = colors_bottom[7].y;
|
|
|
|
y_mem += stride * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Chroma */
|
|
|
|
for (y = 0; y < height * 6 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; x += 2) {
|
|
|
|
c_mem[2*x+u] = colors_top[x * 7 / width].u;
|
|
|
|
c_mem[2*x+v] = colors_top[x * 7 / width].v;
|
|
|
|
}
|
|
|
|
c_mem += stride * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height * 7 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; x += 2) {
|
|
|
|
c_mem[2*x+u] = colors_middle[x * 7 / width].u;
|
|
|
|
c_mem[2*x+v] = colors_middle[x * 7 / width].v;
|
|
|
|
}
|
|
|
|
c_mem += stride * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height; ++y) {
|
|
|
|
for (x = 0; x < width * 5 / 7; x += 2) {
|
|
|
|
c_mem[2*x+u] = colors_bottom[x * 4 / (width * 5 / 7)].u;
|
|
|
|
c_mem[2*x+v] = colors_bottom[x * 4 / (width * 5 / 7)].v;
|
|
|
|
}
|
|
|
|
for (; x < width * 6 / 7; x += 2) {
|
|
|
|
c_mem[2*x+u] = colors_bottom[(x - width * 5 / 7) *
|
|
|
|
3 / (width / 7) + 4].u;
|
|
|
|
c_mem[2*x+v] = colors_bottom[(x - width * 5 / 7) *
|
|
|
|
3 / (width / 7) + 4].v;
|
|
|
|
}
|
|
|
|
for (; x < width; x += 2) {
|
|
|
|
c_mem[2*x+u] = colors_bottom[7].u;
|
|
|
|
c_mem[2*x+v] = colors_bottom[7].v;
|
|
|
|
}
|
|
|
|
c_mem += stride * 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_smpte_rgb16(const struct rgb_info *rgb, unsigned char *mem,
|
|
|
|
unsigned int width, unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
const uint16_t colors_top[] = {
|
|
|
|
MAKE_RGBA(rgb, 192, 192, 192, 255), /* grey */
|
|
|
|
MAKE_RGBA(rgb, 192, 192, 0, 255), /* yellow */
|
|
|
|
MAKE_RGBA(rgb, 0, 192, 192, 255), /* cyan */
|
|
|
|
MAKE_RGBA(rgb, 0, 192, 0, 255), /* green */
|
|
|
|
MAKE_RGBA(rgb, 192, 0, 192, 255), /* magenta */
|
|
|
|
MAKE_RGBA(rgb, 192, 0, 0, 255), /* red */
|
|
|
|
MAKE_RGBA(rgb, 0, 0, 192, 255), /* blue */
|
|
|
|
};
|
|
|
|
const uint16_t colors_middle[] = {
|
|
|
|
MAKE_RGBA(rgb, 0, 0, 192, 255), /* blue */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 192, 0, 192, 255), /* magenta */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 0, 192, 192, 255), /* cyan */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 192, 192, 192, 255), /* grey */
|
|
|
|
};
|
|
|
|
const uint16_t colors_bottom[] = {
|
|
|
|
MAKE_RGBA(rgb, 0, 33, 76, 255), /* in-phase */
|
|
|
|
MAKE_RGBA(rgb, 255, 255, 255, 255), /* super white */
|
|
|
|
MAKE_RGBA(rgb, 50, 0, 106, 255), /* quadrature */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 9, 9, 9, 255), /* 3.5% */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* 7.5% */
|
|
|
|
MAKE_RGBA(rgb, 29, 29, 29, 255), /* 11.5% */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
};
|
|
|
|
unsigned int x;
|
|
|
|
unsigned int y;
|
|
|
|
|
|
|
|
for (y = 0; y < height * 6 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
((uint16_t *)mem)[x] = colors_top[x * 7 / width];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height * 7 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
((uint16_t *)mem)[x] = colors_middle[x * 7 / width];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height; ++y) {
|
|
|
|
for (x = 0; x < width * 5 / 7; ++x)
|
|
|
|
((uint16_t *)mem)[x] =
|
|
|
|
colors_bottom[x * 4 / (width * 5 / 7)];
|
|
|
|
for (; x < width * 6 / 7; ++x)
|
|
|
|
((uint16_t *)mem)[x] =
|
|
|
|
colors_bottom[(x - width * 5 / 7) * 3
|
|
|
|
/ (width / 7) + 4];
|
|
|
|
for (; x < width; ++x)
|
|
|
|
((uint16_t *)mem)[x] = colors_bottom[7];
|
|
|
|
mem += stride;
|
|
|
|
}
|
2010-09-09 11:52:28 -06:00
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
static void
|
|
|
|
fill_smpte_rgb24(const struct rgb_info *rgb, void *mem,
|
|
|
|
unsigned int width, unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
const struct color_rgb24 colors_top[] = {
|
|
|
|
MAKE_RGB24(rgb, 192, 192, 192), /* grey */
|
|
|
|
MAKE_RGB24(rgb, 192, 192, 0), /* yellow */
|
|
|
|
MAKE_RGB24(rgb, 0, 192, 192), /* cyan */
|
|
|
|
MAKE_RGB24(rgb, 0, 192, 0), /* green */
|
|
|
|
MAKE_RGB24(rgb, 192, 0, 192), /* magenta */
|
|
|
|
MAKE_RGB24(rgb, 192, 0, 0), /* red */
|
|
|
|
MAKE_RGB24(rgb, 0, 0, 192), /* blue */
|
|
|
|
};
|
|
|
|
const struct color_rgb24 colors_middle[] = {
|
|
|
|
MAKE_RGB24(rgb, 0, 0, 192), /* blue */
|
|
|
|
MAKE_RGB24(rgb, 19, 19, 19), /* black */
|
|
|
|
MAKE_RGB24(rgb, 192, 0, 192), /* magenta */
|
|
|
|
MAKE_RGB24(rgb, 19, 19, 19), /* black */
|
|
|
|
MAKE_RGB24(rgb, 0, 192, 192), /* cyan */
|
|
|
|
MAKE_RGB24(rgb, 19, 19, 19), /* black */
|
|
|
|
MAKE_RGB24(rgb, 192, 192, 192), /* grey */
|
|
|
|
};
|
|
|
|
const struct color_rgb24 colors_bottom[] = {
|
|
|
|
MAKE_RGB24(rgb, 0, 33, 76), /* in-phase */
|
|
|
|
MAKE_RGB24(rgb, 255, 255, 255), /* super white */
|
|
|
|
MAKE_RGB24(rgb, 50, 0, 106), /* quadrature */
|
|
|
|
MAKE_RGB24(rgb, 19, 19, 19), /* black */
|
|
|
|
MAKE_RGB24(rgb, 9, 9, 9), /* 3.5% */
|
|
|
|
MAKE_RGB24(rgb, 19, 19, 19), /* 7.5% */
|
|
|
|
MAKE_RGB24(rgb, 29, 29, 29), /* 11.5% */
|
|
|
|
MAKE_RGB24(rgb, 19, 19, 19), /* black */
|
|
|
|
};
|
|
|
|
unsigned int x;
|
|
|
|
unsigned int y;
|
|
|
|
|
|
|
|
for (y = 0; y < height * 6 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
((struct color_rgb24 *)mem)[x] =
|
|
|
|
colors_top[x * 7 / width];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height * 7 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
((struct color_rgb24 *)mem)[x] =
|
|
|
|
colors_middle[x * 7 / width];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height; ++y) {
|
|
|
|
for (x = 0; x < width * 5 / 7; ++x)
|
|
|
|
((struct color_rgb24 *)mem)[x] =
|
|
|
|
colors_bottom[x * 4 / (width * 5 / 7)];
|
|
|
|
for (; x < width * 6 / 7; ++x)
|
|
|
|
((struct color_rgb24 *)mem)[x] =
|
|
|
|
colors_bottom[(x - width * 5 / 7) * 3
|
|
|
|
/ (width / 7) + 4];
|
|
|
|
for (; x < width; ++x)
|
|
|
|
((struct color_rgb24 *)mem)[x] = colors_bottom[7];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
static void
|
|
|
|
fill_smpte_rgb32(const struct rgb_info *rgb, unsigned char *mem,
|
|
|
|
unsigned int width, unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
const uint32_t colors_top[] = {
|
|
|
|
MAKE_RGBA(rgb, 192, 192, 192, 255), /* grey */
|
|
|
|
MAKE_RGBA(rgb, 192, 192, 0, 255), /* yellow */
|
|
|
|
MAKE_RGBA(rgb, 0, 192, 192, 255), /* cyan */
|
|
|
|
MAKE_RGBA(rgb, 0, 192, 0, 255), /* green */
|
|
|
|
MAKE_RGBA(rgb, 192, 0, 192, 255), /* magenta */
|
|
|
|
MAKE_RGBA(rgb, 192, 0, 0, 255), /* red */
|
|
|
|
MAKE_RGBA(rgb, 0, 0, 192, 255), /* blue */
|
|
|
|
};
|
|
|
|
const uint32_t colors_middle[] = {
|
|
|
|
MAKE_RGBA(rgb, 0, 0, 192, 255), /* blue */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 192, 0, 192, 255), /* magenta */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 0, 192, 192, 255), /* cyan */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 192, 192, 192, 255), /* grey */
|
|
|
|
};
|
|
|
|
const uint32_t colors_bottom[] = {
|
|
|
|
MAKE_RGBA(rgb, 0, 33, 76, 255), /* in-phase */
|
|
|
|
MAKE_RGBA(rgb, 255, 255, 255, 255), /* super white */
|
|
|
|
MAKE_RGBA(rgb, 50, 0, 106, 255), /* quadrature */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
MAKE_RGBA(rgb, 9, 9, 9, 255), /* 3.5% */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* 7.5% */
|
|
|
|
MAKE_RGBA(rgb, 29, 29, 29, 255), /* 11.5% */
|
|
|
|
MAKE_RGBA(rgb, 19, 19, 19, 255), /* black */
|
|
|
|
};
|
|
|
|
unsigned int x;
|
|
|
|
unsigned int y;
|
|
|
|
|
|
|
|
for (y = 0; y < height * 6 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
((uint32_t *)mem)[x] = colors_top[x * 7 / width];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height * 7 / 9; ++y) {
|
|
|
|
for (x = 0; x < width; ++x)
|
|
|
|
((uint32_t *)mem)[x] = colors_middle[x * 7 / width];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; y < height; ++y) {
|
|
|
|
for (x = 0; x < width * 5 / 7; ++x)
|
|
|
|
((uint32_t *)mem)[x] =
|
|
|
|
colors_bottom[x * 4 / (width * 5 / 7)];
|
|
|
|
for (; x < width * 6 / 7; ++x)
|
|
|
|
((uint32_t *)mem)[x] =
|
|
|
|
colors_bottom[(x - width * 5 / 7) * 3
|
|
|
|
/ (width / 7) + 4];
|
|
|
|
for (; x < width; ++x)
|
|
|
|
((uint32_t *)mem)[x] = colors_bottom[7];
|
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_smpte(const struct format_info *info, void *planes[3], unsigned int width,
|
|
|
|
unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
unsigned char *u, *v;
|
|
|
|
|
|
|
|
switch (info->format) {
|
2012-07-20 06:50:44 -06:00
|
|
|
case DRM_FORMAT_UYVY:
|
|
|
|
case DRM_FORMAT_VYUY:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_YUYV:
|
2012-07-20 06:50:44 -06:00
|
|
|
case DRM_FORMAT_YVYU:
|
2012-07-20 06:50:42 -06:00
|
|
|
return fill_smpte_yuv_packed(&info->yuv, planes[0], width,
|
|
|
|
height, stride);
|
|
|
|
|
|
|
|
case DRM_FORMAT_NV12:
|
|
|
|
case DRM_FORMAT_NV21:
|
2012-07-20 06:50:45 -06:00
|
|
|
case DRM_FORMAT_NV16:
|
|
|
|
case DRM_FORMAT_NV61:
|
2012-07-20 06:50:42 -06:00
|
|
|
u = info->yuv.order & YUV_YCbCr ? planes[1] : planes[1] + 1;
|
|
|
|
v = info->yuv.order & YUV_YCrCb ? planes[1] : planes[1] + 1;
|
|
|
|
return fill_smpte_yuv_planar(&info->yuv, planes[0], u, v,
|
|
|
|
width, height, stride);
|
2012-07-20 06:50:44 -06:00
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_YVU420:
|
|
|
|
return fill_smpte_yuv_planar(&info->yuv, planes[0], planes[1],
|
|
|
|
planes[2], width, height, stride);
|
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_RGB565:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_ARGB1555:
|
|
|
|
case DRM_FORMAT_XRGB1555:
|
|
|
|
return fill_smpte_rgb16(&info->rgb, planes[0],
|
|
|
|
width, height, stride);
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_BGR888:
|
|
|
|
case DRM_FORMAT_RGB888:
|
|
|
|
return fill_smpte_rgb24(&info->rgb, planes[0],
|
|
|
|
width, height, stride);
|
|
|
|
case DRM_FORMAT_ARGB8888:
|
|
|
|
case DRM_FORMAT_BGRA8888:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_XRGB8888:
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_BGRX8888:
|
2012-07-20 06:50:42 -06:00
|
|
|
return fill_smpte_rgb32(&info->rgb, planes[0],
|
|
|
|
width, height, stride);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* swap these for big endian.. */
|
|
|
|
#define RED 2
|
|
|
|
#define GREEN 1
|
|
|
|
#define BLUE 0
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-12-14 21:24:14 -07:00
|
|
|
static void
|
2012-07-20 06:50:42 -06:00
|
|
|
fill_tiles_yuv_planar(const struct yuv_info *yuv,
|
|
|
|
unsigned char *y_mem, unsigned char *u_mem,
|
|
|
|
unsigned char *v_mem, unsigned int width,
|
|
|
|
unsigned int height, unsigned int stride)
|
2011-12-14 21:24:14 -07:00
|
|
|
{
|
2012-07-20 06:50:42 -06:00
|
|
|
unsigned int cs = yuv->chroma_stride;
|
2012-07-20 06:50:45 -06:00
|
|
|
unsigned int xsub = yuv->xsub;
|
|
|
|
unsigned int ysub = yuv->ysub;
|
|
|
|
unsigned int x;
|
|
|
|
unsigned int y;
|
2011-12-14 21:24:14 -07:00
|
|
|
|
2012-07-20 06:50:45 -06:00
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
|
|
|
div_t d = div(x+y, width);
|
|
|
|
uint32_t rgb32 = 0x00130502 * (d.quot >> 6)
|
|
|
|
+ 0x000a1120 * (d.rem >> 6);
|
|
|
|
struct color_yuv color =
|
|
|
|
MAKE_YUV_601((rgb32 >> 16) & 0xff,
|
|
|
|
(rgb32 >> 8) & 0xff, rgb32 & 0xff);
|
2011-12-14 21:24:14 -07:00
|
|
|
|
2012-07-20 06:50:45 -06:00
|
|
|
y_mem[x] = color.y;
|
|
|
|
u_mem[x/xsub*cs] = color.u;
|
|
|
|
v_mem[x/xsub*cs] = color.v;
|
|
|
|
}
|
2011-12-14 21:24:14 -07:00
|
|
|
|
2012-07-20 06:50:45 -06:00
|
|
|
y_mem += stride;
|
|
|
|
if ((y + 1) % ysub == 0) {
|
|
|
|
u_mem += stride * cs / xsub;
|
|
|
|
v_mem += stride * cs / xsub;
|
2011-12-14 21:24:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-07-20 06:50:42 -06:00
|
|
|
fill_tiles_yuv_packed(const struct yuv_info *yuv, unsigned char *mem,
|
|
|
|
unsigned int width, unsigned int height,
|
|
|
|
unsigned int stride)
|
2011-12-14 21:24:14 -07:00
|
|
|
{
|
2012-07-20 06:50:44 -06:00
|
|
|
unsigned char *y_mem = (yuv->order & YUV_YC) ? mem : mem + 1;
|
|
|
|
unsigned char *c_mem = (yuv->order & YUV_CY) ? mem : mem + 1;
|
|
|
|
unsigned int u = (yuv->order & YUV_YCrCb) ? 2 : 0;
|
|
|
|
unsigned int v = (yuv->order & YUV_YCbCr) ? 2 : 0;
|
|
|
|
unsigned int x;
|
|
|
|
unsigned int y;
|
2011-12-14 21:24:14 -07:00
|
|
|
|
2012-07-20 06:50:44 -06:00
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; x += 2) {
|
|
|
|
div_t d = div(x+y, width);
|
|
|
|
uint32_t rgb32 = 0x00130502 * (d.quot >> 6)
|
|
|
|
+ 0x000a1120 * (d.rem >> 6);
|
|
|
|
struct color_yuv color =
|
|
|
|
MAKE_YUV_601((rgb32 >> 16) & 0xff,
|
|
|
|
(rgb32 >> 8) & 0xff, rgb32 & 0xff);
|
|
|
|
|
|
|
|
y_mem[2*x] = color.y;
|
|
|
|
c_mem[2*x+u] = color.u;
|
|
|
|
y_mem[2*x+2] = color.y;
|
|
|
|
c_mem[2*x+v] = color.v;
|
2011-12-14 21:24:14 -07:00
|
|
|
}
|
2012-07-20 06:50:44 -06:00
|
|
|
|
|
|
|
y_mem += stride;
|
|
|
|
c_mem += stride;
|
2011-12-14 21:24:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-02 09:31:25 -07:00
|
|
|
static void
|
2012-07-20 06:50:42 -06:00
|
|
|
fill_tiles_rgb16(const struct rgb_info *rgb, unsigned char *mem,
|
|
|
|
unsigned int width, unsigned int height, unsigned int stride)
|
2012-01-02 09:31:25 -07:00
|
|
|
{
|
2012-07-20 06:50:46 -06:00
|
|
|
unsigned int x, y;
|
2012-07-20 06:50:42 -06:00
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
|
|
|
div_t d = div(x+y, width);
|
|
|
|
uint32_t rgb32 = 0x00130502 * (d.quot >> 6)
|
|
|
|
+ 0x000a1120 * (d.rem >> 6);
|
|
|
|
uint16_t color =
|
|
|
|
MAKE_RGBA(rgb, (rgb32 >> 16) & 0xff,
|
|
|
|
(rgb32 >> 8) & 0xff, rgb32 & 0xff,
|
|
|
|
255);
|
|
|
|
|
|
|
|
((uint16_t *)mem)[x] = color;
|
2012-01-02 09:31:25 -07:00
|
|
|
}
|
2012-07-20 06:50:46 -06:00
|
|
|
mem += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_tiles_rgb24(const struct rgb_info *rgb, unsigned char *mem,
|
|
|
|
unsigned int width, unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
unsigned int x, y;
|
|
|
|
|
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
|
|
|
div_t d = div(x+y, width);
|
|
|
|
uint32_t rgb32 = 0x00130502 * (d.quot >> 6)
|
|
|
|
+ 0x000a1120 * (d.rem >> 6);
|
|
|
|
struct color_rgb24 color =
|
|
|
|
MAKE_RGB24(rgb, (rgb32 >> 16) & 0xff,
|
|
|
|
(rgb32 >> 8) & 0xff, rgb32 & 0xff);
|
|
|
|
|
|
|
|
((struct color_rgb24 *)mem)[x] = color;
|
|
|
|
}
|
|
|
|
mem += stride;
|
2012-01-02 09:31:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:41 -06:00
|
|
|
static void
|
2012-07-20 06:50:42 -06:00
|
|
|
fill_tiles_rgb32(const struct rgb_info *rgb, unsigned char *mem,
|
|
|
|
unsigned int width, unsigned int height, unsigned int stride)
|
2012-07-20 06:50:41 -06:00
|
|
|
{
|
2012-07-20 06:50:46 -06:00
|
|
|
unsigned char *mem_base = mem;
|
|
|
|
unsigned int x, y;
|
2012-07-20 06:50:42 -06:00
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
|
|
|
div_t d = div(x+y, width);
|
|
|
|
uint32_t rgb32 = 0x00130502 * (d.quot >> 6)
|
|
|
|
+ 0x000a1120 * (d.rem >> 6);
|
|
|
|
uint32_t color =
|
|
|
|
MAKE_RGBA(rgb, (rgb32 >> 16) & 0xff,
|
|
|
|
(rgb32 >> 8) & 0xff, rgb32 & 0xff,
|
|
|
|
255);
|
|
|
|
|
|
|
|
((uint32_t *)mem)[x] = color;
|
2012-07-20 06:50:41 -06:00
|
|
|
}
|
2012-07-20 06:50:46 -06:00
|
|
|
mem += stride;
|
2012-07-20 06:50:41 -06:00
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
make_pwetty(mem_base, width, height, stride);
|
2012-07-20 06:50:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_tiles(const struct format_info *info, void *planes[3], unsigned int width,
|
|
|
|
unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
unsigned char *u, *v;
|
|
|
|
|
|
|
|
switch (info->format) {
|
2012-07-20 06:50:44 -06:00
|
|
|
case DRM_FORMAT_UYVY:
|
|
|
|
case DRM_FORMAT_VYUY:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_YUYV:
|
2012-07-20 06:50:44 -06:00
|
|
|
case DRM_FORMAT_YVYU:
|
2012-07-20 06:50:42 -06:00
|
|
|
return fill_tiles_yuv_packed(&info->yuv, planes[0],
|
|
|
|
width, height, stride);
|
|
|
|
|
|
|
|
case DRM_FORMAT_NV12:
|
|
|
|
case DRM_FORMAT_NV21:
|
2012-07-20 06:50:45 -06:00
|
|
|
case DRM_FORMAT_NV16:
|
|
|
|
case DRM_FORMAT_NV61:
|
2012-07-20 06:50:42 -06:00
|
|
|
u = info->yuv.order & YUV_YCbCr ? planes[1] : planes[1] + 1;
|
|
|
|
v = info->yuv.order & YUV_YCrCb ? planes[1] : planes[1] + 1;
|
|
|
|
return fill_tiles_yuv_planar(&info->yuv, planes[0], u, v,
|
|
|
|
width, height, stride);
|
2012-07-20 06:50:44 -06:00
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_YVU420:
|
|
|
|
return fill_tiles_yuv_planar(&info->yuv, planes[0], planes[1],
|
|
|
|
planes[2], width, height, stride);
|
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_RGB565:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_ARGB1555:
|
|
|
|
case DRM_FORMAT_XRGB1555:
|
|
|
|
return fill_tiles_rgb16(&info->rgb, planes[0],
|
|
|
|
width, height, stride);
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_BGR888:
|
|
|
|
case DRM_FORMAT_RGB888:
|
|
|
|
return fill_tiles_rgb24(&info->rgb, planes[0],
|
|
|
|
width, height, stride);
|
|
|
|
case DRM_FORMAT_ARGB8888:
|
|
|
|
case DRM_FORMAT_BGRA8888:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_XRGB8888:
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_BGRX8888:
|
2012-07-20 06:50:42 -06:00
|
|
|
return fill_tiles_rgb32(&info->rgb, planes[0],
|
|
|
|
width, height, stride);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_plain(const struct format_info *info, void *planes[3], unsigned int width,
|
|
|
|
unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
memset(planes[0], 0x77, stride * height);
|
2012-07-20 06:50:41 -06:00
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
/*
|
|
|
|
* fill_pattern - Fill a buffer with a test pattern
|
|
|
|
* @format: Pixel format
|
|
|
|
* @pattern: Test pattern
|
|
|
|
* @buffer: Buffer memory
|
|
|
|
* @width: Width in pixels
|
|
|
|
* @height: Height in pixels
|
|
|
|
* @stride: Line stride (pitch) in bytes
|
|
|
|
*
|
|
|
|
* Fill the buffer with the test pattern specified by the pattern parameter.
|
|
|
|
* Supported formats vary depending on the selected pattern.
|
|
|
|
*/
|
2012-07-20 06:50:41 -06:00
|
|
|
static void
|
2012-07-20 06:50:42 -06:00
|
|
|
fill_pattern(unsigned int format, enum fill_pattern pattern,
|
|
|
|
void *planes[3],
|
|
|
|
unsigned int width, unsigned int height, unsigned int stride)
|
|
|
|
{
|
|
|
|
const struct format_info *info = NULL;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(format_info); ++i) {
|
|
|
|
if (format_info[i].format == format) {
|
|
|
|
info = &format_info[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (pattern) {
|
|
|
|
case PATTERN_TILES:
|
|
|
|
return fill_tiles(info, planes, width, height, stride);
|
|
|
|
|
|
|
|
case PATTERN_SMPTE:
|
|
|
|
return fill_smpte(info, planes, width, height, stride);
|
|
|
|
|
|
|
|
case PATTERN_PLAIN:
|
|
|
|
return fill_plain(info, planes, width, height, stride);
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("Error: unsupported test pattern %u.\n", pattern);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Buffers management
|
|
|
|
*/
|
|
|
|
|
|
|
|
static struct kms_bo *
|
|
|
|
allocate_buffer(struct kms_driver *kms,
|
|
|
|
int width, int height, int *stride)
|
2012-07-20 06:50:41 -06:00
|
|
|
{
|
2012-07-20 06:50:42 -06: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bo;
|
2012-07-20 06:50:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct kms_bo *
|
|
|
|
create_test_buffer(struct kms_driver *kms, unsigned int format,
|
|
|
|
int width, int height, int handles[4],
|
2012-07-20 06:50:42 -06:00
|
|
|
int pitches[4], int offsets[4], enum fill_pattern pattern)
|
2012-07-20 06:50:41 -06:00
|
|
|
{
|
|
|
|
struct kms_bo *bo;
|
|
|
|
int ret, stride;
|
2012-07-20 06:50:42 -06:00
|
|
|
void *planes[3];
|
2012-07-20 06:50:41 -06:00
|
|
|
void *virtual;
|
|
|
|
|
|
|
|
bo = allocate_buffer(kms, width, height, &pitches[0]);
|
|
|
|
if (!bo)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret = kms_bo_map(bo, &virtual);
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to map buffer: %s\n",
|
|
|
|
strerror(-ret));
|
|
|
|
kms_bo_destroy(&bo);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* just testing a limited # of formats to test single
|
|
|
|
* and multi-planar path.. would be nice to add more..
|
|
|
|
*/
|
|
|
|
switch (format) {
|
2012-07-20 06:50:44 -06:00
|
|
|
case DRM_FORMAT_UYVY:
|
|
|
|
case DRM_FORMAT_VYUY:
|
2012-07-20 06:50:41 -06:00
|
|
|
case DRM_FORMAT_YUYV:
|
2012-07-20 06:50:44 -06:00
|
|
|
case DRM_FORMAT_YVYU:
|
2012-07-20 06:50:41 -06:00
|
|
|
pitches[0] = width * 2;
|
|
|
|
offsets[0] = 0;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[0]);
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
planes[0] = virtual;
|
2012-07-20 06:50:41 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DRM_FORMAT_NV12:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_NV21:
|
2012-07-20 06:50:45 -06:00
|
|
|
case DRM_FORMAT_NV16:
|
|
|
|
case DRM_FORMAT_NV61:
|
2012-07-20 06:50:41 -06:00
|
|
|
pitches[0] = width;
|
|
|
|
offsets[0] = 0;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[0]);
|
|
|
|
pitches[1] = width;
|
|
|
|
offsets[1] = width * height;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[1]);
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
planes[0] = virtual;
|
|
|
|
planes[1] = virtual + offsets[1];
|
2012-07-20 06:50:41 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DRM_FORMAT_YVU420:
|
|
|
|
pitches[0] = width;
|
|
|
|
offsets[0] = 0;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[0]);
|
|
|
|
pitches[1] = width / 2;
|
|
|
|
offsets[1] = width * height;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[1]);
|
|
|
|
pitches[2] = width / 2;
|
|
|
|
offsets[2] = offsets[1] + (width * height) / 4;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[2]);
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
planes[0] = virtual;
|
|
|
|
planes[1] = virtual + offsets[1];
|
|
|
|
planes[2] = virtual + offsets[2];
|
2012-07-20 06:50:41 -06:00
|
|
|
break;
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_RGB565:
|
|
|
|
case DRM_FORMAT_ARGB1555:
|
2012-07-20 06:50:41 -06:00
|
|
|
case DRM_FORMAT_XRGB1555:
|
|
|
|
pitches[0] = width * 2;
|
|
|
|
offsets[0] = 0;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[0]);
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
planes[0] = virtual;
|
2012-07-20 06:50:41 -06:00
|
|
|
break;
|
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_BGR888:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_RGB888:
|
|
|
|
pitches[0] = width * 3;
|
2012-07-20 06:50:41 -06:00
|
|
|
offsets[0] = 0;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[0]);
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
planes[0] = virtual;
|
2012-07-20 06:50:41 -06:00
|
|
|
break;
|
|
|
|
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_ARGB8888:
|
|
|
|
case DRM_FORMAT_BGRA8888:
|
2012-07-20 06:50:42 -06:00
|
|
|
case DRM_FORMAT_XRGB8888:
|
2012-07-20 06:50:46 -06:00
|
|
|
case DRM_FORMAT_BGRX8888:
|
2012-07-20 06:50:42 -06:00
|
|
|
pitches[0] = width * 4;
|
2012-07-20 06:50:41 -06:00
|
|
|
offsets[0] = 0;
|
|
|
|
kms_bo_get_prop(bo, KMS_HANDLE, &handles[0]);
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
planes[0] = virtual;
|
2012-07-20 06:50:41 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:42 -06:00
|
|
|
fill_pattern(format, pattern, planes, width, height, pitches[0]);
|
2012-07-20 06:50:41 -06:00
|
|
|
kms_bo_unmap(bo);
|
|
|
|
|
|
|
|
return bo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-14 20:06:43 -07:00
|
|
|
static int
|
|
|
|
set_plane(struct kms_driver *kms, struct connector *c, struct plane *p)
|
|
|
|
{
|
|
|
|
drmModePlaneRes *plane_resources;
|
|
|
|
drmModePlane *ovr;
|
|
|
|
uint32_t handles[4], pitches[4], offsets[4] = {0}; /* we only use [0] */
|
|
|
|
uint32_t plane_id = 0;
|
|
|
|
struct kms_bo *plane_bo;
|
2012-07-20 06:50:47 -06:00
|
|
|
uint32_t plane_flags = 0;
|
2012-04-21 14:51:50 -06:00
|
|
|
int ret, crtc_x, crtc_y, crtc_w, crtc_h;
|
|
|
|
unsigned int i;
|
2011-12-14 20:06:43 -07:00
|
|
|
|
|
|
|
/* find an unused plane which can be connected to our crtc */
|
|
|
|
plane_resources = drmModeGetPlaneResources(fd);
|
|
|
|
if (!plane_resources) {
|
|
|
|
fprintf(stderr, "drmModeGetPlaneResources failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < plane_resources->count_planes && !plane_id; i++) {
|
|
|
|
ovr = drmModeGetPlane(fd, plane_resources->planes[i]);
|
|
|
|
if (!ovr) {
|
|
|
|
fprintf(stderr, "drmModeGetPlane failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ovr->possible_crtcs & (1 << c->pipe)) && !ovr->crtc_id)
|
|
|
|
plane_id = ovr->plane_id;
|
|
|
|
|
|
|
|
drmModeFreePlane(ovr);
|
|
|
|
}
|
|
|
|
|
2011-12-14 21:24:14 -07:00
|
|
|
fprintf(stderr, "testing %dx%d@%s overlay plane\n",
|
|
|
|
p->w, p->h, p->format_str);
|
|
|
|
|
2011-12-14 20:06:43 -07:00
|
|
|
if (!plane_id) {
|
|
|
|
fprintf(stderr, "failed to find plane!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:47 -06:00
|
|
|
plane_bo = create_test_buffer(kms, p->fourcc, p->w, p->h, handles,
|
2012-07-20 06:50:42 -06:00
|
|
|
pitches, offsets, PATTERN_TILES);
|
2012-07-20 06:50:41 -06:00
|
|
|
if (plane_bo == NULL)
|
|
|
|
return -1;
|
2011-12-14 20:06:43 -07:00
|
|
|
|
|
|
|
/* just use single plane format for now.. */
|
2012-07-20 06:50:47 -06:00
|
|
|
if (drmModeAddFB2(fd, p->w, p->h, p->fourcc,
|
2011-12-14 20:06:43 -07:00
|
|
|
handles, pitches, offsets, &p->fb_id, plane_flags)) {
|
|
|
|
fprintf(stderr, "failed to add fb: %s\n", strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ok, boring.. but for now put in middle of screen: */
|
|
|
|
crtc_x = c->mode->hdisplay / 3;
|
|
|
|
crtc_y = c->mode->vdisplay / 3;
|
|
|
|
crtc_w = crtc_x;
|
|
|
|
crtc_h = crtc_y;
|
|
|
|
|
|
|
|
/* note src coords (last 4 args) are in Q16 format */
|
|
|
|
if (drmModeSetPlane(fd, plane_id, c->crtc, p->fb_id,
|
|
|
|
plane_flags, crtc_x, crtc_y, crtc_w, crtc_h,
|
|
|
|
0, 0, p->w << 16, p->h << 16)) {
|
|
|
|
fprintf(stderr, "failed to enable plane: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-03 13:03:41 -07:00
|
|
|
static void
|
2011-12-14 20:06:43 -07:00
|
|
|
set_mode(struct connector *c, int count, struct plane *p, int plane_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;
|
2012-07-20 06:50:41 -06:00
|
|
|
int i, j, ret, width, height, x;
|
|
|
|
uint32_t handles[4], pitches[4], offsets[4] = {0}; /* we only use [0] */
|
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;
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:50:41 -06:00
|
|
|
bo = create_test_buffer(kms, DRM_FORMAT_XRGB8888, width, height, handles,
|
2012-07-20 06:50:42 -06:00
|
|
|
pitches, offsets, PATTERN_SMPTE);
|
2012-07-20 06:50:41 -06:00
|
|
|
if (bo == NULL)
|
2009-02-03 13:03:41 -07:00
|
|
|
return;
|
2008-12-17 11:09:49 -07:00
|
|
|
|
2012-07-20 06:50:41 -06:00
|
|
|
ret = drmModeAddFB(fd, width, height, 24, 32, pitches[0], handles[0], &fb_id);
|
2008-12-17 11:09:49 -07:00
|
|
|
if (ret) {
|
2011-10-19 05:32:26 -06:00
|
|
|
fprintf(stderr, "failed to add fb (%ux%u): %s\n",
|
|
|
|
width, height, strerror(errno));
|
2008-12-17 11:09:49 -07:00
|
|
|
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);
|
2011-10-19 05:32:43 -06:00
|
|
|
|
|
|
|
/* XXX: Actually check if this is needed */
|
|
|
|
drmModeDirtyFB(fd, fb_id, NULL, 0);
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
x += c[i].mode->hdisplay;
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to set mode: %s\n", strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
2011-12-14 20:06:43 -07:00
|
|
|
|
|
|
|
/* if we have a plane/overlay to show, set that up now: */
|
|
|
|
for (j = 0; j < plane_count; j++)
|
|
|
|
if (p[j].con_id == c[i].id)
|
|
|
|
if (set_plane(kms, &c[i], &p[j]))
|
|
|
|
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
|
|
|
|
2012-07-20 06:50:41 -06:00
|
|
|
other_bo = create_test_buffer(kms, DRM_FORMAT_XRGB8888, width, height, handles,
|
2012-07-20 06:50:42 -06:00
|
|
|
pitches, offsets, PATTERN_PLAIN);
|
2012-07-20 06:50:41 -06:00
|
|
|
if (other_bo == NULL)
|
2009-11-17 13:32:23 -07:00
|
|
|
return;
|
|
|
|
|
2012-07-20 06:50:41 -06:00
|
|
|
ret = drmModeAddFB(fd, width, height, 32, 32, pitches[0], handles[0],
|
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;
|
|
|
|
|
2011-09-28 15:34:09 -06:00
|
|
|
ret = drmModePageFlip(fd, c[i].crtc, other_fb_id,
|
|
|
|
DRM_MODE_PAGE_FLIP_EVENT, &c[i]);
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "failed to page flip: %s\n", strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
2009-11-17 13:32:23 -07:00
|
|
|
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;
|
2011-02-17 12:36:42 -07:00
|
|
|
c[i].current_fb_id = other_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;
|
2011-12-14 20:06:43 -07:00
|
|
|
static char optstr[] = "ecpmfs:P:v";
|
2008-12-17 11:09:49 -07:00
|
|
|
|
2012-07-20 06:50:47 -06:00
|
|
|
static int parse_connector(struct connector *c, const char *arg)
|
|
|
|
{
|
|
|
|
c->crtc = -1;
|
|
|
|
|
|
|
|
if (sscanf(arg, "%d:%64s", &c->id, &c->mode_str) == 2)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (sscanf(arg, "%d@%d:%64s", &c->id, &c->crtc, &c->mode_str) == 3)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_plane(struct plane *p, const char *arg)
|
|
|
|
{
|
|
|
|
strcpy(p->format_str, "XR24");
|
|
|
|
|
|
|
|
if (sscanf(arg, "%d:%dx%d@%4s", &p->con_id, &p->w, &p->h, &p->format_str) != 4 &&
|
|
|
|
sscanf(arg, "%d:%dx%d", &p->con_id, &p->w, &p->h) != 3)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
p->fourcc = format_fourcc(p->format_str);
|
|
|
|
if (p->fourcc == 0) {
|
|
|
|
fprintf(stderr, "unknown format %s\n", p->format_str);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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");
|
2011-12-14 20:06:43 -07:00
|
|
|
fprintf(stderr, "\t-p\tlist CRTCs and planes (pipes)\n");
|
2008-12-17 11:09:49 -07:00
|
|
|
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");
|
2011-12-14 20:06:43 -07:00
|
|
|
fprintf(stderr, "\t-P <connector_id>:<w>x<h>\tset a plane\n");
|
2011-12-14 21:24:14 -07:00
|
|
|
fprintf(stderr, "\t-P <connector_id>:<w>x<h>@<format>\tset a plane\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()
|
|
|
|
|
2012-04-21 14:51:50 -06:00
|
|
|
static int page_flipping_supported(void)
|
2009-12-09 08:36:53 -07:00
|
|
|
{
|
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;
|
2011-12-14 20:06:43 -07:00
|
|
|
int encoders = 0, connectors = 0, crtcs = 0, planes = 0, framebuffers = 0;
|
2009-11-17 13:32:23 -07:00
|
|
|
int test_vsync = 0;
|
2012-05-04 04:13:14 -06:00
|
|
|
char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "omapdrm", "exynos" };
|
2012-04-21 14:51:50 -06:00
|
|
|
unsigned int i;
|
|
|
|
int count = 0, plane_count = 0;
|
2009-02-03 12:00:00 -07:00
|
|
|
struct connector con_args[2];
|
2011-12-14 21:24:14 -07:00
|
|
|
struct plane plane_args[2] = {0};
|
2009-02-03 12:00:00 -07:00
|
|
|
|
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;
|
2011-12-14 20:06:43 -07:00
|
|
|
planes = 1;
|
2008-12-17 11:09:49 -07:00
|
|
|
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':
|
2012-07-20 06:50:47 -06:00
|
|
|
if (parse_connector(&con_args[count], optarg) < 0)
|
2009-02-03 12:00:00 -07:00
|
|
|
usage(argv[0]);
|
|
|
|
count++;
|
2008-12-17 11:09:49 -07:00
|
|
|
break;
|
2011-12-14 20:06:43 -07:00
|
|
|
case 'P':
|
2012-07-20 06:50:47 -06:00
|
|
|
if (parse_plane(&plane_args[plane_count], optarg) < 0)
|
2011-12-14 20:06:43 -07:00
|
|
|
usage(argv[0]);
|
|
|
|
plane_count++;
|
|
|
|
break;
|
2008-12-17 11:09:49 -07:00
|
|
|
default:
|
|
|
|
usage(argv[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == 1)
|
2011-12-14 20:06:43 -07:00
|
|
|
encoders = connectors = crtcs = planes = modes = framebuffers = 1;
|
2008-12-17 11:09:49 -07:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-21 14:51:50 -06:00
|
|
|
if (test_vsync && !page_flipping_supported()) {
|
2009-12-09 08:36:53 -07:00
|
|
|
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);
|
2011-12-14 20:06:43 -07:00
|
|
|
dump_resource(planes);
|
2008-12-17 11:09:49 -07:00
|
|
|
dump_resource(framebuffers);
|
|
|
|
|
2009-02-03 12:00:00 -07:00
|
|
|
if (count > 0) {
|
2011-12-14 20:06:43 -07:00
|
|
|
set_mode(con_args, count, plane_args, plane_count, test_vsync);
|
2009-02-03 12:02:50 -07:00
|
|
|
getchar();
|
2008-12-17 11:09:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeResources(resources);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|