Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752871AbbBBO6G (ORCPT ); Mon, 2 Feb 2015 09:58:06 -0500 Received: from mailout3.w2.samsung.com ([211.189.100.13]:34660 "EHLO usmailout3.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752785AbbBBO6E (ORCPT ); Mon, 2 Feb 2015 09:58:04 -0500 X-AuditID: cbfec372-b7fa26d000003901-9c-54cf90794081 Date: Mon, 02 Feb 2015 12:57:55 -0200 From: Mauro Carvalho Chehab To: Boris Brezillon Cc: Hans Verkuil , Laurent Pinchart , linux-media@vger.kernel.org, Nicolas Ferre , Jean-Christophe Plagniol-Villard , Alexandre Belloni , linux-kernel@vger.kernel.org Subject: Re: [RESEND PATCH v2] [media] Add RGB444_1X12 and RGB565_1X16 media bus formats Message-id: <20150202125755.5bf5ecc9.m.chehab@samsung.com> In-reply-to: <1420544615-18788-1-git-send-email-boris.brezillon@free-electrons.com> References: <1420544615-18788-1-git-send-email-boris.brezillon@free-electrons.com> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-redhat-linux-gnu) MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrOLMWRmVeSWpSXmKPExsVy+t/hYN3KCedDDM5cNLHouLaYyeLAi4Us Fkt+7mKy6Jy4hN3i8q45bBY9G7ayWny73Mxuse7hCyYHDo8Fv7ayeEz5vZHV48mmi4wesztm snq8unCHxePzJrkAtigum5TUnMyy1CJ9uwSujN+/epgKWlUq5u04w97AOFO2i5GTQ0LARGLZ tatsELaYxIV764FsLg4hgSWMEss2TmSFcBqZJN7uP88CUsUioCoxdcIkVhCbTcBI4lVjC5gt ImAh0fHwKNgkZoGDTBLrr6p0MXJwCAtESew6wQMS5hWwkmg/1M8OYnMKhEq8nfafCcQWEgiR OPjtKSPEEc4SR46+YYGoF5T4MfkeC8RILYnN25pYIWx5ic1r3jJPYBSYhaRsFpKyWUjKFjAy r2IULS1OLihOSs811CtOzC0uzUvXS87P3cQICfyiHYzPNlgdYhTgYFTi4T0gfT5EiDWxrLgy 9xCjBAezkgivhgVQiDclsbIqtSg/vqg0J7X4ECMTB6dUA6OUl+zSTcqNzrON8g5Orvykdn5G gXnzdjGPjl1qV3vmPJqez6S8nzt+Uopq5XqfqyYKYa62fQ0rZu0S3xS6s+jMfGc5B3aLI9Oj GqZ11YlfFG0xddp0w4NvnQ+XZ7ViwvxLx1P+T1u2uKomadOP6uspAUu1/U1XJWlc/vQgW7zf orDWev6WJCWW4oxEQy3mouJEACzODRhaAgAA Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4746 Lines: 117 Em Tue, 6 Jan 2015 12:43:35 +0100 Boris Brezillon escreveu: > Add RGB444_1X12 and RGB565_1X16 format definitions and update the > documentation. > > Signed-off-by: Boris Brezillon > Acked-by: Mauro Carvalho Chehab > Acked-by: Sakari Ailus > --- > Hi Mauro, Sakari, > > This patch has been rejected as 'Not Applicable'. > Is there anyting wrong in it ? I was expecting that this patch would be merged together with the remaining series, via the DRM tree. That's basically why I gave my ack: https://lkml.org/lkml/2014/11/3/661 HINT: when a subsystem maintainer gives an ack, that likely means that he expects that the patch will be applied via some other tree. Regards, Mauro > > Best Regards, > > Boris > > Documentation/DocBook/media/v4l/subdev-formats.xml | 40 ++++++++++++++++++++++ > include/uapi/linux/media-bus-format.h | 4 ++- > 2 files changed, 43 insertions(+), 1 deletion(-) > > diff --git a/Documentation/DocBook/media/v4l/subdev-formats.xml b/Documentation/DocBook/media/v4l/subdev-formats.xml > index c5ea868..be57efa 100644 > --- a/Documentation/DocBook/media/v4l/subdev-formats.xml > +++ b/Documentation/DocBook/media/v4l/subdev-formats.xml > @@ -192,6 +192,24 @@ see . > > > > + > + MEDIA_BUS_FMT_RGB444_1X12 > + 0x100d > + > + &dash-ent-20; > + r3 > + r2 > + r1 > + r0 > + g3 > + g2 > + g1 > + g0 > + b3 > + b2 > + b1 > + b0 > + > > MEDIA_BUS_FMT_RGB444_2X8_PADHI_BE > 0x1001 > @@ -304,6 +322,28 @@ see . > g4 > g3 > > + > + MEDIA_BUS_FMT_RGB565_1X16 > + 0x100d > + > + &dash-ent-16; > + r4 > + r3 > + r2 > + r1 > + r0 > + g5 > + g4 > + g3 > + g2 > + g1 > + g0 > + b4 > + b3 > + b2 > + b1 > + b0 > + > > MEDIA_BUS_FMT_BGR565_2X8_BE > 0x1005 > diff --git a/include/uapi/linux/media-bus-format.h b/include/uapi/linux/media-bus-format.h > index 23b4090..37091c6 100644 > --- a/include/uapi/linux/media-bus-format.h > +++ b/include/uapi/linux/media-bus-format.h > @@ -33,11 +33,13 @@ > > #define MEDIA_BUS_FMT_FIXED 0x0001 > > -/* RGB - next is 0x100e */ > +/* RGB - next is 0x1010 */ > +#define MEDIA_BUS_FMT_RGB444_1X12 0x100e > #define MEDIA_BUS_FMT_RGB444_2X8_PADHI_BE 0x1001 > #define MEDIA_BUS_FMT_RGB444_2X8_PADHI_LE 0x1002 > #define MEDIA_BUS_FMT_RGB555_2X8_PADHI_BE 0x1003 > #define MEDIA_BUS_FMT_RGB555_2X8_PADHI_LE 0x1004 > +#define MEDIA_BUS_FMT_RGB565_1X16 0x100f > #define MEDIA_BUS_FMT_BGR565_2X8_BE 0x1005 > #define MEDIA_BUS_FMT_BGR565_2X8_LE 0x1006 > #define MEDIA_BUS_FMT_RGB565_2X8_BE 0x1007 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/