summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Li (Sunpeng) <sunpeng.li@amd.com>2018-06-15 17:02:57 -0400
committerMichel Dänzer <michel.daenzer@amd.com>2018-06-26 17:21:24 +0200
commit810ed133cd67b3deb38d1af87e252a094e9ee8f2 (patch)
treeb96310c74f3217e73a1f9b393fbf533bb4da383c
parent940c8b39f79789d4d5ddb8ab8d25a8ae05932756 (diff)
Cache color property IDs and LUT sizes during pre-init
DRM creates property types with unique IDs during kernel driver init. Cache the color property IDs on DDX init for use later, when we need to modify these properties. Also cache the (de)gamma LUT sizes, since they are the same for all CRTCs on AMD hardware. Since these values are the same regardless of the CRTC, they can be cached within the private drmmode_rec object. We can also use any color- management-enabled CRTC to initially fetch them. Also introduce an enumeration of possible color management properties, to provide a easy and unified way of referring to them. v2: - Reorder cm property enum so that LUT sizes are at the end. This allows us to use DEGAMMA_LUT_SIZE as an anchor for iterating over mutable cm properties. - Cache (de)gamma LUT sizes within drmmode, since it's the same for all CRTCs on AMD hardware. Update commit message to reflect this. Signed-off-by: Leo (Sunpeng) Li <sunpeng.li@amd.com> Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
-rw-r--r--src/drmmode_display.c98
-rw-r--r--src/drmmode_display.h22
2 files changed, 120 insertions, 0 deletions
diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index c55b4b7..916ebac 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -746,6 +746,28 @@ drmmode_crtc_scanout_update(xf86CrtcPtr crtc, DisplayModePtr mode,
}
}
+static char *cm_prop_names[] = {
+ "DEGAMMA_LUT",
+ "CTM",
+ "GAMMA_LUT",
+ "DEGAMMA_LUT_SIZE",
+ "GAMMA_LUT_SIZE",
+};
+
+/**
+ * Return the enum of the color management property with the given name.
+ */
+static enum drmmode_cm_prop get_cm_enum_from_str(const char *prop_name)
+{
+ enum drmmode_cm_prop ret;
+
+ for (ret = 0; ret < CM_NUM_PROPS; ret++) {
+ if (!strcmp(prop_name, cm_prop_names[ret]))
+ return ret;
+ }
+ return CM_INVALID_PROP;
+}
+
static void
drmmode_crtc_gamma_do_set(xf86CrtcPtr crtc, uint16_t *red, uint16_t *green,
uint16_t *blue, int size)
@@ -2421,6 +2443,80 @@ drmmode_page_flip_target_relative(AMDGPUEntPtr pAMDGPUEnt,
drm_queue_seq);
}
+/**
+ * Initialize DDX color management support. It does two things:
+ *
+ * 1. Cache DRM color management property type IDs, as they do not change. They
+ * will be used later to modify color management via DRM, or to determine if
+ * there's kernel support for color management.
+ *
+ * 2. Cache degamma/gamma LUT sizes, since all CRTCs have the same LUT sizes on
+ * AMD hardware.
+ *
+ * If the cached ID's are all 0 after calling this function, then color
+ * management is not supported. For short, checking if the gamma LUT size
+ * property ID == 0 is sufficient.
+ *
+ * This should be called before CRTCs are initialized within pre_init, as the
+ * cached values will be used there.
+ *
+ * @drm_fd: DRM file descriptor
+ * @drmmode: drmmode object, where the cached IDs are stored
+ * @mode_res: The DRM mode resource containing the CRTC ids
+ */
+static void drmmode_cm_init(int drm_fd, drmmode_ptr drmmode,
+ drmModeResPtr mode_res)
+{
+ drmModeObjectPropertiesPtr drm_props;
+ drmModePropertyPtr drm_prop;
+ enum drmmode_cm_prop cm_prop;
+ uint32_t cm_enabled = 0;
+ uint32_t cm_all_enabled = (1 << CM_NUM_PROPS) - 1;
+ int i;
+
+ memset(drmmode->cm_prop_ids, 0, sizeof(drmmode->cm_prop_ids));
+ drmmode->gamma_lut_size = drmmode->degamma_lut_size = 0;
+
+ /* AMD hardware has color management support on all pipes. It is
+ * therefore sufficient to only check the first CRTC.
+ */
+ drm_props = drmModeObjectGetProperties(drm_fd,
+ mode_res->crtcs[0],
+ DRM_MODE_OBJECT_CRTC);
+ if (!drm_props)
+ return;
+
+ for (i = 0; i < drm_props->count_props; i++) {
+ drm_prop = drmModeGetProperty(drm_fd,
+ drm_props->props[i]);
+ if (!drm_prop)
+ continue;
+
+ cm_prop = get_cm_enum_from_str(drm_prop->name);
+ if (cm_prop == CM_INVALID_PROP)
+ continue;
+
+ if (cm_prop == CM_DEGAMMA_LUT_SIZE)
+ drmmode->degamma_lut_size = drm_props->prop_values[i];
+ else if (cm_prop == CM_GAMMA_LUT_SIZE)
+ drmmode->gamma_lut_size = drm_props->prop_values[i];
+
+ drmmode->cm_prop_ids[cm_prop] = drm_props->props[i];
+ cm_enabled |= 1 << cm_prop;
+
+ drmModeFreeProperty(drm_prop);
+ }
+ drmModeFreeObjectProperties(drm_props);
+
+ /* cm is enabled only if all prop ids are found */
+ if (cm_enabled == cm_all_enabled)
+ return;
+
+ /* Otherwise, disable DDX cm support */
+ memset(drmmode->cm_prop_ids, 0, sizeof(drmmode->cm_prop_ids));
+ drmmode->gamma_lut_size = drmmode->degamma_lut_size = 0;
+}
+
Bool drmmode_pre_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int cpp)
{
AMDGPUEntPtr pAMDGPUEnt = AMDGPUEntPriv(pScrn);
@@ -2467,6 +2563,8 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int cpp)
if (pScrn->depth == 30)
info->drmmode_crtc_funcs.gamma_set = NULL;
+ drmmode_cm_init(pAMDGPUEnt->fd, drmmode, mode_res);
+
for (i = 0; i < mode_res->count_crtcs; i++)
if (!xf86IsEntityShared(pScrn->entityList[0]) ||
(crtcs_needed && !(pAMDGPUEnt->assigned_crtcs & (1 << i))))
diff --git a/src/drmmode_display.h b/src/drmmode_display.h
index 25ae9f8..4aa8e88 100644
--- a/src/drmmode_display.h
+++ b/src/drmmode_display.h
@@ -36,6 +36,22 @@
#include "amdgpu_probe.h"
#include "amdgpu.h"
+/*
+ * Enum of non-legacy color management properties, according to DRM. Note that
+ * the values should be incremental (with the exception of the INVALID member),
+ * as defined by C99. The ordering also matters. Some logics (such as iterators
+ * and bitmasks) depend on these facts.
+ */
+enum drmmode_cm_prop {
+ CM_DEGAMMA_LUT,
+ CM_CTM,
+ CM_GAMMA_LUT,
+ CM_DEGAMMA_LUT_SIZE,
+ CM_GAMMA_LUT_SIZE,
+ CM_NUM_PROPS,
+ CM_INVALID_PROP = -1,
+};
+
typedef struct {
ScrnInfoPtr scrn;
#ifdef HAVE_LIBUDEV
@@ -49,6 +65,12 @@ typedef struct {
Bool dri2_flipping;
Bool present_flipping;
+
+ /* Cache for DRM property type IDs for CRTC color management */
+ uint32_t cm_prop_ids[CM_NUM_PROPS];
+ /* Lookup table sizes */
+ uint32_t degamma_lut_size;
+ uint32_t gamma_lut_size;
} drmmode_rec, *drmmode_ptr;
typedef struct {