From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DFC18C6FD1F for ; Wed, 22 Mar 2023 08:03:17 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3C91810E327; Wed, 22 Mar 2023 08:03:17 +0000 (UTC) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by gabe.freedesktop.org (Postfix) with ESMTPS id 51DC310E868 for ; Wed, 22 Mar 2023 08:03:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679472195; x=1711008195; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=QoQSBiHSuFz+gIFFZ9OZq2W/b3tXA3lJOkmYcr9k9K0=; b=JAFBPy2C1yZKB8VO+ra2bkmTpb3xH05dsLABeTx+BE/LbLVpFWLlqOrm yUH/b65w3WiX0tRGjWvlKk8HHdRHhpvlzjE+9WFQVU0i6ox78pwsJreiU 5HoH0FKwL/Ifa6ZP1OPEha7vF93xeMEt3J+D1gWY35t4eUrhBbPPMzrZu 1gOFkbOLNdbSLpYyYd1wx/L8f32tlusYHQKJr6aHZiDQdF+RW4aMXfi4j uWhCvCW4KRe+Vw0o/d5+Z6Bhgq7WkGo2e/8r+b69V4kMXOn/9M33/dmoY v8doYX+gx8CYJIvkEIjGzPUnEseeTSQlUgEIr2Peui2nuxd3Q4G7MQuwO A==; X-IronPort-AV: E=McAfee;i="6600,9927,10656"; a="322992920" X-IronPort-AV: E=Sophos;i="5.98,281,1673942400"; d="scan'208";a="322992920" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Mar 2023 01:03:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10656"; a="712130594" X-IronPort-AV: E=Sophos;i="5.98,281,1673942400"; d="scan'208";a="712130594" Received: from jlawryno-mobl.ger.corp.intel.com (HELO [10.249.146.128]) ([10.249.146.128]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Mar 2023 01:03:11 -0700 Message-ID: Date: Wed, 22 Mar 2023 09:03:09 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: [PATCH v4 7/8] accel/qaic: Add qaic driver to the build system Content-Language: en-US To: Jeffrey Hugo , ogabbay@kernel.org, airlied@gmail.com, daniel@ffwll.ch, stanislaw.gruszka@linux.intel.com References: <1679325074-5494-1-git-send-email-quic_jhugo@quicinc.com> <1679325074-5494-8-git-send-email-quic_jhugo@quicinc.com> From: Jacek Lawrynowicz Organization: Intel Technology Poland sp. z o.o. - ul. Slowackiego 173, 80-298 Gdansk - KRS 101882 - NIP 957-07-52-316 In-Reply-To: <1679325074-5494-8-git-send-email-quic_jhugo@quicinc.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: dafna@fastmail.com, linux-doc@vger.kernel.org, linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org, quic_ajitpals@quicinc.com, quic_pkanojiy@quicinc.com, quic_carlv@quicinc.com Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Hi, On 20.03.2023 16:11, Jeffrey Hugo wrote: > Now that we have all the components of a minimum QAIC which can boot and > run an AIC100 device, add the infrastructure that allows the QAIC driver > to be built. > > Signed-off-by: Jeffrey Hugo > Reviewed-by: Carl Vanderlip > Reviewed-by: Pranjal Ramajor Asha Kanojiya > Reviewed-by: Stanislaw Gruszka > Reviewed-by: Jacek Lawrynowicz > --- > drivers/accel/Kconfig | 1 + > drivers/accel/Makefile | 1 + > drivers/accel/qaic/Kconfig | 23 +++++++++++++++++++++++ > drivers/accel/qaic/Makefile | 13 +++++++++++++ > 4 files changed, 38 insertions(+) > create mode 100644 drivers/accel/qaic/Kconfig > create mode 100644 drivers/accel/qaic/Makefile > > diff --git a/drivers/accel/Kconfig b/drivers/accel/Kconfig > index c437206..64065fb 100644 > --- a/drivers/accel/Kconfig > +++ b/drivers/accel/Kconfig > @@ -26,5 +26,6 @@ menuconfig DRM_ACCEL > > source "drivers/accel/habanalabs/Kconfig" > source "drivers/accel/ivpu/Kconfig" > +source "drivers/accel/qaic/Kconfig" > > endif > diff --git a/drivers/accel/Makefile b/drivers/accel/Makefile > index 07aa77a..26caf43 100644 > --- a/drivers/accel/Makefile > +++ b/drivers/accel/Makefile > @@ -2,3 +2,4 @@ > > obj-y += habanalabs/ > obj-y += ivpu/ > +obj-$(CONFIG_DRM_ACCEL_QAIC) += qaic/ Use two tabs instead of two spaces here to align with the current version of this file on drm-misc-next. Regards, Jacek