1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
3 * sisusb - usb kernel driver for SiS315(E) based USB2VGA dongles
5 * Display mode initializing code
7 * Copyright (C) 2001-2005 by Thomas Winischhofer, Vienna, Austria
9 * If distributed as part of the Linux kernel, this code is licensed under the
10 * terms of the GPL v2.
12 * Otherwise, the following license terms apply:
14 * * Redistribution and use in source and binary forms, with or without
15 * * modification, are permitted provided that the following conditions
17 * * 1) Redistributions of source code must retain the above copyright
18 * * notice, this list of conditions and the following disclaimer.
19 * * 2) Redistributions in binary form must reproduce the above copyright
20 * * notice, this list of conditions and the following disclaimer in the
21 * * documentation and/or other materials provided with the distribution.
22 * * 3) The name of the author may not be used to endorse or promote products
23 * * derived from this software without specific prior written permission.
25 * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 * Author: Thomas Winischhofer <thomas@winischhofer.net>
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/errno.h>
43 #include <linux/poll.h>
44 #include <linux/spinlock.h>
47 #include "sisusb_init.h"
48 #include "sisusb_tables.h"
50 /*********************************************/
51 /* POINTER INITIALIZATION */
52 /*********************************************/
54 static void SiSUSB_InitPtr(struct SiS_Private
*SiS_Pr
)
56 SiS_Pr
->SiS_ModeResInfo
= SiSUSB_ModeResInfo
;
57 SiS_Pr
->SiS_StandTable
= SiSUSB_StandTable
;
59 SiS_Pr
->SiS_SModeIDTable
= SiSUSB_SModeIDTable
;
60 SiS_Pr
->SiS_EModeIDTable
= SiSUSB_EModeIDTable
;
61 SiS_Pr
->SiS_RefIndex
= SiSUSB_RefIndex
;
62 SiS_Pr
->SiS_CRT1Table
= SiSUSB_CRT1Table
;
64 SiS_Pr
->SiS_VCLKData
= SiSUSB_VCLKData
;
67 /*********************************************/
68 /* HELPER: SetReg, GetReg */
69 /*********************************************/
72 SiS_SetReg(struct SiS_Private
*SiS_Pr
, unsigned long port
,
73 unsigned short index
, unsigned short data
)
75 sisusb_setidxreg(SiS_Pr
->sisusb
, port
, index
, data
);
79 SiS_SetRegByte(struct SiS_Private
*SiS_Pr
, unsigned long port
,
82 sisusb_setreg(SiS_Pr
->sisusb
, port
, data
);
86 SiS_GetReg(struct SiS_Private
*SiS_Pr
, unsigned long port
, unsigned short index
)
90 sisusb_getidxreg(SiS_Pr
->sisusb
, port
, index
, &data
);
96 SiS_GetRegByte(struct SiS_Private
*SiS_Pr
, unsigned long port
)
100 sisusb_getreg(SiS_Pr
->sisusb
, port
, &data
);
106 SiS_SetRegANDOR(struct SiS_Private
*SiS_Pr
, unsigned long port
,
107 unsigned short index
, unsigned short DataAND
,
108 unsigned short DataOR
)
110 sisusb_setidxregandor(SiS_Pr
->sisusb
, port
, index
, DataAND
, DataOR
);
114 SiS_SetRegAND(struct SiS_Private
*SiS_Pr
, unsigned long port
,
115 unsigned short index
, unsigned short DataAND
)
117 sisusb_setidxregand(SiS_Pr
->sisusb
, port
, index
, DataAND
);
121 SiS_SetRegOR(struct SiS_Private
*SiS_Pr
, unsigned long port
,
122 unsigned short index
, unsigned short DataOR
)
124 sisusb_setidxregor(SiS_Pr
->sisusb
, port
, index
, DataOR
);
127 /*********************************************/
128 /* HELPER: DisplayOn, DisplayOff */
129 /*********************************************/
131 static void SiS_DisplayOn(struct SiS_Private
*SiS_Pr
)
133 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x01, 0xDF);
136 /*********************************************/
137 /* HELPER: Init Port Addresses */
138 /*********************************************/
140 static void SiSUSBRegInit(struct SiS_Private
*SiS_Pr
, unsigned long BaseAddr
)
142 SiS_Pr
->SiS_P3c4
= BaseAddr
+ 0x14;
143 SiS_Pr
->SiS_P3d4
= BaseAddr
+ 0x24;
144 SiS_Pr
->SiS_P3c0
= BaseAddr
+ 0x10;
145 SiS_Pr
->SiS_P3ce
= BaseAddr
+ 0x1e;
146 SiS_Pr
->SiS_P3c2
= BaseAddr
+ 0x12;
147 SiS_Pr
->SiS_P3ca
= BaseAddr
+ 0x1a;
148 SiS_Pr
->SiS_P3c6
= BaseAddr
+ 0x16;
149 SiS_Pr
->SiS_P3c7
= BaseAddr
+ 0x17;
150 SiS_Pr
->SiS_P3c8
= BaseAddr
+ 0x18;
151 SiS_Pr
->SiS_P3c9
= BaseAddr
+ 0x19;
152 SiS_Pr
->SiS_P3cb
= BaseAddr
+ 0x1b;
153 SiS_Pr
->SiS_P3cc
= BaseAddr
+ 0x1c;
154 SiS_Pr
->SiS_P3cd
= BaseAddr
+ 0x1d;
155 SiS_Pr
->SiS_P3da
= BaseAddr
+ 0x2a;
156 SiS_Pr
->SiS_Part1Port
= BaseAddr
+ SIS_CRT2_PORT_04
;
159 /*********************************************/
160 /* HELPER: GetSysFlags */
161 /*********************************************/
163 static void SiS_GetSysFlags(struct SiS_Private
*SiS_Pr
)
165 SiS_Pr
->SiS_MyCR63
= 0x63;
168 /*********************************************/
169 /* HELPER: Init PCI & Engines */
170 /*********************************************/
172 static void SiSInitPCIetc(struct SiS_Private
*SiS_Pr
)
174 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x20, 0xa1);
175 /* - Enable 2D (0x40)
177 * - Enable 3D vertex command fetch (0x10)
178 * - Enable 3D command parser (0x08)
179 * - Enable 3D G/L transformation engine (0x80)
181 SiS_SetRegOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x1E, 0xDA);
184 /*********************************************/
185 /* HELPER: SET SEGMENT REGISTERS */
186 /*********************************************/
188 static void SiS_SetSegRegLower(struct SiS_Private
*SiS_Pr
, unsigned short value
)
193 temp
= SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cb
) & 0xf0;
194 temp
|= (value
>> 4);
195 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cb
, temp
);
196 temp
= SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cd
) & 0xf0;
197 temp
|= (value
& 0x0f);
198 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cd
, temp
);
201 static void SiS_SetSegRegUpper(struct SiS_Private
*SiS_Pr
, unsigned short value
)
206 temp
= SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cb
) & 0x0f;
207 temp
|= (value
& 0xf0);
208 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cb
, temp
);
209 temp
= SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cd
) & 0x0f;
210 temp
|= (value
<< 4);
211 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3cd
, temp
);
214 static void SiS_SetSegmentReg(struct SiS_Private
*SiS_Pr
, unsigned short value
)
216 SiS_SetSegRegLower(SiS_Pr
, value
);
217 SiS_SetSegRegUpper(SiS_Pr
, value
);
220 static void SiS_ResetSegmentReg(struct SiS_Private
*SiS_Pr
)
222 SiS_SetSegmentReg(SiS_Pr
, 0);
226 SiS_SetSegmentRegOver(struct SiS_Private
*SiS_Pr
, unsigned short value
)
228 unsigned short temp
= value
>> 8;
232 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x1d, temp
);
233 SiS_SetSegmentReg(SiS_Pr
, value
);
236 static void SiS_ResetSegmentRegOver(struct SiS_Private
*SiS_Pr
)
238 SiS_SetSegmentRegOver(SiS_Pr
, 0);
241 static void SiS_ResetSegmentRegisters(struct SiS_Private
*SiS_Pr
)
243 SiS_ResetSegmentReg(SiS_Pr
);
244 SiS_ResetSegmentRegOver(SiS_Pr
);
247 /*********************************************/
248 /* HELPER: SearchModeID */
249 /*********************************************/
252 SiS_SearchModeID(struct SiS_Private
*SiS_Pr
, unsigned short *ModeNo
,
253 unsigned short *ModeIdIndex
)
255 if ((*ModeNo
) <= 0x13) {
257 if ((*ModeNo
) != 0x03)
264 for (*ModeIdIndex
= 0;; (*ModeIdIndex
)++) {
266 if (SiS_Pr
->SiS_EModeIDTable
[*ModeIdIndex
].Ext_ModeID
==
270 if (SiS_Pr
->SiS_EModeIDTable
[*ModeIdIndex
].Ext_ModeID
==
280 /*********************************************/
281 /* HELPER: ENABLE CRT1 */
282 /*********************************************/
284 static void SiS_HandleCRT1(struct SiS_Private
*SiS_Pr
)
286 /* Enable CRT1 gating */
287 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3d4
, SiS_Pr
->SiS_MyCR63
, 0xbf);
290 /*********************************************/
291 /* HELPER: GetColorDepth */
292 /*********************************************/
294 static unsigned short
295 SiS_GetColorDepth(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
296 unsigned short ModeIdIndex
)
298 static const unsigned short ColorDepth
[6] = { 1, 2, 4, 4, 6, 8 };
299 unsigned short modeflag
;
302 if (ModeNo
<= 0x13) {
303 modeflag
= SiS_Pr
->SiS_SModeIDTable
[ModeIdIndex
].St_ModeFlag
;
305 modeflag
= SiS_Pr
->SiS_EModeIDTable
[ModeIdIndex
].Ext_ModeFlag
;
308 index
= (modeflag
& ModeTypeMask
) - ModeEGA
;
311 return ColorDepth
[index
];
314 /*********************************************/
315 /* HELPER: GetOffset */
316 /*********************************************/
318 static unsigned short
319 SiS_GetOffset(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
320 unsigned short ModeIdIndex
, unsigned short rrti
)
322 unsigned short xres
, temp
, colordepth
, infoflag
;
324 infoflag
= SiS_Pr
->SiS_RefIndex
[rrti
].Ext_InfoFlag
;
325 xres
= SiS_Pr
->SiS_RefIndex
[rrti
].XRes
;
327 colordepth
= SiS_GetColorDepth(SiS_Pr
, ModeNo
, ModeIdIndex
);
331 if (infoflag
& InterlaceMode
)
337 temp
+= (colordepth
>> 1);
342 /*********************************************/
344 /*********************************************/
347 SiS_SetSeqRegs(struct SiS_Private
*SiS_Pr
, unsigned short StandTableIndex
)
349 unsigned char SRdata
;
352 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x00, 0x03);
354 SRdata
= SiS_Pr
->SiS_StandTable
[StandTableIndex
].SR
[0] | 0x20;
355 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x01, SRdata
);
357 for (i
= 2; i
<= 4; i
++) {
358 SRdata
= SiS_Pr
->SiS_StandTable
[StandTableIndex
].SR
[i
- 1];
359 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, i
, SRdata
);
363 /*********************************************/
365 /*********************************************/
368 SiS_SetMiscRegs(struct SiS_Private
*SiS_Pr
, unsigned short StandTableIndex
)
370 unsigned char Miscdata
= SiS_Pr
->SiS_StandTable
[StandTableIndex
].MISC
;
372 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c2
, Miscdata
);
375 /*********************************************/
377 /*********************************************/
380 SiS_SetCRTCRegs(struct SiS_Private
*SiS_Pr
, unsigned short StandTableIndex
)
382 unsigned char CRTCdata
;
385 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x11, 0x7f);
387 for (i
= 0; i
<= 0x18; i
++) {
388 CRTCdata
= SiS_Pr
->SiS_StandTable
[StandTableIndex
].CRTC
[i
];
389 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, i
, CRTCdata
);
393 /*********************************************/
395 /*********************************************/
398 SiS_SetATTRegs(struct SiS_Private
*SiS_Pr
, unsigned short StandTableIndex
)
400 unsigned char ARdata
;
403 for (i
= 0; i
<= 0x13; i
++) {
404 ARdata
= SiS_Pr
->SiS_StandTable
[StandTableIndex
].ATTR
[i
];
405 SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3da
);
406 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c0
, i
);
407 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c0
, ARdata
);
409 SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3da
);
410 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c0
, 0x14);
411 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c0
, 0x00);
413 SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3da
);
414 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c0
, 0x20);
415 SiS_GetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3da
);
418 /*********************************************/
420 /*********************************************/
423 SiS_SetGRCRegs(struct SiS_Private
*SiS_Pr
, unsigned short StandTableIndex
)
425 unsigned char GRdata
;
428 for (i
= 0; i
<= 0x08; i
++) {
429 GRdata
= SiS_Pr
->SiS_StandTable
[StandTableIndex
].GRC
[i
];
430 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3ce
, i
, GRdata
);
433 if (SiS_Pr
->SiS_ModeType
> ModeVGA
) {
434 /* 256 color disable */
435 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3ce
, 0x05, 0xBF);
439 /*********************************************/
440 /* CLEAR EXTENDED REGISTERS */
441 /*********************************************/
443 static void SiS_ClearExt1Regs(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
)
447 for (i
= 0x0A; i
<= 0x0E; i
++) {
448 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, i
, 0x00);
451 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x37, 0xFE);
454 /*********************************************/
456 /*********************************************/
458 static unsigned short
459 SiS_GetRatePtr(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
460 unsigned short ModeIdIndex
)
462 unsigned short rrti
, i
, index
, temp
;
467 index
= SiS_GetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x33) & 0x0F;
471 rrti
= SiS_Pr
->SiS_EModeIDTable
[ModeIdIndex
].REFindex
;
472 ModeNo
= SiS_Pr
->SiS_RefIndex
[rrti
].ModeID
;
476 if (SiS_Pr
->SiS_RefIndex
[rrti
+ i
].ModeID
!= ModeNo
)
480 SiS_Pr
->SiS_RefIndex
[rrti
+ i
].Ext_InfoFlag
& ModeTypeMask
;
481 if (temp
< SiS_Pr
->SiS_ModeType
)
486 } while (index
!= 0xFFFF);
493 /*********************************************/
495 /*********************************************/
497 static void SiS_SetCRT1Sync(struct SiS_Private
*SiS_Pr
, unsigned short rrti
)
499 unsigned short sync
= SiS_Pr
->SiS_RefIndex
[rrti
].Ext_InfoFlag
>> 8;
502 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c2
, sync
);
505 /*********************************************/
507 /*********************************************/
510 SiS_SetCRT1CRTC(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
511 unsigned short ModeIdIndex
, unsigned short rrti
)
514 unsigned short temp
, i
, j
, modeflag
;
516 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x11, 0x7f);
518 modeflag
= SiS_Pr
->SiS_EModeIDTable
[ModeIdIndex
].Ext_ModeFlag
;
520 index
= SiS_Pr
->SiS_RefIndex
[rrti
].Ext_CRT1CRTC
;
522 for (i
= 0, j
= 0; i
<= 7; i
++, j
++) {
523 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, j
,
524 SiS_Pr
->SiS_CRT1Table
[index
].CR
[i
]);
526 for (j
= 0x10; i
<= 10; i
++, j
++) {
527 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, j
,
528 SiS_Pr
->SiS_CRT1Table
[index
].CR
[i
]);
530 for (j
= 0x15; i
<= 12; i
++, j
++) {
531 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, j
,
532 SiS_Pr
->SiS_CRT1Table
[index
].CR
[i
]);
534 for (j
= 0x0A; i
<= 15; i
++, j
++) {
535 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, j
,
536 SiS_Pr
->SiS_CRT1Table
[index
].CR
[i
]);
539 temp
= SiS_Pr
->SiS_CRT1Table
[index
].CR
[16] & 0xE0;
540 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x0E, temp
);
542 temp
= ((SiS_Pr
->SiS_CRT1Table
[index
].CR
[16]) & 0x01) << 5;
543 if (modeflag
& DoubleScanMode
)
545 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x09, 0x5F, temp
);
547 if (SiS_Pr
->SiS_ModeType
> ModeVGA
)
548 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x14, 0x4F);
551 /*********************************************/
553 /*********************************************/
554 /* (partly overruled by SetPitch() in XF86) */
555 /*********************************************/
558 SiS_SetCRT1Offset(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
559 unsigned short ModeIdIndex
, unsigned short rrti
)
561 unsigned short du
= SiS_GetOffset(SiS_Pr
, ModeNo
, ModeIdIndex
, rrti
);
562 unsigned short infoflag
= SiS_Pr
->SiS_RefIndex
[rrti
].Ext_InfoFlag
;
565 temp
= (du
>> 8) & 0x0f;
566 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x0E, 0xF0, temp
);
568 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x13, (du
& 0xFF));
570 if (infoflag
& InterlaceMode
)
574 temp
= (du
>> 8) & 0xff;
578 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x10, temp
);
581 /*********************************************/
583 /*********************************************/
586 SiS_SetCRT1VCLK(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
589 unsigned short index
= SiS_Pr
->SiS_RefIndex
[rrti
].Ext_CRTVCLK
;
590 unsigned short clka
= SiS_Pr
->SiS_VCLKData
[index
].SR2B
;
591 unsigned short clkb
= SiS_Pr
->SiS_VCLKData
[index
].SR2C
;
593 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x31, 0xCF);
595 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x2B, clka
);
596 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x2C, clkb
);
597 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x2D, 0x01);
600 /*********************************************/
602 /*********************************************/
605 SiS_SetCRT1FIFO_310(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
608 unsigned short modeflag
= SiS_Pr
->SiS_EModeIDTable
[mi
].Ext_ModeFlag
;
610 /* disable auto-threshold */
611 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x3D, 0xFE);
613 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x08, 0xAE);
614 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x09, 0xF0);
619 if ((!(modeflag
& DoubleScanMode
)) || (!(modeflag
& HalfDCLK
))) {
620 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x08, 0x34);
621 SiS_SetRegOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x3D, 0x01);
625 /*********************************************/
627 /*********************************************/
630 SiS_SetVCLKState(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
633 unsigned short data
= 0, VCLK
= 0, index
= 0;
636 index
= SiS_Pr
->SiS_RefIndex
[rrti
].Ext_CRTVCLK
;
637 VCLK
= SiS_Pr
->SiS_VCLKData
[index
].CLOCK
;
642 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x32, 0xf3, data
);
645 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x1f, 0xe7);
651 else if (VCLK
>= 160)
653 else if (VCLK
>= 135)
656 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x07, 0xF8, data
);
660 SiS_SetCRT1ModeRegs(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
661 unsigned short ModeIdIndex
, unsigned short rrti
)
663 unsigned short data
, infoflag
= 0, modeflag
;
666 modeflag
= SiS_Pr
->SiS_SModeIDTable
[ModeIdIndex
].St_ModeFlag
;
668 modeflag
= SiS_Pr
->SiS_EModeIDTable
[ModeIdIndex
].Ext_ModeFlag
;
669 infoflag
= SiS_Pr
->SiS_RefIndex
[rrti
].Ext_InfoFlag
;
673 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x1F, 0x3F);
677 if (SiS_Pr
->SiS_ModeType
> ModeEGA
) {
679 data
|= ((SiS_Pr
->SiS_ModeType
- ModeVGA
) << 2);
681 if (infoflag
& InterlaceMode
)
684 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x06, 0xC0, data
);
687 if (infoflag
& InterlaceMode
) {
688 /* data = (Hsync / 8) - ((Htotal / 8) / 2) + 3 */
690 (SiS_GetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x04) |
691 ((SiS_GetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x0b) & 0xc0) << 2))
694 (SiS_GetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x00) |
695 ((SiS_GetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x0b) & 0x03) << 8))
697 data
= hrs
- (hto
>> 1) + 3;
699 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x19, (data
& 0xFF));
700 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x1a, 0xFC, (data
>> 8));
702 if (modeflag
& HalfDCLK
)
703 SiS_SetRegOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x01, 0x08);
706 if (modeflag
& LineCompareOff
)
708 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x0F, 0xB7, data
);
710 if ((SiS_Pr
->SiS_ModeType
== ModeEGA
) && (ModeNo
> 0x13))
711 SiS_SetRegOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x0F, 0x40);
713 SiS_SetRegAND(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x31, 0xfb);
716 if (SiS_Pr
->SiS_ModeType
!= ModeText
) {
718 if (SiS_Pr
->SiS_ModeType
!= ModeEGA
)
721 SiS_SetRegANDOR(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x21, 0x1F, data
);
723 SiS_SetVCLKState(SiS_Pr
, ModeNo
, rrti
);
725 if (SiS_GetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x31) & 0x40)
726 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x52, 0x2c);
728 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x52, 0x6c);
731 /*********************************************/
733 /*********************************************/
736 SiS_WriteDAC(struct SiS_Private
*SiS_Pr
, unsigned long DACData
,
737 unsigned short shiftflag
, unsigned short dl
, unsigned short ah
,
738 unsigned short al
, unsigned short dh
)
740 unsigned short d1
, d2
, d3
;
758 SiS_SetRegByte(SiS_Pr
, DACData
, (d1
<< shiftflag
));
759 SiS_SetRegByte(SiS_Pr
, DACData
, (d2
<< shiftflag
));
760 SiS_SetRegByte(SiS_Pr
, DACData
, (d3
<< shiftflag
));
764 SiS_LoadDAC(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
767 unsigned short data
, data2
, time
, i
, j
, k
, m
, n
, o
;
768 unsigned short si
, di
, bx
, sf
;
769 unsigned long DACAddr
, DACData
;
770 const unsigned char *table
= NULL
;
773 data
= SiS_Pr
->SiS_SModeIDTable
[mi
].St_ModeFlag
;
775 data
= SiS_Pr
->SiS_EModeIDTable
[mi
].Ext_ModeFlag
;
782 else if (data
== 0x08)
784 else if (data
== 0x10)
792 DACAddr
= SiS_Pr
->SiS_P3c8
;
793 DACData
= SiS_Pr
->SiS_P3c9
;
795 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c6
, 0xFF);
797 SiS_SetRegByte(SiS_Pr
, DACAddr
, 0x00);
799 for (i
= 0; i
< j
; i
++) {
801 for (k
= 0; k
< 3; k
++) {
807 SiS_SetRegByte(SiS_Pr
, DACData
, (data2
<< sf
));
813 for (i
= 16; i
< 32; i
++) {
814 data
= table
[i
] << sf
;
815 for (k
= 0; k
< 3; k
++)
816 SiS_SetRegByte(SiS_Pr
, DACData
, data
);
819 for (m
= 0; m
< 9; m
++) {
822 for (n
= 0; n
< 3; n
++) {
823 for (o
= 0; o
< 5; o
++) {
824 SiS_WriteDAC(SiS_Pr
, DACData
, sf
, n
,
825 table
[di
], table
[bx
],
830 for (o
= 0; o
< 3; o
++) {
831 SiS_WriteDAC(SiS_Pr
, DACData
, sf
, n
,
832 table
[di
], table
[si
],
842 /*********************************************/
843 /* SET CRT1 REGISTER GROUP */
844 /*********************************************/
847 SiS_SetCRT1Group(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
,
848 unsigned short ModeIdIndex
)
850 unsigned short StandTableIndex
, rrti
;
852 SiS_Pr
->SiS_CRT1Mode
= ModeNo
;
859 SiS_ResetSegmentRegisters(SiS_Pr
);
860 SiS_SetSeqRegs(SiS_Pr
, StandTableIndex
);
861 SiS_SetMiscRegs(SiS_Pr
, StandTableIndex
);
862 SiS_SetCRTCRegs(SiS_Pr
, StandTableIndex
);
863 SiS_SetATTRegs(SiS_Pr
, StandTableIndex
);
864 SiS_SetGRCRegs(SiS_Pr
, StandTableIndex
);
865 SiS_ClearExt1Regs(SiS_Pr
, ModeNo
);
867 rrti
= SiS_GetRatePtr(SiS_Pr
, ModeNo
, ModeIdIndex
);
869 if (rrti
!= 0xFFFF) {
870 SiS_SetCRT1Sync(SiS_Pr
, rrti
);
871 SiS_SetCRT1CRTC(SiS_Pr
, ModeNo
, ModeIdIndex
, rrti
);
872 SiS_SetCRT1Offset(SiS_Pr
, ModeNo
, ModeIdIndex
, rrti
);
873 SiS_SetCRT1VCLK(SiS_Pr
, ModeNo
, rrti
);
876 SiS_SetCRT1FIFO_310(SiS_Pr
, ModeNo
, ModeIdIndex
);
878 SiS_SetCRT1ModeRegs(SiS_Pr
, ModeNo
, ModeIdIndex
, rrti
);
880 SiS_LoadDAC(SiS_Pr
, ModeNo
, ModeIdIndex
);
882 SiS_DisplayOn(SiS_Pr
);
885 /*********************************************/
887 /*********************************************/
889 int SiSUSBSetMode(struct SiS_Private
*SiS_Pr
, unsigned short ModeNo
)
891 unsigned short ModeIdIndex
;
892 unsigned long BaseAddr
= SiS_Pr
->IOAddress
;
894 SiSUSB_InitPtr(SiS_Pr
);
895 SiSUSBRegInit(SiS_Pr
, BaseAddr
);
896 SiS_GetSysFlags(SiS_Pr
);
898 if (!(SiS_SearchModeID(SiS_Pr
, &ModeNo
, &ModeIdIndex
)))
901 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3c4
, 0x05, 0x86);
903 SiSInitPCIetc(SiS_Pr
);
907 SiS_Pr
->SiS_ModeType
=
908 SiS_Pr
->SiS_EModeIDTable
[ModeIdIndex
].Ext_ModeFlag
& ModeTypeMask
;
910 SiS_Pr
->SiS_SetFlag
= LowModeTests
;
912 /* Set mode on CRT1 */
913 SiS_SetCRT1Group(SiS_Pr
, ModeNo
, ModeIdIndex
);
915 SiS_HandleCRT1(SiS_Pr
);
917 SiS_DisplayOn(SiS_Pr
);
918 SiS_SetRegByte(SiS_Pr
, SiS_Pr
->SiS_P3c6
, 0xFF);
920 /* Store mode number */
921 SiS_SetReg(SiS_Pr
, SiS_Pr
->SiS_P3d4
, 0x34, ModeNo
);
926 int SiSUSBSetVESAMode(struct SiS_Private
*SiS_Pr
, unsigned short VModeNo
)
928 unsigned short ModeNo
= 0;
931 SiSUSB_InitPtr(SiS_Pr
);
933 if (VModeNo
== 0x03) {
942 if (SiS_Pr
->SiS_EModeIDTable
[i
].Ext_VESAID
== VModeNo
) {
943 ModeNo
= SiS_Pr
->SiS_EModeIDTable
[i
].Ext_ModeID
;
947 } while (SiS_Pr
->SiS_EModeIDTable
[i
++].Ext_ModeID
!= 0xff);
954 return SiSUSBSetMode(SiS_Pr
, ModeNo
);