drm/gk20a/clk: fix max VCO value
authorAlexandre Courbot <acourbot@nvidia.com>
Thu, 13 Nov 2014 09:07:27 +0000 (18:07 +0900)
committerBen Skeggs <bskeggs@redhat.com>
Tue, 2 Dec 2014 05:44:03 +0000 (15:44 +1000)
For some reason max_vco was set to a lower value that it can support,
which prevented some clock states to be applied. Fix this by setting it
to the same value as downstream.

Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/core/subdev/clock/gk20a.c

index 425a8d5e9129fa26cb728a342bd3302f9397082c..82abbea2be1250315d7e607b6a87eeed50842046 100644 (file)
@@ -109,7 +109,7 @@ struct gk20a_clk_pllg_params {
 };
 
 static const struct gk20a_clk_pllg_params gk20a_pllg_params = {
-       .min_vco = 1000, .max_vco = 1700,
+       .min_vco = 1000, .max_vco = 2064,
        .min_u = 12, .max_u = 38,
        .min_m = 1, .max_m = 255,
        .min_n = 8, .max_n = 255,
This page took 0.04389 seconds and 5 git commands to generate.