public inbox for linux-sunxi@lists.linux.dev
 help / color / mirror / Atom feed
From: Thomas Zimmermann <tzimmermann@suse.de>
To: javierm@redhat.com, maarten.lankhorst@linux.intel.com,
	mripard@kernel.org, airlied@gmail.com, daniel@ffwll.ch,
	linus.walleij@linaro.org
Cc: linux-aspeed@lists.ozlabs.org, dri-devel@lists.freedesktop.org,
	linux-stm32@st-md-mailman.stormreply.com,
	linux-amlogic@lists.infradead.org, linux-sunxi@lists.linux.dev,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 00/25] drm/dma-helper: Add dedicated fbdev emulation
Date: Tue, 14 Mar 2023 17:09:34 +0100	[thread overview]
Message-ID: <85c3029e-796d-3c3f-7f4c-9c2552312e4c@suse.de> (raw)
In-Reply-To: <20230313155138.20584-1-tzimmermann@suse.de>


[-- Attachment #1.1: Type: text/plain, Size: 5278 bytes --]

Merged into drm-misc-next. Thanks a lot for reviews and comments.

Am 13.03.23 um 16:51 schrieb Thomas Zimmermann:
> Add fbdev emulation that is optimized for DMA helpers, as used by most
> drivers. It operates directly on GEM DMA buffers in system memory.
> Memory pages are mmap'ed directly to userspace. No implicit shadow
> buffers need to be allocated; as can happen with the generic fbdev
> emulation. Convert drivers that fulfil the requirements.
> 
> Tested with fbcon and IGT on vc4.
> 
> Future direction: providing a dedicated fbdev emulation for GEM DMA
> helpers will allow us to remove this case from the generic fbdev code.
> The latter can then be simplified.
> 
> v2:
> 	* update mcde and pl111 as well (Linus)
> 
> Linus Walleij (1):
>    drm/mcde: Do not use dirty GEM FB handling
> 
> Thomas Zimmermann (24):
>    drm/fbdev-dma: Implement fbdev emulation for GEM DMA helpers
>    arm/hdlcd: Use GEM DMA fbdev emulation
>    arm/malidp: Use GEM DMA fbdev emulation
>    drm/aspeed: Use GEM DMA fbdev emulation
>    drm/atmel-hlcdc: Use GEM DMA fbdev emulation
>    drm/fsl-dcu: Use GEM DMA fbdev emulation
>    drm/imx/dcss: Use GEM DMA fbdev emulation
>    drm/imx: Use GEM DMA fbdev emulation
>    drm/kmb: Use GEM DMA fbdev emulation
>    drm/logicvc: Use GEM DMA fbdev emulation
>    drm/meson: Use GEM DMA fbdev emulation
>    drm/mxsfb/lcdif: Use GEM DMA fbdev emulation
>    drm/mxsfb: Use GEM DMA fbdev emulation
>    drm/sti: Use GEM DMA fbdev emulation
>    drm/stm: Use GEM DMA fbdev emulation
>    drm/sun4i: Use GEM DMA fbdev emulation
>    drm/tidss: Use GEM DMA fbdev emulation
>    drm/tilcdc: Use GEM DMA fbdev emulation
>    drm/arcpgu: Use GEM DMA fbdev emulation
>    drm/tve200: Use GEM DMA fbdev emulation
>    drm/vc4: Use GEM DMA fbdev emulation
>    drm/xlnx: Use GEM DMA fbdev emulation
>    drm/mcde: Use GEM DMA fbdev emulation
>    drm/pl111: Use GEM DMA fbdev emulation
> 
>   drivers/gpu/drm/Makefile                     |   1 +
>   drivers/gpu/drm/arm/hdlcd_drv.c              |   4 +-
>   drivers/gpu/drm/arm/malidp_drv.c             |   4 +-
>   drivers/gpu/drm/aspeed/aspeed_gfx_drv.c      |   4 +-
>   drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c |   4 +-
>   drivers/gpu/drm/drm_fbdev_dma.c              | 275 +++++++++++++++++++
>   drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c    |   4 +-
>   drivers/gpu/drm/imx/dcss/dcss-kms.c          |   4 +-
>   drivers/gpu/drm/imx/ipuv3/imx-drm-core.c     |   4 +-
>   drivers/gpu/drm/kmb/kmb_drv.c                |   4 +-
>   drivers/gpu/drm/logicvc/logicvc_drm.c        |   4 +-
>   drivers/gpu/drm/mcde/mcde_drv.c              |   6 +-
>   drivers/gpu/drm/meson/meson_drv.c            |   4 +-
>   drivers/gpu/drm/mxsfb/lcdif_drv.c            |   4 +-
>   drivers/gpu/drm/mxsfb/mxsfb_drv.c            |   4 +-
>   drivers/gpu/drm/pl111/pl111_drv.c            |   4 +-
>   drivers/gpu/drm/sti/sti_drv.c                |   4 +-
>   drivers/gpu/drm/stm/drv.c                    |   4 +-
>   drivers/gpu/drm/sun4i/sun4i_drv.c            |   4 +-
>   drivers/gpu/drm/tidss/tidss_drv.c            |   4 +-
>   drivers/gpu/drm/tilcdc/tilcdc_drv.c          |   4 +-
>   drivers/gpu/drm/tiny/arcpgu.c                |   4 +-
>   drivers/gpu/drm/tve200/tve200_drv.c          |   4 +-
>   drivers/gpu/drm/vc4/vc4_drv.c                |   4 +-
>   drivers/gpu/drm/xlnx/zynqmp_kms.c            |   4 +-
>   include/drm/drm_fbdev_dma.h                  |  15 +
>   26 files changed, 338 insertions(+), 47 deletions(-)
>   create mode 100644 drivers/gpu/drm/drm_fbdev_dma.c
>   create mode 100644 include/drm/drm_fbdev_dma.h
> 
> 
> base-commit: b21ced77ae1dbc3d8b01d3aef3c99bba7377a69b
> prerequisite-patch-id: 0aa359f6144c4015c140c8a6750be19099c676fb
> prerequisite-patch-id: c67e5d886a47b7d0266d81100837557fda34cb24
> prerequisite-patch-id: 3f204510fcbf9530d6540bd8e6128cce598988b6
> prerequisite-patch-id: 75f2ebf12693f23508f00d574b2b57488723e474
> prerequisite-patch-id: 718531bf5cf15716834cfaf3008ea0e2366ec927
> prerequisite-patch-id: a793aa283cf41f290d970404881f24bffc48caff
> prerequisite-patch-id: e74f259d1923247a74d5bf7d996afb0e6ca01883
> prerequisite-patch-id: a1d12b9548110b1f5e9aa3803b21e2a7f9f8c19d
> prerequisite-patch-id: 033f10da72f10d82f113a5066a3b3a7ff91d13aa
> prerequisite-patch-id: 976264fafbd69d0996209a90a3d546d9be3f3779
> prerequisite-patch-id: 617c74af5e16717898a23ced9c8badfff1e0ade7
> prerequisite-patch-id: 5e0cfa9c81aa7ceb2cc48c5cbc9934496251fac4
> prerequisite-patch-id: 13594c3cc8102960bb195bc7f572fefba8eb19d7
> prerequisite-patch-id: 99d9da7e08369050d135c23d32dead811bb9cf97
> prerequisite-patch-id: 833f9d8341a287961ee653b04730da57ce987b06
> prerequisite-patch-id: 5d5c9caaf9489a6c2f688d632a57a0fb65fcb5f7
> prerequisite-patch-id: b64758ecd64ec0c0acd96d0766ba891378c5c539
> prerequisite-patch-id: 37a7d3e9fb3e4e2b7ebeac3f77da6610f12beea3
> prerequisite-patch-id: 99073429dafdc98cdd31464ce28e795696a149f9
> prerequisite-patch-id: c2247eca44927569cd2b6d9f370195965346adb4

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Ivo Totev

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

      parent reply	other threads:[~2023-03-14 16:09 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-13 15:51 [PATCH v2 00/25] drm/dma-helper: Add dedicated fbdev emulation Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 01/25] drm/fbdev-dma: Implement fbdev emulation for GEM DMA helpers Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 02/25] arm/hdlcd: Use GEM DMA fbdev emulation Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 03/25] arm/malidp: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 04/25] drm/aspeed: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 05/25] drm/atmel-hlcdc: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 06/25] drm/fsl-dcu: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 07/25] drm/imx/dcss: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 08/25] drm/imx: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 09/25] drm/kmb: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 10/25] drm/logicvc: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 11/25] drm/meson: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 12/25] drm/mxsfb/lcdif: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 13/25] drm/mxsfb: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 14/25] drm/sti: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 15/25] drm/stm: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 16/25] drm/sun4i: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 17/25] drm/tidss: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 18/25] drm/tilcdc: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 19/25] drm/arcpgu: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 20/25] drm/tve200: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 21/25] drm/vc4: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 22/25] drm/xlnx: " Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 23/25] drm/mcde: Do not use dirty GEM FB handling Thomas Zimmermann
2023-03-13 15:51 ` [PATCH v2 24/25] drm/mcde: Use GEM DMA fbdev emulation Thomas Zimmermann
2023-03-13 21:40   ` Linus Walleij
2023-03-13 15:51 ` [PATCH v2 25/25] drm/pl111: " Thomas Zimmermann
2023-03-13 21:41   ` Linus Walleij
2023-03-13 21:37 ` [PATCH v2 00/25] drm/dma-helper: Add dedicated " Linus Walleij
2023-03-14 16:09 ` Thomas Zimmermann [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=85c3029e-796d-3c3f-7f4c-9c2552312e4c@suse.de \
    --to=tzimmermann@suse.de \
    --cc=airlied@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=javierm@redhat.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-aspeed@lists.ozlabs.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox