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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4E572C4332F for ; Tue, 8 Nov 2022 23:23:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230116AbiKHXXF (ORCPT ); Tue, 8 Nov 2022 18:23:05 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60912 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229925AbiKHXW5 (ORCPT ); Tue, 8 Nov 2022 18:22:57 -0500 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BBA6831EDD for ; Tue, 8 Nov 2022 15:22:51 -0800 (PST) Received: from notapiano.myfiosgateway.com (zone.collabora.co.uk [167.235.23.81]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: nfraprado) by madras.collabora.co.uk (Postfix) with ESMTPSA id 49AAF66029AE; Tue, 8 Nov 2022 23:22:48 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1667949770; bh=PgRFecqSHUBqeFYeoDo3xngEsCy9Ku4bVHY4a2Yf0JA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=K89ssczKan6wHBCRu9+781bge1G3Ifp2ME1UEWLqjpDsriUS06dL+0ZUhFNEZAfBG VIP1vC8sUJSZhid/M4yCLkOOTLWDR2acfuQR1rtxrputZCYRqoIEnRArznw0uFHHTa 7GDK5p+7R4fpuzGQXy7V8xL4JLzfUCVwYpe42buzCbXKnslXT3CdTvRDFW5mRJXZ+m 2yOCQRf3Z33WwpG4r0TrrFbJ1qLZamtnaF8Hw6PxTzm/+yESM2VqNGO90LiVk/CvXJ Jj6TttVwRTxIJm2ljeDsNEasYJNFuTG0+af/LrPU+tlY/8IeV+wQOFdBPm9x7paUM0 +sRTLjq3ZcNQw== From: =?UTF-8?q?N=C3=ADcolas=20F=2E=20R=2E=20A=2E=20Prado?= To: Matthias Brugger Cc: kernel@collabora.com, AngeloGioacchino Del Regno , =?UTF-8?q?N=C3=ADcolas=20F=2E=20R=2E=20A=2E=20Prado?= , Arnd Bergmann , Bjorn Andersson , Catalin Marinas , Dmitry Baryshkov , Krzysztof Kozlowski , Marcel Ziswiler , Mark Brown , Shawn Guo , Vinod Koul , Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 06/13] arm64: defconfig: Enable MTK_CMDQ Date: Tue, 8 Nov 2022 18:22:21 -0500 Message-Id: <20221108232228.1177199-7-nfraprado@collabora.com> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221108232228.1177199-1-nfraprado@collabora.com> References: <20221108232228.1177199-1-nfraprado@collabora.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Enable support for the MediaTek Command Queue (CMDQ). This implicitly enables MTK_CMDQ_MBOX, the Command Queue Mailbox, which is used as part of the display pipeline. By enabling this on the defconfig we make it effortless to test the relevant hardware on CI systems like KernelCI. Signed-off-by: NĂ­colas F. R. A. Prado --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index a0cb700bf0af..5e752a9afed7 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -1137,6 +1137,7 @@ CONFIG_RASPBERRYPI_POWER=y CONFIG_FSL_DPAA=y CONFIG_FSL_MC_DPIO=y CONFIG_FSL_RCPM=y +CONFIG_MTK_CMDQ=m CONFIG_MTK_DEVAPC=m CONFIG_MTK_PMIC_WRAP=y CONFIG_QCOM_AOSS_QMP=y -- 2.38.1