viafb: kill viafb_load_crtc_timing
authorFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
Sun, 22 May 2011 23:30:48 +0000 (23:30 +0000)
committerFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
Fri, 5 Aug 2011 12:46:51 +0000 (12:46 +0000)
This patch replaces calls to viafb_load_crtc_timing with the code.
This should make it easier to fix the oddity that in the modetable
the blank and sync end entries contain the length and we need to add
the start values to get those to be written to the hardware.

Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
drivers/video/via/hw.c
drivers/video/via/lcd.c
drivers/video/via/lcd.h

index 372ce4f071c2d21da63c708cd6405413d068639c..52d41f011d85c18670bddf3aeab3b4fb75f0f173 100644 (file)
@@ -1467,20 +1467,6 @@ void viafb_set_vclock(u32 clk, int set_iga)
        via_write_misc_reg_mask(0x0C, 0x0C); /* select external clock */
 }
 
-void viafb_load_crtc_timing(struct display_timing device_timing,
-       int set_iga)
-{
-       device_timing.hor_blank_end += device_timing.hor_blank_start;
-       device_timing.hor_sync_end += device_timing.hor_sync_start;
-       device_timing.ver_blank_end += device_timing.ver_blank_start;
-       device_timing.ver_sync_end += device_timing.ver_sync_start;
-
-       if (set_iga == IGA1)
-               via_set_primary_timing(&device_timing);
-       else if (set_iga == IGA2)
-               via_set_secondary_timing(&device_timing);
-}
-
 void viafb_fill_crtc_timing(struct crt_mode_table *crt_table,
        struct VideoModeTable *video_mode, int bpp_byte, int set_iga)
 {
@@ -1515,6 +1501,10 @@ void viafb_fill_crtc_timing(struct crt_mode_table *crt_table,
                crt_reg.hor_blank_end = crt_reg.hor_blank_end + 16;
        }
 
+       crt_reg.hor_blank_end += crt_reg.hor_blank_start;
+       crt_reg.hor_sync_end += crt_reg.hor_sync_start;
+       crt_reg.ver_blank_end += crt_reg.ver_blank_start;
+       crt_reg.ver_sync_end += crt_reg.ver_sync_start;
        h_addr = crt_reg.hor_addr;
        v_addr = crt_reg.ver_addr;
        if (set_iga == IGA1) {
@@ -1522,14 +1512,10 @@ void viafb_fill_crtc_timing(struct crt_mode_table *crt_table,
                viafb_write_reg_mask(CR17, VIACR, 0x00, BIT7);
        }
 
-       switch (set_iga) {
-       case IGA1:
-               viafb_load_crtc_timing(crt_reg, IGA1);
-               break;
-       case IGA2:
-               viafb_load_crtc_timing(crt_reg, IGA2);
-               break;
-       }
+       if (set_iga == IGA1)
+               via_set_primary_timing(&crt_reg);
+       else if (set_iga == IGA2)
+               via_set_secondary_timing(&crt_reg);
 
        viafb_lock_crt();
        viafb_write_reg_mask(CR17, VIACR, 0x80, BIT7);
index 6e06981d638be99f44c0b5ef9fc5ef2d90cfb883..0a38e4de9979b9cdc9320d0893b11b566d5b697e 100644 (file)
@@ -559,7 +559,7 @@ void viafb_lcd_set_mode(struct crt_mode_table *mode_crt_table,
        int panel_hres = plvds_setting_info->lcd_panel_hres;
        int panel_vres = plvds_setting_info->lcd_panel_vres;
        u32 clock;
-       struct display_timing mode_crt_reg, panel_crt_reg;
+       struct display_timing mode_crt_reg, panel_crt_reg, timing;
        struct crt_mode_table *panel_crt_table = NULL;
        struct VideoModeTable *vmode_tbl = viafb_get_mode(panel_hres,
                panel_vres);
@@ -576,31 +576,28 @@ void viafb_lcd_set_mode(struct crt_mode_table *mode_crt_table,
        clock = panel_crt_reg.hor_total * panel_crt_reg.ver_total
                * panel_crt_table->refresh_rate;
        plvds_setting_info->vclk = clock;
-       if (set_iga == IGA1) {
-               /* IGA1 doesn't have LCD scaling, so set it as centering. */
-               viafb_load_crtc_timing(lcd_centering_timging
-                                (mode_crt_reg, panel_crt_reg), IGA1);
+
+       if (set_iga == IGA2 && (set_hres < panel_hres || set_vres < panel_vres)
+               && plvds_setting_info->display_method == LCD_EXPANDSION) {
+               timing = panel_crt_reg;
+               load_lcd_scaling(set_hres, set_vres, panel_hres, panel_vres);
        } else {
-               /* Expansion */
-               if (plvds_setting_info->display_method == LCD_EXPANDSION
-                       && (set_hres < panel_hres || set_vres < panel_vres)) {
-                       /* expansion timing IGA2 loaded panel set timing*/
-                       viafb_load_crtc_timing(panel_crt_reg, IGA2);
-                       DEBUG_MSG(KERN_INFO "viafb_load_crtc_timing!!\n");
-                       load_lcd_scaling(set_hres, set_vres, panel_hres,
-                                        panel_vres);
-                       DEBUG_MSG(KERN_INFO "load_lcd_scaling!!\n");
-               } else {        /* Centering */
-                       /* centering timing IGA2 always loaded panel
-                          and mode releative timing */
-                       viafb_load_crtc_timing(lcd_centering_timging
-                                        (mode_crt_reg, panel_crt_reg), IGA2);
-                       viafb_write_reg_mask(CR79, VIACR, 0x00,
+               timing = lcd_centering_timging(mode_crt_reg, panel_crt_reg);
+               if (set_iga == IGA2)
+                       /* disable scaling */
+                       via_write_reg_mask(VIACR, 0x79, 0x00,
                                BIT0 + BIT1 + BIT2);
-                       /* LCD scaling disabled */
-               }
        }
 
+       timing.hor_blank_end += timing.hor_blank_start;
+       timing.hor_sync_end += timing.hor_sync_start;
+       timing.ver_blank_end += timing.ver_blank_start;
+       timing.ver_sync_end += timing.ver_sync_start;
+       if (set_iga == IGA1)
+               via_set_primary_timing(&timing);
+       else if (set_iga == IGA2)
+               via_set_secondary_timing(&timing);
+
        /* Fetch count for IGA2 only */
        viafb_load_fetch_count_reg(set_hres, mode_bpp / 8, set_iga);
 
index 75f60a655b0e09c334a77d8418a656edefb8c467..3b9e5397aa69500f8d727be73b4706d706825892 100644 (file)
@@ -85,7 +85,5 @@ void viafb_init_lvds_output_interface(struct lvds_chip_information
                                struct lvds_setting_information
                                *plvds_setting_info);
 bool viafb_lcd_get_mobile_state(bool *mobile);
-void viafb_load_crtc_timing(struct display_timing device_timing,
-       int set_iga);
 
 #endif /* __LCD_H__ */
This page took 0.028025 seconds and 5 git commands to generate.