From patchwork Thu Dec 10 17:00:28 2009 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: 2282 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Thu, 10 Dec 2009 17:00:42 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Thu, 10 Dec 2009 15:01:43 -0200 (BRST) Received: from vger.kernel.org ([209.132.176.167]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1NImNe-0002Bd-4x; Thu, 10 Dec 2009 17:00:42 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761192AbZLJRAd (ORCPT + 1 other); Thu, 10 Dec 2009 12:00:33 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761199AbZLJRAd (ORCPT ); Thu, 10 Dec 2009 12:00:33 -0500 Received: from comal.ext.ti.com ([198.47.26.152]:40620 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761006AbZLJRAa (ORCPT ); Thu, 10 Dec 2009 12:00:30 -0500 Received: from dlep35.itg.ti.com ([157.170.170.118]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id nBAH0a5N029438 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 10 Dec 2009 11:00:36 -0600 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep35.itg.ti.com (8.13.7/8.13.7) with ESMTP id nBAH0W0J023383; Thu, 10 Dec 2009 11:00:32 -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 nBAH0VZ19824; Thu, 10 Dec 2009 11:00:31 -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 nBAH0Vvs010586; Thu, 10 Dec 2009 12:00:31 -0500 Received: (from a0868495@localhost) by gt516km11.gt.design.ti.com (8.13.1/8.13.1/Submit) id nBAH0VHL010583; Thu, 10 Dec 2009 12:00:31 -0500 From: m-karicheri2@ti.com To: linux-media@vger.kernel.org, hverkuil@xs4all.nl, khilman@deeprootsystems.com, nsekhar@ti.com, hvaibhav@ti.com Cc: davinci-linux-open-source@linux.davincidsp.com, Muralidharan Karicheri Subject: [PATCH - v1 5/6] V4L - vpfe capture - build environment for ISIF driver Date: Thu, 10 Dec 2009 12:00:28 -0500 Message-Id: <1260464429-10537-5-git-send-email-m-karicheri2@ti.com> X-Mailer: git-send-email 1.6.0.4 In-Reply-To: <1260464429-10537-4-git-send-email-m-karicheri2@ti.com> References: <1260464429-10537-1-git-send-email-m-karicheri2@ti.com> <1260464429-10537-2-git-send-email-m-karicheri2@ti.com> <1260464429-10537-3-git-send-email-m-karicheri2@ti.com> <1260464429-10537-4-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: Muralidharan Karicheri Adding Makefile and Kconfig for ISIF driver Signed-off-by: Muralidharan Karicheri --- Applies to linux-next tree drivers/media/video/Kconfig | 15 ++++++++++++++- drivers/media/video/davinci/Makefile | 1 + 2 files changed, 15 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index 9dc74c9..8250c68 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig @@ -552,7 +552,7 @@ config VIDEO_VPSS_SYSTEM depends on ARCH_DAVINCI help Support for vpss system module for video driver - default y + default n config VIDEO_VPFE_CAPTURE tristate "VPFE Video Capture Driver" @@ -596,6 +596,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