From: David Yang <mmyangfl@gmail.com>
To: linux-clk@vger.kernel.org
Cc: David Yang <mmyangfl@gmail.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
linux-kernel@vger.kernel.org
Subject: [PATCH v3 00/14] clk: hisilicon: Migrate devm APIs
Date: Mon, 10 Apr 2023 19:07:12 +0800 [thread overview]
Message-ID: <20230410110733.192151-1-mmyangfl@gmail.com> (raw)
Migrate devm APIs for HiSilicon clock drivers and remove redundant codes.
This series is a partial improvement of [1]
v2: fix test robot error
v3:
* size_t for all these num types
* hisi_clk_unregister() change into separate patch
* keep relevant header inclusions
* split driver files changes into separate patches
* explain hisi_clk_register_fn() checkpatch warnings
* not fixed: MODULE_LICENSE("GPL v2"), as stated in SPDX-License-Identifier
* not fixed: "hisilicon,hip04-clock" un-documented, as none of dts files in
arch/ use it, better to ask hisi people why they pushed this driver
Links:
[1]: https://lore.kernel.org/r/20230322164201.2454771-1-mmyangfl@gmail.com
v1: https://lore.kernel.org/r/20230326052757.297551-1-mmyangfl@gmail.com
v2: https://lore.kernel.org/r/20230329075104.165176-1-mmyangfl@gmail.com
David Yang (14):
clk: hisilicon: Add helper functions for platform driver
clk: hisilicon: Rename hisi_clk_unregister macro
clk: hisilicon: hi3516cv300: Use helper functions
clk: hisilicon: hi3798cv200: Use helper functions
clk: hisilicon: Remove hisi_crg_funcs
clk: hisilicon: hi3519: Use helper functions
clk: hisilicon: hi3559a: Use helper functions
clk: hisilicon: hi3660: Convert into module
clk: hisilicon: hi3670: Convert into module
clk: hisilicon: hi3620: Convert into platform driver module
clk: hisilicon: hi6220: Convert into platform driver module
clk: hisilicon: hip04: Convert into platform driver module
clk: hisilicon: hix5hd2: Convert into platform driver module
clk: hisilicon: Migrate devm APIs
drivers/clk/hisilicon/clk-hi3519.c | 128 +------
drivers/clk/hisilicon/clk-hi3559a.c | 253 +++----------
drivers/clk/hisilicon/clk-hi3620.c | 212 ++++++-----
drivers/clk/hisilicon/clk-hi3660.c | 192 +++-------
drivers/clk/hisilicon/clk-hi3670.c | 248 ++++--------
drivers/clk/hisilicon/clk-hi6220-stub.c | 9 +-
drivers/clk/hisilicon/clk-hi6220.c | 229 ++++++-----
drivers/clk/hisilicon/clk-hip04.c | 39 +-
drivers/clk/hisilicon/clk-hisi-phase.c | 13 +-
drivers/clk/hisilicon/clk-hix5hd2.c | 98 +++--
drivers/clk/hisilicon/clk.c | 440 +++++++++++-----------
drivers/clk/hisilicon/clk.h | 147 +++++---
drivers/clk/hisilicon/clkdivider-hi6220.c | 24 +-
drivers/clk/hisilicon/clkgate-separated.c | 26 +-
drivers/clk/hisilicon/crg-hi3516cv300.c | 172 +--------
drivers/clk/hisilicon/crg-hi3798cv200.c | 201 ++--------
drivers/clk/hisilicon/crg.h | 11 +-
drivers/clk/hisilicon/reset.c | 43 +++
18 files changed, 936 insertions(+), 1549 deletions(-)
base-commit: 09a9639e56c01c7a00d6c0ca63f4c7c41abe075d
--
2.39.2
next reply other threads:[~2023-04-10 11:07 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-10 11:07 David Yang [this message]
2023-04-10 11:07 ` [PATCH v3 01/14] clk: hisilicon: Add helper functions for platform driver David Yang
2023-04-10 11:07 ` [PATCH v3 02/14] clk: hisilicon: Rename hisi_clk_unregister macro David Yang
2023-04-10 11:07 ` [PATCH v3 03/14] clk: hisilicon: hi3516cv300: Use helper functions David Yang
2023-04-10 11:07 ` [PATCH v3 04/14] clk: hisilicon: hi3798cv200: " David Yang
2023-04-10 11:07 ` [PATCH v3 05/14] clk: hisilicon: Remove hisi_crg_funcs David Yang
2023-04-10 11:07 ` [PATCH v3 06/14] clk: hisilicon: hi3519: Use helper functions David Yang
2023-04-10 11:07 ` [PATCH v3 07/14] clk: hisilicon: hi3559a: " David Yang
2023-04-10 11:07 ` [PATCH v3 08/14] clk: hisilicon: hi3660: Convert into module David Yang
2023-04-10 11:07 ` [PATCH v3 09/14] clk: hisilicon: hi3670: " David Yang
2023-04-10 11:07 ` [PATCH v3 10/14] clk: hisilicon: hi3620: Convert into platform driver module David Yang
2023-04-10 11:07 ` [PATCH v3 11/14] clk: hisilicon: hi6220: " David Yang
2023-04-10 11:07 ` [PATCH v3 12/14] clk: hisilicon: hip04: " David Yang
2023-04-10 11:07 ` [PATCH v3 13/14] clk: hisilicon: hix5hd2: " David Yang
2023-04-10 11:07 ` [PATCH v3 14/14] clk: hisilicon: Migrate devm APIs David Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230410110733.192151-1-mmyangfl@gmail.com \
--to=mmyangfl@gmail.com \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=sboyd@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox