diff options
| author | Simon Ser <contact@emersion.fr> | 2020-05-07 17:50:40 +0200 | 
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2020-05-09 16:42:25 +0200 | 
| commit | 70883fd10beba4f78e3325eb6e38750360502f58 (patch) | |
| tree | 03b41327d9e610af0c21ac11d5c622ab5d024e0f /backend/drm | |
| parent | 69b22790923186bea48ab23e413927334eff828b (diff) | |
| download | wlroots-70883fd10beba4f78e3325eb6e38750360502f58.tar.xz | |
backend/drm: apply gamma LUT on page-flip
Diffstat (limited to 'backend/drm')
| -rw-r--r-- | backend/drm/atomic.c | 94 | ||||
| -rw-r--r-- | backend/drm/backend.c | 11 | ||||
| -rw-r--r-- | backend/drm/drm.c | 17 | ||||
| -rw-r--r-- | backend/drm/legacy.c | 27 | 
4 files changed, 83 insertions, 66 deletions
| diff --git a/backend/drm/atomic.c b/backend/drm/atomic.c index 08909c1b..c1b1229c 100644 --- a/backend/drm/atomic.c +++ b/backend/drm/atomic.c @@ -69,6 +69,41 @@ static void atomic_add(struct atomic *atom, uint32_t id, uint32_t prop, uint64_t  	}  } +static bool create_gamma_lut_blob(struct wlr_drm_backend *drm, +		struct wlr_drm_crtc *crtc, uint32_t *blob_id) { +	if (crtc->gamma_table_size == 0) { +		*blob_id = 0; +		return true; +	} + +	uint32_t size = crtc->gamma_table_size; +	uint16_t *r = crtc->gamma_table; +	uint16_t *g = crtc->gamma_table + size; +	uint16_t *b = crtc->gamma_table + 2 * size; + +	struct drm_color_lut *gamma = malloc(size * sizeof(struct drm_color_lut)); +	if (gamma == NULL) { +		wlr_log(WLR_ERROR, "Failed to allocate gamma table"); +		return false; +	} + +	for (size_t i = 0; i < size; i++) { +		gamma[i].red = r[i]; +		gamma[i].green = g[i]; +		gamma[i].blue = b[i]; +	} + +	if (drmModeCreatePropertyBlob(drm->fd, gamma, +			size * sizeof(struct drm_color_lut), blob_id) != 0) { +		wlr_log_errno(WLR_ERROR, "Unable to create property blob"); +		free(gamma); +		return false; +	} +	free(gamma); + +	return true; +} +  static void plane_disable(struct atomic *atom, struct wlr_drm_plane *plane) {  	uint32_t id = plane->id;  	const union wlr_drm_plane_props *props = &plane->props; @@ -126,6 +161,24 @@ static bool atomic_crtc_pageflip(struct wlr_drm_backend *drm,  		}  	} +	if (crtc->pending & WLR_DRM_CRTC_GAMMA_LUT) { +		// Fallback to legacy gamma interface when gamma properties are not available +		// (can happen on older Intel GPUs that support gamma but not degamma). +		if (crtc->props.gamma_lut == 0) { +			if (!drm_legacy_crtc_set_gamma(drm, crtc)) { +				return false; +			} +		} else { +			if (crtc->gamma_lut != 0) { +				drmModeDestroyPropertyBlob(drm->fd, crtc->gamma_lut); +			} + +			if (!create_gamma_lut_blob(drm, crtc, &crtc->gamma_lut)) { +				return false; +			} +		} +	} +  	uint32_t flags = DRM_MODE_PAGE_FLIP_EVENT;  	if (modeset) {  		flags |= DRM_MODE_ATOMIC_ALLOW_MODESET; @@ -142,6 +195,7 @@ static bool atomic_crtc_pageflip(struct wlr_drm_backend *drm,  	}  	atomic_add(&atom, crtc->id, crtc->props.mode_id, crtc->mode_id);  	atomic_add(&atom, crtc->id, crtc->props.active, 1); +	atomic_add(&atom, crtc->id, crtc->props.gamma_lut, crtc->gamma_lut);  	set_plane_props(&atom, drm, crtc->primary, crtc->id, 0, 0);  	if (crtc->cursor) {  		if (crtc->cursor->cursor_enabled) { @@ -195,45 +249,6 @@ static bool atomic_crtc_set_cursor(struct wlr_drm_backend *drm,  	return true;  } -static bool atomic_crtc_set_gamma(struct wlr_drm_backend *drm, -		struct wlr_drm_crtc *crtc, size_t size, -		uint16_t *r, uint16_t *g, uint16_t *b) { -	// Fallback to legacy gamma interface when gamma properties are not available -	// (can happen on older Intel GPUs that support gamma but not degamma). -	if (crtc->props.gamma_lut == 0) { -		return legacy_iface.crtc_set_gamma(drm, crtc, size, r, g, b); -	} - -	struct drm_color_lut *gamma = malloc(size * sizeof(struct drm_color_lut)); -	if (gamma == NULL) { -		wlr_log(WLR_ERROR, "Failed to allocate gamma table"); -		return false; -	} - -	for (size_t i = 0; i < size; i++) { -		gamma[i].red = r[i]; -		gamma[i].green = g[i]; -		gamma[i].blue = b[i]; -	} - -	if (crtc->gamma_lut != 0) { -		drmModeDestroyPropertyBlob(drm->fd, crtc->gamma_lut); -	} - -	if (drmModeCreatePropertyBlob(drm->fd, gamma, -			size * sizeof(struct drm_color_lut), &crtc->gamma_lut)) { -		free(gamma); -		wlr_log_errno(WLR_ERROR, "Unable to create property blob"); -		return false; -	} -	free(gamma); - -	struct atomic atom; -	atomic_begin(crtc, &atom); -	atomic_add(&atom, crtc->id, crtc->props.gamma_lut, crtc->gamma_lut); -	return atomic_end(drm->fd, 0, &atom); -} -  static size_t atomic_crtc_get_gamma_size(struct wlr_drm_backend *drm,  		struct wlr_drm_crtc *crtc) {  	if (crtc->props.gamma_lut_size == 0) { @@ -254,6 +269,5 @@ const struct wlr_drm_interface atomic_iface = {  	.conn_enable = atomic_conn_enable,  	.crtc_pageflip = atomic_crtc_pageflip,  	.crtc_set_cursor = atomic_crtc_set_cursor, -	.crtc_set_gamma = atomic_crtc_set_gamma,  	.crtc_get_gamma_size = atomic_crtc_get_gamma_size,  }; diff --git a/backend/drm/backend.c b/backend/drm/backend.c index c07736cf..4eabb0ec 100644 --- a/backend/drm/backend.c +++ b/backend/drm/backend.c @@ -93,6 +93,7 @@ static void session_signal(struct wl_listener *listener, void *data) {  		struct wlr_drm_connector *conn;  		wl_list_for_each(conn, &drm->outputs, link){ +			conn->crtc->pending |= WLR_DRM_CRTC_GAMMA_LUT;  			if (conn->output.enabled && conn->output.current_mode != NULL) {  				drm_connector_set_mode(&conn->output,  						conn->output.current_mode); @@ -112,16 +113,6 @@ static void session_signal(struct wl_listener *listener, void *data) {  			}  			drm->iface->crtc_set_cursor(drm, conn->crtc, bo); - -			if (conn->crtc->gamma_table != NULL) { -				size_t size = conn->crtc->gamma_table_size; -				uint16_t *r = conn->crtc->gamma_table; -				uint16_t *g = conn->crtc->gamma_table + size; -				uint16_t *b = conn->crtc->gamma_table + 2 * size; -				drm->iface->crtc_set_gamma(drm, conn->crtc, size, r, g, b); -			} else { -				set_drm_connector_gamma(&conn->output, 0, NULL, NULL, NULL); -			}  		}  	} else {  		wlr_log(WLR_INFO, "DRM fd paused"); diff --git a/backend/drm/drm.c b/backend/drm/drm.c index c91843cc..0d7f3f25 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -586,7 +586,6 @@ static size_t drm_connector_get_gamma_size(struct wlr_output *output) {  bool set_drm_connector_gamma(struct wlr_output *output, size_t size,  		const uint16_t *r, const uint16_t *g, const uint16_t *b) {  	struct wlr_drm_connector *conn = get_drm_connector_from_output(output); -	struct wlr_drm_backend *drm = get_drm_backend_from_backend(output->backend);  	if (!conn->crtc) {  		return false; @@ -618,17 +617,13 @@ bool set_drm_connector_gamma(struct wlr_output *output, size_t size,  		memcpy(_b, b, size * sizeof(uint16_t));  	} -	bool ok = drm->iface->crtc_set_gamma(drm, conn->crtc, size, _r, _g, _b); -	if (ok) { -		wlr_output_update_needs_frame(output); +	conn->crtc->pending |= WLR_DRM_CRTC_GAMMA_LUT; +	free(conn->crtc->gamma_table); +	conn->crtc->gamma_table = gamma_table; +	conn->crtc->gamma_table_size = size; -		free(conn->crtc->gamma_table); -		conn->crtc->gamma_table = gamma_table; -		conn->crtc->gamma_table_size = size; -	} else { -		free(gamma_table); -	} -	return ok; +	wlr_output_update_needs_frame(output); +	return true; // will be applied on next page-flip  }  static bool drm_connector_export_dmabuf(struct wlr_output *output, diff --git a/backend/drm/legacy.c b/backend/drm/legacy.c index ba16493f..46a0309e 100644 --- a/backend/drm/legacy.c +++ b/backend/drm/legacy.c @@ -30,6 +30,12 @@ static bool legacy_crtc_pageflip(struct wlr_drm_backend *drm,  		}  	} +	if (crtc->pending & WLR_DRM_CRTC_GAMMA_LUT) { +		if (!drm_legacy_crtc_set_gamma(drm, crtc)) { +			return false; +		} +	} +  	if (cursor != NULL && cursor->cursor_enabled && drmModeMoveCursor(drm->fd,  			crtc->id, conn->cursor_x, conn->cursor_y) != 0) {  		wlr_log_errno(WLR_ERROR, "%s: failed to move cursor", conn->output.name); @@ -83,10 +89,22 @@ bool legacy_crtc_set_cursor(struct wlr_drm_backend *drm,  	return true;  } -static bool legacy_crtc_set_gamma(struct wlr_drm_backend *drm, -		struct wlr_drm_crtc *crtc, size_t size, -		uint16_t *r, uint16_t *g, uint16_t *b) { -	return !drmModeCrtcSetGamma(drm->fd, crtc->id, (uint32_t)size, r, g, b); +bool drm_legacy_crtc_set_gamma(struct wlr_drm_backend *drm, +		struct wlr_drm_crtc *crtc) { +	uint32_t size = crtc->gamma_table_size; +	uint16_t *r = NULL, *g = NULL, *b = NULL; +	if (size > 0) { +		r = crtc->gamma_table; +		g = crtc->gamma_table + crtc->gamma_table_size; +		b = crtc->gamma_table + 2 * crtc->gamma_table_size; +	} + +	if (drmModeCrtcSetGamma(drm->fd, crtc->id, size, r, g, b) != 0) { +		wlr_log_errno(WLR_ERROR, "Failed to set gamma LUT on CRTC %"PRIu32, +			crtc->id); +		return false; +	} +	return true;  }  static size_t legacy_crtc_get_gamma_size(struct wlr_drm_backend *drm, @@ -98,6 +116,5 @@ const struct wlr_drm_interface legacy_iface = {  	.conn_enable = legacy_conn_enable,  	.crtc_pageflip = legacy_crtc_pageflip,  	.crtc_set_cursor = legacy_crtc_set_cursor, -	.crtc_set_gamma = legacy_crtc_set_gamma,  	.crtc_get_gamma_size = legacy_crtc_get_gamma_size,  }; | 
