From patchwork Tue Mar 21 14:36:40 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ville Syrjala X-Patchwork-Id: 13182852 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 48B2DC74A5B for ; Tue, 21 Mar 2023 14:37:51 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3409210E1F5; Tue, 21 Mar 2023 14:37:49 +0000 (UTC) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id 1D13410E0AC; Tue, 21 Mar 2023 14:37:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679409466; x=1710945466; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=J/XC+56ZvVhpCDHtjZ3Zv6cNu86xF7Nt4L/iCBL6sCc=; b=GdREs637ocfLzT+PQ+uRwsuE/JfauGA/etCBYWnvkTxiBjoxrTMrgHz/ p9H8U5Q3Kwx/4F7SBUs2L2+yCScyUQEoupzNQeXasCkxiHvLzPw4iRwok LaMcZQpXbm3BXajB/GYe2Z3tUKXDf71EUrXA6qD4RVwq/F3uiZxlkojZd JOoFJm0P4dRJAPr0TvkxOZ8/ktgJN+/o0RDlV1LXWw3NHK5OyqkaeYcRF tfUZpL0aSMJRgtEH9aEdo1PQ97dd5aRYJC0JCgQBju7JFk3tmQ/l3HbFt EEs4i5N9iMIgZ6CoV3gr+9Fmp/qdsq8Hco2S0M+TBChLMGBrXVqjMVLEM Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10656"; a="403832726" X-IronPort-AV: E=Sophos;i="5.98,279,1673942400"; d="scan'208";a="403832726" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Mar 2023 07:36:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10656"; a="674851694" X-IronPort-AV: E=Sophos;i="5.98,279,1673942400"; d="scan'208";a="674851694" Received: from stinkpipe.fi.intel.com (HELO stinkbox) ([10.237.72.70]) by orsmga007.jf.intel.com with SMTP; 21 Mar 2023 07:36:44 -0700 Received: by stinkbox (sSMTP sendmail emulation); Tue, 21 Mar 2023 16:36:43 +0200 From: Ville Syrjala To: dri-devel@lists.freedesktop.org Date: Tue, 21 Mar 2023 16:36:40 +0200 Message-Id: <20230321143643.26676-1-ville.syrjala@linux.intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Subject: [Intel-gfx] [RFC][PATCH v2 0/3] drm: Add plane SIZE_HINTS property X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Simon Ser , intel-gfx@lists.freedesktop.org, Pekka Paalanen , =?utf-8?q?Jonas_=C3=85dahl?= , Daniel Stone Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" From: Ville Syrjälä I was pondering how I'd be able to do non-square cursor sizes without have a massive list of them in the SIZE_HINTS blob. So I came up with this idea of having a 2D bitmap in there to indicate support for (mostly) POT non-square sizes.. What does everyone think? Is this just getting too complicated and should we just go with the original "a list of suppored sizes" approach? Cc: Simon Ser Cc: Jonas Ådahl Cc: Daniel Stone Cc: Pekka Paalanen Ville Syrjälä (3): drm: Introduce plane SIZE_HINTS property drm/i915: Adjust cursor_size_ok() func calling convention drm/i915: Add SIZE_HINTS property for cursors drivers/gpu/drm/drm_mode_config.c | 7 ++ drivers/gpu/drm/drm_plane.c | 96 +++++++++++++++++++++ drivers/gpu/drm/i915/display/intel_cursor.c | 96 ++++++++++++++------- include/drm/drm_mode_config.h | 5 ++ include/drm/drm_plane.h | 6 ++ include/uapi/drm/drm_mode.h | 29 +++++++ 6 files changed, 208 insertions(+), 31 deletions(-)