clk: renesas: rcar-gen3: Support Z and Z2 clocks with high frequency parents
authorSimon Horman <horms+renesas@verge.net.au>
Mon, 25 Mar 2019 16:35:54 +0000 (17:35 +0100)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 2 Apr 2019 07:50:48 +0000 (09:50 +0200)
commit71119b54a2e6d9345f22d9501c4d3c28b06f955a
tree6c8d117bc56cbaaa9507d697e5246f7570a1f76f
parentcb8be119d21d8a0affc3598a928dd0baf5da238f
clk: renesas: rcar-gen3: Support Z and Z2 clocks with high frequency parents

Support Z and Z2 clocks with parent frequencies greater than UINT32_MAX Hz
(~4.29GHz).

The DIV_ROUND_CLOSEST_ULL() macro accepts a 64bit dividend and 32bit
divisor. This leads to truncation of the divisor, which is the Z or Z2
parent clock frequency in HZ, on platforms where frequency of that clock is
greater than UINT32_MAX Hz.

To resolve this problem the DIV64_U64_ROUND_CLOSEST() macro, which takes
on an unsigned 64bit dividend and divisor, is used.

An earlier version of this patch made use of the existing
DIV_ROUND_CLOSEST() macro, which accepts the prevailing type of the
dividend and divisor. However, this does not compile on 32bit systems, such
as i386 and mips, when called with the types used at this call site, an
unsigned long long dividend and unsigned long divisor.

This work is in preparation for supporting the Z2 clock on the
R-Car Gen3 E3 (r8a77990) SoC which has a 4.8GHz parent clock.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
drivers/clk/renesas/rcar-gen3-cpg.c