From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH 00/14] clk updates
Date: Tue, 18 May 2021 13:49:15 +0200 [thread overview]
Message-ID: <20210518114929.12964-1-s.hauer@pengutronix.de> (raw)
The barebox clk framework has diverged a lot from Linux. Specifically
the separation of a struct clk_hw from struct clk causes some pain when
porting over code from Linux. This series aims to reduce the differences
a bit. I am currently working on adding Rockchip rk3568 support and with
this series porting over the Linux clk driver has become much easier.
Sascha
Sascha Hauer (14):
clk: introduce clk init op
clk: rename clk_register() to bclk_register()
clk: introduce struct clk_hw
clk: introduce clk_register()
clk: divider: Add ro ops
clk: mux: Add ro ops
clk: move fixed_factor to include/linux/clk.h
Add rational_best_approximation()
clk: Update fractional divider from Linux
clk: Add lock to different clock types
clk: Add Linux functions to register a divider
clk: Add Linux functions to register a fixed factor clock
clk: Add Linux functions to register a gate
clk: Add Linux functions to register a mux
drivers/clk/at91/clk-audio-pll.c | 103 ++++++-------
drivers/clk/at91/clk-generated.c | 42 +++---
drivers/clk/at91/clk-h32mx.c | 22 +--
drivers/clk/at91/clk-i2s-mux.c | 24 +--
drivers/clk/at91/clk-main.c | 126 ++++++++--------
drivers/clk/at91/clk-master.c | 32 ++--
drivers/clk/at91/clk-peripheral.c | 72 ++++-----
drivers/clk/at91/clk-pll.c | 40 ++---
drivers/clk/at91/clk-plldiv.c | 26 ++--
drivers/clk/at91/clk-programmable.c | 32 ++--
drivers/clk/at91/clk-sam9x60-pll.c | 28 ++--
drivers/clk/at91/clk-slow.c | 20 +--
drivers/clk/at91/clk-smd.c | 36 ++---
drivers/clk/at91/clk-system.c | 28 ++--
drivers/clk/at91/clk-usb.c | 92 ++++++------
drivers/clk/at91/clk-utmi.c | 32 ++--
drivers/clk/at91/sckc.c | 114 +++++++--------
drivers/clk/clk-ar933x.c | 18 +--
drivers/clk/clk-ar9344.c | 18 +--
drivers/clk/clk-composite.c | 74 +++++-----
drivers/clk/clk-divider.c | 76 +++++++---
drivers/clk/clk-fixed-factor.c | 44 +++---
drivers/clk/clk-fixed.c | 20 +--
drivers/clk/clk-fractional-divider.c | 133 +++++++++++------
drivers/clk/clk-gate-shared.c | 33 +++--
drivers/clk/clk-gate.c | 44 +++---
drivers/clk/clk-gpio.c | 32 ++--
drivers/clk/clk-mux.c | 45 ++++--
drivers/clk/clk-qoric.c | 34 ++---
drivers/clk/clk-stm32mp1.c | 103 +++++++------
drivers/clk/clk.c | 138 ++++++++++++++++--
drivers/clk/imx/clk-composite-8m.c | 33 ++---
drivers/clk/imx/clk-cpu.c | 32 ++--
drivers/clk/imx/clk-frac-pll.c | 38 ++---
drivers/clk/imx/clk-gate-exclusive.c | 36 ++---
drivers/clk/imx/clk-gate2.c | 36 +++--
drivers/clk/imx/clk-imx6ul.c | 4 +-
drivers/clk/imx/clk-pfd.c | 34 ++---
drivers/clk/imx/clk-pll14xx.c | 47 +++---
drivers/clk/imx/clk-pllv1.c | 18 +--
drivers/clk/imx/clk-pllv2.c | 24 +--
drivers/clk/imx/clk-pllv3.c | 70 ++++-----
drivers/clk/imx/clk-sccg-pll.c | 51 +++----
drivers/clk/loongson/clk-ls1b200.c | 18 +--
drivers/clk/mvebu/corediv.c | 30 ++--
drivers/clk/mxs/clk-div.c | 36 ++---
drivers/clk/mxs/clk-frac.c | 30 ++--
drivers/clk/mxs/clk-lcdif.c | 20 +--
drivers/clk/mxs/clk-pll.c | 32 ++--
drivers/clk/mxs/clk-ref.c | 38 ++---
drivers/clk/rockchip/clk-cpu.c | 20 +--
drivers/clk/rockchip/clk-pll.c | 42 +++---
drivers/clk/socfpga/clk-gate-a10.c | 32 ++--
drivers/clk/socfpga/clk-periph-a10.c | 28 ++--
drivers/clk/socfpga/clk-pll-a10.c | 30 ++--
drivers/clk/socfpga/clk.c | 74 +++++-----
drivers/clk/socfpga/clk.h | 6 +-
drivers/clk/tegra/clk-divider.c | 17 ++-
drivers/clk/tegra/clk-periph.c | 44 +++---
drivers/clk/tegra/clk-pll-out.c | 30 ++--
drivers/clk/tegra/clk-pll.c | 52 +++----
drivers/clk/tegra/clk.h | 6 +-
drivers/clk/vexpress/clk-sp810.c | 24 +--
drivers/clk/zynq/clkc.c | 100 ++++++-------
drivers/clk/zynqmp/clk-divider-zynqmp.c | 30 ++--
drivers/clk/zynqmp/clk-gate-zynqmp.c | 30 ++--
drivers/clk/zynqmp/clk-mux-zynqmp.c | 30 ++--
drivers/clk/zynqmp/clk-pll-zynqmp.c | 48 +++---
drivers/video/imx-ipu-v3/ipu-di.c | 17 ++-
include/linux/clk.h | 186 +++++++++++++++++++++---
include/linux/rational.h | 20 +++
lib/math/Makefile | 1 +
lib/math/rational.c | 100 +++++++++++++
73 files changed, 1899 insertions(+), 1376 deletions(-)
create mode 100644 include/linux/rational.h
create mode 100644 lib/math/rational.c
--
2.29.2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2021-05-18 11:50 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-18 11:49 Sascha Hauer [this message]
2021-05-18 11:49 ` [PATCH 01/14] clk: introduce clk init op Sascha Hauer
2021-05-18 11:57 ` Ahmad Fatoum
2021-05-18 11:49 ` [PATCH 02/14] clk: rename clk_register() to bclk_register() Sascha Hauer
2021-05-18 12:06 ` Ahmad Fatoum
2021-05-18 11:49 ` [PATCH 03/14] clk: introduce struct clk_hw Sascha Hauer
2021-05-18 12:17 ` Ahmad Fatoum
2021-05-19 6:55 ` Sascha Hauer
2021-05-18 11:49 ` [PATCH 04/14] clk: introduce clk_register() Sascha Hauer
2021-05-18 12:21 ` Ahmad Fatoum
2021-05-18 11:49 ` [PATCH 05/14] clk: divider: Add ro ops Sascha Hauer
2021-05-18 12:21 ` Ahmad Fatoum
2021-05-18 11:49 ` [PATCH 06/14] clk: mux: " Sascha Hauer
2021-05-18 11:49 ` [PATCH 07/14] clk: move fixed_factor to include/linux/clk.h Sascha Hauer
2021-05-18 11:49 ` [PATCH 08/14] Add rational_best_approximation() Sascha Hauer
2021-05-18 12:23 ` Ahmad Fatoum
2021-05-18 11:49 ` [PATCH 09/14] clk: Update fractional divider from Linux Sascha Hauer
2021-05-18 11:49 ` [PATCH 10/14] clk: Add lock to different clock types Sascha Hauer
2021-05-18 11:49 ` [PATCH 11/14] clk: Add Linux functions to register a divider Sascha Hauer
2021-05-18 11:49 ` [PATCH 12/14] clk: Add Linux functions to register a fixed factor clock Sascha Hauer
2021-05-18 11:49 ` [PATCH 13/14] clk: Add Linux functions to register a gate Sascha Hauer
2021-05-18 11:49 ` [PATCH 14/14] clk: Add Linux functions to register a mux Sascha Hauer
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=20210518114929.12964-1-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.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