diff options
author | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-04-23 19:52:45 -0400 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-04-23 19:52:45 -0400 |
commit | 2946294f9aa734efc5873ea2f34131d0a8c0f89a (patch) | |
tree | 7c1ddd28ec675caf9338e88b5433bd47deda3d8e /drivers/video/via/hw.c | |
parent | 4d9fd0b72cd80624f9f5c6a4c69c503615bec370 (diff) |
viafb: add X server compatibility mode
This patch adds a config option to be compatible with X servers like
OpenChrome. This is required as for example the X server does not
handle things like disabled IGAs/PLLs resulting in a potential
freeze on X startup. With this option disabled we can provide some
nice features like power management and not reinitializing the
hardware on every mode switch (taking long time, causing flickering).
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/via/hw.c')
-rw-r--r-- | drivers/video/via/hw.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/video/via/hw.c b/drivers/video/via/hw.c index e5311474219f..104f3e16010f 100644 --- a/drivers/video/via/hw.c +++ b/drivers/video/via/hw.c | |||
@@ -2293,6 +2293,12 @@ int viafb_setmode(struct VideoModeTable *vmode_tbl, int video_bpp, | |||
2293 | clock.set_primary_clock_source(VIA_CLKSRC_X1, true); | 2293 | clock.set_primary_clock_source(VIA_CLKSRC_X1, true); |
2294 | clock.set_secondary_clock_source(VIA_CLKSRC_X1, true); | 2294 | clock.set_secondary_clock_source(VIA_CLKSRC_X1, true); |
2295 | 2295 | ||
2296 | #ifdef CONFIG_FB_VIA_X_COMPATIBILITY | ||
2297 | clock.set_primary_pll_state(VIA_STATE_ON); | ||
2298 | clock.set_primary_clock_state(VIA_STATE_ON); | ||
2299 | clock.set_secondary_pll_state(VIA_STATE_ON); | ||
2300 | clock.set_secondary_clock_state(VIA_STATE_ON); | ||
2301 | #else | ||
2296 | if (viaparinfo->shared->iga1_devices) { | 2302 | if (viaparinfo->shared->iga1_devices) { |
2297 | clock.set_primary_pll_state(VIA_STATE_ON); | 2303 | clock.set_primary_pll_state(VIA_STATE_ON); |
2298 | clock.set_primary_clock_state(VIA_STATE_ON); | 2304 | clock.set_primary_clock_state(VIA_STATE_ON); |
@@ -2308,6 +2314,7 @@ int viafb_setmode(struct VideoModeTable *vmode_tbl, int video_bpp, | |||
2308 | clock.set_secondary_pll_state(VIA_STATE_OFF); | 2314 | clock.set_secondary_pll_state(VIA_STATE_OFF); |
2309 | clock.set_secondary_clock_state(VIA_STATE_OFF); | 2315 | clock.set_secondary_clock_state(VIA_STATE_OFF); |
2310 | } | 2316 | } |
2317 | #endif /*CONFIG_FB_VIA_X_COMPATIBILITY*/ | ||
2311 | 2318 | ||
2312 | via_set_state(devices, VIA_STATE_ON); | 2319 | via_set_state(devices, VIA_STATE_ON); |
2313 | device_screen_on(); | 2320 | device_screen_on(); |