1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
/*
* Copyright 1997 through 2004 by Marc Aurele La France (TSI @ UQV), tsi@xfree86.org
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that copyright
* notice and this permission notice appear in supporting documentation, and
* that the name of Marc Aurele La France not be used in advertising or
* publicity pertaining to distribution of the software without specific,
* written prior permission. Marc Aurele La France makes no representations
* about the suitability of this software for any purpose. It is provided
* "as-is" without express or implied warranty.
*
* MARC AURELE LA FRANCE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
* EVENT SHALL MARC AURELE LA FRANCE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "ati.h"
#include "atiadapter.h"
#include "atichip.h"
#include "atimono.h"
#include "atistruct.h"
#include "ativga.h"
#include "ativgaio.h"
#ifndef DPMS_SERVER
# define DPMS_SERVER
#endif
#include <X11/extensions/dpms.h>
#ifndef AVOID_CPIO
/*
* ATIVGAPreInit --
*
* This function is called to set up VGA-related data that is common to all
* video modes generated by the driver.
*/
void
ATIVGAPreInit
(
ATIPtr pATI,
ATIHWPtr pATIHW
)
{
int Index;
/* Initialise sequencer register values */
pATIHW->seq[0] = 0x03U;
if (pATI->depth == 1)
pATIHW->seq[2] = 0x01U << BIT_PLANE;
else
pATIHW->seq[2] = 0x0FU;
if (pATI->depth <= 4)
pATIHW->seq[4] = 0x06U;
else if (pATI->Adapter == ATI_ADAPTER_VGA)
pATIHW->seq[4] = 0x0EU;
else
pATIHW->seq[4] = 0x0AU;
/* Initialise CRTC register values */
if ((pATI->depth >= 8) &&
((pATI->Chip >= ATI_CHIP_264CT) ||
(pATI->CPIO_VGAWonder &&
(pATI->Chip <= ATI_CHIP_18800_1) &&
(pATI->VideoRAM == 256))))
pATIHW->crt[19] = pATI->displayWidth >> 3;
else
pATIHW->crt[19] = pATI->displayWidth >> 4;
if ((pATI->depth >= 8) && (pATI->Adapter == ATI_ADAPTER_VGA))
pATIHW->crt[23] = 0xC3U;
else
pATIHW->crt[23] = 0xE3U;
pATIHW->crt[24] = 0xFFU;
/* Initialise attribute controller register values */
if (pATI->depth == 1)
{
Bool FlipPixels = xf86GetFlipPixels();
for (Index = 0; Index < 16; Index++)
if (((Index & (0x01U << BIT_PLANE)) != 0) != FlipPixels)
pATIHW->attr[Index] = MONO_WHITE;
else
pATIHW->attr[Index] = MONO_BLACK;
pATIHW->attr[16] = 0x01U;
pATIHW->attr[17] = MONO_OVERSCAN;
}
else
{
for (Index = 0; Index < 16; Index++)
pATIHW->attr[Index] = Index;
if (pATI->depth <= 4)
pATIHW->attr[16] = 0x81U;
else if (pATI->Adapter == ATI_ADAPTER_VGA)
pATIHW->attr[16] = 0x41U;
else
pATIHW->attr[16] = 0x01U;
pATIHW->attr[17] = 0xFFU;
}
pATIHW->attr[18] = 0x0FU;
/* Initialise graphics controller register values */
if (pATI->depth == 1)
pATIHW->gra[4] = BIT_PLANE;
else if (pATI->depth <= 4)
pATIHW->gra[5] = 0x02U;
else if (pATI->Chip >= ATI_CHIP_264CT)
pATIHW->gra[5] = 0x40U;
if (pATI->UseSmallApertures && (pATI->Chip >= ATI_CHIP_264CT) &&
((pATI->Chip >= ATI_CHIP_264VT) || !pATI->LinearBase))
pATIHW->gra[6] = 0x01U; /* 128kB aperture */
else
pATIHW->gra[6] = 0x05U; /* 64kB aperture */
pATIHW->gra[7] = 0x0FU;
pATIHW->gra[8] = 0xFFU;
}
/*
* ATIVGASave --
*
* This function is called to save the VGA portion of the current video state.
*/
void
ATIVGASave
(
ATIPtr pATI,
ATIHWPtr pATIHW
)
{
int Index;
/* Save miscellaneous output register */
pATIHW->genmo = inb(R_GENMO);
ATISetVGAIOBase(pATI, pATIHW->genmo);
/* Save sequencer registers */
for (Index = 0; Index < NumberOf(pATIHW->seq); Index++)
pATIHW->seq[Index] = GetReg(SEQX, Index);
/* Save CRTC registers */
for (Index = 0; Index < NumberOf(pATIHW->crt); Index++)
pATIHW->crt[Index] = GetReg(CRTX(pATI->CPIO_VGABase), Index);
/* Save attribute controller registers */
for (Index = 0; Index < NumberOf(pATIHW->attr); Index++)
{
(void)inb(GENS1(pATI->CPIO_VGABase)); /* Reset flip-flop */
pATIHW->attr[Index] = GetReg(ATTRX, Index);
}
/* Save graphics controller registers */
for (Index = 0; Index < NumberOf(pATIHW->gra); Index++)
pATIHW->gra[Index] = GetReg(GRAX, Index);
}
/*
* ATIVGASet --
*
* This function is called to load the VGA portion of a video state.
*/
void
ATIVGASet
(
ATIPtr pATI,
ATIHWPtr pATIHW
)
{
int Index;
/* Set VGA I/O base */
ATISetVGAIOBase(pATI, pATIHW->genmo);
/* Load miscellaneous output register */
outb(GENMO, pATIHW->genmo);
/* Load sequencer in reverse index order; this also ends its reset */
for (Index = NumberOf(pATIHW->seq); --Index >= 0; )
PutReg(SEQX, Index, pATIHW->seq[Index]);
/* Load CRTC registers */
for (Index = 0; Index < NumberOf(pATIHW->crt); Index++)
PutReg(CRTX(pATI->CPIO_VGABase), Index, pATIHW->crt[Index]);
/* Load attribute controller registers */
for (Index = 0; Index < NumberOf(pATIHW->attr); Index++)
{
(void)inb(GENS1(pATI->CPIO_VGABase)); /* Reset flip-flop & delay */
outb(ATTRX, Index);
outb(ATTRX, pATIHW->attr[Index]);
}
/* Load graphics controller registers */
for (Index = 0; Index < NumberOf(pATIHW->gra); Index++)
PutReg(GRAX, Index, pATIHW->gra[Index]);
}
/*
* ATIVGASaveScreen --
*
* This function blanks or unblanks a VGA screen.
*/
void
ATIVGASaveScreen
(
ATIPtr pATI,
int Mode
)
{
(void)inb(GENS1(pATI->CPIO_VGABase)); /* Reset flip-flop */
switch (Mode)
{
case SCREEN_SAVER_OFF:
case SCREEN_SAVER_FORCER:
outb(ATTRX, 0x20U); /* Turn PAS on */
break;
case SCREEN_SAVER_ON:
case SCREEN_SAVER_CYCLE:
outb(ATTRX, 0x00U); /* Turn PAS off */
break;
default:
break;
}
}
/*
* ATIVGASetDPMSMode --
*
* This function sets a VGA's VESA Display Power Management Signaling mode.
*/
void
ATIVGASetDPMSMode
(
ATIPtr pATI,
int DPMSMode
)
{
CARD8 seq1, crt17;
switch (DPMSMode)
{
case DPMSModeOn: /* HSync on, VSync on */
seq1 = 0x00U;
crt17 = 0x80U;
break;
case DPMSModeStandby: /* HSync off, VSync on -- unsupported */
seq1 = 0x20U;
crt17 = 0x80U;
break;
case DPMSModeSuspend: /* HSync on, VSync off -- unsupported */
seq1 = 0x20U;
crt17 = 0x80U;
break;
case DPMSModeOff: /* HSync off, VSync off */
seq1 = 0x20U;
crt17 = 0x00U;
break;
default: /* Muffle compiler */
return;
}
PutReg(SEQX, 0x00U, 0x01U); /* Start synchonous reset */
seq1 |= GetReg(SEQX, 0x01U) & ~0x20U;
PutReg(SEQX, 0x01U, seq1);
crt17 |= GetReg(CRTX(pATI->CPIO_VGABase), 0x17U) & ~0x80U;
usleep(10000);
PutReg(CRTX(pATI->CPIO_VGABase), 0x17U, crt17);
PutReg(SEQX, 0x01U, 0x03U); /* End synchonous reset */
}
#endif /* AVOID_CPIO */
|