From patchwork Tue Jul 12 03:32:43 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zack Rusin X-Patchwork-Id: 12914510 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 0EA5FC43334 for ; Tue, 12 Jul 2022 03:33:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id EDB1610F5D7; Tue, 12 Jul 2022 03:33:11 +0000 (UTC) Received: from letterbox.kde.org (letterbox.kde.org [46.43.1.242]) by gabe.freedesktop.org (Postfix) with ESMTPS id B9AB610F573 for ; Tue, 12 Jul 2022 03:33:07 +0000 (UTC) Received: from vertex.vmware.com (pool-173-49-113-140.phlapa.fios.verizon.net [173.49.113.140]) (Authenticated sender: zack) by letterbox.kde.org (Postfix) with ESMTPSA id B75F5321FE7; Tue, 12 Jul 2022 04:33:05 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kde.org; s=users; t=1657596786; bh=IqanmTkB+pSccxXf+sNG7q67HtCj2Ye0f/XGzgW8BTM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ty3xPLSGuft+44UnWWt7tvgNvy23biJ45Z8lWjgxPpToz88QCb7VflLJk+c4QKfLR PEstNqNaD5F4smUewRlcO6+mkzw8XhuqPjDWEC6id9Qv9MsFGKk9ryr9Wv5N3nMkgX PxdtDqpHQ7a3varLweah5nuhie780zE31fYEJ/sZBzTigCzTsdlhsdM3yQqaOrDL97 s2ELtZpNH1W6YOsy1309Vfu7Oa0Dm5gMFwDT1SaWj8dSuEwIAGoGOlMnVYZrsz1MwK jhtHxNF3vpWfkVrDQaDyDEnvX3WrSz/RouWQn2E8QTvB+n0J6ARdiFoWUIkq7RXTkB STdSwazZpinXA== From: Zack Rusin To: dri-devel@lists.freedesktop.org Subject: [PATCH v2 5/8] drm/vboxvideo: Use the hotspot properties from cursor planes Date: Mon, 11 Jul 2022 23:32:43 -0400 Message-Id: <20220712033246.1148476-6-zack@kde.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220712033246.1148476-1-zack@kde.org> References: <20220712033246.1148476-1-zack@kde.org> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Zack Rusin Cc: Hans de Goede , David Airlie , krastevm@vmware.com, ppaalanen@gmail.com, mombasawalam@vmware.com Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" From: Zack Rusin Atomic modesetting got support for mouse hotspots via the hotspot properties. Port the legacy kms hotspot handling to the new properties on cursor planes. Signed-off-by: Zack Rusin Cc: Hans de Goede Cc: David Airlie Cc: Daniel Vetter --- drivers/gpu/drm/vboxvideo/vbox_mode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/vboxvideo/vbox_mode.c b/drivers/gpu/drm/vboxvideo/vbox_mode.c index fa0d73ce07bc..ca3134adb104 100644 --- a/drivers/gpu/drm/vboxvideo/vbox_mode.c +++ b/drivers/gpu/drm/vboxvideo/vbox_mode.c @@ -429,8 +429,8 @@ static void vbox_cursor_atomic_update(struct drm_plane *plane, flags = VBOX_MOUSE_POINTER_VISIBLE | VBOX_MOUSE_POINTER_SHAPE | VBOX_MOUSE_POINTER_ALPHA; hgsmi_update_pointer_shape(vbox->guest_pool, flags, - min_t(u32, max(fb->hot_x, 0), width), - min_t(u32, max(fb->hot_y, 0), height), + min_t(u32, max(new_state->hotspot_x, 0), width), + min_t(u32, max(new_state->hotspot_y, 0), height), width, height, vbox->cursor_data, data_size); mutex_unlock(&vbox->hw_mutex);