]> Git Repo - linux.git/commit
clk: divider: Implement and wire up .determine_rate by default
authorMartin Blumenstingl <[email protected]>
Fri, 2 Jul 2021 22:51:40 +0000 (00:51 +0200)
committerStephen Boyd <[email protected]>
Fri, 6 Aug 2021 00:35:58 +0000 (17:35 -0700)
commit69a00fb3d6970681c15a23595ec54233ce10295c
tree59cbbdc2b1f3ee5613ba1a46d2c1e0bc9f17dc74
parente73f0f0ee7541171d89f2e2491130c7771ba58d3
clk: divider: Implement and wire up .determine_rate by default

.determine_rate is meant to replace .round_rate. The former comes with a
benefit which is especially relevant on 32-bit systems: since
.determine_rate uses an "unsigned long" (compared to a "signed long"
which is used by .round_rate) the maximum value on 32-bit systems
increases from 2^31 (or approx. 2.14GHz) to 2^32 (or approx. 4.29GHz).

Implement .determine_rate in addition to .round_rate so drivers that are
using clk_divider_{ro_,}ops can benefit from this by default. Keep the
.round_rate callback for now since some drivers rely on
clk_divider_ops.round_rate being implemented.

Signed-off-by: Martin Blumenstingl <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Stephen Boyd <[email protected]>
drivers/clk/clk-divider.c
This page took 0.060453 seconds and 4 git commands to generate.