All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] R-Car DU: Add missing RGB pixel formats
@ 2019-03-28  7:07 ` Laurent Pinchart
  0 siblings, 0 replies; 66+ messages in thread
From: Laurent Pinchart @ 2019-03-28  7:07 UTC (permalink / raw)
  To: dri-devel, linux-media; +Cc: linux-renesas-soc, Maxime Ripard

Hello,

This patch series adds support for 16 missing RGB formats to the DU
driver. To do is, the formats are first added to the VSP1 driver.
Patches 1/9 to 3/9 define those formats in the V4L2 API, patches 4/9 to
6/9 add them to the VSP driver, and patches 7/9 to 9/9 finally add them
to the DU driver.

There's nothing very special here, but those patches are likely very
error-prone due to the many instances of very similar constructs. I
would thus appreciate careful review.

The new V4L2 4CCs match (or at least should match if I haven't made any
mistake) the DRM 4CCs, but the names of the format macros differ in
order to stick to the V4L2 naming scheme.

Laurent Pinchart (9):
  v4l: Add definitions for missing 32-bit RGB formats
  v4l: Add definitions for missing 16-bit RGB4444 formats
  v4l: Add definitions for missing 16-bit RGB555 formats
  media: vsp1: Add support for missing 32-bit RGB formats
  media: vsp1: Add support for missing 16-bit RGB444 formats
  media: vsp1: Add support for missing 16-bit RGB555 formats
  drm: rcar-du: Add support for missing 32-bit RGB formats
  drm: rcar-du: Add support for missing 16-bit RGB4444 formats
  drm: rcar-du: Add support for missing 16-bit RGB1555 formats

 .../media/uapi/v4l/pixfmt-packed-rgb.rst      | 436 ++++++++++++++++++
 drivers/gpu/drm/rcar-du/rcar_du_kms.c         |  80 ++++
 drivers/media/platform/vsp1/vsp1_pipe.c       |  70 +++
 include/uapi/linux/videodev2.h                |  16 +
 4 files changed, 602 insertions(+)

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 66+ messages in thread

end of thread, other threads:[~2019-07-09 12:56 UTC | newest]

Thread overview: 66+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-28  7:07 [PATCH 0/9] R-Car DU: Add missing RGB pixel formats Laurent Pinchart
2019-03-28  7:07 ` Laurent Pinchart
2019-03-28  7:07 ` [PATCH 1/9] v4l: Add definitions for missing 32-bit RGB formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-03-28 13:15   ` Jacopo Mondi
2019-03-28 13:15     ` Jacopo Mondi
2019-04-02 12:12     ` Laurent Pinchart
2019-04-02 12:12       ` Laurent Pinchart
2019-04-04 16:02       ` Jacopo Mondi
2019-04-04 16:02         ` Jacopo Mondi
2019-03-28  7:07 ` [PATCH 2/9] v4l: Add definitions for missing 16-bit RGB4444 formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-04 16:00   ` Jacopo Mondi
2019-04-04 16:00     ` Jacopo Mondi
2019-04-18  5:57     ` Laurent Pinchart
2019-04-18  5:57       ` Laurent Pinchart
2019-07-09 12:56   ` Hans Verkuil
2019-07-09 12:56     ` Hans Verkuil
2019-03-28  7:07 ` [PATCH 3/9] v4l: Add definitions for missing 16-bit RGB555 formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-04 15:57   ` Jacopo Mondi
2019-04-04 15:57     ` Jacopo Mondi
2019-04-18  6:25     ` Laurent Pinchart
2019-04-18  6:25       ` Laurent Pinchart
2019-04-18  6:27   ` [PATCH v1.1 " Laurent Pinchart
2019-04-18  6:27     ` Laurent Pinchart
2019-04-23 11:53     ` Jacopo Mondi
2019-04-23 11:53       ` Jacopo Mondi
2019-03-28  7:07 ` [PATCH 4/9] media: vsp1: Add support for missing 32-bit RGB formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-04 17:39   ` Jacopo Mondi
2019-04-04 17:39     ` Jacopo Mondi
2019-04-18  6:06     ` Laurent Pinchart
2019-04-18  6:06       ` Laurent Pinchart
2019-04-23 13:21       ` Jacopo Mondi
2019-04-23 13:21         ` Jacopo Mondi
2019-04-23 14:10         ` Laurent Pinchart
2019-04-23 14:10           ` Laurent Pinchart
2019-03-28  7:07 ` [PATCH 5/9] media: vsp1: Add support for missing 16-bit RGB444 formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-23 13:38   ` Jacopo Mondi
2019-04-23 13:38     ` Jacopo Mondi
2019-03-28  7:07 ` [PATCH 6/9] media: vsp1: Add support for missing 16-bit RGB555 formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-23 13:55   ` Jacopo Mondi
2019-04-23 13:55     ` Jacopo Mondi
2019-04-23 14:46     ` Laurent Pinchart
2019-04-23 14:46       ` Laurent Pinchart
2019-04-23 16:56       ` Jacopo Mondi
2019-04-23 16:56         ` Jacopo Mondi
2019-04-23 19:29         ` Laurent Pinchart
2019-04-23 19:29           ` Laurent Pinchart
2019-03-28  7:07 ` [PATCH 7/9] drm: rcar-du: Add support for missing 32-bit RGB formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-23 14:05   ` Jacopo Mondi
2019-04-23 14:05     ` Jacopo Mondi
2019-03-28  7:07 ` [PATCH 8/9] drm: rcar-du: Add support for missing 16-bit RGB4444 formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-23 14:06   ` Jacopo Mondi
2019-04-23 14:06     ` Jacopo Mondi
2019-03-28  7:07 ` [PATCH 9/9] drm: rcar-du: Add support for missing 16-bit RGB1555 formats Laurent Pinchart
2019-03-28  7:07   ` Laurent Pinchart
2019-04-23 14:09   ` Jacopo Mondi
2019-04-23 14:09     ` Jacopo Mondi
2019-04-20 13:09 ` [PATCH 0/9] R-Car DU: Add missing RGB pixel formats Laurent Pinchart
2019-04-20 13:09   ` Laurent Pinchart

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.