staging: xgifb: delete support for Chrontel 7017 TV output
authorAaro Koskinen <aaro.koskinen@iki.fi>
Wed, 31 Aug 2011 18:45:56 +0000 (21:45 +0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 6 Sep 2011 18:42:06 +0000 (11:42 -0700)
IF_DEF_CH7017 is hard-coded to 0, so this is all just dead code that
can be deleted.

Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/xgifb/vb_def.h
drivers/staging/xgifb/vb_setmode.c
drivers/staging/xgifb/vb_struct.h

index 06846868e9f1781e0dfef94e5b904abf3193209c..78b826855ca7f0f6b7fb8d9bef316e279f3a064b 100644 (file)
@@ -90,7 +90,6 @@
 #define VB_XGI301LV       0x0008
 #define VB_XGI302LV       0x0010
 #define VB_LVDS_NS        0x0001       /* 3rd party chip */
-#define VB_CH7017         0x0002
 #define VB_CH7007         0x0080       /* [Billy] 07/05/03 */
 
 #define ModeInfoFlag      0x0007
index 05860dabdd853081e72b7b8e32a5e8a2ad992091..0e72ddad58eb8f806d004dd9e1940eefdb0877da 100644 (file)
@@ -2622,7 +2622,6 @@ static void XGI_GetLVDSData(unsigned short ModeNo, unsigned short ModeIdIndex,
 {
        unsigned short tempbx;
        struct XGI330_LVDSDataStruct *LCDPtr = NULL;
-       struct XGI330_CHTVDataStruct *TVPtr = NULL;
 
        tempbx = 2;
 
@@ -2635,17 +2634,6 @@ static void XGI_GetLVDSData(unsigned short ModeNo, unsigned short ModeIdIndex,
                pVBInfo->HT = LCDPtr->LCDHT;
                pVBInfo->VT = LCDPtr->LCDVT;
        }
-       if (pVBInfo->IF_DEF_CH7017 == 1) {
-               if (pVBInfo->VBInfo & SetCRT2ToTV) {
-                       TVPtr = (struct XGI330_CHTVDataStruct *) XGI_GetTVPtr(
-                                       tempbx, ModeNo, ModeIdIndex,
-                                       RefreshRateTableIndex, pVBInfo);
-                       pVBInfo->VGAHT = TVPtr->VGAHT;
-                       pVBInfo->VGAVT = TVPtr->VGAVT;
-                       pVBInfo->HT = TVPtr->LCDHT;
-                       pVBInfo->VT = TVPtr->LCDVT;
-               }
-       }
 
        if (pVBInfo->VBInfo & (SetCRT2ToLCD | SetCRT2ToLCDA)) {
                if (!(pVBInfo->LCDInfo & (SetLCDtoNonExpanding
@@ -2722,18 +2710,6 @@ static void XGI_ModCRT1Regs(unsigned short ModeNo, unsigned short ModeIdIndex,
                        }
                }
 
-               /* if (pVBInfo->IF_DEF_CH7017 == 1) {
-                       if (pVBInfo->VBInfo & SetCRT2ToTV)
-                               TVPtr = (struct XGI330_CHTVDataStruct *)
-                                               XGI_GetTVPtr(
-                                                       tempbx,
-                                                       ModeNo,
-                                                       ModeIdIndex,
-                                                       RefreshRateTableIndex,
-                                                       pVBInfo);
-               }
-               */
-
                XGI_SetCRT1Timing_H(pVBInfo, HwDeviceExtension);
 
                if (pVBInfo->IF_DEF_CH7007 == 1) {
@@ -2773,16 +2749,6 @@ static void XGI_ModCRT1Regs(unsigned short ModeNo, unsigned short ModeIdIndex,
                                                CH7007TV_TimingVPtr[0].data[i];
                        }
                }
-               /* if (pVBInfo->IF_DEF_CH7017 == 1) {
-                       if (pVBInfo->VBInfo & SetCRT2ToTV)
-                               TVPtr = (struct XGI330_CHTVDataStruct *)
-                                       XGI_GetTVPtr(tempbx,
-                                                    ModeNo,
-                                                    ModeIdIndex,
-                                                    RefreshRateTableIndex,
-                                                    pVBInfo);
-               }
-               */
 
                XGI_SetCRT1Timing_V(ModeIdIndex, ModeNo, pVBInfo);
 
@@ -2885,285 +2851,282 @@ static void XGI_SetLVDSRegs(unsigned short ModeNo, unsigned short ModeIdIndex,
                modeflag = pVBInfo->SModeIDTable[ModeIdIndex].St_ModeFlag;
 
        if (!(pVBInfo->SetFlag & Win9xDOSMode)) {
-               if ((pVBInfo->IF_DEF_CH7017 == 0) || (pVBInfo->VBInfo
-                               & (SetCRT2ToLCD | SetCRT2ToLCDA))) {
-                       if (pVBInfo->IF_DEF_OEMUtil == 1) {
-                               tempbx = 8;
-                               LCDPtr = (struct XGI330_LCDDataDesStruct *)
-                                       XGI_GetLcdPtr(tempbx,
-                                                     ModeNo,
-                                                     ModeIdIndex,
-                                                     RefreshRateTableIndex,
-                                                     pVBInfo);
-                       }
-
-                       if ((pVBInfo->IF_DEF_OEMUtil == 0) ||
-                           (LCDPtr == NULL)) {
-                               tempbx = 3;
-                               if (pVBInfo->LCDInfo & EnableScalingLCD)
-                                       LCDPtr1 =
-                                           (struct XGI330_LCDDataDesStruct2 *)
-                                                       XGI_GetLcdPtr(
-                                                         tempbx,
-                                                         ModeNo,
-                                                         ModeIdIndex,
-                                                         RefreshRateTableIndex,
-                                                         pVBInfo);
-                               else
-                                       LCDPtr =
-                                           (struct XGI330_LCDDataDesStruct *)
-                                                       XGI_GetLcdPtr(
-                                                         tempbx,
-                                                         ModeNo,
-                                                         ModeIdIndex,
-                                                         RefreshRateTableIndex,
-                                                         pVBInfo);
-                       }
+               if (pVBInfo->IF_DEF_OEMUtil == 1) {
+                       tempbx = 8;
+                       LCDPtr = (struct XGI330_LCDDataDesStruct *)
+                               XGI_GetLcdPtr(tempbx,
+                                             ModeNo,
+                                             ModeIdIndex,
+                                             RefreshRateTableIndex,
+                                             pVBInfo);
+               }
+
+               if ((pVBInfo->IF_DEF_OEMUtil == 0) ||
+                   (LCDPtr == NULL)) {
+                       tempbx = 3;
+                       if (pVBInfo->LCDInfo & EnableScalingLCD)
+                               LCDPtr1 =
+                                   (struct XGI330_LCDDataDesStruct2 *)
+                                               XGI_GetLcdPtr(
+                                                 tempbx,
+                                                 ModeNo,
+                                                 ModeIdIndex,
+                                                 RefreshRateTableIndex,
+                                                 pVBInfo);
+                       else
+                               LCDPtr =
+                                   (struct XGI330_LCDDataDesStruct *)
+                                               XGI_GetLcdPtr(
+                                                 tempbx,
+                                                 ModeNo,
+                                                 ModeIdIndex,
+                                                 RefreshRateTableIndex,
+                                                 pVBInfo);
+               }
 
-                       XGI_GetLCDSync(&tempax, &tempbx, pVBInfo);
-                       push1 = tempbx;
-                       push2 = tempax;
+               XGI_GetLCDSync(&tempax, &tempbx, pVBInfo);
+               push1 = tempbx;
+               push2 = tempax;
 
-                       /* GetLCDResInfo */
-                       if ((pVBInfo->LCDResInfo == Panel1024x768) ||
-                           (pVBInfo->LCDResInfo == Panel1024x768x75)) {
-                               tempax = 1024;
-                               tempbx = 768;
-                       } else if ((pVBInfo->LCDResInfo == Panel1280x1024) ||
-                                  (pVBInfo->LCDResInfo == Panel1280x1024x75)) {
-                               tempax = 1280;
-                               tempbx = 1024;
-                       } else if (pVBInfo->LCDResInfo == Panel1400x1050) {
-                               tempax = 1400;
-                               tempbx = 1050;
-                       } else {
-                               tempax = 1600;
-                               tempbx = 1200;
-                       }
+               /* GetLCDResInfo */
+               if ((pVBInfo->LCDResInfo == Panel1024x768) ||
+                   (pVBInfo->LCDResInfo == Panel1024x768x75)) {
+                       tempax = 1024;
+                       tempbx = 768;
+               } else if ((pVBInfo->LCDResInfo == Panel1280x1024) ||
+                          (pVBInfo->LCDResInfo == Panel1280x1024x75)) {
+                       tempax = 1280;
+                       tempbx = 1024;
+               } else if (pVBInfo->LCDResInfo == Panel1400x1050) {
+                       tempax = 1400;
+                       tempbx = 1050;
+               } else {
+                       tempax = 1600;
+                       tempbx = 1200;
+               }
 
-                       if (pVBInfo->LCDInfo & SetLCDtoNonExpanding) {
-                               pVBInfo->HDE = tempax;
-                               pVBInfo->VDE = tempbx;
-                               pVBInfo->VGAHDE = tempax;
-                               pVBInfo->VGAVDE = tempbx;
-                       }
+               if (pVBInfo->LCDInfo & SetLCDtoNonExpanding) {
+                       pVBInfo->HDE = tempax;
+                       pVBInfo->VDE = tempbx;
+                       pVBInfo->VGAHDE = tempax;
+                       pVBInfo->VGAVDE = tempbx;
+               }
 
-                       if ((pVBInfo->IF_DEF_ScaleLCD == 1) &&
-                           (pVBInfo->LCDInfo & EnableScalingLCD)) {
-                               tempax = pVBInfo->HDE;
-                               tempbx = pVBInfo->VDE;
-                       }
+               if ((pVBInfo->IF_DEF_ScaleLCD == 1) &&
+                   (pVBInfo->LCDInfo & EnableScalingLCD)) {
+                       tempax = pVBInfo->HDE;
+                       tempbx = pVBInfo->VDE;
+               }
 
-                       tempax = pVBInfo->HT;
+               tempax = pVBInfo->HT;
 
-                       if (pVBInfo->LCDInfo & EnableScalingLCD)
-                               tempbx = LCDPtr1->LCDHDES;
-                       else
-                               tempbx = LCDPtr->LCDHDES;
+               if (pVBInfo->LCDInfo & EnableScalingLCD)
+                       tempbx = LCDPtr1->LCDHDES;
+               else
+                       tempbx = LCDPtr->LCDHDES;
 
-                       tempcx = pVBInfo->HDE;
-                       tempbx = tempbx & 0x0fff;
-                       tempcx += tempbx;
+               tempcx = pVBInfo->HDE;
+               tempbx = tempbx & 0x0fff;
+               tempcx += tempbx;
 
-                       if (tempcx >= tempax)
-                               tempcx -= tempax;
+               if (tempcx >= tempax)
+                       tempcx -= tempax;
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x1A, tempbx & 0x07);
+               xgifb_reg_set(pVBInfo->Part1Port, 0x1A, tempbx & 0x07);
 
-                       tempcx = tempcx >> 3;
-                       tempbx = tempbx >> 3;
+               tempcx = tempcx >> 3;
+               tempbx = tempbx >> 3;
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x16,
-                                       (unsigned short) (tempbx & 0xff));
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x17,
-                                       (unsigned short) (tempcx & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x16,
+                               (unsigned short) (tempbx & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x17,
+                               (unsigned short) (tempcx & 0xff));
 
-                       tempax = pVBInfo->HT;
+               tempax = pVBInfo->HT;
 
-                       if (pVBInfo->LCDInfo & EnableScalingLCD)
-                               tempbx = LCDPtr1->LCDHRS;
-                       else
-                               tempbx = LCDPtr->LCDHRS;
+               if (pVBInfo->LCDInfo & EnableScalingLCD)
+                       tempbx = LCDPtr1->LCDHRS;
+               else
+                       tempbx = LCDPtr->LCDHRS;
 
-                       tempcx = push2;
+               tempcx = push2;
 
-                       if (pVBInfo->LCDInfo & EnableScalingLCD)
-                               tempcx = LCDPtr1->LCDHSync;
+               if (pVBInfo->LCDInfo & EnableScalingLCD)
+                       tempcx = LCDPtr1->LCDHSync;
 
-                       tempcx += tempbx;
+               tempcx += tempbx;
 
-                       if (tempcx >= tempax)
-                               tempcx -= tempax;
+               if (tempcx >= tempax)
+                       tempcx -= tempax;
 
-                       tempax = tempbx & 0x07;
-                       tempax = tempax >> 5;
-                       tempcx = tempcx >> 3;
-                       tempbx = tempbx >> 3;
+               tempax = tempbx & 0x07;
+               tempax = tempax >> 5;
+               tempcx = tempcx >> 3;
+               tempbx = tempbx >> 3;
 
-                       tempcx &= 0x1f;
-                       tempax |= tempcx;
+               tempcx &= 0x1f;
+               tempax |= tempcx;
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x15, tempax);
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x14,
-                                       (unsigned short) (tempbx & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x15, tempax);
+               xgifb_reg_set(pVBInfo->Part1Port, 0x14,
+                               (unsigned short) (tempbx & 0xff));
 
-                       tempax = pVBInfo->VT;
-                       if (pVBInfo->LCDInfo & EnableScalingLCD)
-                               tempbx = LCDPtr1->LCDVDES;
-                       else
-                               tempbx = LCDPtr->LCDVDES;
-                       tempcx = pVBInfo->VDE;
+               tempax = pVBInfo->VT;
+               if (pVBInfo->LCDInfo & EnableScalingLCD)
+                       tempbx = LCDPtr1->LCDVDES;
+               else
+                       tempbx = LCDPtr->LCDVDES;
+               tempcx = pVBInfo->VDE;
 
-                       tempbx = tempbx & 0x0fff;
-                       tempcx += tempbx;
-                       if (tempcx >= tempax)
-                               tempcx -= tempax;
+               tempbx = tempbx & 0x0fff;
+               tempcx += tempbx;
+               if (tempcx >= tempax)
+                       tempcx -= tempax;
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x1b,
-                                       (unsigned short) (tempbx & 0xff));
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x1c,
-                                       (unsigned short) (tempcx & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x1b,
+                               (unsigned short) (tempbx & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x1c,
+                               (unsigned short) (tempcx & 0xff));
 
-                       tempbx = (tempbx >> 8) & 0x07;
-                       tempcx = (tempcx >> 8) & 0x07;
+               tempbx = (tempbx >> 8) & 0x07;
+               tempcx = (tempcx >> 8) & 0x07;
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x1d,
-                                       (unsigned short) ((tempcx << 3)
-                                                       | tempbx));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x1d,
+                               (unsigned short) ((tempcx << 3)
+                                               | tempbx));
 
-                       tempax = pVBInfo->VT;
-                       if (pVBInfo->LCDInfo & EnableScalingLCD)
-                               tempbx = LCDPtr1->LCDVRS;
-                       else
-                               tempbx = LCDPtr->LCDVRS;
+               tempax = pVBInfo->VT;
+               if (pVBInfo->LCDInfo & EnableScalingLCD)
+                       tempbx = LCDPtr1->LCDVRS;
+               else
+                       tempbx = LCDPtr->LCDVRS;
 
-                       /* tempbx = tempbx >> 4; */
-                       tempcx = push1;
+               /* tempbx = tempbx >> 4; */
+               tempcx = push1;
 
-                       if (pVBInfo->LCDInfo & EnableScalingLCD)
-                               tempcx = LCDPtr1->LCDVSync;
+               if (pVBInfo->LCDInfo & EnableScalingLCD)
+                       tempcx = LCDPtr1->LCDVSync;
 
-                       tempcx += tempbx;
-                       if (tempcx >= tempax)
-                               tempcx -= tempax;
+               tempcx += tempbx;
+               if (tempcx >= tempax)
+                       tempcx -= tempax;
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x18,
-                                       (unsigned short) (tempbx & 0xff));
-                       xgifb_reg_and_or(pVBInfo->Part1Port, 0x19, ~0x0f,
-                                       (unsigned short) (tempcx & 0x0f));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x18,
+                               (unsigned short) (tempbx & 0xff));
+               xgifb_reg_and_or(pVBInfo->Part1Port, 0x19, ~0x0f,
+                               (unsigned short) (tempcx & 0x0f));
 
-                       tempax = ((tempbx >> 8) & 0x07) << 3;
+               tempax = ((tempbx >> 8) & 0x07) << 3;
 
-                       tempbx = pVBInfo->VGAVDE;
-                       if (tempbx != pVBInfo->VDE)
-                               tempax |= 0x40;
+               tempbx = pVBInfo->VGAVDE;
+               if (tempbx != pVBInfo->VDE)
+                       tempax |= 0x40;
 
-                       if (pVBInfo->LCDInfo & EnableLVDSDDA)
-                               tempax |= 0x40;
+               if (pVBInfo->LCDInfo & EnableLVDSDDA)
+                       tempax |= 0x40;
 
-                       xgifb_reg_and_or(pVBInfo->Part1Port, 0x1a, 0x07,
+               xgifb_reg_and_or(pVBInfo->Part1Port, 0x1a, 0x07,
                                        tempax);
 
-                       tempcx = pVBInfo->VGAVT;
-                       tempbx = pVBInfo->VDE;
-                       tempax = pVBInfo->VGAVDE;
-                       tempcx -= tempax;
+               tempcx = pVBInfo->VGAVT;
+               tempbx = pVBInfo->VDE;
+               tempax = pVBInfo->VGAVDE;
+               tempcx -= tempax;
 
-                       temp = tempax; /* 0430 ylshieh */
-                       temp1 = (temp << 18) / tempbx;
+               temp = tempax; /* 0430 ylshieh */
+               temp1 = (temp << 18) / tempbx;
 
-                       tempdx = (unsigned short) ((temp << 18) % tempbx);
+               tempdx = (unsigned short) ((temp << 18) % tempbx);
 
-                       if (tempdx != 0)
-                               temp1 += 1;
+               if (tempdx != 0)
+                       temp1 += 1;
 
-                       temp2 = temp1;
-                       push3 = temp2;
+               temp2 = temp1;
+               push3 = temp2;
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x37,
-                                       (unsigned short) (temp2 & 0xff));
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x36,
-                                       (unsigned short) ((temp2 >> 8) & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x37,
+                               (unsigned short) (temp2 & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x36,
+                               (unsigned short) ((temp2 >> 8) & 0xff));
 
-                       tempbx = (unsigned short) (temp2 >> 16);
-                       tempax = tempbx & 0x03;
+               tempbx = (unsigned short) (temp2 >> 16);
+               tempax = tempbx & 0x03;
 
-                       tempbx = pVBInfo->VGAVDE;
-                       if (tempbx == pVBInfo->VDE)
-                               tempax |= 0x04;
-
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x35, tempax);
-
-                       if (pVBInfo->VBType & VB_XGI301C) {
-                               temp2 = push3;
-                               xgifb_reg_set(pVBInfo->Part4Port,
-                                             0x3c,
-                                             (unsigned short) (temp2 & 0xff));
-                               xgifb_reg_set(pVBInfo->Part4Port,
-                                             0x3b,
-                                             (unsigned short) ((temp2 >> 8) &
-                                             0xff));
-                               tempbx = (unsigned short) (temp2 >> 16);
-                               xgifb_reg_and_or(pVBInfo->Part4Port, 0x3a,
-                                               ~0xc0,
-                                               (unsigned short) ((tempbx &
-                                                                  0xff) << 6));
-
-                               tempcx = pVBInfo->VGAVDE;
-                               if (tempcx == pVBInfo->VDE)
-                                       xgifb_reg_and_or(pVBInfo->Part4Port,
-                                                       0x30, ~0x0c, 0x00);
-                               else
-                                       xgifb_reg_and_or(pVBInfo->Part4Port,
-                                                       0x30, ~0x0c, 0x08);
-                       }
+               tempbx = pVBInfo->VGAVDE;
+               if (tempbx == pVBInfo->VDE)
+                       tempax |= 0x04;
 
-                       tempcx = pVBInfo->VGAHDE;
-                       tempbx = pVBInfo->HDE;
+               xgifb_reg_set(pVBInfo->Part1Port, 0x35, tempax);
 
-                       temp1 = tempcx << 16;
+               if (pVBInfo->VBType & VB_XGI301C) {
+                       temp2 = push3;
+                       xgifb_reg_set(pVBInfo->Part4Port,
+                                     0x3c,
+                                     (unsigned short) (temp2 & 0xff));
+                       xgifb_reg_set(pVBInfo->Part4Port,
+                                     0x3b,
+                                     (unsigned short) ((temp2 >> 8) &
+                                     0xff));
+                       tempbx = (unsigned short) (temp2 >> 16);
+                       xgifb_reg_and_or(pVBInfo->Part4Port, 0x3a,
+                                       ~0xc0,
+                                       (unsigned short) ((tempbx &
+                                                          0xff) << 6));
+
+                       tempcx = pVBInfo->VGAVDE;
+                       if (tempcx == pVBInfo->VDE)
+                               xgifb_reg_and_or(pVBInfo->Part4Port,
+                                               0x30, ~0x0c, 0x00);
+                       else
+                               xgifb_reg_and_or(pVBInfo->Part4Port,
+                                               0x30, ~0x0c, 0x08);
+               }
 
-                       tempax = (unsigned short) (temp1 / tempbx);
+               tempcx = pVBInfo->VGAHDE;
+               tempbx = pVBInfo->HDE;
 
-                       if ((tempbx & 0xffff) == (tempcx & 0xffff))
-                               tempax = 65535;
+               temp1 = tempcx << 16;
 
-                       temp3 = tempax;
-                       temp1 = pVBInfo->VGAHDE << 16;
+               tempax = (unsigned short) (temp1 / tempbx);
 
-                       temp1 /= temp3;
-                       temp3 = temp3 << 16;
-                       temp1 -= 1;
+               if ((tempbx & 0xffff) == (tempcx & 0xffff))
+                       tempax = 65535;
 
-                       temp3 = (temp3 & 0xffff0000) + (temp1 & 0xffff);
+               temp3 = tempax;
+               temp1 = pVBInfo->VGAHDE << 16;
 
-                       tempax = (unsigned short) (temp3 & 0xff);
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x1f, tempax);
+               temp1 /= temp3;
+               temp3 = temp3 << 16;
+               temp1 -= 1;
 
-                       temp1 = pVBInfo->VGAVDE << 18;
-                       temp1 = temp1 / push3;
-                       tempbx = (unsigned short) (temp1 & 0xffff);
+               temp3 = (temp3 & 0xffff0000) + (temp1 & 0xffff);
 
-                       if (pVBInfo->LCDResInfo == Panel1024x768)
-                               tempbx -= 1;
+               tempax = (unsigned short) (temp3 & 0xff);
+               xgifb_reg_set(pVBInfo->Part1Port, 0x1f, tempax);
 
-                       tempax = ((tempbx >> 8) & 0xff) << 3;
-                       tempax |= (unsigned short) ((temp3 >> 8) & 0x07);
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x20,
-                                       (unsigned short) (tempax & 0xff));
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x21,
-                                       (unsigned short) (tempbx & 0xff));
+               temp1 = pVBInfo->VGAVDE << 18;
+               temp1 = temp1 / push3;
+               tempbx = (unsigned short) (temp1 & 0xffff);
 
-                       temp3 = temp3 >> 16;
+               if (pVBInfo->LCDResInfo == Panel1024x768)
+                       tempbx -= 1;
 
-                       if (modeflag & HalfDCLK)
-                               temp3 = temp3 >> 1;
+               tempax = ((tempbx >> 8) & 0xff) << 3;
+               tempax |= (unsigned short) ((temp3 >> 8) & 0x07);
+               xgifb_reg_set(pVBInfo->Part1Port, 0x20,
+                               (unsigned short) (tempax & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x21,
+                               (unsigned short) (tempbx & 0xff));
 
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x22,
-                                       (unsigned short) ((temp3 >> 8) & 0xff));
-                       xgifb_reg_set(pVBInfo->Part1Port, 0x23,
-                                       (unsigned short) (temp3 & 0xff));
-               }
+               temp3 = temp3 >> 16;
+
+               if (modeflag & HalfDCLK)
+                       temp3 = temp3 >> 1;
+
+               xgifb_reg_set(pVBInfo->Part1Port, 0x22,
+                               (unsigned short) ((temp3 >> 8) & 0xff));
+               xgifb_reg_set(pVBInfo->Part1Port, 0x23,
+                               (unsigned short) (temp3 & 0xff));
        }
 }
 
@@ -3264,22 +3227,6 @@ static unsigned char XGI_GetVCLKPtr(unsigned short RefreshRateTableIndex,
                        if (pVBInfo->VBInfo & SetCRT2ToTV)
                                return tempal;
                }
-               /* else if ((pVBInfo->IF_DEF_CH7017==1) &&
-                           (pVBInfo->VBType&VB_CH7017)) {
-                       if (ModeNo<=0x13)
-                               *tempal = pVBInfo->SModeIDTable[ModeIdIndex].
-                                               St_CRT2CRTC;
-                       else
-                               *tempal = pVBInfo->RefIndex[
-                                       RefreshRateTableIndex].Ext_CRT2CRTC;
-                       *tempal = *tempal & 0x1F;
-                       tempbx = 0;
-                       if (pVBInfo->TVInfo & SetPALTV)
-                               tempbx = tempbx + 2;
-                       if (pVBInfo->TVInfo & SetCHTVOverScan)
-                               tempbx++;
-                       tempbx = tempbx << 1;
-               } */
        } /* {End of VB} */
 
        if ((pVBInfo->IF_DEF_CH7007 == 1) &&
@@ -3563,13 +3510,6 @@ void XGI_GetVBType(struct vb_device_info *pVBInfo)
                }
                pVBInfo->VBType = tempbx;
        }
-       /*
-       else if (pVBInfo->IF_DEF_CH7017 == 1)
-               pVBInfo->VBType = VB_CH7017;
-       else //LVDS
-               pVBInfo->VBType = VB_LVDS_NS;
-        */
-
 }
 
 void XGI_GetVBInfo(unsigned short ModeNo, unsigned short ModeIdIndex,
@@ -3627,17 +3567,6 @@ void XGI_GetVBInfo(unsigned short ModeNo, unsigned short ModeIdIndex,
                                                                  SetCRT2ToLCDA;
                                                }
                                        }
-                               } else if (pVBInfo->IF_DEF_CH7017 == 1) {
-                                       if (pVBInfo->VBType & VB_CH7017) {
-                                               if (temp & EnableDualEdge) {
-                                                       tempbx |=
-                                                           SetCRT2ToDualEdge;
-
-                                                       if (temp & SetToLCDA)
-                                                               tempbx |=
-                                                                 SetCRT2ToLCDA;
-                                               }
-                                       }
                                }
                        }
                }
@@ -3648,8 +3577,6 @@ void XGI_GetVBInfo(unsigned short ModeNo, unsigned short ModeIdIndex,
                            ((pVBInfo->VBType & VB_XGI301LV) ||
                            (pVBInfo->VBType & VB_XGI302LV) ||
                            (pVBInfo->VBType & VB_XGI301C))) ||
-                           ((pVBInfo->IF_DEF_CH7017 == 1) &&
-                           (pVBInfo->VBType & VB_CH7017)) ||
                            ((pVBInfo->IF_DEF_CH7007 == 1) &&
                            (pVBInfo->VBType & VB_CH7007))) {
                                if (temp & SetYPbPr) { /* temp = CR38 */
@@ -3690,12 +3617,8 @@ void XGI_GetVBInfo(unsigned short ModeNo, unsigned short ModeIdIndex,
                                        temp = 0x017C;
                        }
                } else { /* 3nd party chip */
-                       if (pVBInfo->IF_DEF_CH7017 == 1)
-                               temp = (SetCRT2ToTV |
-                                       SetCRT2ToLCD |
-                                       SetCRT2ToLCDA);
                        /* [Billy] 07/05/03 */
-                       else if (pVBInfo->IF_DEF_CH7007 == 1)
+                       if (pVBInfo->IF_DEF_CH7007 == 1)
                                temp = SetCRT2ToTV;
                        else
                                temp = SetCRT2ToLCD;
@@ -3880,13 +3803,6 @@ void XGI_GetTVInfo(unsigned short ModeNo, unsigned short ModeIdIndex,
                        */
                }
 
-               if (pVBInfo->IF_DEF_CH7017 == 1) {
-                       tempbx = xgifb_reg_get(pVBInfo->P3d4, 0x35);
-
-                       if (tempbx & TVOverScan)
-                               tempbx |= SetCHTVOverScan;
-               }
-
                if (pVBInfo->IF_DEF_CH7007 == 1) { /* [Billy] 07/05/04 */
                        tempbx = xgifb_reg_get(pVBInfo->P3d4, 0x35);
 
@@ -4028,11 +3944,6 @@ unsigned char XGI_GetLCDInfo(unsigned short ModeNo, unsigned short ModeIdIndex,
                }
        }
 
-       if (pVBInfo->IF_DEF_CH7017 == 1) {
-               if (tempax & LCDDualLink)
-                       tempbx |= SetLCDDualLink;
-       }
-
        if (pVBInfo->IF_DEF_LVDS == 0) {
                if ((pVBInfo->LCDResInfo == Panel1400x1050) && (pVBInfo->VBInfo
                                & SetCRT2ToLCD) && (ModeNo > 0x13) && (resinfo
@@ -7209,27 +7120,6 @@ void XGI_DisableBridge(struct xgi_hw_device_info *HwDeviceExtension,
        if (pVBInfo->SetFlag == Win9xDOSMode)
                return;
 
-       /*
-       if (CH7017) {
-               if (!(pVBInfo->VBInfo &
-                   (SetCRT2ToLCD | SetCRT2toLCDA)) ||
-                   (XGI_DisableChISLCD(pVBInfo))) {
-                       if (!XGI_IsLCDON(pVBInfo)) {
-                               if (DISCHARGE) {
-                                       tempbx = XGINew_GetCH7005(0x61);
-                                       // first time we power up
-                                       if (tempbx < 0x01)
-                                               // and disable power sequence
-                                               XGINew_SetCH7005(0x0066);
-                                       else
-                                               // leave VDD on - disable power
-                                               XGINew_SetCH7005(0x5f66);
-                               }
-                       }
-               }
-       }
-       */
-
        if (pVBInfo->VBType & (VB_XGI301B | VB_XGI302B | VB_XGI301LV
                        | VB_XGI302LV | VB_XGI301C)) {
                tempah = 0x3F;
@@ -8663,7 +8553,6 @@ unsigned char XGISetModeNew(struct xgi_hw_device_info *HwDeviceExtension,
        pVBInfo->IF_DEF_LVDS = 0;
        pVBInfo->IF_DEF_CH7005 = 0;
        pVBInfo->IF_DEF_LCDA = 1;
-       pVBInfo->IF_DEF_CH7017 = 0;
        pVBInfo->IF_DEF_CH7007 = 0; /* [Billy] 2007/05/14 */
        pVBInfo->IF_DEF_VideoCapture = 0;
        pVBInfo->IF_DEF_ScaleLCD = 0;
index 3ef79e08857e38a9783f950ab804b76f8d27c089..f4766b15cf96981b87d03a25b15735c2634050e7 100644 (file)
@@ -297,7 +297,7 @@ struct vb_device_info {
        /* ,IF_DEF_FSTN; add for dstn */
        unsigned short   IF_DEF_LVDS, IF_DEF_TRUMPION, IF_DEF_DSTN;
        unsigned short   IF_DEF_CRT2Monitor, IF_DEF_VideoCapture;
-       unsigned short   IF_DEF_LCDA, IF_DEF_CH7017, IF_DEF_YPbPr,
+       unsigned short   IF_DEF_LCDA, IF_DEF_YPbPr,
                         IF_DEF_ScaleLCD, IF_DEF_OEMUtil, IF_DEF_PWD;
        unsigned short   IF_DEF_ExpLink;
        unsigned short   IF_DEF_CH7005, IF_DEF_HiVision;
This page took 0.048176 seconds and 5 git commands to generate.