Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Philippe CORNU <philippe.cornu@st.com>
To: Ben Widawsky <ben@bwidawsk.net>,
	Intel GFX <intel-gfx@lists.freedesktop.org>,
	DRI Development <dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH 0/4] [v2] Blobifiers (FKA GET_PLANE2)
Date: Tue, 25 Jul 2017 10:26:10 +0000	[thread overview]
Message-ID: <d237489b-3772-5f9f-2abf-8e89658402ed@st.com> (raw)
In-Reply-To: <20170724034641.13369-1-ben@bwidawsk.net>



On 07/24/2017 05:46 AM, Ben Widawsky wrote:
> Second attempt (although most patches are much further along than that) and the
> blob property for modifiers.
> 
> This small series adds the DRM blob property that allows clients to be made
> aware of per plane modifiers and the formats which are supported in conjunction
> with  those modifiers. This interface will allow clients to create buffers for
> scanout with a good set of modifiers, and later import those buffers (through
> EGL already, and Vulkan WSI later) into a graphics runtime. EGL/WSI will provide
> similar interfaces for rendering - modifiers which can be used for rendering.
> 
> Ben Widawsky (4):
>    drm: Plumb modifiers through plane init
>    drm: Create a format/modifier blob
>    drm/i915: Add format modifiers for Intel
>    drm/i915: Add support for CCS modifiers
> 
>   drivers/gpu/drm/arc/arcpgu_crtc.c               |   1 +
>   drivers/gpu/drm/arm/hdlcd_crtc.c                |   1 +
>   drivers/gpu/drm/arm/malidp_planes.c             |   2 +-
>   drivers/gpu/drm/armada/armada_crtc.c            |   1 +
>   drivers/gpu/drm/armada/armada_overlay.c         |   1 +
>   drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c |   3 +-
>   drivers/gpu/drm/drm_mode_config.c               |   7 +
>   drivers/gpu/drm/drm_modeset_helper.c            |   1 +
>   drivers/gpu/drm/drm_plane.c                     | 120 +++++++++++++++++-
>   drivers/gpu/drm/drm_simple_kms_helper.c         |   3 +
>   drivers/gpu/drm/exynos/exynos_drm_plane.c       |   2 +-
>   drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_plane.c     |   2 +-
>   drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_de.c  |   1 +
>   drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c |   2 +-
>   drivers/gpu/drm/i915/intel_display.c            | 148 +++++++++++++++++++++-
>   drivers/gpu/drm/i915/intel_drv.h                |   1 -
>   drivers/gpu/drm/i915/intel_sprite.c             | 162 +++++++++++++++++++++++-
>   drivers/gpu/drm/imx/ipuv3-plane.c               |   4 +-
>   drivers/gpu/drm/mediatek/mtk_drm_plane.c        |   2 +-
>   drivers/gpu/drm/meson/meson_plane.c             |   1 +
>   drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c       |   2 +-
>   drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c       |   4 +-
>   drivers/gpu/drm/mxsfb/mxsfb_drv.c               |   2 +-
>   drivers/gpu/drm/nouveau/nv50_display.c          |   5 +-
>   drivers/gpu/drm/omapdrm/omap_plane.c            |   2 +-
>   drivers/gpu/drm/pl111/pl111_display.c           |   2 +-
>   drivers/gpu/drm/qxl/qxl_display.c               |   2 +-
>   drivers/gpu/drm/rcar-du/rcar_du_plane.c         |   4 +-
>   drivers/gpu/drm/rcar-du/rcar_du_vsp.c           |   4 +-
>   drivers/gpu/drm/rockchip/rockchip_drm_vop.c     |   4 +-
>   drivers/gpu/drm/sti/sti_cursor.c                |   2 +-
>   drivers/gpu/drm/sti/sti_gdp.c                   |   2 +-
>   drivers/gpu/drm/sti/sti_hqvdp.c                 |   2 +-
>   drivers/gpu/drm/stm/ltdc.c                      |   2 +-

for stm,

Acked-by: Philippe Cornu <philippe.cornu@st.com>
Tested-by: Philippe Cornu <philippe.cornu@st.com>

Many thanks
Philippe :-)

>   drivers/gpu/drm/sun4i/sun4i_layer.c             |   2 +-
>   drivers/gpu/drm/tegra/dc.c                      |  12 +-
>   drivers/gpu/drm/tinydrm/core/tinydrm-pipe.c     |   2 +-
>   drivers/gpu/drm/vc4/vc4_plane.c                 |   2 +-
>   drivers/gpu/drm/virtio/virtgpu_plane.c          |   2 +-
>   drivers/gpu/drm/vmwgfx/vmwgfx_ldu.c             |   4 +-
>   drivers/gpu/drm/vmwgfx/vmwgfx_scrn.c            |   4 +-
>   drivers/gpu/drm/vmwgfx/vmwgfx_stdu.c            |   4 +-
>   drivers/gpu/drm/zte/zx_plane.c                  |   2 +-
>   include/drm/drm_mode_config.h                   |   6 +
>   include/drm/drm_plane.h                         |  22 +++-
>   include/drm/drm_simple_kms_helper.h             |   1 +
>   include/uapi/drm/drm_fourcc.h                   |  11 ++
>   include/uapi/drm/drm_mode.h                     |  50 ++++++++
>   48 files changed, 576 insertions(+), 52 deletions(-)
> 
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

      parent reply	other threads:[~2017-07-25 10:26 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-24  3:46 [PATCH 0/4] [v2] Blobifiers (FKA GET_PLANE2) Ben Widawsky
2017-07-24  3:46 ` [PATCH 1/4] drm: Plumb modifiers through plane init Ben Widawsky
2017-07-25  3:53   ` kbuild test robot
2017-07-25  5:40   ` kbuild test robot
2017-07-24  3:46 ` [PATCH 2/4] drm: Create a format/modifier blob Ben Widawsky
2017-07-25  4:48   ` kbuild test robot
2017-07-24  3:46 ` [PATCH 3/4] drm/i915: Add format modifiers for Intel Ben Widawsky
2017-07-24  3:46 ` [PATCH 4/4] drm/i915: Add support for CCS modifiers Ben Widawsky
2017-07-24 23:29   ` kbuild test robot
2017-07-24  3:52 ` ✗ Fi.CI.BAT: failure for Blobifiers (FKA GET_PLANE2) (rev3) Patchwork
2017-07-25 10:26 ` Philippe CORNU [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=d237489b-3772-5f9f-2abf-8e89658402ed@st.com \
    --to=philippe.cornu@st.com \
    --cc=ben@bwidawsk.net \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.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