From patchwork Fri Nov 25 14:57:40 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Todor Tomov X-Patchwork-Id: 84152 Delivered-To: patch@linaro.org Received: by 10.140.20.101 with SMTP id 92csp154416qgi; Fri, 25 Nov 2016 07:06:13 -0800 (PST) X-Received: by 10.98.144.86 with SMTP id a83mr8199918pfe.107.1480086373304; Fri, 25 Nov 2016 07:06:13 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 189si45058064pgi.82.2016.11.25.07.06.13; Fri, 25 Nov 2016 07:06:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-media-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-media-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-media-owner@vger.kernel.org; dmarc=fail (p=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755006AbcKYPF6 (ORCPT + 4 others); Fri, 25 Nov 2016 10:05:58 -0500 Received: from ns.mm-sol.com ([37.157.136.199]:39769 "EHLO extserv.mm-sol.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753651AbcKYPFg (ORCPT ); Fri, 25 Nov 2016 10:05:36 -0500 Received: from mms-0439.qualcomm.mm-sol.com (unknown [37.157.136.206]) by extserv.mm-sol.com (Postfix) with ESMTPSA id 1574D4F888; Fri, 25 Nov 2016 16:57:44 +0200 (EET) From: Todor Tomov To: mchehab@kernel.org, laurent.pinchart+renesas@ideasonboard.com, hans.verkuil@cisco.com, javier@osg.samsung.com, s.nawrocki@samsung.com, linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: bjorn.andersson@linaro.org, srinivas.kandagatla@linaro.org, Todor Tomov Subject: [PATCH 10/10] media: camss: Add Makefiles and Kconfig files Date: Fri, 25 Nov 2016 16:57:40 +0200 Message-Id: <1480085860-28330-1-git-send-email-todor.tomov@linaro.org> X-Mailer: git-send-email 1.9.1 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Add Makefiles and Kconfig files to build the camss driver. Signed-off-by: Todor Tomov --- drivers/media/platform/qcom/Kconfig | 5 +++++ drivers/media/platform/qcom/Makefile | 1 + drivers/media/platform/qcom/camss-8x16/Makefile | 12 ++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 drivers/media/platform/qcom/Kconfig create mode 100644 drivers/media/platform/qcom/Makefile create mode 100644 drivers/media/platform/qcom/camss-8x16/Makefile -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/media/platform/qcom/Kconfig b/drivers/media/platform/qcom/Kconfig new file mode 100644 index 0000000..743ab88 --- /dev/null +++ b/drivers/media/platform/qcom/Kconfig @@ -0,0 +1,5 @@ + +menuconfig VIDEO_QCOM_CAMSS + tristate "Qualcomm 8x16 V4L2 Camera Subsystem driver" + depends on ARCH_QCOM && VIDEO_V4L2 + select VIDEOBUF2_DMA_CONTIG diff --git a/drivers/media/platform/qcom/Makefile b/drivers/media/platform/qcom/Makefile new file mode 100644 index 0000000..2d73819 --- /dev/null +++ b/drivers/media/platform/qcom/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_VIDEO_QCOM_CAMSS) += camss-8x16/ diff --git a/drivers/media/platform/qcom/camss-8x16/Makefile b/drivers/media/platform/qcom/camss-8x16/Makefile new file mode 100644 index 0000000..839e5f6 --- /dev/null +++ b/drivers/media/platform/qcom/camss-8x16/Makefile @@ -0,0 +1,12 @@ +# Makefile for Qualcomm CAMSS driver + +ccflags-y += -Idrivers/media/platform/qcom/camss +qcom-camss-objs += \ + camss.o \ + csid.o \ + csiphy.o \ + ispif.o \ + vfe.o \ + video.o \ + +obj-$(CONFIG_VIDEO_QCOM_CAMSS) += qcom-camss.o