From 2a6eeec72d6bb04a32225883f431c1d2e8cff123 Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Tue, 27 Oct 2009 11:18:44 -0400 Subject: atom: loosen pll min output limits Limiting the pll output range is a good thing generally as it limits the number of possible pll combinations for a given frequency presumably to the ones that work best on each card. That's why the limits are in the bios tables. However, certain duallink DVI monitors seem to like pll combinations that would be limited by this at least on pre-DCE 3.0 r6xx hardware. This might need to be adjusted per family or per clock range in the future. Fixes fdo bug 24727. Signed-off-by: Alex Deucher --- src/radeon_atombios.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index a8eded6..1f4b9dc 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -2171,6 +2171,15 @@ RADEONGetATOMClockInfo(ScrnInfoPtr pScrn) if (pll->pll_out_min == 0) pll->pll_out_min = 64800; + /* limiting the range is a good thing in most cases + * as it limits the number of matching pll combinations, + * however, some duallink DVI monitors seem to prefer combinations that + * would be limited by this. This may need to be revisited + * per chip family. + */ + if (pll->pll_out_min > 64800) + pll->pll_out_min = 64800; + return TRUE; } -- cgit v1.2.3