Skip to content

Commit ce8a909

Browse files
nunojsabebarino
authored andcommitted
clk: clk-axi-clkgen: fix fpfd_max frequency for zynq
The fpfd_max frequency should be set to 450 MHz instead of 300 MHz. Well, it actually depends on the platform speed grade but we are being conservative for ultrascale so let's be consistent. In a following change we will set these limits at runtime. Fixes: 0e646c5 ("clk: Add axi-clkgen driver") Signed-off-by: Nuno Sá <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: David Lechner <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
1 parent 19272b3 commit ce8a909

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/clk-axi-clkgen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ static const struct axi_clkgen_limits axi_clkgen_zynqmp_default_limits = {
118118

119119
static const struct axi_clkgen_limits axi_clkgen_zynq_default_limits = {
120120
.fpfd_min = 10000,
121-
.fpfd_max = 300000,
121+
.fpfd_max = 450000,
122122
.fvco_min = 600000,
123123
.fvco_max = 1200000,
124124
};

0 commit comments

Comments
 (0)