2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#include <gbm.h>
							 | 
						
					
						
							
								
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#include <wlr/util/log.h>
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#include <xf86drm.h>
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#include <xf86drmMode.h>
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 19:03:34 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#include "backend/drm/drm.h"
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 19:11:41 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#include "backend/drm/iface.h"
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 19:03:34 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#include "backend/drm/util.h"
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 22:22:26 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								static bool legacy_crtc_pageflip(struct wlr_drm_backend *drm,
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 23:31:08 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										struct wlr_drm_connector *conn, struct wlr_drm_crtc *crtc,
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-12 19:52:22 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										uint32_t fb_id, drmModeModeInfo *mode) {
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
									if (mode) {
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 22:22:26 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										if (drmModeSetCrtc(drm->fd, crtc->id, fb_id, 0, 0,
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 23:31:08 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
												&conn->id, 1, mode)) {
							 | 
						
					
						
							
								
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
											wlr_log_errno(WLR_ERROR, "%s: Failed to set CRTC", conn->output.name);
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-24 12:19:49 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
											return false;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
										}
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
									}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-26 17:14:31 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									if (drmModePageFlip(drm->fd, crtc->id, fb_id, DRM_MODE_PAGE_FLIP_EVENT, drm)) {
							 | 
						
					
						
							
								
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										wlr_log_errno(WLR_ERROR, "%s: Failed to page flip", conn->output.name);
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-24 12:19:49 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										return false;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									}
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									return true;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2018-01-07 00:28:21 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								static bool legacy_conn_enable(struct wlr_drm_backend *drm,
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 23:31:08 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										struct wlr_drm_connector *conn, bool enable) {
							 | 
						
					
						
							
								
									
										
										
										
											2018-01-07 00:28:21 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									int ret = drmModeConnectorSetProperty(drm->fd, conn->id, conn->props.dpms,
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
										enable ? DRM_MODE_DPMS_ON : DRM_MODE_DPMS_OFF);
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-02 09:43:16 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									if (!enable) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
										drmModeSetCrtc(drm->fd, conn->crtc->id, 0, 0, 0, NULL, 0,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
													   NULL);
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2018-01-07 00:28:21 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									return ret >= 0;
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 22:22:26 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								bool legacy_crtc_set_cursor(struct wlr_drm_backend *drm,
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-12 19:52:22 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										struct wlr_drm_crtc *crtc, struct gbm_bo *bo) {
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
									if (!crtc || !crtc->cursor) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
										return true;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									if (!bo) {
							 | 
						
					
						
							
								
									
										
										
										
											2018-09-10 17:30:26 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										if (drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0)) {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
											wlr_log_errno(WLR_DEBUG, "Failed to clear hardware cursor");
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
											return false;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
										}
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
										return true;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									struct wlr_drm_plane *plane = crtc->cursor;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 22:22:26 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									if (drmModeSetCursor(drm->fd, crtc->id, gbm_bo_get_handle(bo).u32,
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 20:52:58 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
											plane->surf.width, plane->surf.height)) {
							 | 
						
					
						
							
								
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										wlr_log_errno(WLR_DEBUG, "Failed to set hardware cursor");
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
										return false;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									return true;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 22:22:26 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								bool legacy_crtc_move_cursor(struct wlr_drm_backend *drm,
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-12 19:52:22 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										struct wlr_drm_crtc *crtc, int x, int y) {
							 | 
						
					
						
							
								
									
										
										
										
											2017-09-30 22:22:26 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									return !drmModeMoveCursor(drm->fd, crtc->id, x, y);
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-20 00:45:19 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								static bool legacy_crtc_set_gamma(struct wlr_drm_backend *drm,
							 | 
						
					
						
							
								
									
										
										
										
											2018-10-03 10:36:33 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										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);
							 | 
						
					
						
							
								
									
										
										
										
											2018-02-01 20:27:35 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-20 00:45:19 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								static size_t legacy_crtc_get_gamma_size(struct wlr_drm_backend *drm,
							 | 
						
					
						
							
								
									
										
										
										
											2018-02-04 21:03:44 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										struct wlr_drm_crtc *crtc) {
							 | 
						
					
						
							
								
									
										
										
										
											2018-10-03 10:36:33 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									return (size_t)crtc->legacy_crtc->gamma_size;
							 | 
						
					
						
							
								
									
										
										
										
											2018-02-04 21:03:44 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							
								
									
										
										
										
											2018-02-01 20:27:35 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2017-10-02 21:44:33 +13:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								const struct wlr_drm_interface legacy_iface = {
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
									.conn_enable = legacy_conn_enable,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									.crtc_pageflip = legacy_crtc_pageflip,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									.crtc_set_cursor = legacy_crtc_set_cursor,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									.crtc_move_cursor = legacy_crtc_move_cursor,
							 | 
						
					
						
							
								
									
										
										
										
											2018-02-01 20:27:35 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									.crtc_set_gamma = legacy_crtc_set_gamma,
							 | 
						
					
						
							
								
									
										
										
										
											2018-02-04 21:03:44 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
									.crtc_get_gamma_size = legacy_crtc_get_gamma_size,
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-09 20:43:01 +12:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								};
							 |