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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/ati/atipreinit.c,v 1.12 2000/02/18 12:19:28 tsi Exp $ */
/*
* Copyright 1999 through 2000 by Marc Aurele La France (TSI @ UQV), tsi@ualberta.ca
*
* 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.
*/
#include "ati.h"
#include "atiadapter.h"
#include "atiadjust.h"
#include "atibios.h"
#include "atibus.h"
#include "atichip.h"
#include "atidac.h"
#include "atidsp.h"
#include "atiident.h"
#include "atilock.h"
#include "atimodule.h"
#include "atioption.h"
#include "atipreinit.h"
#include "atiprint.h"
#include "atividmem.h"
#include "xf86RAC.h"
#include "xf86Resources.h"
typedef CARD16 Colour; /* The correct spelling should be OK :-) */
/*
* Bit patterns which are extremely unlikely to show up when reading from
* nonexistant memory (which normally shows up as either all bits set or all
* bits clear).
*/
static const Colour Test_Pixel[] = {0x5AA5U, 0x55AAU, 0xA55AU, 0xCA53U};
static const struct
{
int videoRamSize;
int Miscellaneous_Options_Setting;
struct
{
short int x, y;
}
Coordinates[NumberOf(Test_Pixel) + 1];
}
Test_Case[] =
{
/*
* Given the engine settings used, only a 4M card will have enough memory
* to back up the 1025th line of the display. Since the pixel coordinates
* are zero-based, line 1024 will be the first one which is only backed on
* 4M cards.
*
* <Mark_Weaver@brown.edu>:
* In case memory is being wrapped, (0,0) and (0,1024) to make sure they
* can each hold a unique value.
*/
{4096, MEM_SIZE_4M, {{0,0}, {0,1024}, {-1,-1}}},
/*
* This card has 2M or less. On a 1M card, the first 2M of the card's
* memory will have even doublewords backed by physical memory and odd
* doublewords unbacked.
*
* Pixels 0 and 1 of a row will be in the zeroth doubleword, while pixels 2
* and 3 will be in the first. Check both pixels 2 and 3 in case this is a
* pseudo-1M card (one chip pulled to turn a 2M card into a 1M card).
*
* <Mark_Weaver@brown.edu>:
* I don't have a 1M card, so I'm taking a stab in the dark. Maybe memory
* wraps every 512 lines, or maybe odd doublewords are aliases of their
* even doubleword counterparts. I try everything here.
*/
{2048, MEM_SIZE_2M, {{0,0}, {0,512}, {2,0}, {3,0}, {-1,-1}}},
/*
* This is a either a 1M card or a 512k card. Test pixel 1, since it is an
* odd word in an even doubleword.
*
* <Mark_Weaver@brown.edu>:
* This is the same idea as the test above.
*/
{1024, MEM_SIZE_1M, {{0,0}, {0,256}, {1,0}, {-1,-1}}},
/*
* Assume it is a 512k card by default, since that is the minimum
* configuration.
*/
{512, MEM_SIZE_512K, {{-1,-1}}}
};
/*
* ATIMach32ReadPixel --
*
* Return the colour of the specified screen location. Called from
* ATIMach32videoRam function below.
*/
static Colour
ATIMach32ReadPixel
(
const short int X,
const short int Y
)
{
Colour Pixel_Colour;
/* Wait for idle engine */
ProbeWaitIdleEmpty();
/* Set up engine for pixel read */
ATIWaitQueue(7);
outw(RD_MASK, (CARD16)(~0));
outw(DP_CONFIG, FG_COLOR_SRC_BLIT | DATA_WIDTH | DRAW | DATA_ORDER);
outw(CUR_X, X);
outw(CUR_Y, Y);
outw(DEST_X_START, X);
outw(DEST_X_END, X + 1);
outw(DEST_Y_END, Y + 1);
/* Wait for data to become ready */
ATIWaitQueue(16);
WaitDataReady();
/* Read pixel colour */
Pixel_Colour = inw(PIX_TRANS);
ProbeWaitIdleEmpty();
return Pixel_Colour;
}
/*
* ATIMach32WritePixel --
*
* Set the colour of the specified screen location. Called from
* ATIMach32videoRam function below.
*/
static void
ATIMach32WritePixel
(
const short int X,
const short int Y,
const Colour Pixel_Colour
)
{
/* Set up engine for pixel write */
ATIWaitQueue(9);
outw(WRT_MASK, (CARD16)(~0));
outw(DP_CONFIG, FG_COLOR_SRC_FG | DRAW | READ_WRITE);
outw(ALU_FG_FN, MIX_FN_PAINT);
outw(FRGD_COLOR, Pixel_Colour);
outw(CUR_X, X);
outw(CUR_Y, Y);
outw(DEST_X_START, X);
outw(DEST_X_END, X + 1);
outw(DEST_Y_END, Y + 1);
}
/*
* ATIMach32videoRam --
*
* Determine the amount of video memory installed on an 68800-6 based adapter.
* This is done because these chips exhibit a bug that causes their
* MISC_OPTIONS register to report 1M rather than the true amount of memory.
*
* This function is adapted from a similar function in mach32mem.c written by
* Robert Wolff, David Dawes and Mark Weaver.
*/
static int
ATIMach32videoRam
(
void
)
{
CARD16 clock_sel, mem_bndry, misc_options, ext_ge_config;
Colour saved_Pixel[NumberOf(Test_Pixel)];
unsigned int Case_Number, Pixel_Number;
Bool AllPixelsOK;
/* Save register values to be modified */
clock_sel = inw(CLOCK_SEL);
mem_bndry = inw(MEM_BNDRY);
misc_options = inw(MISC_OPTIONS) & ~MEM_SIZE_ALIAS;
ext_ge_config = inw(R_EXT_GE_CONFIG);
/* Wait for enough FIFO entries */
ATIWaitQueue(7);
/* Enable accelerator */
outw(CLOCK_SEL, clock_sel | DISABPASSTHRU);
/* Make accelerator and VGA share video memory */
outw(MEM_BNDRY, mem_bndry & ~(MEM_PAGE_BNDRY | MEM_BNDRY_ENA));
/* Prevent video memory wrap */
outw(MISC_OPTIONS, misc_options | MEM_SIZE_4M);
/*
* Set up the drawing engine for a pitch of 1024 at 16 bits per pixel. No
* need to mess with the CRT because the results of this test are not
* intended to be seen.
*/
outw(EXT_GE_CONFIG, PIXEL_WIDTH_16 | ORDER_16BPP_565 | MONITOR_8514 |
ALIAS_ENA);
outw(GE_PITCH, 1024 >> 3);
outw(GE_OFFSET_HI, 0);
outw(GE_OFFSET_LO, 0);
for (Case_Number = 0;
Case_Number < (NumberOf(Test_Case) - 1);
Case_Number++)
{
/* Reduce redundancy as per Mark_Weaver@brown.edu */
# define TestPixel Test_Case[Case_Number].Coordinates[Pixel_Number]
# define ForEachTestPixel \
for (Pixel_Number = 0; TestPixel.x >= 0; Pixel_Number++)
/* Save pixel colours that will be clobbered */
ForEachTestPixel
saved_Pixel[Pixel_Number] =
ATIMach32ReadPixel(TestPixel.x, TestPixel.y);
/* Write test patterns */
ForEachTestPixel
ATIMach32WritePixel(TestPixel.x, TestPixel.y,
Test_Pixel[Pixel_Number]);
/* Test for lost pixels */
AllPixelsOK = TRUE;
ForEachTestPixel
if (ATIMach32ReadPixel(TestPixel.x, TestPixel.y) !=
Test_Pixel[Pixel_Number])
{
AllPixelsOK = FALSE;
break;
}
/* Restore clobbered pixels */
ForEachTestPixel
ATIMach32WritePixel(TestPixel.x, TestPixel.y,
saved_Pixel[Pixel_Number]);
/* End test on success */
if (AllPixelsOK)
break;
/* Completeness */
# undef ForEachTestPixel
# undef TestPixel
}
/* Restore what was changed and correct MISC_OPTIONS register */
ATIWaitQueue(4);
outw(EXT_GE_CONFIG, ext_ge_config);
misc_options |= Test_Case[Case_Number].Miscellaneous_Options_Setting;
outw(MISC_OPTIONS, misc_options);
outw(MEM_BNDRY, mem_bndry);
outw(CLOCK_SEL, clock_sel);
/* Wait for activity to die down */
ProbeWaitIdleEmpty();
/* Tell ATIPreInit the REAL story */
return Test_Case[Case_Number].videoRamSize;
}
/*
* ATIReportMemory --
*
* This function reports on the amount and type of video memory found.
*/
static void
ATIReportMemory
(
ScrnInfoPtr pScreenInfo,
ATIPtr pATI,
const char *MemoryTypeName
)
{
char Buffer[128], *Message;
Message = Buffer +
snprintf(Buffer, SizeOf(Buffer), "%d kB of %s detected",
pATI->VideoRAM, MemoryTypeName);
if (pScreenInfo->depth == 1)
{
/* 1bpp only uses one plane of four */
pScreenInfo->videoRam /= 4;
Message += snprintf(Message, Buffer + SizeOf(Buffer) - Message,
" (using %d kB)", pScreenInfo->videoRam);
}
else if (pATI->VideoRAM > pScreenInfo->videoRam)
Message += snprintf(Message, Buffer + SizeOf(Buffer) - Message,
" (using %d kB)", pScreenInfo->videoRam);
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED, "%s.\n", Buffer);
}
static const int videoRamSizes[] =
{0, 256, 512, 1024, 2*1024, 4*1024, 6*1024, 8*1024, 12*1024, 16*1024, 0};
static const rgb defaultWeight = {0, 0, 0};
static const Gamma defaultGamma = {0.0, 0.0, 0.0};
/*
* ATIPreInit --
*
* This function is only called once per screen at the start of the first
* server generation.
*/
Bool
ATIPreInit
(
ScrnInfoPtr pScreenInfo,
int flags
)
{
# define BIOS_SIZE 0x00010000U /* 64kB */
CARD8 BIOS[BIOS_SIZE];
# define BIOSByte(_n) (*((CARD8 *)(BIOS + (_n))))
# define BIOSWord(_n) (*((CARD16 *)(BIOS + (_n))))
# define BIOSLong(_n) (*((CARD32 *)(BIOS + (_n))))
unsigned int BIOSSize = BIOS_SIZE;
unsigned int ROMTable = 0, ClockTable = 0, FrequencyTable = 0;
unsigned int LCDTable = 0, LCDPanelInfo = 0;
char Buffer[128], *Message;
ATIPtr pATI;
GDevPtr pGDev;
EntityInfoPtr pEntity;
resPtr pResources;
Bool AllowCRT = TRUE;
CARD32 IOValue1, IOValue2;
int i, j, AcceleratorVideoRAM = 0, VGAVideoRAM = 0;
int Numerator, Denominator;
resRange Resources[2] = {{0, 0, 0}, _END};
ClockRange ATIClockRange = {NULL, 0, 80000, 0, TRUE, TRUE, 1, 1, 0};
int minPitch, maxPitch = 0xFFU, pitchInc;
LookupModeFlags Strategy = LOOKUP_CLOSEST_CLOCK;
if (pScreenInfo->numEntities != 1)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Logic error: Number of attached entities not 1.\n");
return FALSE;
}
pATI = ATIPTR(pScreenInfo);
if (pATI->iEntity != pScreenInfo->entityList[0])
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Logic error: Entity mismatch.\n");
return FALSE;
}
/* Register resources */
pEntity = xf86GetEntityInfo(pScreenInfo->entityList[0]);
pGDev = pEntity->device;
pResources = pEntity->resources;
xfree(pEntity);
if (!pResources)
pResources = xf86RegisterResources(pATI->iEntity, NULL,
pATI->SharedAccelerator ? ResShared : ResExclusive);
if (pResources)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Unable to register the following bus resources:\n");
xf86PrintResList(0, pResources);
return FALSE;
}
pScreenInfo->racIoFlags = RAC_FB | RAC_COLORMAP | RAC_VIEWPORT;
pScreenInfo->racMemFlags = RAC_FB;
/* Set monitor */
pScreenInfo->monitor = pScreenInfo->confScreen->monitor;
/* Deal with ChipID & ChipRev overrides */
if (pGDev->chipID >= 0)
{
ATIChipType Chip;
Chip = ATIChipID(pGDev->chipID,
(pGDev->chipRev < 0) ? pATI->ChipRev : pGDev->chipRev);
if (Chip != pATI->Chip)
{
pATI->Chip = Chip;
pATI->ChipType = pGDev->chipID;
if (pGDev->chipRev < 0)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_CONFIG,
"Driver messages reflect ChipID 0x%04X override.\n",
pATI->ChipType);
}
else
{
pATI->ChipRev = pGDev->chipRev;
pATI->ChipVersion = GetBits(pATI->ChipRev,
GetBits(CFG_CHIP_VERSION, CFG_CHIP_REV));
pATI->ChipFoundry = GetBits(pATI->ChipRev,
GetBits(CFG_CHIP_FOUNDRY, CFG_CHIP_REV));
pATI->ChipRevision = GetBits(pATI->ChipRev,
GetBits(CFG_CHIP_REVISION, CFG_CHIP_REV));
xf86DrvMsg(pScreenInfo->scrnIndex, X_CONFIG,
"Driver messages reflect ChipID 0x%04X and ChipRev 0x%02X"
" overrides.\n", pATI->ChipType, pATI->ChipRev);
}
}
}
/* Finish private area initialisation */
pATI->DAC = ATI_DAC_GENERIC;
pATI->NewHW.SetBank = ATIx8800SetBank;
pATI->BankInfo.SetSourceBank = ATIx8800SetRead;
pATI->BankInfo.SetDestinationBank = ATIx8800SetWrite;
pATI->BankInfo.SetSourceAndDestinationBanks = ATIx8800SetReadWrite;
pATI->BankInfo.BankSize = 0x00010000U; /* 64kB */
pATI->ApertureBase = 0x000A0000U;
pATI->ApertureSize = 0x00010000U;
pATI->LCDPanelID = -1;
pATI->nFIFOEntries = 16; /* For now */
/* Finish probing the adapter */
switch (pATI->Adapter)
{
case ATI_ADAPTER_NONE:
case ATI_ADAPTER_EGA:
case ATI_ADAPTER_EGA_PLUS:
case ATI_ADAPTER_VGA:
case ATI_ADAPTER_BASIC:
pATI->NewHW.SetBank = (ATIBankProcPtr)NoopDDA;
pATI->BankInfo.SetSourceBank =
pATI->BankInfo.SetDestinationBank =
pATI->BankInfo.SetSourceAndDestinationBanks =
(miBankProcPtr)NoopDDA;
break;
case ATI_ADAPTER_V3:
pATI->NewHW.SetBank = ATIV3SetBank;
pATI->BankInfo.SetSourceBank = ATIV3SetRead;
pATI->BankInfo.SetDestinationBank = ATIV3SetWrite;
pATI->BankInfo.SetSourceAndDestinationBanks = ATIV3SetReadWrite;
break;
case ATI_ADAPTER_V4:
case ATI_ADAPTER_V5:
pATI->NewHW.SetBank = ATIV4V5SetBank;
pATI->BankInfo.SetSourceBank = ATIV4V5SetRead;
pATI->BankInfo.SetDestinationBank = ATIV4V5SetWrite;
pATI->BankInfo.SetSourceAndDestinationBanks = ATIV4V5SetReadWrite;
break;
case ATI_ADAPTER_XL:
pATI->DAC = ATI_DAC_SC11483;
break;
case ATI_ADAPTER_8514A:
pATI->VideoRAM =
videoRamSizes[GetBits(inw(SUBSYS_STAT), _8PLANE) + 2];
break;
case ATI_ADAPTER_MACH8:
pATI->VideoRAM =
videoRamSizes[GetBits(inw(CONFIG_STATUS_1), MEM_INSTALLED) + 2];
break;
case ATI_ADAPTER_MACH32:
IOValue1 = inw(CONFIG_STATUS_1);
pATI->DAC = ATI_DAC(GetBits(IOValue1, DACTYPE), 0);
pATI->MemoryType = GetBits(IOValue1, MEM_TYPE);
IOValue1 = inw(MISC_OPTIONS);
pATI->VideoRAM =
videoRamSizes[GetBits(IOValue1, MEM_SIZE_ALIAS) + 2];
/*
* The 68800-6 doesn't necessarily report the correct video memory
* size.
*/
if ((pATI->Chip == ATI_CHIP_68800_6) && (pATI->VideoRAM == 1024))
pATI->VideoRAM = ATIMach32videoRam();
break;
case ATI_ADAPTER_MACH64:
/* Set I/O port addresses */
pATI->CPIO_CRTC_H_TOTAL_DISP = ATIIOPort(CRTC_H_TOTAL_DISP);
pATI->CPIO_CRTC_H_SYNC_STRT_WID = ATIIOPort(CRTC_H_SYNC_STRT_WID);
pATI->CPIO_CRTC_V_TOTAL_DISP = ATIIOPort(CRTC_V_TOTAL_DISP);
pATI->CPIO_CRTC_V_SYNC_STRT_WID = ATIIOPort(CRTC_V_SYNC_STRT_WID);
pATI->CPIO_CRTC_OFF_PITCH = ATIIOPort(CRTC_OFF_PITCH);
pATI->CPIO_CRTC_INT_CNTL = ATIIOPort(CRTC_INT_CNTL);
pATI->CPIO_CRTC_GEN_CNTL = ATIIOPort(CRTC_GEN_CNTL);
pATI->CPIO_OVR_CLR = ATIIOPort(OVR_CLR);
pATI->CPIO_OVR_WID_LEFT_RIGHT = ATIIOPort(OVR_WID_LEFT_RIGHT);
pATI->CPIO_OVR_WID_TOP_BOTTOM = ATIIOPort(OVR_WID_TOP_BOTTOM);
pATI->CPIO_CLOCK_CNTL = ATIIOPort(CLOCK_CNTL);
pATI->CPIO_MEM_INFO = ATIIOPort(MEM_INFO);
pATI->CPIO_DAC_REGS = ATIIOPort(DAC_REGS);
pATI->CPIO_DAC_CNTL = ATIIOPort(DAC_CNTL);
pATI->CPIO_CONFIG_CNTL = ATIIOPort(CONFIG_CNTL);
IOValue1 = inl(pATI->CPIO_MEM_INFO);
if (pATI->Chip < ATI_CHIP_264VTB)
pATI->VideoRAM =
videoRamSizes[GetBits(IOValue1, CTL_MEM_SIZE) + 2];
else
{
pATI->nFIFOEntries = /* Don't care */
(unsigned int)(-1) >> 1;
IOValue1 = GetBits(IOValue1, CTL_MEM_SIZEB);
if (IOValue1 < 8)
pATI->VideoRAM = (IOValue1 + 1) * 512;
else if (IOValue1 < 12)
pATI->VideoRAM = (IOValue1 - 3) * 1024;
else
pATI->VideoRAM = (IOValue1 - 7) * 2048;
}
IOValue1 = inl(pATI->CPIO_DAC_CNTL);
pATI->DAC = GetBits(IOValue1, DAC_TYPE);
IOValue1 = inl(ATIIOPort(CONFIG_STATUS64_0));
IOValue2 = inl(ATIIOPort(SCRATCH_REG1));
if (pATI->Chip >= ATI_CHIP_264CT)
{
pATI->MemoryType = GetBits(IOValue1, CFG_MEM_TYPE_T);
/* Get LCD panel id and set LCD & TV I/O port numbers */
if (pATI->Chip == ATI_CHIP_264LT)
{
pATI->LCDPanelID = GetBits(IOValue1, CFG_PANEL_ID);
pATI->CPIO_HORZ_STRETCHING = ATIIOPort(HORZ_STRETCHING);
pATI->CPIO_VERT_STRETCHING = ATIIOPort(VERT_STRETCHING);
pATI->CPIO_LCD_GEN_CTRL = ATIIOPort(LCD_GEN_CTRL);
IOValue2 = inl(pATI->CPIO_LCD_GEN_CTRL);
}
else if ((pATI->Chip == ATI_CHIP_264LTPRO) ||
(pATI->Chip == ATI_CHIP_264XL) ||
(pATI->Chip == ATI_CHIP_MOBILITY))
{
pATI->LCDPanelID = GetBits(IOValue1, CFG_PANEL_ID);
pATI->CPIO_TV_OUT_INDEX = ATIIOPort(TV_OUT_INDEX);
pATI->CPIO_TV_OUT_DATA = ATIIOPort(TV_OUT_DATA);
pATI->CPIO_LCD_INDEX = ATIIOPort(LCD_INDEX);
pATI->CPIO_LCD_DATA = ATIIOPort(LCD_DATA);
IOValue1 = inl(pATI->CPIO_LCD_INDEX);
IOValue2 = ATIGetLTProLCDReg(LCD_HORZ_STRETCHING);
#if 0
if (IOValue2 & AUTO_HORZ_RATIO)
#endif
pATI->LCDHorizontal =
(GetBits(IOValue2, HORZ_PANEL_SIZE) + 1) << 3;
IOValue2 = ATIGetLTProLCDReg(LCD_EXT_VERT_STRETCH);
#if 0
if (IOValue2 & AUTO_VERT_RATIO)
#endif
pATI->LCDVertical =
GetBits(IOValue2, VERT_PANEL_SIZE) + 1;
IOValue2 = ATIGetLTProLCDReg(LCD_GEN_CNTL);
outl(pATI->CPIO_LCD_INDEX, IOValue1);
}
if (pATI->LCDPanelID >= 0)
{
/*
* Don't bother with panel support if it's not enabled by
* BIOS initialisation. Also, remember if the BIOS knows
* about the CRT.
*/
if (!(IOValue2 & LCD_ON))
pATI->LCDPanelID = -1;
else if (!(IOValue2 & CRT_ON))
AllowCRT = FALSE;
}
}
else
{
pATI->MemoryType = GetBits(IOValue1, CFG_MEM_TYPE);
/* Factor in what the BIOS says the DAC is */
pATI->DAC = ATI_DAC(pATI->DAC,
GetBits(IOValue2, BIOS_INIT_DAC_SUBTYPE));
}
/*
* RAMDAC types 0 & 1 for Mach64's are different than those for
* Mach32's.
*/
if (pATI->DAC < ATI_DAC_ATI68875)
pATI->DAC += ATI_DAC_INTERNAL;
break;
default:
break;
}
/* Get PCI or legacy video BIOS, >all< of it */
i = ATIReadBIOS(pATI, BIOS, 0, SizeOf(BIOS));
/* Clear off what could not be read */
if (i < 0)
i = 0;
if (i < SizeOf(BIOS))
memset(BIOS + i, 0, SizeOf(BIOS) - i);
if ((BIOSByte(0) == 0x55U) && (BIOSByte(1) == 0xAAU) && BIOSByte(2))
BIOSSize = BIOSByte(2) << 9;
else
i = 0;
if ((unsigned int)i < BIOSSize)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Unable to correctly read adapter BIOS.\n");
return FALSE;
}
/*
* For Mach64 adapters, pick up, from the BIOS, the type of programmable
* clock generator (if any), and various information about it.
*/
if (pATI->Chip >= ATI_CHIP_88800GXC)
{
CARD16 ClockDac;
/* Set up non-zero defaults */
pATI->ClockDescriptor = ATIClockDescriptors[ATI_CLOCK_FIXED];
pATI->ClockNumberToProgramme = -1;
ROMTable = BIOSWord(0x48U);
if ((ROMTable + 0x12U) > BIOSSize)
ROMTable = 0;
if (ROMTable > 0)
{
ClockTable = BIOSWord(ROMTable + 0x10U);
if ((ClockTable + 0x20U) > BIOSSize)
ClockTable = 0;
}
if (ClockTable > 0)
{
FrequencyTable = BIOSWord(ClockTable - 0x02U);
if ((FrequencyTable > 0) &&
((FrequencyTable + 0x20U) <= BIOSSize))
for (i = 0; i < 16; i++)
pATI->BIOSClocks[i] = (&BIOSWord(FrequencyTable))[i];
pATI->ProgrammableClock = BIOSByte(ClockTable);
pATI->ClockNumberToProgramme = BIOSByte(ClockTable + 0x06U);
if (pATI->ProgrammableClock < ATI_CLOCK_MAX)
pATI->ClockDescriptor =
ATIClockDescriptors[pATI->ProgrammableClock];
switch (BIOSWord(ClockTable + 0x08U) / 10)
{
case 143:
pATI->ReferenceNumerator = 157500;
pATI->ReferenceDenominator = 11;
break;
case 286:
pATI->ReferenceNumerator = 315000;
pATI->ReferenceDenominator = 11;
break;
default:
pATI->ReferenceNumerator =
BIOSWord(ClockTable + 0x08U) * 10;
pATI->ReferenceDenominator = 1;
break;
}
}
ClockDac = pATI->DAC;
switch (pATI->ProgrammableClock)
{
case ATI_CLOCK_ICS2595:
/*
* Pick up reference divider (43 or 46) appropriate to the chip
* revision level.
*/
if (ClockTable > 0)
pATI->ClockDescriptor.MinM = pATI->ClockDescriptor.MaxM =
BIOSWord(ClockTable + 0x0AU);
break;
case ATI_CLOCK_STG1703:
/* This one's also a RAMDAC */
ClockDac = ATI_DAC_STG1703;
break;
case ATI_CLOCK_CH8398:
/* This one's also a RAMDAC */
ClockDac = ATI_DAC_CH8398;
break;
case ATI_CLOCK_INTERNAL:
/*
* The reference divider has already been programmed by BIOS
* initialisation. Because, there is only one reference
* divider for all generated frequencies (including MCLK), it
* cannot be changed without reprogramming all clocks every
* time one of them needs a different reference divider.
*
* Besides, it's not a good idea to change the reference
* divider. BIOS initialisation sets it to a value that
* effectively prevents generating frequencies beyond the
* graphics controller's tolerance.
*/
pATI->ClockDescriptor.MinM = pATI->ClockDescriptor.MaxM =
ATIGetMach64PLLReg(PLL_REF_DIV);
/* The DAC is also integrated */
if ((pATI->DAC & ~0x0FU) != ATI_DAC_INTERNAL)
ClockDac = ATI_DAC_INTERNAL;
break;
case ATI_CLOCK_ATT20C408:
/* This one's also a RAMDAC */
ClockDac = ATI_DAC_ATT20C408;
break;
case ATI_CLOCK_IBMRGB514:
/* This one's also a RAMDAC */
ClockDac = ATI_DAC_IBMRGB514;
pATI->ClockNumberToProgramme = 7;
break;
default:
break;
}
/*
* We now have up to two indications of what RAMDAC the adapter uses.
* They should be the same. The following test and corresponding
* action are under construction.
*/
if (pATI->DAC != ClockDac)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Mach64 RAMDAC probe discrepancy detected:\n"
" DAC=0x%02X; ClockDac=0x%02X.\n",
pATI->DAC, ClockDac);
if (pATI->DAC == ATI_DAC_IBMRGB514)
{
pATI->ProgrammableClock = ATI_CLOCK_IBMRGB514;
pATI->ClockDescriptor =
ATIClockDescriptors[ATI_CLOCK_IBMRGB514];
pATI->ClockNumberToProgramme = 7;
}
else
pATI->DAC = ClockDac; /* For now */
}
/* Determine panel dimensions and driving clock */
if (pATI->LCDPanelID >= 0)
{
LCDTable = BIOSWord(0x78U);
if ((LCDTable + BIOSByte(LCDTable + 5)) > BIOSSize)
LCDTable = 0;
if (LCDTable > 0)
{
LCDPanelInfo = BIOSWord(LCDTable + 0x0AU);
if (((LCDPanelInfo + 0x1DU) > BIOSSize) ||
((BIOSByte(LCDPanelInfo) != pATI->LCDPanelID) &&
(pATI->LCDPanelID || (BIOSByte(LCDPanelInfo) > 0x1FU) ||
(pATI->Chip <= ATI_CHIP_264LTPRO))))
LCDPanelInfo = 0;
}
if (!LCDPanelInfo)
{
/*
* Scan BIOS for panel info table.
*/
for (i = 0; i <= (int)(BIOSSize - 0x1DU); i++)
{
/* Look for panel ID ... */
if ((BIOSByte(i) != pATI->LCDPanelID) &&
(pATI->LCDPanelID || (BIOSByte(i) > 0x1FU) ||
(pATI->Chip <= ATI_CHIP_264LTPRO)))
continue;
/* ... followed by 24-byte panel model name ... */
for (j = 0; j < 24; j++)
if ((CARD8)(BIOSByte(i + j + 1) - 0x20U) > 0x5FU)
{
i += j;
goto NextBIOSByte;
}
/* ... verify panel width ... */
if ((pATI->LCDHorizontal > 8) &&
(pATI->LCDHorizontal <=
(int)(MaxBits(HORZ_PANEL_SIZE) << 3)) &&
(pATI->LCDHorizontal != BIOSWord(i + 0x19U)))
continue;
/* ... and verify panel height */
if ((pATI->LCDVertical > 1) &&
(pATI->LCDVertical <= (int)MaxBits(VERT_PANEL_SIZE)) &&
(pATI->LCDVertical != BIOSWord(i + 0x1BU)))
continue;
if (LCDPanelInfo)
{
/*
* More than one possibility, but don't care if all
* tables describe panels of the same size.
*/
if (BIOSLong(LCDPanelInfo + 0x19U) ==
BIOSLong(i + 0x19U))
continue;
LCDPanelInfo = 0;
break;
}
LCDPanelInfo = i;
NextBIOSByte: ;
}
}
if (LCDPanelInfo > 0)
{
pATI->LCDPanelID = BIOSByte(LCDPanelInfo);
pATI->LCDHorizontal = BIOSWord(LCDPanelInfo + 0x19U);
pATI->LCDVertical = BIOSWord(LCDPanelInfo + 0x1BU);
/* Get clock number */
if (inl(pATI->CPIO_CRTC_GEN_CNTL) & CRTC_EXT_DISP_EN)
i = inl(pATI->CPIO_CLOCK_CNTL) & 0x03U;
else
i = (inb(R_GENMO) & 0x0CU) >> 2;
/* Get post divider */
j = (GetBits(ATIGetMach64PLLReg(PLL_XCLK_CNTL),
PLL_VCLK0_XDIV << i) *
(MaxBits(PLL_VCLK0_POST_DIV) + 1)) |
GetBits(ATIGetMach64PLLReg(PLL_VCLK_POST_DIV),
PLL_VCLK0_POST_DIV << (i * 2));
/* Calculate clock of mode on entry */
Numerator = ATIGetMach64PLLReg(PLL_VCLK0_FB_DIV + i) *
pATI->ReferenceNumerator;
Denominator = pATI->ClockDescriptor.MinM *
pATI->ReferenceDenominator *
pATI->ClockDescriptor.PostDividers[j];
pATI->LCDClock = ATIDivide(Numerator, Denominator, 1, 0);
}
}
}
ATIUnlock(pATI); /* Unlock registers */
/* Sometimes, the BIOS lies about the chip */
if ((pATI->Chip >= ATI_CHIP_28800_4) && (pATI->Chip <= ATI_CHIP_28800_6))
{
IOValue1 = GetBits(ATIGetExtReg(0xAAU), 0x0FU) +
(ATI_CHIP_28800_4 - 4);
if ((IOValue1 <= ATI_CHIP_28800_6) && (IOValue1 > pATI->Chip))
pATI->Chip = IOValue1;
}
/* Report what was found */
xf86DrvMsg(pScreenInfo->scrnIndex, pATI->Chipset ? X_CONFIG : X_DEFAULT,
"Chipset: \"%s\".\n", ATIChipsetNames[pATI->Chipset]);
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"%s graphics controller detected.\n", ATIChipNames[pATI->Chip]);
if ((pATI->Chip >= ATI_CHIP_68800) && (pATI->Chip != ATI_CHIP_68800_3))
{
Message = Buffer + snprintf(Buffer, SizeOf(Buffer), "Chip type %04X",
pATI->ChipType);
if (!(pATI->ChipType & ~(CHIP_CODE_0 | CHIP_CODE_1)))
Message += snprintf(Message, Buffer + SizeOf(Buffer) - Message,
" (%c%c)",
GetBits(pATI->ChipType, CHIP_CODE_1) + 0x41U,
GetBits(pATI->ChipType, CHIP_CODE_0) + 0x41U);
else if ((pATI->ChipType & 0x4040U) == 0x4040U)
Message += snprintf(Message, Buffer + SizeOf(Buffer) - Message,
" \"%c%c\"",
GetByte(pATI->ChipType, 1), GetByte(pATI->ChipType, 0));
if ((pATI->Chip >= ATI_CHIP_264CT) && (pATI->Chip != ATI_CHIP_Mach64))
Message += snprintf(Message, Buffer + SizeOf(Buffer) - Message,
", version %d, foundry %s",
pATI->ChipVersion, ATIFoundryNames[pATI->ChipFoundry]);
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"%s, class %d, revision 0x%02X.\n",
Buffer, pATI->ChipClass, pATI->ChipRevision);
}
if (pATI->Adapter >= ATI_ADAPTER_MACH8)
{
Message = Buffer + snprintf(Buffer, SizeOf(Buffer),
"%s bus interface detected", ATIBusNames[pATI->BusType]);
if (pATI->Adapter >= ATI_ADAPTER_MACH64)
Message += snprintf(Message, Buffer + SizeOf(Buffer) - Message,
"; %s I/O base is 0x%04X",
(pATI->CPIODecoding == SPARSE_IO) ? "sparse" : "block",
pATI->CPIOBase);
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED, "%s.\n", Buffer);
}
if (pATI->CPIO_VGAWonder)
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"VGA Wonder registers at I/O port 0x%04X.\n",
pATI->CPIO_VGAWonder);
if (pATI->Coprocessor != ATI_CHIP_NONE)
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"%s graphics accelerator detected,\n with %d kB of coprocessor"
" memory.\n",
ATIChipNames[pATI->Coprocessor], pATI->VideoRAM);
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"%s adapter detected.\n", ATIAdapterNames[pATI->Adapter]);
if ((pATI->DAC & ~0x0FU) == ATI_DAC_INTERNAL)
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"Internal RAMDAC (subtype %d) detected.\n", pATI->DAC & 0x0FU);
else
{
const DACRec *DAC;
for (DAC = ATIDACDescriptors; ; DAC++)
{
if (pATI->DAC == DAC->DACType)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"%s RAMDAC detected.\n", DAC->DACName);
break;
}
if (pATI->DAC < DAC->DACType)
{
xf86DrvMsgVerb(pScreenInfo->scrnIndex, X_WARNING, 0,
"Unknown RAMDAC type 0x%02X detected.\n", pATI->DAC);
break;
}
}
}
if (pATI->LCDPanelID >= 0)
{
if (LCDPanelInfo <= 0)
{
xf86DrvMsgVerb(pScreenInfo->scrnIndex, X_ERROR, 0,
"Unable to determine dimensions of panel (ID %d).\n",
pATI->LCDPanelID);
ATILock(pATI);
return FALSE;
}
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"%dx%d panel (ID %d) detected.\n",
pATI->LCDHorizontal, pATI->LCDVertical, pATI->LCDPanelID);
for (i = 0; i < 24; i++)
Buffer[i] = BIOSByte(LCDPanelInfo + 1 + i);
for (i = 24; --i >= 0; )
if (Buffer[i] != ' ')
{
Buffer[i + 1] = '\0';
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"Panel model %s.\n", Buffer);
break;
}
xf86DrvMsg(pScreenInfo->scrnIndex, X_PROBED,
"Panel clock is %.3f MHz.\n", (double)(pATI->LCDClock) / 1000.0);
}
/* Report BIOS address */
if (pATI->BIOSBase)
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"BIOS bus address: 0x%08X.\n", pATI->BIOSBase);
else
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"BIOS not mapped by BIOS initialisation.\n");
/* Promote chipset specification */
switch (pATI->Chipset)
{
case ATI_CHIPSET_IBMVGA:
if (pATI->Adapter == ATI_ADAPTER_VGA)
break; /* XXX */
/* Fall through */
case ATI_CHIPSET_VGAWONDER:
pATI->Chipset = ATI_CHIPSET_ATIVGA;
break;
case ATI_CHIPSET_IBM8514:
if (pATI->Adapter == ATI_ADAPTER_8514A)
break; /* XXX */
/* Fall through */
case ATI_CHIPSET_MACH8:
case ATI_CHIPSET_MACH32:
case ATI_CHIPSET_MACH64:
case ATI_CHIPSET_RAGE128:
pATI->Chipset = ATI_CHIPSET_ATI;
break;
default:
break;
}
/*
* Set depth, bpp, etc.
*/
if ((pATI->Chipset != ATI_CHIPSET_ATI) || (pATI->Chip < ATI_CHIP_264CT))
i = NoDepth24Support; /* No support for >8bpp either */
else
i = Support24bppFb | Support32bppFb;
if (!xf86SetDepthBpp(pScreenInfo, 8, 8, 8, i))
return FALSE;
switch (pScreenInfo->depth)
{
case 1: case 4: case 8: case 15: case 16: case 24:
break;
default:
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Driver does not support depth %d.\n",
pScreenInfo->depth);
ATILock(pATI);
return FALSE;
}
xf86PrintDepthBpp(pScreenInfo);
if ((i == NoDepth24Support) && (pScreenInfo->depth > 8))
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Depth %d is not supported through this adapter.\n",
pScreenInfo->depth);
ATILock(pATI);
return FALSE;
}
/*
* Pick up XF86Config options.
*/
ATIProcessOptions(pScreenInfo, pATI);
/*
* Set colour weights.
*/
if (pATI->Chip < ATI_CHIP_264CT)
pScreenInfo->rgbBits = 6;
else
pScreenInfo->rgbBits = 8;
if (!xf86SetWeight(pScreenInfo, defaultWeight, defaultWeight))
{
ATILock(pATI);
return FALSE;
}
if ((pScreenInfo->depth > 8) &&
((pScreenInfo->weight.red != pScreenInfo->weight.blue) ||
(pScreenInfo->weight.red != (CARD32)(pScreenInfo->depth / 3)) ||
((CARD32)pScreenInfo->depth != (pScreenInfo->weight.red +
pScreenInfo->weight.green +
pScreenInfo->weight.blue))))
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Driver does not support weight %d%d%d for depth %d.\n",
pScreenInfo->weight.red, pScreenInfo->weight.green,
pScreenInfo->weight.blue, pScreenInfo->depth);
ATILock(pATI);
return FALSE;
}
/*
* Set default visual.
*/
if (!xf86SetDefaultVisual(pScreenInfo, -1))
{
ATILock(pATI);
return FALSE;
}
if ((pScreenInfo->depth > 8) &&
(((pScreenInfo->defaultVisual | DynamicClass) != DirectColor) ||
((pScreenInfo->defaultVisual == DirectColor) &&
(pATI->DAC == ATI_DAC_INTERNAL))))
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"Driver does not support default visual %s for depth %d.\n",
xf86GetVisualName(pScreenInfo->defaultVisual),
pScreenInfo->depth);
ATILock(pATI);
return FALSE;
}
/*
* Set colour gamma.
*/
if ((pScreenInfo->depth > 1) && !xf86SetGamma(pScreenInfo, defaultGamma))
{
ATILock(pATI);
return FALSE;
}
/*
* Determine which CRT controller to use for video modes.
*/
if ((pATI->Chip >= ATI_CHIP_88800GXC) &&
(pScreenInfo->depth >= 8) &&
(pATI->Chipset == ATI_CHIPSET_ATI))
pATI->NewHW.crtc = ATI_CRTC_MACH64;
else
pATI->NewHW.crtc = ATI_CRTC_VGA;
/* Complain if VGA is needed but not there */
if ((pATI->NewHW.crtc == ATI_CRTC_VGA) || !pATI->OptionLinear)
{
/* VGA is required at this point */
if (pATI->VGAAdapter == ATI_ADAPTER_NONE)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"VGA is not available through this adapter.\n");
ATILock(pATI);
return FALSE;
}
if (pATI->Coprocessor != ATI_CHIP_NONE)
{
/* Ignore any 8514/A or Mach8 accelerator from this point on */
pATI->Adapter = pATI->VGAAdapter;
/* Accelerator and VGA cannot share memory */
pATI->VideoRAM = 0;
}
}
/*
* Decide between the CRT and the panel.
*/
if (pATI->LCDPanelID >= 0)
{
if (pATI->OptionCRT && AllowCRT)
xf86DrvMsg(pScreenInfo->scrnIndex, X_CONFIG,
"Using CRT interface and disabling digital flat panel.\n");
else if (pATI->OptionCRT || AllowCRT)
{
pATI->OptionCRT = FALSE;
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Using digital flat panel and disabling CRT interface.\n");
}
}
/*
* Finish detecting video RAM size.
*/
AcceleratorVideoRAM = pScreenInfo->videoRam = pATI->VideoRAM;
if (pATI->Chip == ATI_CHIP_VGA)
{
if (pScreenInfo->depth <= 4)
VGAVideoRAM = 256;
else
VGAVideoRAM = 64;
/* For VGA, allow a lower override */
if ((pGDev->videoRam > 0) && (pGDev->videoRam < VGAVideoRAM))
VGAVideoRAM = pGDev->videoRam;
}
else if (pATI->CPIO_VGAWonder)
{
/*
* XXX There's an assumption here that the values retrieved are those
* set by BIOS initialisation.
*/
if (pATI->Chip <= ATI_CHIP_18800_1)
{
VGAVideoRAM =
videoRamSizes[GetBits(ATIGetExtReg(0xBBU), 0x20U) + 1];
if (AcceleratorVideoRAM > 512)
AcceleratorVideoRAM = 512;
}
else
{
IOValue1 = ATIGetExtReg(0xB0U);
if (IOValue1 & 0x08U)
VGAVideoRAM = 1024;
else if (IOValue1 & 0x10U)
VGAVideoRAM = 512;
else
VGAVideoRAM = 256;
if (AcceleratorVideoRAM > 1024)
AcceleratorVideoRAM = 1024;
}
}
/* Check for hardware limitations */
if (!AcceleratorVideoRAM)
{
pScreenInfo->videoRam = pATI->VideoRAM = VGAVideoRAM;
/*
* VGA Wonder V3's, V4's and V5's don't appear to support banking in
* planar modes.
*/
if ((pScreenInfo->depth <= 4) &&
(pATI->Chip <= ATI_CHIP_18800_1) &&
(VGAVideoRAM > 256))
{
if (pATI->OptionDevel)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_NOTICE,
"Virtual resolutions requiring more than %s kB\n of video"
" memory might not function properly." ATI_README,
(pScreenInfo->depth == 1) ? "64" : "256");
}
else
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_NOTICE,
"VideoRAM reduced to 256 kB due to hardware limitations."
ATI_README);
pScreenInfo->videoRam = 256;
}
}
}
else if ((pATI->NewHW.crtc == ATI_CRTC_MACH64) ||
(pATI->Chip >= ATI_CHIP_264CT))
{
if (pScreenInfo->depth >= 8)
{
/* Set MMIO address from PCI configuration space, if available */
if (pATI->PCIInfo &&
(pATI->Block0Base = pATI->PCIInfo->memBase[2]))
pATI->Block0Base += 0x0400U;
/* Possibly set up for linear aperture */
if (pATI->OptionLinear)
{
/* Get adapter's linear aperture configuration */
IOValue1 = inl(pATI->CPIO_CONFIG_CNTL);
pATI->LinearBase = GetBits(IOValue1, CFG_MEM_AP_LOC) << 22;
if ((IOValue1 & CFG_MEM_AP_SIZE) != CFG_MEM_AP_SIZE)
pATI->LinearSize =
GetBits(IOValue1, CFG_MEM_AP_SIZE) << 22;
/* Except for PCI & AGP, allow for user override */
if ((pATI->BusType != ATI_BUS_PCI) &&
(pATI->BusType != ATI_BUS_AGP))
{
if (pATI->Chip == ATI_CHIP_88800CX)
IOValue2 = ~((unsigned long)((1 << 23) - 1));
else if (pATI->Chip >= ATI_CHIP_88800GXE)
IOValue2 = ~((unsigned long)((1 << 24) - 1));
else if (pATI->VideoRAM >= 4096)
IOValue2 = ~((unsigned long)((1 << 23) - 1));
else
IOValue2 = ~((unsigned long)((1 << 22) - 1));
if ((IOValue2 &= pGDev->MemBase) &&
(IOValue2 <= (MaxBits(CFG_MEM_AP_LOC) << 22)))
pATI->LinearBase = IOValue2;
}
if (pATI->LinearBase)
{
if ((pATI->BusType != ATI_BUS_PCI) &&
(pATI->BusType != ATI_BUS_AGP))
{
if (pATI->VideoRAM < 4096)
pATI->LinearSize = 4 * 1024 * 1024;
else
pATI->LinearSize = 8 * 1024 * 1024;
Resources[0].type = ResExcMemBlock;
Resources[0].rBegin = pATI->LinearBase;
Resources[0].rEnd = pATI->LinearBase +
pATI->LinearSize - 1;
if (xf86RegisterResources(pATI->iEntity, Resources,
ResNone))
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Unable to register %d MB linear aperture at"
" 0x%08X.\n", pATI->LinearSize >> 10,
pATI->LinearBase);
pATI->LinearSize = 0;
}
}
}
if (!pATI->LinearBase || !pATI->LinearSize)
{
if (pATI->VGAAdapter == ATI_ADAPTER_NONE)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_ERROR,
"A linear aperture is not available through this"
" adapter.\n");
ATILock(pATI);
return FALSE;
}
/* Insurance */
pATI->LinearBase = pATI->LinearSize = 0;
}
else
{
/*
* Unless specified in PCI configuration space, set MMIO
* address to tail end of linear aperture.
*/
if (!pATI->Block0Base)
pATI->Block0Base =
pATI->LinearBase + pATI->LinearSize - 0x00000400U;
AcceleratorVideoRAM = (pATI->LinearSize >> 10) - 2; /* 4? */
if (AcceleratorVideoRAM < pATI->VideoRAM)
{
if (pATI->Chip < ATI_CHIP_264VTB)
{
/*
* Don't allow virtual resolution to overlay
* register aperture(s).
*/
pScreenInfo->videoRam = AcceleratorVideoRAM;
xf86DrvMsg(pScreenInfo->scrnIndex, X_NOTICE,
"Virtual resolutions will be limited to %d kB"
" to account for\n accelerator register"
" aperture.\n",
AcceleratorVideoRAM);
}
else
{
/*
* On VTB's and later, ATIInit disables the primary
* register aperture. This is done so the driver
* can get at the frame buffer memory behind it.
* For MMIO purposes, the auxillary register
* aperture will be used instead. Also, ignore the
* CONFIG_CNTL register's indication of linear
* aperture size, as it is insufficient for
* adapters with more than 8MB of video memory.
*/
if (pATI->VideoRAM > (8 * 1024))
pATI->LinearSize = 16 * 1024 * 1024;
}
}
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Using %d MB linear aperture at 0x%08X.\n",
pATI->LinearSize >> 20, pATI->LinearBase);
/* Only mmap what is needed */
pATI->ApertureSize = pATI->LinearSize =
pATI->VideoRAM * 1024;
}
}
}
/* Set up for a banked aperture */
if (pATI->VGAAdapter != ATI_ADAPTER_NONE)
{
pATI->UseSmallApertures = TRUE;
/* Set banking port numbers */
pATI->CPIO_MEM_VGA_RP_SEL = ATIIOPort(MEM_VGA_RP_SEL);
pATI->CPIO_MEM_VGA_WP_SEL = ATIIOPort(MEM_VGA_WP_SEL);
/* Set banking functions */
if (pScreenInfo->depth <= 4)
{
pATI->NewHW.SetBank = ATIMach64SetBankPlanar;
pATI->BankInfo.SetSourceBank = ATIMach64SetReadPlanar;
pATI->BankInfo.SetDestinationBank = ATIMach64SetWritePlanar;
pATI->BankInfo.SetSourceAndDestinationBanks =
ATIMach64SetReadWritePlanar;
}
else
{
pATI->NewHW.SetBank = ATIMach64SetBankPacked;
pATI->BankInfo.SetSourceBank = ATIMach64SetReadPacked;
pATI->BankInfo.SetDestinationBank = ATIMach64SetWritePacked;
pATI->BankInfo.SetSourceAndDestinationBanks =
ATIMach64SetReadWritePacked;
}
/*
* Unless specified in PCI configuration space, or at the top of
* of a linear aperture, set MMIO address to the one just above the
* VGA aperture. This does not work on the CT (maybe others).
*/
if (!pATI->Block0Base &&
((pATI->Chip < ATI_CHIP_264CT) ||
(pATI->Chip >= ATI_CHIP_264VT) ||
pATI->OptionDevel))
pATI->Block0Base = 0x000BFC00U;
}
if (pATI->Block0Base)
{
pATI->PageSize = getpagesize();
pATI->MMIOBase = pATI->Block0Base & ~(pATI->PageSize - 1);
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Using Block 0 MMIO aperture at 0x%08X.\n", pATI->Block0Base);
/* Set Block1 MMIO address if supported */
if (pATI->Chip >= ATI_CHIP_264VT)
{
pATI->Block1Base = pATI->Block0Base - 0x00000400U;
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Using Block 1 MMIO aperture at 0x%08X.\n",
pATI->Block1Base);
}
}
}
else
/*
* After BIOS initialisation, the accelerator (if any) and the VGA won't
* necessarily agree on the amount of video memory, depending on whether or
* where the memory boundary is configured. Any discrepancy will be
* resolved by ATIInit.
*
* However, it's possible that there is more video memory than VGA Wonder
* can architecturally handle.
*/
if (((pATI->Chip < ATI_CHIP_68800) || (pATI->Chip > ATI_CHIP_68800AX)) &&
(AcceleratorVideoRAM < pScreenInfo->videoRam))
{
if (pATI->OptionDevel)
{
if (pScreenInfo->depth == 1)
AcceleratorVideoRAM /= 4;
xf86DrvMsg(pScreenInfo->scrnIndex, X_NOTICE,
"Virtual resolutions requiring more than %d kB\n of video"
" memory might not function correctly.\n",
AcceleratorVideoRAM);
}
else
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_NOTICE,
"VideoRAM reduced to %d kB due to hardware limitations."
ATI_README, AcceleratorVideoRAM);
pScreenInfo->videoRam = AcceleratorVideoRAM;
}
}
if (pATI->OptionLinear && !pATI->LinearBase)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Linear aperture not supported in this configuration.\n");
pATI->OptionLinear = FALSE;
}
if (pATI->OptionAccel && !pATI->Block0Base)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Acceleration not supported in this configuration.\n");
pATI->OptionAccel = FALSE;
}
if (pATI->Adapter >= ATI_ADAPTER_MACH32)
{
if (pATI->Chip >= ATI_CHIP_264CT)
ATIReportMemory(pScreenInfo, pATI,
ATIMemoryTypeNames_264xT[pATI->MemoryType]);
else if (pATI->Chip == ATI_CHIP_88800CX)
ATIReportMemory(pScreenInfo, pATI,
ATIMemoryTypeNames_88800CX[pATI->MemoryType]);
else
ATIReportMemory(pScreenInfo, pATI,
ATIMemoryTypeNames_Mach[pATI->MemoryType]);
}
else if (pATI->Adapter >= ATI_ADAPTER_V3)
ATIReportMemory(pScreenInfo, pATI,
(ATIGetExtReg(0xB7U) & 0x04U) ? "DRAM" : "VRAM");
else
ATIReportMemory(pScreenInfo, pATI, "video memory");
/*
* Finish banking setup. This needs to be fixed to not assume the mode on
* entry is a VGA mode. XXX
*/
if (pATI->VGAAdapter == ATI_ADAPTER_NONE)
{
pATI->OldHW.crtc = pATI->NewHW.crtc;
pATI->OldHW.SetBank = (ATIBankProcPtr)NoopDDA;
pATI->BankInfo.BankSize = 0; /* No banking */
}
else
{
pATI->OldHW.crtc = ATI_CRTC_VGA;
#if 0 /* ___NOT_YET___ */
if (pATI->ChipHasSUBSYS_CNTL)
{
}
else
#endif
if ((pATI->Chip >= ATI_CHIP_88800GXC) &&
(inl(pATI->CPIO_CRTC_GEN_CNTL) & CRTC_EXT_DISP_EN))
pATI->OldHW.crtc = ATI_CRTC_MACH64;
if (pScreenInfo->depth <= 4)
{
pATI->BankInfo.nBankDepth = 1;
pATI->NewHW.nPlane = 4;
}
else
{
pATI->BankInfo.nBankDepth = pScreenInfo->depth;
pATI->NewHW.nPlane = 1;
}
if ((pATI->OldHW.crtc != ATI_CRTC_VGA) ||
(GetReg(SEQX, 0x04U) & 0x08U))
pATI->OldHW.nPlane = 1;
else
pATI->OldHW.nPlane = 4;
pATI->OldHW.nBank = ATIDivide(pATI->VideoRAM,
pATI->OldHW.nPlane * pATI->BankInfo.BankSize, 10, 1);
pATI->NewHW.nBank = ATIDivide(pATI->VideoRAM,
pATI->NewHW.nPlane * pATI->BankInfo.BankSize, 10, 1);
if (pATI->VGAAdapter == ATI_ADAPTER_VGA)
{
pATI->OldHW.SetBank = pATI->NewHW.SetBank =
(ATIBankProcPtr)NoopDDA;
pATI->OldHW.nBank = pATI->NewHW.nBank = 1;
}
else if (!pATI->UseSmallApertures)
pATI->OldHW.SetBank = pATI->NewHW.SetBank;
else if (!(inl(pATI->CPIO_CONFIG_CNTL) & CFG_MEM_VGA_AP_EN))
{
pATI->OldHW.SetBank = (ATIBankProcPtr)NoopDDA;
pATI->OldHW.nBank = 1;
}
else if (pATI->OldHW.nPlane == 1)
pATI->OldHW.SetBank = ATIMach64SetBankPacked;
else
pATI->OldHW.SetBank = ATIMach64SetBankPlanar;
if (((pATI->ApertureSize * pScreenInfo->depth) /
pATI->BankInfo.nBankDepth) >=
(unsigned)(pScreenInfo->videoRam * 1024))
pATI->BankInfo.BankSize = 0; /* No banking */
}
if (pATI->OptionShadowFB)
{
/* Until ShadowFB becomes a true screen wrapper... */
if (pATI->BankInfo.BankSize)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Cannot shadow a banked frame buffer.\n");
pATI->OptionShadowFB = FALSE;
}
else if (pScreenInfo->depth < 8)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Cannot shadow a planar frame buffer.\n");
pATI->OptionShadowFB = FALSE;
}
else if (pATI->OptionAccel)
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Cannot shadow an accelerated frame buffer.\n");
pATI->OptionShadowFB = FALSE;
}
else
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Using shadow frame buffer.\n");
}
/* 264VT-B's and later have DSP registers */
if ((pATI->Chip >= ATI_CHIP_264VTB) && (pATI->CPIODecoding == BLOCK_IO) &&
!ATIDSPPreInit(pScreenInfo, pATI))
{
ATILock(pATI);
return FALSE;
}
/*
* Determine maxClock. For adapters with supported programmable clock
* generators, start with an absolute maximum.
*/
if (pATI->ClockDescriptor.MaxN > 0)
{
Numerator = pATI->ClockDescriptor.MaxN * pATI->ReferenceNumerator;
Denominator = pATI->ClockDescriptor.MinM * pATI->ReferenceDenominator *
pATI->ClockDescriptor.PostDividers[0];
/*
* An integrated PLL behaves as though the reference frequency were
* doubled. It also does not appear to care about the colour depth.
*/
if (pATI->ProgrammableClock == ATI_CLOCK_INTERNAL)
Numerator <<= 1;
else if (pScreenInfo->depth > 8)
Denominator *= (pScreenInfo->bitsPerPixel / 8);
ATIClockRange.maxClock = (Numerator / (Denominator * 1000)) * 1000;
}
/*
* Assume an internal DAC can handle whatever frequency the internal PLL
* can produce (with the reference divider set by BIOS initialisation), but
* default maxClock to a lower chip-specific default.
*/
if ((pATI->DAC & ~0x0FU) == ATI_DAC_INTERNAL)
{
int DacSpeed;
switch (pScreenInfo->bitsPerPixel)
{
case 15:
case 16:
DacSpeed = pGDev->dacSpeeds[DAC_BPP16];
break;
case 24:
DacSpeed = pGDev->dacSpeeds[DAC_BPP24];
break;
case 32:
DacSpeed = pGDev->dacSpeeds[DAC_BPP32];
break;
default:
DacSpeed = 0;
break;
}
if (!DacSpeed)
DacSpeed = pGDev->dacSpeeds[DAC_BPP8];
if (DacSpeed < ATIClockRange.maxClock)
{
int DefaultmaxClock = 135000;
if (pScreenInfo->depth > 8)
DefaultmaxClock = 80000;
if ((pATI->Chip >= ATI_CHIP_264VTB) &&
(pATI->Chip != ATI_CHIP_Mach64))
{
if (pATI->Chip >= ATI_CHIP_264VT4)
DefaultmaxClock = 230000;
else if (pATI->Chip >= ATI_CHIP_264VT3)
DefaultmaxClock = 200000;
else
DefaultmaxClock = 170000;
}
if (DacSpeed > DefaultmaxClock)
ATIClockRange.maxClock = DacSpeed;
else if (DefaultmaxClock < ATIClockRange.maxClock)
ATIClockRange.maxClock = DefaultmaxClock;
}
}
else switch(pATI->DAC)
{
case ATI_DAC_STG1700:
case ATI_DAC_STG1702:
case ATI_DAC_STG1703:
ATIClockRange.maxClock = 110000;
break;
default:
/*
* 80 MHz is too high in some cases. Limit 18800-x's to 40 MHz.
* Don't exceed the memory clock on VGA Wonder capables with less
* than 1 MB, if using a packed mode.
*/
if ((pATI->Chip == ATI_CHIP_18800) ||
(pATI->Chip == ATI_CHIP_18800_1))
ATIClockRange.maxClock = 40000;
else if (pATI->CPIO_VGAWonder &&
(pATI->VideoRAM < 1024) &&
(pScreenInfo->depth >= 8))
ATIClockRange.maxClock =
(GetBits(BIOSByte(0x44U), 0x04U) * 5000) + 40000;
else
ATIClockRange.maxClock = 80000;
break;
}
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Maximum pixel clock: %.3f MHz.\n",
(double)ATIClockRange.maxClock / 1000.0);
/*
* Determine available pixel clock frequencies.
*/
ATIClockPreInit(pScreenInfo, pATI, pGDev, &ATIClockRange);
if (pATI->ProgrammableClock != ATI_CLOCK_FIXED)
Strategy = LOOKUP_BEST_REFRESH;
/*
* Mode validation.
*/
if ((pScreenInfo->depth >= 8) && (pATI->Chip >= ATI_CHIP_264CT))
minPitch = 8;
else if (pATI->CPIO_VGAWonder &&
(pATI->Chip <= ATI_CHIP_18800_1) &&
(pATI->VideoRAM == 256) &&
(pScreenInfo->depth >= 8))
{
minPitch = 32; /* Very strange, but true */
maxPitch = 0x3FU;
}
else
minPitch = 16;
pitchInc = minPitch;
if (pScreenInfo->depth >= 8)
pitchInc *= pScreenInfo->bitsPerPixel;
/*
* For SGRAM & WRAM adapters, the display engine limits the pitch to
* multiples of 64 bytes.
*/
if (pATI->OptionAccel && (pATI->Chip >= ATI_CHIP_264CT) &&
((pATI->Chip >= ATI_CHIP_264VTB) ||
(pATI->MemoryType >= MEM_264_SGRAM)))
{
if (pScreenInfo->bitsPerPixel == 24)
pitchInc = 64 * 24;
else
pitchInc = 64 * 8;
}
switch (pATI->NewHW.crtc)
{
case ATI_CRTC_VGA:
/*
* IBM's VGA doesn't allow for interlaced modes.
*/
if (pATI->Adapter <= ATI_ADAPTER_VGA)
ATIClockRange.interlaceAllowed = FALSE;
pScreenInfo->maxHValue = (0xFFU + 1) << 3; /* max HTotal */
/*
* The maximum VTotal value set here applies to all modes,
* including interlaced, doublescanned or multiscanned modes.
* Finer-grained checks are done in ATIValidateMode().
*/
pScreenInfo->maxVValue = 0x03FFU + 1;
if (pATI->Adapter > ATI_ADAPTER_VGA)
{
pScreenInfo->maxVValue <<= 1;
if (ATIClockRange.interlaceAllowed &&
(pATI->Chip < ATI_CHIP_264CT))
pScreenInfo->maxVValue <<= 1;
}
/*
* 18800-x and 28800-x do not support interlaced modes when the
* scanline pitch is 2048 pixels or more. For 18800-x's with 256
* kB of video memory, the limit for 8bpp is 1024.
*/
if (ATIClockRange.interlaceAllowed &&
(pATI->Chip <= ATI_CHIP_28800_6))
{
if (minPitch == 32)
pATI->MaximumInterlacedPitch = 0x1FU * 32;
else
pATI->MaximumInterlacedPitch = 0x7FU * minPitch;
}
Strategy |= LOOKUP_CLKDIV2;
break;
case ATI_CRTC_MACH64:
pScreenInfo->maxHValue = (MaxBits(CRTC_H_TOTAL) + 1) << 3;
if (pATI->Chip < ATI_CHIP_264VT)
{
/*
* ATI finally fixed accelerated doublescanning in the 264VT
* and later. On 88800's, the bit is documented to exist, but
* only doubles the vertical timings. On the 264CT and 264ET,
* the bit is ignored.
*/
ATIClockRange.doubleScanAllowed = FALSE;
/* CRTC_H_TOTAL is one bit narrower */
pScreenInfo->maxHValue >>= 1;
}
pScreenInfo->maxVValue = MaxBits(CRTC_V_TOTAL) + 1;
maxPitch = MaxBits(CRTC_PITCH);
break;
default:
break;
}
maxPitch *= minPitch;
if (!pATI->OptionCRT && pATI->LCDPanelID >= 0)
{
/*
* Given LCD modes are more tightly controlled than CRT modes, allow
* the user the option of not specifying a panel's horizontal sync
* and/or vertical refresh tolerances.
*/
Strategy |= LOOKUP_OPTIONAL_TOLERANCES;
}
i = xf86ValidateModes(pScreenInfo,
pScreenInfo->monitor->Modes, pScreenInfo->display->modes,
&ATIClockRange, NULL, minPitch, maxPitch, pitchInc, 0, 0,
pScreenInfo->display->virtualX, pScreenInfo->display->virtualY,
pATI->ApertureSize, Strategy);
if (i <= 0)
{
ATILock(pATI);
return FALSE;
}
/* Map MMIO areas */
if (!ATIMapApertures(pScreenInfo, pATI))
return FALSE;
/* Remove invalid modes */
xf86PruneDriverModes(pScreenInfo);
/* Set current mode to the first in the list */
pScreenInfo->currentMode = pScreenInfo->modes;
/* Print mode list */
xf86PrintModes(pScreenInfo);
/* Set display resolution */
xf86SetDpi(pScreenInfo, 0, 0);
#ifdef XFree86LOADER
/* Load required modules */
if (!ATILoadModules(pScreenInfo, pATI))
{
ATIUnmapApertures(pScreenInfo, pATI);
ATILock(pATI);
return FALSE;
}
#endif
/* Initialise for panning */
ATIAdjustPreInit(pScreenInfo, pATI);
/* Initialise CRTC code */
ATIAdapterPreInit(pScreenInfo, pATI, &pATI->NewHW);
/* Relock registers */
ATIUnmapApertures(pScreenInfo, pATI);
ATILock(pATI);
if (!pScreenInfo->chipset || !*pScreenInfo->chipset)
pScreenInfo->chipset = (char *)ATIChipsetNames[0];
/* Generate noise if requested */
if (xf86GetVerbosity() > 3)
{
ATIPrintBIOS(pATI, BIOS, 0, BIOSSize);
xf86ErrorFVerb(4, "\n On server entry:\n");
ATIPrintRegisters(pATI);
}
return TRUE;
}
|