From patchwork Mon Feb 1 22:27:14 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: m-karicheri2@ti.com X-Patchwork-Id: 2547 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Mon, 01 Feb 2010 22:27:31 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Mon, 01 Feb 2010 20:28:37 -0200 (BRST) Received: from vger.kernel.org ([209.132.180.67]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1Nc4jy-0005gZ-Tm; Mon, 01 Feb 2010 22:27:31 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754929Ab0BAW1Z (ORCPT + 1 other); Mon, 1 Feb 2010 17:27:25 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:41906 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754895Ab0BAW1X (ORCPT ); Mon, 1 Feb 2010 17:27:23 -0500 Received: from dlep34.itg.ti.com ([157.170.170.115]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id o11MRLFh006532 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 1 Feb 2010 16:27:22 -0600 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep34.itg.ti.com (8.13.7/8.13.7) with ESMTP id o11MRLjf010718; Mon, 1 Feb 2010 16:27:21 -0600 (CST) Received: from gt516km11.gt.design.ti.com (gt516km11.gt.design.ti.com [158.218.100.179]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id o11MRKZ22576; Mon, 1 Feb 2010 16:27:20 -0600 (CST) Received: from gt516km11.gt.design.ti.com (localhost.localdomain [127.0.0.1]) by gt516km11.gt.design.ti.com (8.13.1/8.13.1) with ESMTP id o11MRJdX029109; Mon, 1 Feb 2010 17:27:20 -0500 Received: (from a0868495@localhost) by gt516km11.gt.design.ti.com (8.13.1/8.13.1/Submit) id o11MRJfv029106; Mon, 1 Feb 2010 17:27:19 -0500 From: m-karicheri2@ti.com To: linux-media@vger.kernel.org, khilman@deeprootsystems.com Cc: hverkuil@xs4all.nl, davinci-linux-open-source@linux.davincidsp.com, Murali Karicheri Subject: [PATCH v3 5/6] V4L - vpfe capture - build environment for isif driver Date: Mon, 1 Feb 2010 17:27:14 -0500 Message-Id: <1265063238-29072-2-git-send-email-m-karicheri2@ti.com> X-Mailer: git-send-email 1.6.0.4 In-Reply-To: <1265063238-29072-1-git-send-email-m-karicheri2@ti.com> References: <1265063238-29072-1-git-send-email-m-karicheri2@ti.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Murali Karicheri Adding Makefile and Kconfig for ISIF driver Reviewed-by: Hans Verkuil Reviewed-by: Sergei Shtylyov Signed-off-by: Hans Verkuil Signed-off-by: Murali Karicheri --- Applies to linux-next tree - rebasing to latest tree for merge (v3) drivers/media/video/Kconfig | 14 +++++++++++++- drivers/media/video/davinci/Makefile | 1 + 2 files changed, 14 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index 64682bf..d92268d 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig @@ -548,7 +548,6 @@ config VIDEO_VPSS_SYSTEM depends on ARCH_DAVINCI help Support for vpss system module for video driver - default y config VIDEO_VPFE_CAPTURE tristate "VPFE Video Capture Driver" @@ -592,6 +591,19 @@ config VIDEO_DM355_CCDC To compile this driver as a module, choose M here: the module will be called vpfe. +config VIDEO_ISIF + tristate "ISIF HW module" + depends on ARCH_DAVINCI_DM365 && VIDEO_VPFE_CAPTURE + select VIDEO_VPSS_SYSTEM + default y + help + Enables ISIF hw module. This is the hardware module for + configuring ISIF in VPFE to capture Raw Bayer RGB data from + a image sensor or YUV data from a YUV source. + + To compile this driver as a module, choose M here: the + module will be called vpfe. + source "drivers/media/video/bt8xx/Kconfig" config VIDEO_PMS diff --git a/drivers/media/video/davinci/Makefile b/drivers/media/video/davinci/Makefile index 1a8b8f3..a379557 100644 --- a/drivers/media/video/davinci/Makefile +++ b/drivers/media/video/davinci/Makefile @@ -15,3 +15,4 @@ obj-$(CONFIG_VIDEO_VPSS_SYSTEM) += vpss.o obj-$(CONFIG_VIDEO_VPFE_CAPTURE) += vpfe_capture.o obj-$(CONFIG_VIDEO_DM6446_CCDC) += dm644x_ccdc.o obj-$(CONFIG_VIDEO_DM355_CCDC) += dm355_ccdc.o +obj-$(CONFIG_VIDEO_ISIF) += isif.o