Received: by 2002:a05:6a10:16a7:0:0:0:0 with SMTP id gp39csp252416pxb; Thu, 12 Nov 2020 02:59:46 -0800 (PST) X-Google-Smtp-Source: ABdhPJzARhWpW8OJ1fxzcsr93qEs9OZnfBaiIV9PQy3JdaPVQH3byCySV1sOddb3jcRTKBXQ8dNS X-Received: by 2002:a17:906:c0d1:: with SMTP id bn17mr30597200ejb.114.1605178786557; Thu, 12 Nov 2020 02:59:46 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1605178786; cv=none; d=google.com; s=arc-20160816; b=gUF6anW4jY88+iAY4v1ar68udDxxRiAeJL/+rD+bvuf4a5mOdmZ9Hofvg+vK7eMmXu de+XaR4lAZZ+OVw8IUPv9tYLTrg3F07EPLc82gPqKtF/8Ef3bNlgIbQZtP9y+J5wPwiU RbQ237BojizWqVEEARyQgMmZTsdjDfto0lgGuvD8eEi84xSzFI/eviu/x3LyP5cjp0u9 jIMTkYC8AejO1AfNSLMg/rrBH9B71b9nIWFiTb6aH21V2TDt5h6gRfcqv2p7DlId/TIu dot/6Z9THxWQr48FJH2maVXdc9HdoF0vM8xyoY9kKpeEKOSM3pDxCgXC8tL2m8gtZACg TVVA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:message-id:date:subject:to:from; bh=o3bhiO2lnDeGfpxQ9vP0Tfk+R3urV8ffbHBWxWzWfJw=; b=bU7i7VESDzB2J4f+qmKliBfwq1mTi6aE4E1UNB9atrS7aEY5kwbt25PFHaQ8Qp2eTO wqhP6vDwQugSOs0EehKI1b9+efh77DTB/I26xH8qYvA+FwHZFOZMdA1TDsJLAswRDY5l DlHhSLUl+tnNLiiKsiOMwe6fuk6RmvG31AgkTQKlXVKynOya04tK3UJmK45a1D1kZqRh ldixKrArfHSBq2qsBjcH7aU6eJjFjs+FSOMQF9imfOZbZYPv7h2KD6Y9UuJv9y2dHx9c pCm3pRQRPXblHyiPun1zly0uBIKQEvaJRIrsGg5RmABGjV/qGikEBaR86S63Mipm3GXa PbYg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id b17si3828810edw.47.2020.11.12.02.59.24; Thu, 12 Nov 2020 02:59:46 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727845AbgKLK5t (ORCPT + 99 others); Thu, 12 Nov 2020 05:57:49 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:8072 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725966AbgKLK5t (ORCPT ); Thu, 12 Nov 2020 05:57:49 -0500 Received: from DGGEMS407-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4CWz8F6KLnzLxDh; Thu, 12 Nov 2020 18:57:33 +0800 (CST) Received: from huawei.com (10.151.151.249) by DGGEMS407-HUB.china.huawei.com (10.3.19.207) with Microsoft SMTP Server id 14.3.487.0; Thu, 12 Nov 2020 18:57:40 +0800 From: Dongjiu Geng To: , , , , , Subject: [PATCH V3] clk: hisilicon: refine hi3620_mmc_clk_init() and fix memory leak issues Date: Thu, 12 Nov 2020 19:22:14 +0000 Message-ID: <20201112192214.48926-1-gengdongjiu@huawei.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.151.151.249] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Refine hi3620_mmc_clk_init() to use of_clk_add_hw_provider() instead of of_clk_add_provider(), the called function hisi_register_clk_mmc() returns 'clk_hw *' to adapt to this change. Also free memory mapping and free hw_data if clock initialization is failed. Fix the memory leak issues in hisi_clk_init(). Fixes: 75af25f581b1 ("clk: hisi: remove static variable") Fixes: 62ac983b6141 ("clk: hisilicon: add hi3620_mmc_clks") Cc: Markus Elfring Signed-off-by: Dongjiu Geng --- v2->v3: 1. Refind hi3620_mmc_clk_init() and hisi_register_clk_mmc() in order to use of_clk_add_hw_provider(). 2. Fix the issue that incorrectly free data even clock is initialized successfully. --- drivers/clk/hisilicon/clk-hi3620.c | 44 ++++++++++++++++++------------ drivers/clk/hisilicon/clk.c | 11 ++++---- 2 files changed, 33 insertions(+), 22 deletions(-) diff --git a/drivers/clk/hisilicon/clk-hi3620.c b/drivers/clk/hisilicon/clk-hi3620.c index a3d04c7c3da8..3dec48174560 100644 --- a/drivers/clk/hisilicon/clk-hi3620.c +++ b/drivers/clk/hisilicon/clk-hi3620.c @@ -408,12 +408,13 @@ static const struct clk_ops clk_mmc_ops = { .recalc_rate = mmc_clk_recalc_rate, }; -static struct clk *hisi_register_clk_mmc(struct hisi_mmc_clock *mmc_clk, +static struct clk_hw *hisi_register_clk_mmc(struct hisi_mmc_clock *mmc_clk, void __iomem *base, struct device_node *np) { struct clk_mmc *mclk; - struct clk *clk; + struct clk_hw *hw; struct clk_init_data init; + int err; mclk = kzalloc(sizeof(*mclk), GFP_KERNEL); if (!mclk) @@ -439,17 +440,22 @@ static struct clk *hisi_register_clk_mmc(struct hisi_mmc_clock *mmc_clk, mclk->sam_off = mmc_clk->sam_off; mclk->sam_bits = mmc_clk->sam_bits; - clk = clk_register(NULL, &mclk->hw); - if (WARN_ON(IS_ERR(clk))) + hw = &mclk->hw; + err = clk_hw_register(NULL, hw); + + if (err) { kfree(mclk); - return clk; + return ERR_PTR(err); + } + + return hw; } static void __init hi3620_mmc_clk_init(struct device_node *node) { void __iomem *base; - int i, num = ARRAY_SIZE(hi3620_mmc_clks); - struct clk_onecell_data *clk_data; + int i, ret, num = ARRAY_SIZE(hi3620_mmc_clks); + struct clk_hw_onecell_data *hw_data; if (!node) { pr_err("failed to find pctrl node in DTS\n"); @@ -462,22 +468,26 @@ static void __init hi3620_mmc_clk_init(struct device_node *node) return; } - clk_data = kzalloc(sizeof(*clk_data), GFP_KERNEL); - if (WARN_ON(!clk_data)) - return; - - clk_data->clks = kcalloc(num, sizeof(*clk_data->clks), GFP_KERNEL); - if (!clk_data->clks) - return; + hw_data = kzalloc(struct_size(hw_data, hws, num), GFP_KERNEL); + if (WARN_ON(!hw_data)) + goto unmap_io; for (i = 0; i < num; i++) { struct hisi_mmc_clock *mmc_clk = &hi3620_mmc_clks[i]; - clk_data->clks[mmc_clk->id] = + hw_data->hws[mmc_clk->id] = hisi_register_clk_mmc(mmc_clk, base, node); } - clk_data->clk_num = num; - of_clk_add_provider(node, of_clk_src_onecell_get, clk_data); + hw_data->num = num; + ret = of_clk_add_hw_provider(node, of_clk_hw_onecell_get, hw_data); + if (ret < 0) + goto free_hw_data; + return; + +free_hw_data: + kfree(hw_data); +unmap_io: + iounmap(base); } CLK_OF_DECLARE(hi3620_mmc_clk, "hisilicon,hi3620-mmc-clock", hi3620_mmc_clk_init); diff --git a/drivers/clk/hisilicon/clk.c b/drivers/clk/hisilicon/clk.c index 54d9fdc93599..da655683710f 100644 --- a/drivers/clk/hisilicon/clk.c +++ b/drivers/clk/hisilicon/clk.c @@ -65,25 +65,26 @@ struct hisi_clock_data *hisi_clk_init(struct device_node *np, base = of_iomap(np, 0); if (!base) { pr_err("%s: failed to map clock registers\n", __func__); - goto err; + return NULL; } clk_data = kzalloc(sizeof(*clk_data), GFP_KERNEL); if (!clk_data) - goto err; + goto unmap_io; clk_data->base = base; clk_table = kcalloc(nr_clks, sizeof(*clk_table), GFP_KERNEL); if (!clk_table) - goto err_data; + goto free_clk_data; clk_data->clk_data.clks = clk_table; clk_data->clk_data.clk_num = nr_clks; of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data->clk_data); return clk_data; -err_data: +free_clk_data: kfree(clk_data); -err: +unmap_io: + iounmap(base); return NULL; } EXPORT_SYMBOL_GPL(hisi_clk_init); -- 2.17.1