From patchwork Mon Oct 18 10:13:29 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: AngeloGioacchino Del Regno X-Patchwork-Id: 12565875 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AC510C433FE for ; Mon, 18 Oct 2021 10:15:11 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7C9B060E90 for ; Mon, 18 Oct 2021 10:15:11 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 7C9B060E90 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=collabora.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=OSspWt5dNGFN4R3ZpyX6/z/C8efI0myzFzvm4mks5Yc=; b=WMp4brsytirMEq AFY3qwB5c6XPxaLQ7cwx6eozp5e8f6bNDK+7SsPMnEhGj5/wBksC9ua4JuBR1M/qSFCDP1CDmDyPp mfrQc3tSbCymSdBiD3gIjzowtsBFjR4gOLJBufnUmA2F6uqiNUBPEKrJ4ZwfM8PRWqrdUMgVel1FJ DvRzB+B/CE3CCDaAF+HsxsJDM/+xAT44xWj+QziJxmMtvnQ8+4eo5tTy63XUT2l9EBgrrP8nbgT1X u5e63KAjh3SrlAD063CXyNeHboEYtUPoLftigmQ9F4vaP2LdgHLexXhLp2iraLoKe0Z0h7qx3nHgP qbksj2nBwnYehkYzvnKw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mcPeQ-00Evim-9E; Mon, 18 Oct 2021 10:13:50 +0000 Received: from bhuna.collabora.co.uk ([46.235.227.227]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mcPeM-00Evea-1N for linux-arm-kernel@lists.infradead.org; Mon, 18 Oct 2021 10:13:47 +0000 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: kholk11) with ESMTPSA id 3A1E71F42B3B From: AngeloGioacchino Del Regno To: linux-arm-kernel@lists.infradead.org Cc: catalin.marinas@arm.com, will@kernel.org, shawnguo@kernel.org, bjorn.andersson@linaro.org, krzk@kernel.org, geert+renesas@glider.be, vkoul@kernel.org, jagan@amarulasolutions.com, agx@sigxcpu.org, biju.das.jz@bp.renesas.com, enric.balletbo@collabora.com, aford173@gmail.com, nm@ti.com, andrey.zhizhikin@leica-geosystems.com, saravanak@google.com, linux-kernel@vger.kernel.org, AngeloGioacchino Del Regno Subject: [PATCH] arm64: defconfig: Enable RTC_DRV_MT6397 as module Date: Mon, 18 Oct 2021 12:13:29 +0200 Message-Id: <20211018101329.360892-1-angelogioacchino.delregno@collabora.com> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211018_031346_243599_E0D4C7EC X-CRM114-Status: UNSURE ( 7.76 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Enable this driver to let RTC probe on various MediaTek SoCs, including mt6358, mt6795 and mt8173: these all have a DT node to probe the RTC. Also, having a RTC in place is necessary for certain KernelCI suspend tests to run. Signed-off-by: AngeloGioacchino Del Regno --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 86224aa3a74b..be132058a1ed 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -922,6 +922,7 @@ CONFIG_RTC_DRV_PM8XXX=m CONFIG_RTC_DRV_TEGRA=y CONFIG_RTC_DRV_SNVS=m CONFIG_RTC_DRV_IMX_SC=m +CONFIG_RTC_DRV_MT6397=m CONFIG_RTC_DRV_XGENE=y CONFIG_DMADEVICES=y CONFIG_DMA_BCM2835=y