From patchwork Fri Jun 17 11:09:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: AngeloGioacchino Del Regno X-Patchwork-Id: 583531 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 E142BC433EF for ; Fri, 17 Jun 2022 11:09:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1382116AbiFQLJf (ORCPT ); Fri, 17 Jun 2022 07:09:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39752 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1381649AbiFQLJe (ORCPT ); Fri, 17 Jun 2022 07:09:34 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F9926C574; Fri, 17 Jun 2022 04:09:33 -0700 (PDT) Received: from IcarusMOD.eternityproject.eu (2-237-20-237.ip236.fastwebnet.it [2.237.20.237]) (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: kholk11) by madras.collabora.co.uk (Postfix) with ESMTPSA id B9199660179A; Fri, 17 Jun 2022 12:09:31 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1655464172; bh=kG26VQ8Q/x/unvWddSRifHSxyfpmVSj9DL0msaHnGTk=; h=From:To:Cc:Subject:Date:From; b=SzZc7AaVQv6BGAz6/bQTRF7VdL+oQJ8Y+4L3ENHmaHaPTpwWr6CByK1pWvczLCZnK IHUHYfhfRL11eAzIUyL2O14QTYYXPON3437DiCYM+GxwQZAyjp6eTY5EIvyP/fcNka GE0dZFrn171c5+7rG9c5AUQgbh3n5HOCNoO0GZOPQYyB5N+T2CbbekkVEbIIj2we+w upQN7isUtnaH/rYvaLaxI19tinmeuCXhzHUOaY8CVo0scHEAGLhryv8qlpn2ez3FEV DLHOkp7fxRC8f6Krl28Yk/sQCsf0J7x6KA43UjHCHSkcQD5Ac9O1463VtNmWq/fg6z R45l4D5zWADKw== From: AngeloGioacchino Del Regno To: rafael@kernel.org Cc: viresh.kumar@linaro.org, matthias.bgg@gmail.com, angelogioacchino.delregno@collabora.com, rex-bc.chen@mediatek.com, jia-wei.chang@mediatek.com, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: [PATCH v2] cpufreq: Add MT8186 to cpufreq-dt-platdev blocklist Date: Fri, 17 Jun 2022 13:09:26 +0200 Message-Id: <20220617110926.90313-1-angelogioacchino.delregno@collabora.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org This SoC shall use the mediatek-cpufreq driver, or the system will crash upon any clock scaling request: add it to the cpufreq-dt-platdev blocklist. Fixes: 39b360102f3a ("cpufreq: mediatek: Add support for MT8186") Signed-off-by: AngeloGioacchino Del Regno Reviewed-by: Matthias Brugger --- v2: Moved fixes tag on top of SoB (oops!), added Matthias' R-b drivers/cpufreq/cpufreq-dt-platdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index 96de1536e1cb..2c96de3f2d83 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -127,6 +127,7 @@ static const struct of_device_id blocklist[] __initconst = { { .compatible = "mediatek,mt8173", }, { .compatible = "mediatek,mt8176", }, { .compatible = "mediatek,mt8183", }, + { .compatible = "mediatek,mt8186", }, { .compatible = "mediatek,mt8365", }, { .compatible = "mediatek,mt8516", },