From nobody Sat Sep 21 23:35:59 2024 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 A71C6CCA487 for ; Fri, 1 Jul 2022 14:52:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233724AbiGAOv7 (ORCPT ); Fri, 1 Jul 2022 10:51:59 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47900 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233653AbiGAOvs (ORCPT ); Fri, 1 Jul 2022 10:51:48 -0400 Received: from mail-pg1-x529.google.com (mail-pg1-x529.google.com [IPv6:2607:f8b0:4864:20::529]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2CE7D31DE2 for ; Fri, 1 Jul 2022 07:51:47 -0700 (PDT) Received: by mail-pg1-x529.google.com with SMTP id 23so2595064pgc.8 for ; Fri, 01 Jul 2022 07:51:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=zZ3+Bck9CdXc48N2tcvwnMfepyRrmJsNT3BHHA0ynmw=; b=YnrGgqbg/4gNKd22gWIv7j8U6S1n+vomvkRInLzCjH1SphTbCWlZIr9IqjUEyBg+TP gwPqLwnFV1J+c+8ipFwtbJQ1wp8mVdHR2CzHjcepnzKYavtoyP1t2X9F319qsaL+yvln q/Fl5k320kUEnSwsN7O8SAS0LQ/Q0el9nM16g= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=zZ3+Bck9CdXc48N2tcvwnMfepyRrmJsNT3BHHA0ynmw=; b=TEjbPmydbHrk8W0lq22OmV+BykEVucLEoc+De1YlConFz1DfZauF/td4QZaKmbvrDX Rm7q/Bx7FYkk+/TPSxt6lHWFvLD03jo/rLPorXaxdclasDD0IIFsQq97mvnznu1xtiz1 9zhgS7U7R+XMKvsoNbptGSW5j3ZEj5TyO0DU3INaPW0WPjmw4V+ylGm02cKcAHox8HA+ aXs0w7/K1LwTiqvZA2KExcXWoYoeWZmm1ESxJA9ruZL7lyi7ldqWHNE324XV5wvjVs04 ZEbgGvWvXP0/f0I2P2Rx7xfpdYKiCkTMTH7WXTBTAiBvhQnADtr3cS1kTp3xUCRJD5R7 Qdtw== X-Gm-Message-State: AJIora8PKGtyM4nRlFd5Wb1z46r6JA4yhqmc6YVKPMUWcnaH7SCA5pLy kojfnQIA9Ji+ajuz9st9x90EGQ== X-Google-Smtp-Source: AGRyM1ti6dDLLmN4VHYASn13hEQLd6Lj+xpLHhnpmLhsbZQx47SR/6ELsciEy4txopZlULG/rZJxWQ== X-Received: by 2002:a63:3184:0:b0:40d:7801:e7e with SMTP id x126-20020a633184000000b0040d78010e7emr12640506pgx.333.1656687106684; Fri, 01 Jul 2022 07:51:46 -0700 (PDT) Received: from wenstp920.tpe.corp.google.com ([2401:fa00:1:10:59bf:8b47:50a0:b04f]) by smtp.gmail.com with ESMTPSA id i4-20020a17090332c400b0016a214e4afasm15780981plr.125.2022.07.01.07.51.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 01 Jul 2022 07:51:46 -0700 (PDT) From: Chen-Yu Tsai To: Michael Turquette , Stephen Boyd Cc: Chen-Yu Tsai , Matthias Brugger , AngeloGioacchino Del Regno , Rex-BC Chen , Chun-Jie Chen , linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/3] clk: mediatek: mt8183-mfgcfg: Simplify with mtk_clk_simple_*() Date: Fri, 1 Jul 2022 22:51:33 +0800 Message-Id: <20220701145133.1152387-4-wenst@chromium.org> X-Mailer: git-send-email 2.37.0.rc0.161.g10f37bed90-goog In-Reply-To: <20220701145133.1152387-1-wenst@chromium.org> References: <20220701145133.1152387-1-wenst@chromium.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" mtk_clk_simple_*() was added after the MT8183 clock drivers were merged. They provide shared boiler plate for clock providers that only have clock gates. Since the MFGCFG block needs its power domain enabled, it can't be completely converted to using the functions. Simplify the MT8183 mfgcfg clock driver using mtk_clk_simple_*(), enabling runtime PM at the same time as before. This also adds proper driver removal support. Since the mtk_clk_simple_probe() function allocates the clk_hw pointer array based on .num_clks given, it effectively requires there are no holes in the clock ID map. Check that the size of the array matches the number of clocks with a static assertion. Signed-off-by: Chen-Yu Tsai --- drivers/clk/mediatek/clk-mt8183-mfgcfg.c | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/drivers/clk/mediatek/clk-mt8183-mfgcfg.c b/drivers/clk/mediate= k/clk-mt8183-mfgcfg.c index d774edaf760b..61a3d02e44f5 100644 --- a/drivers/clk/mediatek/clk-mt8183-mfgcfg.c +++ b/drivers/clk/mediatek/clk-mt8183-mfgcfg.c @@ -26,28 +26,31 @@ static const struct mtk_gate mfg_clks[] =3D { GATE_MFG(CLK_MFG_BG3D, "mfg_bg3d", "mfg_sel", 0) }; =20 -static int clk_mt8183_mfg_probe(struct platform_device *pdev) -{ - struct clk_hw_onecell_data *clk_data; - struct device_node *node =3D pdev->dev.of_node; +static_assert(ARRAY_SIZE(mfg_clks) =3D=3D CLK_MFG_NR_CLK); =20 - pm_runtime_enable(&pdev->dev); +static const struct mtk_clk_desc mfg_desc =3D { + .clks =3D mfg_clks, + .num_clks =3D ARRAY_SIZE(mfg_clks), +}; =20 - clk_data =3D mtk_alloc_clk_data(CLK_MFG_NR_CLK); +static int clk_mt8183_mfg_probe(struct platform_device *pdev) +{ + int ret =3D devm_pm_runtime_enable(&pdev->dev); =20 - mtk_clk_register_gates_with_dev(node, mfg_clks, ARRAY_SIZE(mfg_clks), - clk_data, &pdev->dev); + if (ret) + return ret; =20 - return of_clk_add_hw_provider(node, of_clk_hw_onecell_get, clk_data); + return mtk_clk_simple_probe(pdev); } =20 static const struct of_device_id of_match_clk_mt8183_mfg[] =3D { - { .compatible =3D "mediatek,mt8183-mfgcfg", }, + { .compatible =3D "mediatek,mt8183-mfgcfg", .data =3D &mfg_desc }, {} }; =20 static struct platform_driver clk_mt8183_mfg_drv =3D { .probe =3D clk_mt8183_mfg_probe, + .remove =3D mtk_clk_simple_remove, .driver =3D { .name =3D "clk-mt8183-mfg", .of_match_table =3D of_match_clk_mt8183_mfg, --=20 2.37.0.rc0.161.g10f37bed90-goog