linux/drivers/clk/at91
Maxime Ripard d2e88be308 clk: at91: sckc: Add a determine_rate hook
The SAM9x5 slow clock implements a mux with a set_parent hook, but
doesn't provide a determine_rate implementation.

This is a bit odd, since set_parent() is there to, as its name implies,
change the parent of a clock. However, the most likely candidates to
trigger that parent change are either the assigned-clock-parents device
tree property or a call to clk_set_rate(), with determine_rate()
figuring out which parent is the best suited for a given rate.

The other trigger would be a call to clk_set_parent(), but it's far less
used, and it doesn't look like there's any obvious user for that clock.

Similarly, it doesn't look like the device tree using that clock driver
uses any of the assigned-clock properties on that clock.

So, the set_parent hook is effectively unused, possibly because of an
oversight. However, it could also be an explicit decision by the
original author to avoid any reparenting but through an explicit call to
clk_set_parent().

The latter case would be equivalent to setting the determine_rate
implementation to clk_hw_determine_rate_no_reparent(). Indeed, if no
determine_rate implementation is provided, clk_round_rate() (through
clk_core_round_rate_nolock()) will call itself on the parent if
CLK_SET_RATE_PARENT is set, and will not change the clock rate
otherwise.

And if it was an oversight, then we are at least explicit about our
behavior now and it can be further refined down the line.

Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: Claudiu Beznea <claudiu.beznea@microchip.com>
Cc: Nicolas Ferre <nicolas.ferre@microchip.com>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20221018-clk-range-checks-fixes-v4-10-971d5077e7d2@cerno.tech
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
2023-06-08 18:39:26 -07:00
..
at91rm9200.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
at91sam9g45.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
at91sam9n12.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
at91sam9rl.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
at91sam9x5.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
at91sam9260.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
clk-audio-pll.c treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
clk-generated.c clk: Stop forwarding clk_rate_requests to the parent 2022-09-15 09:32:11 -07:00
clk-h32mx.c treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
clk-i2s-mux.c clk: at91: move DT compatibility code to its own file 2018-10-17 10:45:39 -07:00
clk-main.c clk: at91: main: Add a determine_rate hook 2023-06-08 18:39:26 -07:00
clk-master.c clk: Stop forwarding clk_rate_requests to the parent 2022-09-15 09:32:11 -07:00
clk-peripheral.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
clk-pll.c clk: at91: re-factor clocks suspend/resume 2021-10-26 18:27:41 -07:00
clk-plldiv.c treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
clk-programmable.c clk: at91: re-factor clocks suspend/resume 2021-10-26 18:27:41 -07:00
clk-sam9x60-pll.c clk: at91: clk-sam9x60-pll: fix return value check 2023-03-06 12:30:01 -08:00
clk-slow.c treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
clk-smd.c treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 2019-05-30 11:26:32 -07:00
clk-system.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
clk-usb.c clk: at91: re-factor clocks suspend/resume 2021-10-26 18:27:41 -07:00
clk-utmi.c clk: at91: re-factor clocks suspend/resume 2021-10-26 18:27:41 -07:00
dt-compat.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
Makefile clk: at91: do not compile dt-compat.c for sama7g5 and sam9x60 2023-01-09 14:05:41 +02:00
pmc.c clk: at91: pmc: add sama7g5 to the list of available pmcs 2021-10-26 18:27:42 -07:00
pmc.h clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
sam9x60.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
sama5d2.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
sama5d3.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
sama5d4.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
sama7g5.c clk: at91: mark ddr clocks as critical 2023-01-09 14:05:41 +02:00
sckc.c clk: at91: sckc: Add a determine_rate hook 2023-06-08 18:39:26 -07:00