]> Git Repo - linux.git/commitdiff
drm/radeon/kms: set a default max_pixel_clock
authorDave Airlie <[email protected]>
Tue, 30 Aug 2011 19:22:04 +0000 (20:22 +0100)
committerDave Airlie <[email protected]>
Wed, 31 Aug 2011 13:06:19 +0000 (14:06 +0100)
On some Power rv100 cards, we have no ATY OF table, but we have
no combios table either, and hence we refuse all modes on VGA-0
since we end up with a 0 max pixel clock.

Signed-off-by: Dave Airlie <[email protected]>
Cc: [email protected]
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Jerome Glisse <[email protected]>
drivers/gpu/drm/radeon/radeon_clocks.c

index dcd0863e31ae8c24b1a8870aa777bbe2c550ce2b..b6e18c8db9f53511e2141a0f20aa2ec2880b263d 100644 (file)
@@ -219,6 +219,9 @@ void radeon_get_clock_info(struct drm_device *dev)
                } else {
                        DRM_INFO("Using generic clock info\n");
 
+                       /* may need to be per card */
+                       rdev->clock.max_pixel_clock = 35000;
+
                        if (rdev->flags & RADEON_IS_IGP) {
                                p1pll->reference_freq = 1432;
                                p2pll->reference_freq = 1432;
This page took 0.056897 seconds and 4 git commands to generate.