From patchwork Sun Mar 9 18:47:14 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zsolt Kajtar X-Patchwork-Id: 14008886 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 3B050C28B28 for ; Sun, 9 Mar 2025 18:54:22 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 639E510E321; Sun, 9 Mar 2025 18:54:21 +0000 (UTC) Received: from c64.rulez.org (c64.rulez.org [79.139.58.36]) by gabe.freedesktop.org (Postfix) with ESMTPS id 35A6110E321 for ; Sun, 9 Mar 2025 18:54:18 +0000 (UTC) Received: by c64.rulez.org (Postfix, from userid 1000) id 4D988100CF; Sun, 9 Mar 2025 19:54:09 +0100 (CET) From: Zsolt Kajtar To: linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org Cc: Zsolt Kajtar Subject: [PATCH RESEND 0/2] Refactoring the fbcon packed pixel drawing routines Date: Sun, 9 Mar 2025 19:47:14 +0100 Message-Id: <20250309184716.13732-1-soci@c64.rulez.org> X-Mailer: git-send-email 2.30.2 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This is the same patch as before just updated to latest fbdev master and with better description. And hopefully sent intact this time. Zsolt Kajtar (2): Refactoring the fbcon packed pixel drawing routines Adding contact info for packed pixel drawing MAINTAINERS | 16 + drivers/video/fbdev/core/Kconfig | 10 +- drivers/video/fbdev/core/cfbcopyarea.c | 428 +------------------- drivers/video/fbdev/core/cfbfillrect.c | 362 +---------------- drivers/video/fbdev/core/cfbimgblt.c | 357 +---------------- drivers/video/fbdev/core/cfbmem.h | 43 ++ drivers/video/fbdev/core/fb_copyarea.h | 405 +++++++++++++++++++ drivers/video/fbdev/core/fb_draw.h | 274 ++++++------- drivers/video/fbdev/core/fb_fillrect.h | 280 ++++++++++++++ drivers/video/fbdev/core/fb_imageblit.h | 495 ++++++++++++++++++++++++ drivers/video/fbdev/core/syscopyarea.c | 369 +----------------- drivers/video/fbdev/core/sysfillrect.c | 324 +--------------- drivers/video/fbdev/core/sysimgblt.c | 333 +--------------- drivers/video/fbdev/core/sysmem.h | 39 ++ 14 files changed, 1480 insertions(+), 2255 deletions(-) create mode 100644 drivers/video/fbdev/core/cfbmem.h create mode 100644 drivers/video/fbdev/core/fb_copyarea.h create mode 100644 drivers/video/fbdev/core/fb_fillrect.h create mode 100644 drivers/video/fbdev/core/fb_imageblit.h create mode 100644 drivers/video/fbdev/core/sysmem.h