From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.85_2 #1 (Red Hat Linux)) id 1bcoAC-0004Gf-FC for barebox@lists.infradead.org; Thu, 25 Aug 2016 06:29:24 +0000 Date: Thu, 25 Aug 2016 08:28:55 +0200 From: Sascha Hauer Message-ID: <20160825062855.GI20657@pengutronix.de> References: <1472035219-23917-1-git-send-email-p.zabel@pengutronix.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1472035219-23917-1-git-send-email-p.zabel@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: Re: [PATCH 1/3] video: switch to media bus formats To: Philipp Zabel Cc: barebox@lists.infradead.org On Wed, Aug 24, 2016 at 12:40:17PM +0200, Philipp Zabel wrote: > V4L2 pixel formats are supposed to describe video frames in memory. To > describe the pixel format on the hardware bus between display interface > and encoders, use media bus formats, which are more expressive. > > This allows to get rid of the custom GBR24 and LVDS666 fourccs. > > Signed-off-by: Philipp Zabel Applied, thanks Sascha > --- > drivers/video/imx-ipu-v3/imx-hdmi.c | 3 +- > drivers/video/imx-ipu-v3/imx-ipu-v3.h | 4 +- > drivers/video/imx-ipu-v3/imx-ldb.c | 7 +- > drivers/video/imx-ipu-v3/ipu-dc.c | 19 +++-- > drivers/video/imx-ipu-v3/ipu-prv.h | 2 - > drivers/video/imx-ipu-v3/ipufb.c | 21 +++-- > include/video/fourcc.h | 151 ---------------------------------- > include/video/media-bus-format.h | 137 ++++++++++++++++++++++++++++++ > 8 files changed, 165 insertions(+), 179 deletions(-) > create mode 100644 include/video/media-bus-format.h > > diff --git a/drivers/video/imx-ipu-v3/imx-hdmi.c b/drivers/video/imx-ipu-v3/imx-hdmi.c > index 8b251a5..17b6e4c 100644 > --- a/drivers/video/imx-ipu-v3/imx-hdmi.c > +++ b/drivers/video/imx-ipu-v3/imx-hdmi.c > @@ -22,6 +22,7 @@ > #include > #include > #include > +#include