From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yingjoe Chen Subject: Re: [RFC PATCH V4 2/4] media: platform: Add Mediatek sensor interface driver KConfig Date: Mon, 16 Sep 2019 09:18:11 +0800 Message-ID: <1568596691.26177.1.camel@mtksdaap41> References: <20190915065004.20257-1-louis.kuo@mediatek.com> <20190915065004.20257-3-louis.kuo@mediatek.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20190915065004.20257-3-louis.kuo@mediatek.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Louis Kuo Cc: devicetree@vger.kernel.org, Sean.Cheng@mediatek.com, laurent.pinchart+renesas@ideasonboard.com, Rynn.Wu@mediatek.com, christie.yu@mediatek.com, srv_heupstream@mediatek.com, Jerry-ch.Chen@mediatek.com, tfiga@chromium.org, keiichiw@chromium.org, jungo.lin@mediatek.com, sj.huang@mediatek.com, yuzhao@chromium.org, hans.verkuil@cisco.com, zwisler@chromium.org, frederic.chen@mediatek.com, matthias.bgg@gmail.com, linux-mediatek@lists.infradead.org, mchehab@kernel.org, linux-arm-kernel@lists.infradead.org, linux-media@vger.kernel.org List-Id: devicetree@vger.kernel.org On Sun, 2019-09-15 at 14:50 +0800, Louis Kuo wrote: > This patch adds KConfig for sensor interface driver. Sensor interface > driver > is a MIPI-CSI2 host driver, namely, a HW camera interface controller. > It support a widely adopted, simple, high-speed protocol primarily > intended > for point-to-point image and video transmission between cameras and host > devices. > > Signed-off-by: Louis Kuo > --- > drivers/media/platform/mtk-isp/Kconfig | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > create mode 100644 drivers/media/platform/mtk-isp/Kconfig Please squash this into driver patch. > diff --git a/drivers/media/platform/mtk-isp/Kconfig b/drivers/media/platform/mtk-isp/Kconfig > new file mode 100644 > index 000000000000..bc7fd01808b3 > --- /dev/null > +++ b/drivers/media/platform/mtk-isp/Kconfig > @@ -0,0 +1,17 @@ > +config MTK_SENINF > + bool "Mediatek mipi csi2 driver" MediaTek > + depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API > + depends on MEDIA_CAMERA_SUPPORT > + select V4L2_FWNODE > + > + default n Do not add 'default n' Remove the extra blank line. > + help > + This driver provides a mipi-csi2 host driver used as a > + interface to connect camera with Mediatek's MediaTek > + MT8183 SOCs. It is able to handle multiple cameras > + at the same time. > + > + Choose y if you want to use Mediatek SoCs to create image MediaTek > + capture application such as video recording and still image > + capture. > +