From: Matt Roper <matthew.d.roper@intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH i-g-t 1/3] kms: Add universal plane support
Date: Thu, 10 Apr 2014 17:26:23 -0700 [thread overview]
Message-ID: <1397175985-3328-2-git-send-email-matthew.d.roper@intel.com> (raw)
In-Reply-To: <1397175985-3328-1-git-send-email-matthew.d.roper@intel.com>
Add support for universal planes. This involves revamping the existing
plane handling a bit to allow primary & cursor planes to come from the
DRM plane list, rather than always being manually added. Also,
eliminate the hard-coded position of primary & cursor in the plane list
since the DRM could return them in any order.
To minimize impact for existing tests, we add a new
igt_display_use_universal_commits() call to toggle between universal and
legacy API's for programming the primary and cursor planes.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
lib/igt_kms.c | 132 +++++++++++++++++++++++++++++++++++++++++++++-------------
lib/igt_kms.h | 5 +++
2 files changed, 107 insertions(+), 30 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 9dee855..4ec7c97 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -473,27 +473,24 @@ void igt_display_init(igt_display_t *display, int drm_fd)
*/
display->n_pipes = resources->count_crtcs;
+ drmSetClientCap(drm_fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
plane_resources = drmModeGetPlaneResources(display->drm_fd);
igt_assert(plane_resources);
for (i = 0; i < display->n_pipes; i++) {
igt_pipe_t *pipe = &display->pipes[i];
- igt_plane_t *plane;
- int p, j;
+ igt_plane_t *plane = NULL;
+ int p = 0, j;
pipe->display = display;
pipe->pipe = i;
- /* primary plane */
- p = IGT_PLANE_PRIMARY;
- plane = &pipe->planes[p];
- plane->pipe = pipe;
- plane->index = p;
- plane->is_primary = true;
-
/* add the planes that can be used with that pipe */
for (j = 0; j < plane_resources->count_planes; j++) {
drmModePlane *drm_plane;
+ drmModeObjectPropertiesPtr proplist;
+ drmModePropertyPtr prop;
+ int k;
drm_plane = drmModeGetPlane(display->drm_fd,
plane_resources->planes[j]);
@@ -504,21 +501,67 @@ void igt_display_init(igt_display_t *display, int drm_fd)
continue;
}
- p++;
plane = &pipe->planes[p];
plane->pipe = pipe;
- plane->index = p;
+ plane->index = p++;
plane->drm_plane = drm_plane;
+
+ prop = NULL;
+ proplist = drmModeObjectGetProperties(display->drm_fd,
+ plane_resources->planes[j],
+ DRM_MODE_OBJECT_PLANE);
+ for (k = 0; k < proplist->count_props; k++) {
+ prop = drmModeGetProperty(display->drm_fd, proplist->props[k]);
+ if (!prop)
+ continue;
+
+ if (strcmp(prop->name, "type") != 0) {
+ drmModeFreeProperty(prop);
+ continue;
+ }
+
+ switch (proplist->prop_values[k]) {
+ case DRM_PLANE_TYPE_PRIMARY:
+ plane->is_primary = 1;
+ display->has_universal_planes = 1;
+ break;
+ case DRM_PLANE_TYPE_CURSOR:
+ plane->is_cursor = 1;
+ pipe->has_cursor = 1;
+ display->has_universal_planes = 1;
+ break;
+ }
+
+ drmModeFreeProperty(prop);
+ break;
+ }
+
}
- /* cursor plane */
- p++;
- plane = &pipe->planes[p];
- plane->pipe = pipe;
- plane->index = p;
- plane->is_cursor = true;
+ /*
+ * Add a drm_plane-less primary plane for kernels without
+ * universal plane support.
+ */
+ if (!display->has_universal_planes) {
+ plane = &pipe->planes[p];
+ plane->pipe = pipe;
+ plane->index = p++;
+ plane->is_primary = true;
+ }
- pipe->n_planes = ++p;
+ /*
+ * Add drm_plane-less cursor plane for kernels that don't
+ * expose a universal cursor plane.
+ */
+ if (!pipe->has_cursor) {
+ /* cursor plane */
+ plane = &pipe->planes[p];
+ plane->pipe = pipe;
+ plane->index = p++;
+ plane->is_cursor = true;
+ }
+
+ pipe->n_planes = p;
/* make sure we don't overflow the plane array */
igt_assert(pipe->n_planes <= IGT_MAX_PLANES);
@@ -673,16 +716,29 @@ static igt_plane_t *igt_pipe_get_plane(igt_pipe_t *pipe, enum igt_plane plane)
{
int idx;
- /* Cursor plane is always the upper plane */
- if (plane == IGT_PLANE_CURSOR)
- idx = pipe->n_planes - 1;
- else {
- igt_assert_f(plane >= 0 && plane < (pipe->n_planes),
- "plane=%d\n", plane);
- idx = plane;
+ for (idx = 0; idx < pipe->n_planes; idx++) {
+ switch (plane) {
+ case IGT_PLANE_PRIMARY:
+ if (pipe->planes[idx].is_primary)
+ return &pipe->planes[idx];
+ break;
+ case IGT_PLANE_CURSOR:
+ if (pipe->planes[idx].is_cursor)
+ return &pipe->planes[idx];
+ break;
+ case IGT_PLANE_2:
+ if (!pipe->planes[idx].is_primary &&
+ !pipe->planes[idx].is_cursor)
+ return &pipe->planes[idx];
+ default:
+ if (!pipe->planes[idx].is_primary &&
+ !pipe->planes[idx].is_cursor)
+ /* Consume this overlay and keep searching for another */
+ plane--;
+ }
}
- return &pipe->planes[idx];
+ return NULL;
}
static uint32_t igt_plane_get_fb_id(igt_plane_t *plane)
@@ -734,6 +790,8 @@ static int igt_drm_plane_commit(igt_plane_t *plane, igt_output_t *output)
uint32_t fb_id, crtc_id;
int ret;
+ igt_assert(plane->drm_plane);
+
fb_id = igt_plane_get_fb_id(plane);
crtc_id = output->config.crtc->crtc_id;
pipe = igt_output_get_driving_pipe(output);
@@ -793,7 +851,11 @@ static int igt_drm_plane_commit(igt_plane_t *plane, igt_output_t *output)
static int igt_plane_commit(igt_plane_t *plane, igt_output_t *output)
{
- if (plane->is_cursor) {
+ struct igt_display *display = plane->pipe->display;
+
+ if (display->commit_universal && plane->drm_plane) {
+ igt_drm_plane_commit(plane, output);
+ } else if (plane->is_cursor) {
igt_cursor_commit(plane, output);
} else if (plane->is_primary) {
/* state updated by SetCrtc */
@@ -811,8 +873,8 @@ static int igt_output_commit(igt_output_t *output)
int i;
pipe = igt_output_get_driving_pipe(output);
- if (pipe->need_set_crtc) {
- igt_plane_t *primary = &pipe->planes[0];
+ if (pipe->need_set_crtc && !display->commit_universal) {
+ igt_plane_t *primary = igt_pipe_get_plane(pipe, IGT_PLANE_PRIMARY);
drmModeModeInfo *mode;
uint32_t fb_id, crtc_id;
int ret;
@@ -862,7 +924,7 @@ static int igt_output_commit(igt_output_t *output)
primary->fb_changed = false;
}
- if (pipe->need_set_cursor) {
+ if (pipe->need_set_cursor && !display->commit_universal) {
igt_plane_t *cursor;
uint32_t gem_handle, crtc_id;
int ret;
@@ -913,6 +975,16 @@ static int igt_output_commit(igt_output_t *output)
return 0;
}
+/*
+ * Indicate whether future display commits should use universal plane API's
+ * or legacy API's.
+ */
+void igt_display_use_universal_commits(igt_display_t *display,
+ bool use_universal)
+{
+ display->commit_universal = use_universal;
+}
+
int igt_display_commit(igt_display_t *display)
{
int i;
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 439a634..24d5d6a 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -120,6 +120,7 @@ struct igt_pipe {
unsigned int need_set_crtc : 1;
unsigned int need_set_cursor : 1;
unsigned int need_wait_for_vblank : 1;
+ unsigned int has_cursor : 1;
#define IGT_MAX_PLANES 4
int n_planes;
igt_plane_t planes[IGT_MAX_PLANES];
@@ -142,6 +143,8 @@ struct igt_display {
unsigned long pipes_in_use;
igt_output_t *outputs;
igt_pipe_t pipes[I915_MAX_PIPES];
+ bool has_universal_planes;
+ bool commit_universal;
};
/* set vt into graphics mode, required to prevent fbcon from interfering */
@@ -149,6 +152,8 @@ void igt_set_vt_graphics_mode(void);
void igt_display_init(igt_display_t *display, int drm_fd);
void igt_display_fini(igt_display_t *display);
+void igt_display_use_universal_commits(igt_display_t *display,
+ bool use_universal);
int igt_display_commit(igt_display_t *display);
int igt_display_get_n_pipes(igt_display_t *display);
--
1.8.5.1
next prev parent reply other threads:[~2014-04-11 0:24 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-11 0:24 [PATCH] drm/i915: Intel-specific primary plane handling (v2) Matt Roper
2014-04-11 0:26 ` [PATCH i-g-t 0/3] Universal plane testing Matt Roper
2014-04-11 0:26 ` Matt Roper [this message]
2014-04-11 0:26 ` [PATCH i-g-t 2/3] kms_plane: Update for universal plane changes Matt Roper
2014-04-11 0:26 ` [PATCH i-g-t 3/3] kms_universal_plane: Universal plane testing Matt Roper
2014-04-11 9:22 ` Daniel Vetter
2014-04-11 11:57 ` Daniel Vetter
2014-04-11 9:34 ` [PATCH] drm/i915: Intel-specific primary plane handling (v2) Daniel Vetter
2014-04-11 14:17 ` Matt Roper
2014-04-11 14:23 ` Daniel Vetter
2014-04-11 17:41 ` Matt Roper
2014-04-11 18:27 ` Daniel Vetter
2014-04-11 20:44 ` [PATCH] drm/i915: Intel-specific primary plane handling (v3) Matt Roper
2014-04-11 21:13 ` [PATCH] drm/i915: Intel-specific primary plane handling (v4) Matt Roper
2014-04-22 12:47 ` Ville Syrjälä
2014-04-22 15:18 ` Matt Roper
2014-04-22 17:14 ` Daniel Vetter
2014-04-22 17:32 ` Matt Roper
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1397175985-3328-2-git-send-email-matthew.d.roper@intel.com \
--to=matthew.d.roper@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox