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
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
|
commit e420d7956afceeb41f20179cedc28d46aebdb29f
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Dec 26 22:13:22 2011 +0200
Geode 2.11.13
This release mainly features a complete overhaul of the building scripts plus
a cleanup of deprecated macros. The key benefit is that this Geode driver can
finally build on FreeBSD and on other platforms not offering V4L2 support and
that it can also build on a 64-bit host using its 32-bit personality.
Support for the Video Input Port (VIP) feature of the Geode LX found in 'ztv'
is now documented and the source code saw the removal of deprecated Linux 2.4
backward compatibility code. Compiling is skipped on platforms without V4L2.
Configuration for laptops featuring WXGA resolutions is finally documented.
Setting the GEODE_TRACE_FALL macro now enables composite operation tracing on
this driver. This can be used to profile the performance during development.
Fixes to keep this driver compilable on recent X servers are also included.
VALIDATION PLATFORMS
* Debian/stable (X server 1.7.7) on Artec DBE61 and Hercules EC-800.
* Ubuntu/Precise (X server 1.10.4) on FIC ION603A.
Signed-off-by: Martin-Éric Racine <martin-eric.racine@iki.fi>
commit 7e7fe26882dada5878d5450e64c043ba7b0737fd
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Dec 25 21:43:40 2011 +0200
Fix lx_display.c:360:9: warning: ISO C90 forbids mixed declarations and code
commit 515d232162c8ea2c5ecabf12b88b0bf4eb5102e7
Author: Adam Jackson <ajax@redhat.com>
Date: Mon Dec 19 17:47:38 2011 -0500
Fix for new vgaHW ABI
Signed-off-by: Adam Jackson <ajax@redhat.com>
commit 78052e0d3e28c7e6e08666d9ed2bcc64f5e93540
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Tue Nov 29 12:02:32 2011 -0500
DCONDPMSSet: handle error return code on "write" to avoid a warning
The author of the write() system call has deemed important for the caller
to check the return code. If not, the compiler issues a warning.
The patch handles a bad return code from write() just in the same way
as the code does for the open() calls.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit db7155395e794eb276f853c7642f62727e29a0b9
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Tue Nov 29 23:49:06 2011 +0200
README: added example of ZTV loading to EC800 xorg.conf sample.
commit d072870e20c360fb0ec1baefc6abcb11a6d4687c
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Tue Nov 29 14:20:17 2011 -0500
README: do not suggest compiling with xserver older than 1.3
This was done at one point in time by some drivers (3 that I remember)
but the workarounds all have been removed since. The tarballs created
by those drivers picked-up whatever code happened to be on the
developer disk and was not in git. The code was not maintained
and in fact did not work thereafter.
http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/commit/configure.ac
?id=84f69081abaeef8b05cafb64d3102eb2abdf9a8e
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 2890f6c431a6de0726c6c53a800074f95d71294e
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Thu Nov 24 21:47:35 2011 +0200
README: added info about how to calculate arbitrary laptop modelines.
commit e520739e9ce18a48df7d873de16022aec21d7d3c
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Nov 21 22:47:23 2011 +0200
README: whitespace cleanup.
commit edb6a6380e0db6be06fe89e7d73dedbca945550f
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Nov 21 22:42:41 2011 +0200
README: harmonize x.org versus freedesktop.org as much as possible.
commit 308430e8898e29ae111bf4f552f4d7554b96fda2
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Nov 21 22:34:26 2011 +0200
README: add info about the Geode mailing list and Bugzilla component.
commit 1108f9cfac5b78fc9660174aa4df592ecd87d287
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Mon Nov 14 14:52:21 2011 -0500
Remove unrequired large file descriptor partial support
The LFS "transitional extension" API is deprecated and is not available on FreeBSD.
Large file support (64 bit) is not required on the geode 32 bit only architecture.
There are some hints that the LFS transional extension API were not used
correclty. The variable holding the value is held in an unsigned long rather
than in off_t. The msr open call did not use the O_LARGEFILE flag and did not
check for EOVERFLOW.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 0daee9eb57c826da120edf35c50e8947a43f19b2
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Nov 21 10:54:10 2011 +0200
README: a little bit of proofreading wouldn't hurt now, would it?
commit d1c40f2d5baa2d964499412c7f1c443c9ee63626
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Nov 21 10:24:29 2011 +0200
README: added a sample xorg.conf for 1024x600 and 800x480 laptops.
commit 8fc372b4e239005dda60f45737468f1e82571457
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sun Nov 20 15:58:03 2011 -0500
config: fix Autoconf warnings and improve comments
These changes have been done in all other video drivers.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 725d6ddc0b0888af9b033ccb6ce88c9800a791f9
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sun Nov 20 15:35:29 2011 -0500
config: The compiler version to use is now set in XORG_DEFAULT_OPTIONS
In this case "now" means a couple of years ago. All of Xorg is compiled
with AC_PROG_CC_C99. It shows up in config.log as CC='gcc -std=gnu99'.
The removed statement was resetting the compiler to C89 as it comes
after XORG_DEFAULT_OPTIONS.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 40aae069bb15cda123f5e08b757ca93166e62db8
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sun Nov 20 15:24:00 2011 -0500
config: remove a few dead/obsolete lines of code
HAVE_XEXTPROTO_71 not used in Makefile.
AC_HEADER_STD is very obsolete.
AC_SUBST([XORG_CFLAGS]) is redundant.
DRIVER_NAME is correctly no longer used.
AC_SUBST([moduledir]) has just been moved up.
Any erroneously removed statements above would result
in a configuration failure.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit fa0e88bfe00baa648ab3b1184b56f7dc5536aa21
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sat Nov 19 15:33:33 2011 -0500
Move back ztv with geode driver
Now we have a clean separation between CPP flags and C Flags
Only the C Flags apply to both geode and ztv driver, however
it is not worth doing a per target compilation.
Should some flags become mutually exclusive and if we want to have
both target in the same makefile, add the incompatible flag
on the appropriate target, example:
geode_drv_la_CFLAGS = $(AM_CFLAGS) -newCFlag
and/or
geode_drv_la_CPPFLAGS = $(AM_CPPFLAGS) -newCPPFlag
Note that both AM_CFLAGS and AM_CPPFLAGS are picked-up by both
geode and ztv driver target.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 03529b7b35fa8d7b5bac277d6abe1caf0557301a
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sat Nov 19 13:22:32 2011 -0500
Separate compiler from pre-processor options
Clean-up what goes in AM_CFLAGS and AM_CPPFLAGS
Use more descriptive names such that comments are not needed.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit ac99bf2c5cdf86f039a290397614ca042a56c8db
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Fri Nov 18 16:36:12 2011 -0500
Detect 32bit support on 64bit OS and compile with -m32 if found
For gcc compiler only at the moment.
The configuration reports if support is found or not, e.g.:
checking if gcc supports the -m32 Intel/AMD option... yes
The configuration C test relies on #include unistd.h which includes
features.h which includes gnu/stubs.h which includes gnu/stubs-32.h
which is missing on 64 bit system without the 32 bit library support.
Tested on x86_64 AMD64 CPU with/without libc6-dev-i386 which provides
32 bit support. Remains to be tested on Geode and FreeBSD 32/64 bit.
The configuration does not attempt to decide if building should proceed
or be aborted. If no 32 bit support then the build will die in the
assembly code as it always did before.
The variable M32_CFLAGS provides the flag for the makefiles.
The variable names and organization is subject to change.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 3021c6df08004ec9ed846fec4000d798148eeb0e
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Nov 17 19:47:10 2011 -0500
geode source: streamline whitespace and sort alphabetically
No functional changes.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit c1993fa8e5bf07bbd43b09ae2ec27c287725d81e
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Nov 17 19:21:01 2011 -0500
Remove -I linux_v26 as the directory does not exist
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 4eaba919fccc7618aee0b2f58294e460640bedb9
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Nov 17 12:32:55 2011 -0500
Remove unused and misleading I386ARCH configuration code
The AM_CONDITIONAL I386ARCH is not used.
The AC_CHECK_DECLS is misleading as it suggests there could be some i*86
system with a 64 bit architecture which is incorrect.
It also provides false results on 64 bit computer.
The generated HAVE_DECL_XXX are not used anyway.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 65275e62415ded849f9986a36ad55ca3c96dc331
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Nov 17 12:20:13 2011 -0500
Remove -DPNL_SUP for the ztv driver
Only the gx driver provide such a panel.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 60c3f5f7e9482d29f043504860319aeead7b9a69
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Nov 17 09:32:24 2011 -0500
Remove duplicate warning variable and werror option
Use already existing:
--enable-strict-compilation
Enable all warnings from compiler and make them
errors (default: disabled)
which, byt the way was broken as it was not implemented in geode.
Use already existing CWARNINGFLAGS variable, so there is no need
to define GCC_WARNINGS.
Both come from util-macros version 1.4 or later.
http://cgit.freedesktop.org/xorg/util/macros/tree/xorg-macros.m4.in
?id=03b04a6b5d61aafbd2705f7d29e58e0c92553a4a
If you configure with a later version of util-macros you may see new
warnings appear as additional flags have been added over the years.
You get better support for platforms/compiler differences.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 5f228208cc65348e35aa24b6cddae1df19b67fa5
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Nov 16 20:14:08 2011 -0500
Remove unrequired .s assembly files automake support
Only the suffixes .s, .S, and .sx are recognized by automake
as being files containing assembly code.
http://www.gnu.org/software/automake/manual/automake.html#Assembly-Support
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit fc9957114875edb94cba89a4f4f0e023f2c98bfb
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Nov 16 19:47:08 2011 -0500
Remove ztv LINUX_2_6 switch and dead code
The makefile defines LINUX_2_6 so the "else" code is dead.
The port from kernel 2.4 is complete.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 100576b3a0a38da7a957969745b2cf087929c478
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Nov 16 19:15:17 2011 -0500
Remove broken duplicate visibility configure option
This was added by commit f762b456 in 2007 and has been since implemented
in the server which returns it in XORG_CFLAGS
pkg-config --cflags xorg-server
The server also takes care of platforms and compilers being used.
Currently the visibility is set twice and even if you disable it,
it is still passed through XORG_CFLAGS.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 970d142abe2fa09b294dd2bfa860fe3bbcaa8c68
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Nov 16 17:01:48 2011 -0500
Remove unused LINUX_2_6 macro from geode driver makefile
It is used in ztv but not geode driver.
In the wake of more platforms other than linux, might as well
remove any source of confusion.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 65625eac28af7cf3164e5560478cd18aaa0ac33e
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Nov 16 15:20:07 2011 -0500
Remove HAVE__GX HAVE_LX and OPT_ACCEL from ztv build
These macros are not used in z4l.c.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit dd8eadc53732ed2929e38c565240147165767625
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Nov 16 15:11:18 2011 -0500
Remove no longer used AMD_V4L2_VIDEO from makefiles
This macro has been removed every where from source code.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit fc19e7d2bd256663b4a731661a35abcf435eaf18
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Nov 16 14:07:10 2011 -0500
Add a configure option to enable/disable building the ztv driver
Even when V4L2 is available there are always reasons why distros
may not want to build the driver.
This patch uses a common idiom in xorg.
When no configure option is specified ztv is built iff v4l2 is detected (auto).
When user issues --disable-ztv, the ztv driver is not built (no)
When user issues --enable-ztv, the ztv driver is built (yes) if v4l2 is detected
but the configuration fails if v4l2 is missing. Distros do not want silent
failures when a feature is explicitly requested but cannot be built.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 23b85b3fcd1439561f0693755a31f7fded50741b
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Tue Nov 15 19:36:17 2011 -0500
Add conditional build for ztv
Detect the presence of Video4Linux V2 and do not build if missing.
The geode driver is no longer Linux only.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit e4b771572d7b0797a794340ab8fb8b1db91a5eb1
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Tue Nov 15 18:02:34 2011 -0500
Move ztv driver to it's own directory
The convention is to have the video driver (geode) in the src subdir
and any other targets (utils, apps, other drivers) in their own
directory. It makes it much simpler to right a correct makefile
and to set conditional compile.
This highlighted a few things to fix. For now, the directory includes
have not been copied as they are required. The AM_CCASFLAGS is not required
either as there is no assembler.
Other than that, the gcc command issued has no differences. Other unrequired
defines could be removed later.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 2b3767b9e424ce371c342c9c9a2f2ae1f61df1fd
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sat Nov 19 02:29:20 2011 +0200
README: emphasize that "ztv" is the name of that VIP driver.
commit aa7cd847d821ed639f7d18a5114a13c324f6f227
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sat Nov 19 02:17:22 2011 +0200
README: properly call the LX's video input port feature "VIP"
commit 9bbc7bc49f1d04d41d7e1750b81cfce45e4ddf42
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Thu Nov 17 02:15:27 2011 +0200
Added info about 'ztv' a.k.a. the V4L2 driver for LX in README.
commit 9e8a766cfb458cdc791f4c4a932fe51638a8bc73
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Tue Nov 15 16:55:15 2011 -0500
Add gx_randr.c Copyright statement to COPYING
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit b724ff4045994fff721db4ab67f8aa418cc4f707
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Nov 14 08:44:32 2011 +0200
Revert "Only enable z4l.c on Linux" until we have a consensus.
commit 587d4e40e58e70649968261f73b7fb2078349f4f
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Nov 13 15:48:29 2011 +0200
Revised BSD check in geode_msr.c
commit ee52d73fd2c68740b1ff3cdb5b1bf2a6d941090d
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Nov 13 03:40:01 2011 +0200
Move the z4l.c test to src/Makefile.am where it should be.
commit d193a42b3596ceb9dfaa66af71edd1f15ecc75bd
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Nov 13 03:23:21 2011 +0200
Added two #ifdef to enable building on FreeBSD.
commit ee6296ecb8bf5c9b5e7fa3eade5fa45245b66d62
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Nov 13 03:14:51 2011 +0200
Whitespace cleanup.
commit f6745f544feeb7443405f4b87043be9b721236b5
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Nov 13 03:10:01 2011 +0200
Only enable z4l.c on Linux.
commit f15f4da59a80533f3864aa6c54b4471e272d5c80
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Wed Apr 6 22:13:09 2011 +0300
Added info about the Geode developers' IRC channel in README.
commit 3c1375afdb9e1be524adae98c3713397d50e3a3e
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Mar 13 16:17:06 2011 +0200
Proofread and restructured the README for clarity.
commit 9d0986232cb417f41aee934b655cc0bbbae5f99b
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Mar 13 15:21:31 2011 +0200
Added README section about supported resolutions.
Inverted two FAQ sections so as to bring the answer about WXGA
right below this new supported resolutions section.
commit 8eab313cdf0cdc53ea936c7a9dd716d1000e1c56
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Mar 13 15:10:28 2011 +0200
Removed README note about minimal version.
b9a5a86a402832fe699e43b3030932b50ae821a0 restored code compatibility
with X server 1.4.
commit c465e19ff53db4be42dabcfafde510f79508c531
Author: Priit Laes <plaes@plaes.org>
Date: Sun Mar 13 03:40:53 2011 +0200
Add optional composite operation fallback tracing
Changing GEODE_TRACE_FALL to 1 allows to easily find the unaccelerated
code paths in a given use case while working on driver performance.
Signed-off-by: Priit Laes <plaes@plaes.org>
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
commit 4fd7500bb16b80ea9aee8dc61c5b11e9deb8281f
Author: Mart Raudsepp <leio@gentoo.org>
Date: Sat Mar 12 22:17:19 2011 +0200
Fix parameter ordering for calloc/xnfcalloc calls
First argument is the number of elements and second the size of one
element, not vice-versa.
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
commit 1a23956758d17a8b4c1d8acebf8acc94358c37b9
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Sun Feb 13 21:52:55 2011 +0200
Geode 2.11.12
commit 30d46e6c28479e07ac8328b6f4dfc2692eb1ac6d
Author: Martin-Éric Racine <martin-eric.racine@iki.fi>
Date: Mon Feb 7 00:04:06 2011 +0000
Stop including "linux/videodev.h" in z4l.c
V4L1 support was dropped as of Linux kernel 2.6.38
commit 509f6085ce7747d76f638a7a30170c437b296a40
Author: Daniel Drake <dsd@laptop.org>
Date: Sun Feb 6 20:22:01 2011 +0000
Fix packed overlay offscreen allocations
Commit 5e72a00ad2 caused packed video data to corrupt glyphs and other
parts of the screen, but it turns out that the commit actually at fault
was d681a844e, incorrectly changing the size of the allocated destination
memory from the number of bytes needed to the number of lines needed.
While fixing this, I noticed that LXAllocateSurface is probably making the
same mistake, and that the height is probably not calculated correctly for
some corner cases when calling LXCopyFromSys in the packed
video path (but I'm not sure about either).
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=33004
commit 66c375d2a1d1eadb38d2cbfe2d08cfec20213cb4
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Dec 27 15:20:38 2010 +0200
Geode 2.11.11
commit b9a5a86a402832fe699e43b3030932b50ae821a0
Author: Priit Laes <plaes@plaes.org>
Date: Wed Dec 15 03:54:13 2010 +0200
Restoring compatibility down to X server 1.4
Signed-off-by: Priit Laes <plaes@plaes.org>
commit bae443bb46c81702a57d4914b7e56f17e5aa1f3a
Author: Daniel Drake <dsd@laptop.org>
Date: Tue Nov 30 20:31:49 2010 +0000
Improve handling of gamma correction in video vs graphics
The LX is a bit odd in that the palette can be used for gamma correction
of graphics data, or video data, but not both at the same time.
Right now, during X startup, X sets gamma correction (but without any
actual correction) causing the Geode driver to start using the palette
for graphics gamma correction. (this is just momentary)
Later on during startup, vg_set_custom_mode() switches to using the
palette for video gamma correction, and this is the end result.
If you later use xrandr to change the gamma, the palette starts being used
for graphics again.
If you VT switch, vg_set_custom_mode (momentarily) starts using the palette
for video, but then X jumps in with a gamma callback causing it to be used
for graphics again.
End result: no user visible bug, but this is inconsistent.
As there is no exposed mechanism for changing video gamma I suggest
we just drop that bit from vg_set_custom_mode(). Then the inconsistency
goes away.
Downside: this now becomes dependent on X setting gamma during startup.
I don't know when this was introduced but I think it is recent.
Aditionally, I think I found a (harmless) bug in
df_set_video_palette_entry, it doesn't do what the comments say.
commit 5873bfa48f1c090d224adbc7ca7df3ebea0b198f
Author: Priit Laes <plaes@plaes.org>
Date: Sun Dec 12 16:17:24 2010 +0200
Fix compilation under xorg >1.9.99
Signed-off-by: Priit Laes <plaes@plaes.org>
commit 1d8d02d64e9f5d5dd3788b3b9b1b25866c2ed6b5
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Nov 19 17:24:35 2010 +0200
LX Panel: lower the 1024x600 refresh rate down to 60Hz.
NOTE: the eCafe EC-800's panel doesn't support a higher refresh rate.
commit 256356912bbc1d1e65db5c3c03c6ae25883a81fb
Author: Frank Huang <frankr.huang@amd.com>
Date: Fri Nov 19 10:28:31 2010 +0800
Print the panel mode BIOS uses
Signed-off-by: Frank Huang<frankr.huang@amd.com>
commit 50f9152e2087fd50dfc09e35505c2fbcdd3183b0
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Tue Nov 9 11:12:44 2010 +0200
Geode 2.11.10
commit ff091333b506855c17ec8ea5f933026221600be9
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Thu Oct 28 13:13:09 2010 +0300
Revert "Simplify the mode_valid function"
This reverts commit fab58e111b6655602b4f739260a01247ff478f35.
commit fab58e111b6655602b4f739260a01247ff478f35
Author: Huang, FrankR <FrankR.Huang@amd.com>
Date: Thu Oct 28 15:17:19 2010 +0800
Simplify the mode_valid function
Signed-off-by: Frank Huang<frankr.huang@amd.com>
commit fb72a210d7de61c49fc66aafa057d8c6a028b907
Author: Huang, FrankR <FrankR.Huang@amd.com>
Date: Thu Oct 28 15:16:58 2010 +0800
Revise the entry for 1024x600
*Change the entry of 1024x600 from 3 to 7(That will not affect the entries from
3 to 6). And BIOS should set the VG_FP_TYPE bit[5:3] to 7.
*Use 1024x600@80 instead of 1024x600@60 parameters to support more 4:3 resolutions
Signed-off-by: Frank Huang<frankr.huang@amd.com>
commit 9caaf7f8294ef9700e9e20e394fee10cc2b1c9c0
Author: Daniel Drake <dsd@laptop.org>
Date: Mon Sep 6 18:35:17 2010 -0600
Don't power down DCON when it is frozen
Putting a frozen DCON to sleep (as happens during regular boot of the XO)
will cause the frozen image to be corrupted.
Change the behaviour to only sleep when the DCON is not frozen.
http://dev.laptop.org/ticket/10196
commit 87512b72d64370e062d209724994a72368c21df6
Author: Daniel Drake <dsd@laptop.org>
Date: Mon Sep 6 18:33:48 2010 -0600
Add get_crtc output function
I don't know why X can't do this itself, but when no get_crtc method is
provided, X decides that it doesn't know the CRTC of the output and
decides to reset the mode completely (causing display powerdown, resulting
in an uncomfortable visual interruption to OLPC's boot process).
commit 5e72a00ad26f2052bb48fef041d6fbd14ba18153
Author: Hunk Cui <Hunk.Cui@amd.com>
Date: Wed Oct 13 18:26:52 2010 +0800
Allocate video memory with exaOffscreenAlloc
*Del for deduct the probable size of a video overlay.
*Use exaOffscreenAlloc allocate the video overlay.
*Use exaOffscreenAlloc allocate the offscreen surface.
*XV-video data has to be allocate in offscreen memory range.
Signed-off-by: Hunk Cui <Hunk.Cui@amd.com>
commit 334534cde47f1ffe126e4e665988480fc57a7307
Author: Frank Huang <frankr.huang@amd.com>
Date: Wed Sep 29 16:45:56 2010 +0800
Add resolution 1024x600 support for PANEL
*Users can not get 1024x600 by default when using panel without xorg.conf.
Add this screen resolution to the panel_modes table to support it by default.
*Users who are using VGA will get this resolution by the monitor EDID. No
code is needed
*Use gtf tool to get the parameters
*Ubuntu bugzilla #433142
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit becaa0ae375e996c2f83192bb84a5c89f94933dd
Author: Frank Huang <frankr.huang@amd.com>
Date: Wed Sep 29 16:45:42 2010 +0800
Fix a typo on resolution parameter
*change from 1028 to 1280
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 89c60efe899f0cda4a52e0574f030c021c4b1ece
Author: Frank Huang <frankr.huang@amd.com>
Date: Wed Sep 29 16:35:46 2010 +0300
Mode Validation support on modeline in xorg.conf
*mode validation(lx_output_mode_valid) in this driver should return MODE_OK for
all modes filtered out by previous process in this function. Otherwise, new
modelines(conf_modes) will be pruned by Xserver function Xf86PruneInvalidModes.
The result is that the user can not set arbitrary resolutions. We comply with
the code of ATI&&Intel mode_valid function to do this.
*For modes that cannot be supported by the geode driver, it is better to give
the specific MODE_XXX(such as MODE_CLOCK_RANGE) instead of MODE_BAD.
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 74e28b83d5b725a134aad264771a7c9a4d0e38df
Author: Hunk <hunk.cui@amd.com>
Date: Sun Sep 26 18:14:52 2010 +0800
Modify rotation pitch & reallocate pixmap for bo
*Modify rotation pitch value with crtc_mode_set.
*Use own wrapper to allocate a pixmap for wrapping a bo.
*Ubuntu Bugzilla #377929
*Debian Bugzilla #512020
Signed-off-by: Hunk Cui <Hunk.Cui@amd.com>
commit 7d7cc26011fde18dcce5c6b95cd73a12a71a7f99
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Thu Sep 23 16:17:40 2010 -0300
lx_display: fix typo
commit 90dda28842ac76a05ae75a4fdd457dd8b8988950
Author: Andres Salomon <dilinger@queued.net>
Date: Mon Sep 20 11:31:29 2010 -0700
fix the DCON verification loop for LX output
This is pretty clearly a bug. This should fix it (after all, that
check is merely to see if the panel is a DCON; we don't care at
all about the panel bit). This also adds an extra parenthesis in
the following if() statement for clarity.
I'm resisting the temptation to change GeodeRec's Output member to
an unsigned long (for now). Bitfields should really be unsigned.
Signed-off-by: Andres Salomon <dilinger@queued.net>
commit 5dfe7dbf6ed122fbbb758be7a5b7d78a199583c7
Author: Frank Huang <frankr.huang@amd.com>
Date: Wed Sep 1 10:30:35 2010 +0800
Replace xalloc/xrealloc/xfree/xcalloc with malloc/realloc/free/calloc
* Replace the deprecated functions with new ones
Refer to "/xserver/include/os.h"
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit fc342655a3d928759467eac8c917effe8f283031
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Aug 23 07:46:22 2010 +0300
Geode 2.11.9
We are pleased to announce this maintenance release of xf86-video-geode.
It features a plethora of bug fixes, a few documentation updates and one
performance enhancement.
This release also marks the return of AMD to the development team.
Please read the content of NEWS for more details.
commit c77eb79ef24c47ed7431713918a731252ea8153b
Author: Frank Huang <frankr.huang@amd.com>
Date: Wed Aug 18 15:37:18 2010 +0800
Fix the PictOpIn and PictOpOut
*Correct the entry for PictOpIn, PictOpOut, PictOpOverReverse
*Some code format adjustment
*Delete the maskflag(temp variable)
*Change the code to make the black region(More reasonable than change
op from PictOpSrc to PictOpClear)
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 32a927b8e627b3f9759ccfbff231f5fd22445f02
Author: Frank Huang <frankr.huang@amd.com>
Date: Wed Aug 18 15:36:49 2010 +0800
Fix the PictOpInReverse op
*Correct the entry for PictOpOverReverse and PictOpInReverse
*Correct the channel reverse use, delete direction use
*Add a function lx_composite_all_black to generate a all zero vectors
including alpha
*Modify some comments
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit f0e24491ca676244b2fd6f2d4476e996847824cd
Author: Mart Raudsepp <leio@gentoo.org>
Date: Mon Aug 16 07:09:43 2010 +0300
Fix segfault with Option NoAccel
Fixes bug #27725
Breakage from commit 38e86827
commit b0a13d871d9b72da83380d4564ae947ace733b5d
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Aug 15 18:19:00 2010 +0300
Fix a few typos in NEWS.
commit 66a74e1e7ee5abde9a9eebfece126ba2fdafce9d
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Aug 15 18:13:57 2010 +0300
Further rephrase the content of NEWS.
commit fc711bc0c3b21fd11ffd1ab590122226799ee904
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Aug 15 18:11:43 2010 +0300
Fixes the styling of NEWS for consistency.
commit 2c26c5a4399fcf04d402a973ce3da484215d3202
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Aug 15 18:00:41 2010 +0300
Created a NEWS file to document recent changes.
commit 673d71b970a6d02449c9994e67f337d117d7f075
Author: Frank Huang <frankr.huang@amd.com>
Date: Thu Aug 12 15:49:53 2010 +0800
Fix the PictOpOutReverse op
*Correct the entry for PictOutReverse
*Outside the source picture, the pixels should be all zero when doing
the PictOpOutReverse rendering with Dst
*Rename the function name of pict_a8 to add_a8
*Rename the function name of opover to two_pass
*Fix the bug in KDE dolphin file browser
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 2d1a07327ef352b5f36cbd93a280485cafeeb4d4
Author: Frank Huang <frankr.huang@amd.com>
Date: Thu Aug 12 15:49:36 2010 +0800
Improve the glyph rendering performance
*Add a PICT_a8 entry in the format we support
*Use Mart's workaround patch to give geode PictOpAdd correct pSrc
and pDst format
*Add a function lx_composite_onepass_pict_a8 to handle the PictOpAdd
for glyph rendering
*Performance for "x11perf" command under Fedora 12
Past Now
-aa10text 4660/sec 53300/sec
-aa24text 2740/sec 16200/sec
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit fe6ad5942bf3d638bee2e6979f60d9d7128ba1e8
Author: Hunk Cui <Hunk.Cui@amd.com>
Date: Mon Aug 9 18:03:23 2010 +0800
Rectify lx_display.c outstanding compiler warnings
*Correct the type of LXAllocShadow from Bool to static Bool.
Signed-off-by: Hunk Cui <Hunk.Cui@amd.com>
commit 1f96e74919fe9442062804de785c6e1008d75bf2
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Aug 9 10:48:16 2010 +0300
Revert "Improve the glyph rendering performance"
This reverts commit ebe43da32226eb7bc3ef758c43eff85ac8b8baef as Frank
pointed out that I mistakenly committed an outdated version of this.
commit 7a523acf985771b2bd45f5d2823c217cd9075b1e
Author: Frank Huang <frankr.huang@amd.com>
Date: Mon Aug 9 10:43:27 2010 +0800
Correct two outstanding compiler warnings
*Correct the type from "Q_WORD" to "QQ_WORD" in panel.c
*Correct the tyep from "char" to "const char" in z4l.c
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit ebe43da32226eb7bc3ef758c43eff85ac8b8baef
Author: Frank Huang <frankr.huang@amd.com>
Date: Sat Aug 7 16:54:35 2010 +0800
Improve the glyph rendering performance
*Add a PICT_a8 entry in the format we support
*Use Mart's workaround patch to give geode PictOpAdd correct pSrc and pDst
format
*Add a function lx_composite_onepass_pict_a8 to handle the PictOpAdd for
glyph rendering
*Performance for "x11perf -aa10text" has been improved from 4200/s to 47400/s
on Fedora12
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 8a61ef8f9f6b9dac6804754572250e59d80bdf06
Author: Hunk Cui <Hunk.Cui@amd.com>
Date: Mon Jul 12 13:17:18 2010 +0800
Fix rotation with newer Xserver versions (exaOffscreenAlloc)
*Del for deduct the probable size of a shadow buffer.
*Use exaOffscreenAlloc allocate the shadow buffer.
*Rotateeddata has to be allocate in offscreen memory range.
*Ubuntu Bugzilla #377929
Signed-off-by: Hunk Cui <Hunk.Cui@amd.com>
commit 2bcbc0b64091218d348ad9f699370e4bfde3948b
Author: Hunk Cui <Hunk.Cui@amd.com>
Date: Mon Jul 12 12:57:39 2010 +0800
Gamma Correction for fading operation
*Modify integrated palette RAM for gamma-correction of the data stream
*Let Graphic data passes through the Gamma Correction RAM
*Special for Screensaver Operation
*FreeDesktop Bugzilla #27853
Signed-off-by: Hunk Cui <Hunk.Cui@amd.com>
commit ecb741f27de4ca66555d312a4699efc22f873d0e
Author: Huang, FrankR <FrankR.Huang@amd.com>
Date: Fri Aug 6 11:16:02 2010 +0800
Fix the Nautilus file browser misrendering issue
This is patch 4 final this week.
This one has fixed several bugs below:
1)google chrome hang
2)Some website using repeat for source picture with PictOpSrc. To sum up, right now this patch has gracefully solved the Nautilus bug and some special rendering under PictOpSrc and PictOpOver I will describe all special conditions I met
Websites for test before and after this patch:
1)http://daduke.org (greater srcX and srcY)
2)http://bjdns2.cncmax.cn (negative srcX and srcY)
From: Frank Huang <frankr.huang@amd.com>
*When the srcX or srcY is greater than source width or source height
(or negative),the driver should do the correct region to render. Add a
function lx_composite_onepass_special to handle this. The source start
point should be calculated by a modulus operation.
*If the opeartion is with a shifted position src, then adjust the
operation region based on the operations src width and height
parameters. The rotation condition should be excluded. This part still
need investigation
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 5b93fdd42d7d8af4535fd62ce0749f2c4434f9fe
Author: Huang, FrankR <FrankR.Huang@amd.com>
Date: Fri Jul 23 17:17:49 2010 +0800
Fix the PictOpOver operation
Fix the PictOpOver operation
*Fix the PictOpOver blend_ops struct. The PictOpOver operation is
Src + (1-a) * Dest. So change from CIMGP_ALPHA_A_PLUS_BETA_B to
CIMGP_A_PLUS_BETA_B. And add one pass operation to do the
Src * (alpha of Mask) if there is a mask
*Convert the source format in lx_prepare_composite if it is not
ARGB32 when doing the first pass
*Add a function lx_do_composite_mask_opover to handle the PictOpOver
operation, the first pass is to do the Src * (alpha of Mask), the
second pass is to do the Src + (1-a) * Dest.
*Due to our off-screen buffer is only 256KB, so split big Mask region
into several small region(256KB) to do the rendering.
*Progressbar, scrollbar and button display well with this patch
*See Free Desktop Bugzilla #28352
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 969844d51967aa79ce2c151fc5f1bd296d74437a
Author: Huang, FrankR <FrankR.Huang@amd.com>
Date: Fri Jul 23 17:17:34 2010 +0800
Fix the PictOpSrc rendering
Fix the PictOpSrc rendering
*Add the maskrepeat variabel to record mask picture's repeat attribute
*Add the maskflag to record the exaScratch.type when it is COMP_TYPE_MASK
*Use the PictOpClear to make other non-blending region(out of src or mask)
to be black if the op is PictOpSrc or PictOpClear
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit 2771fb365107976e76e175e7f8953dd41ecb91c1
Author: Huang, FrankR <FrankR.Huang@amd.com>
Date: Fri Jul 23 17:17:15 2010 +0800
Put the one pixel rendering work back to the server to handle if the pMsk is not zero
Put the one pixel rendering work back to the server to handle if the pMsk is not zero
*exaScratch.srcWidth and exaScratch.srcHeight are used to reocrd
mask's width and mask's height if mask is not zero. So the one pixel
source's width and height are missing in lx_do_composite. So we must
fallback. Otherwise, bigger region will be wrongly rendered.
Signed-off-by: Frank Huang <frankr.huang@amd.com>
commit e9effca821c1d604aeffeb3d3e7a49539485117d
Author: Daniel Drake <dsd@laptop.org>
Date: Thu Aug 5 08:08:06 2010 +0300
http://lists.x.org/archives/xorg-driver-geode/2010-August/000938.html
https://bugs.freedesktop.org/show_bug.cgi?id=29391
LXCopyFromSys currently is hardcoded to operate on 16bpp data.
And indeed, when working with packed data (e.g. YUY2), this is the case.
However, it is also used from LXCopyPlanar to copy the planes of I420
images. In this case, it is on an 8bpp input plane.
Running at 16bpp causes twice as much data to be copied, and ultimately
causes a buffer overflow leading to crashes such as
http://dev.laptop.org/ticket/10260
Fix this by deriving the BPP from the input image parameters.
commit f0df6821c454d2b174a071fd846b399e8c2f98f5
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Jul 11 21:28:49 2010 +0300
Rephrased the FAQ about video rotation to NOT specify a minimum RAM size.
commit f21fb29dbe54e7a237047920a00632752a970da1
Author: Frank Huang <frankr.huang@amd.com>
Date: Mon Jul 5 16:49:05 2010 +0800
Correctly calculate the rendering region with the mask picture
If the opeartion is with a shifted position mask, then adjust the
operation region based on the operations mask width and height
parameters(instead of clipping based on source width/height)
Signed-off-by: Frank Huang <frankr.huang@amd.com>
Acked-by: Mart Raudsepp <leio@gentoo.org>
commit d8baf45eb79e473fba68b8335b6aaca27df681cf
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Jun 23 00:41:53 2010 +0300
Added square braces to all AC_INIT elements.
commit 2d377782abc64281b5fa44825d541a1541b19a10
Author: Jamey Sharp <jamey@minilop.net>
Date: Tue Jun 22 08:36:40 2010 -0700
Use new server API to find the root window.
Signed-off-by: Jamey Sharp <jamey@minilop.net>
commit 14b1561dac796c6ad05648e6857028a87acde9ef
Author: Jamey Sharp <jamey@minilop.net>
Date: Tue Jun 22 08:30:52 2010 -0700
Adapt to DevPrivate API changes.
This allows the driver to be built against either the old or new
DevPrivate API.
Signed-off-by: Jamey Sharp <jamey@minilop.net>
commit b47d77360cb428d8892beb93789c83dfa681b26f
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Jun 21 07:44:31 2010 +0300
Added FAQ about minimal memory requirements to rotate screen in README.
commit 42481a36f92cf79c76fea229b5143c4fbdea444a
Author: Mart Raudsepp <leio@gentoo.org>
Date: Mon Jun 14 02:34:20 2010 +0300
lx_exa: fallback in case of server-side gradients and solid fill
RENDER extension version 0.10 added support for doing server-side
gradients and solid fills, which we were not handling at all.
cairo-1.9 started making use of server-side gradients, and we are
crashing on those, as the source pixmap (pxSrc in lx_prepare_composite)
doesn't have a drawable in this case, and we were not expecting such
a possibility.
So, as the first measure, fallback (three years late) all server-side
gradients and solid fills instead of crashing, until we have no code
that tries to accelerate cases of these or aren't sure if we even
can accelerate any cases.
pSourcePict member was added to xserver in 2005, so no compatibility
wrapping needed.
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
commit b46d4ff787bce43409d59837d736af0be2b0dda5
Author: Frank Huang <frankr.huang@amd.com>
Date: Sun Jun 13 18:47:12 2010 +0800
Prevent the pixmap migration if the geode GP can not do the acceleration.
Bring all the "return FALSE" condition forward from lx_prepare_composite
to lx_check_composite. The Xserver will handle this condition. See more
on Freedesktop Bugzilla #27243
Signed-off-by: Frank Huang <frankr.huang@amd.com>
Acked-by: Mart Raudsepp <leio@gentoo.org>
commit 8e53a62f196dfc4eb1e8769183b00bf4a3122ddc
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Jun 13 03:24:20 2010 +0300
Clean up and indent the content of COPYING for better clarity.
commit 4302f6961571609a2b8a27a2d21281f758f48f0d
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Jun 13 03:19:18 2010 +0300
Move the AMD-specific part of the license away from the boilerplate text.
commit 83b8249d91c7bf351f44062b5e42d12b0b8c9a28
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Jun 13 03:15:09 2010 +0300
Removed superflous duplicate license from COPYING.
commit 854323a434b8fc7b980387f52dc8c80258ca9b64
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sat Jun 12 15:48:05 2010 -0400
COPYING: update Copyright notices from the source code
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit e9447f5335681a78cf87ebf8c9659a6fecfc9746
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Wed Sep 9 22:13:40 2009 -0300
LX: validate display modes
To avoid using virtual desktop by default we now validate the display
modes.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
commit 3a0e9730634f6894ef57793ae6e072656cd125f0
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Sat Oct 10 11:54:53 2009 -0300
cim: add a new 106.50MHz entry
commit 527e3763343b736e0d9f7a1c7d55a51366bfdc36
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Sat Oct 10 11:53:46 2009 -0300
cim: properly indent 341.349MHz entry
commit 2f26fd4cc583aa07e31aa3c8edb975ace9bf31eb
Author: Adam Jackson <ajax@redhat.com>
Date: Tue May 18 13:07:18 2010 -0400
Remove mibank.h reference
Signed-off-by: Adam Jackson <ajax@redhat.com>
commit cf69c8bde21ee383b471ca82d70c179dfaf78722
Author: Nicolas Boullis <nboullis@debian.org>
Date: Mon May 10 07:39:20 2010 +0300
Correctly set the name for the user-specified panel mode.
commit db01a594ac30c730c580bcf9323220b83eb8ce03
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Thu Apr 15 16:36:43 2010 +0300
Geode 2.11.8
commit a4b8389e50ea92fe361d96da6fe1c2d7caf39a02
Author: Mart Raudsepp <leio@gentoo.org>
Date: Mon Apr 12 08:53:11 2010 +0300
lx_exa: bail earlier (in CheckComposite) for non-alpha-only masks.
We should have all the information at CheckComposite already, so don't
waste time migrating pixmaps for this case, only to fail in PrepareComposite.
Currently more importantly this workarounds EXA fallback failure in
xserver-1.7+ for this situation, which resulted in many desktop icons not
getting rendered; bug #27243
commit 46679d0220c8d34bdd46433bffc490c971783ab9
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Fri Mar 26 08:56:56 2010 -0400
make: use AM_CPPFLAGS rather than DEFAULT_INCLUDES
DEFAULT_INCLUDES is computed by Automake and should not be
overwritten.
-I. is the same as -I$(srcdir)
The generated DEFAULT_INCLUDES = -I. -I$(top_builddir)
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 621de3bf4966b48532ae2bff5f3859a1a6d63241
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Thu Feb 11 19:56:10 2010 +0000
Bump the minimal autoconf version to 2.59.
commit f67c4f57c06ce4800f2929f65f88b65e22499a65
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Thu Feb 11 21:38:59 2010 +0200
Bump the minimal xutils macro version to 1.4, as agreed with Gaetan Nadon.
commit 10364d0f667c808641d62339c99564b401683612
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Feb 8 18:43:27 2010 +0200
Get rid of unused XFreeXDGA extension.
commit ba9e3975535ffdf05611e96feb578eb01c49544d
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Feb 3 21:09:53 2010 +0000
Geode 2.11.7
commit 755b08bd59a5ff968040d657401c0779ba7828d0
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Sat Oct 3 14:46:52 2009 -0300
GX: refactory mode validation code to be easier to ready
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
commit 7f044dc2569ddf4328649d857023b7c418f9b1df
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Sat Oct 3 16:01:31 2009 -0300
LX: fix typo in panel supported modes
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
commit 52f14e87edf564faa475063f44e8ee5adb4e1368
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Fri Oct 2 00:21:01 2009 -0300
gfx: document panel related methods available
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
commit 5798991e7a4d2354e9735f91f8d60f436c6549ab
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Sat Oct 3 16:41:14 2009 -0300
geode: fix typo in AmdPciProbe
commit 93f0303f79ce29e896e4817e945709c6a1d3df69
Author: Christian Bühler <christian@cbuehler.de>
Date: Sat Dec 19 18:59:00 2009 +0200
Geode LX does not support PanelGeometry
Hello,
I believe I found an error in the README, which caused quite a lot of
confusion for me.
According to the source, PanelGeometry is only supported by the GX, not
by the LX, but in the README file, this option is listed on both.
Regards,
Christian
commit ab9e8fec5e2f2e0ab35890d8102663991d40b4e4
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Tue Dec 15 22:01:02 2009 -0500
configure.ac: remove unused sdkdir=$(pkg-config...) statement
The sdkdir variable isn't use, so remove the statement.
Acked-by: Dan Nicholson <dbn.lists@gmail.com>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit a63b523ea694f2badf79827632fb7f0ee8cc1609
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Mon Nov 23 09:24:32 2009 -0500
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
Now that the INSTALL file is generated.
Allows running make maintainer-clean.
commit 58ecaae19472206fd3c642886c787297e6c423d7
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Nov 19 13:45:23 2009 -0500
Revert "Makefile.am: do not include autogen.sh in distribution #24183"
This reverts commit c77803368611751f828c1cc7b00e77157b7774b3.
commit d39754d3cd76fbc4eca5eb199bbe67db5e25eee8
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Oct 28 14:41:41 2009 -0400
INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
Automake 'foreign' option is specified in configure.ac.
Remove from Makefile.am
commit 29f57f0b92a783f0e1a520b6cf0a6cd211fd9c5f
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Oct 28 14:09:09 2009 -0400
INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
Add missing INSTALL file. Use standard GNU file on building tarball
README may have been updated
Remove AUTHORS file as it is empty and no content available yet.
Remove NEWS file as it is empty and no content available yet.
commit 8159be49ec768130c47426b669d7491ebdeb288b
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Mon Oct 26 12:54:21 2009 -0400
Several driver modules do not have a ChangeLog target in Makefile.am #23814
The git generated ChangeLog replaces the hand written one.
Update configure.ac to xorg-macros level 1.3.
Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros
Update Makefile.am to add ChangeLog target if missing
Remove ChangeLog from EXTRA_DIST or *CLEAN variables
This is a pre-req for the INSTALL_CMD
commit 530f29b38408319e4bd9689e4a1309055644c4a2
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Oct 22 12:34:16 2009 -0400
.gitignore: use common defaults with custom section # 24239
Using common defaults will reduce errors and maintenance.
Only the very small or inexistent custom section need periodic maintenance
when the structure of the component changes. Do not edit defaults.
commit c77803368611751f828c1cc7b00e77157b7774b3
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sun Sep 27 16:33:51 2009 -0400
Makefile.am: do not include autogen.sh in distribution #24183
This is a private build script that should not be distributed
commit 1cdb69f2ed0efff76edf90d62ffed72fe65108f5
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 27 14:57:18 2009 +0300
Geode 2.11.6
commit a504725d2250e663f0a275fd0c02cc849dafe792
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 27 14:55:25 2009 +0300
Revert "LX: validate display modes"
This reverts commit 3af472f4453f8e92a9f303e64e2796836374d980.
This commit had broken detection of arbitrary non-VESA resolutions,
which affected the OLPC XO-1 and a number of Geode-based notebooks.
commit 1b1092b11a686febfd3ee20bd18677fcc366faa5
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Tue Sep 22 16:41:59 2009 +0300
Geode 2.11.5
commit 3af472f4453f8e92a9f303e64e2796836374d980
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Wed Sep 9 22:13:40 2009 -0300
LX: validate display modes
To avoid using virtual desktop by default we now validate the display
modes.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
commit 6ff8735b25da03f432b755391000bbfe2253b60c
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Tue Sep 8 21:53:49 2009 -0300
GX: refactor code that allow backward compatibility with old video interfaces
Most of dependent code is now located in a single place. The macro has
been changed to use a cleaner name to be easier to spot why it is
needed.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
commit 292df8af92d5295c4be1ab0b3ad630a09589eb55
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Sep 18 10:04:38 2009 +0300
geode: further precised brand names of Geode variants by NSC in README.
commit 869a93c00ce2e9fe739239b4481b5c98e4df9092
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Sep 18 09:26:25 2009 +0300
Geode: corrected the product names in README.
commit 9184997ac2bf08841f1a40ebf416e49b44d71ff4
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Sep 18 09:15:25 2009 +0300
geode: Added the PCI vendor and device ID of NSC SC1400 to README.
commit 651310328e3cfc5c4936cf5df1dcaf7d319d20f6
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Sep 9 19:47:14 2009 +0300
Switch project URL in README to read-only www host.
commit f6039ef1bc9962caf18a3abb15c7f627ffc6158a
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Wed Sep 9 06:00:00 2009 +0300
geode: use lowercase vendor id
commit 50b44451c6462bf999e8899715377dd735bc8940
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Sep 9 00:06:44 2009 +0300
Added extended info about which Geode driver covers what Geode variant in README.
commit 7af63b86ab9e06b9ccdf1291250afa303b69a885
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sat Sep 5 01:47:11 2009 +0300
Fixed a typo in src/lx_output.c debug message.
commit 999d1ef343c65ac2324ac1e9c2e72f014cb5610d
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Thu Sep 3 10:56:09 2009 +0300
Added README about X server dependency bump due to GX Randr dixSetPrivate fix.
commit feea2a0afa67c8be1d1afd743ab45745878c1c91
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Aug 31 23:28:31 2009 +0300
Release 2.11.4.1.
commit f1268f3ba8404129d358db3bb1e66f3841f7018a
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Aug 31 23:24:30 2009 +0300
Fixed typo in GX2 dixSetPrivate patch. Kudos to Eamon Walsh!
commit 34405a9c5cb0c30d45c12ef6850fc636a964e441
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Aug 28 11:21:57 2009 +0300
Release 2.11.4.
commit 255c0b985731350fdfd38987a95310e72f4e5381
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Tue Aug 18 07:30:33 2009 -0300
GX: use XAA by default.
EXA support is broken for GX so we disable it for now.
commit ef3fbd7bd03fa4a9ff966a373ba8ddec94ea8ff5
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Tue Aug 18 14:11:07 2009 +0300
Revert "GX: use XAA by default."
This reverts commit 09ddb88781bc9ec12531414beabd95e50237fdd5.
Otavio just sent me a nicer version of this patch.
commit 09ddb88781bc9ec12531414beabd95e50237fdd5
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Tue Aug 18 07:30:33 2009 -0300
GX: use XAA by default.
commit b28abde0276ddd7f687242f3886f98b0e49a7fc2
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Fri May 22 20:40:16 2009 -0300
Fix GX RandR to properly use dixSetPrivate.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
commit 917a5bf5fdadac1a8799336aa8da2e51f8790eea
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Tue Aug 4 21:33:12 2009 +0300
Migrated the project URL to the new http://wiki.x.org/wiki/GeodeDriver
commit c2141752ed4520af6d7f5197fcb0c512058db839
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Tue Aug 4 21:00:24 2009 +0300
Somewhat harmonized the README between xf86-video-cyrix, xf86-video-nsc and xf86-video-geode.
TODO:
* Rename http://wiki.x.org/wiki/AMDGeodeDriver
to http://wiki.x.org/wiki/GeodeDriver
and install a redirect from the old page.
commit b5419c47138e9a8efc5f946fd08c4488dedcb5ee
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Jul 29 13:57:15 2009 +0300
Added missing development dependencies (X.org macros) to FAQ.
commit c088a8dc4e5a37d8e07766c0c26ebc11037407c0
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Jul 29 12:23:46 2009 +0300
Added FAQ about building drivers from GIT for testing purposes.
commit a3788ff318f57f64d7317eeaee4d64a466f3745a
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Jul 29 02:35:04 2009 +0300
Added FAQ about submitting patches and producing useful backtraces.
commit cab8435d8aef852c4cb1ab71285fa020dcbd7a68
Author: Dave Airlie <airlied@redhat.com>
Date: Tue Jul 28 15:22:40 2009 +1000
geode: change to using ABI version check
commit a22b16c0dc757c940461f26bc6e1802b53e860c5
Author: Dave Airlie <airlied@redhat.com>
Date: Tue Jul 28 13:32:29 2009 +1000
geode: update for resources/RAC API removal
commit 810dd8f15c40271b75bb8a124709eadb5e4c36a8
Author: Dave Airlie <airlied@redhat.com>
Date: Tue Jul 28 10:06:20 2009 +1000
geode: switch to using correct pci config interface
commit 9fd00d01cacae9724649699bf8e0af1e16dbe356
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Jul 15 16:01:37 2009 -0400
Use XORG_CHANGELOG macro to create ChangeLog. #22611
Adding the macro in configure.ac and use it in Makefile.am
Refer to: https://bugs.freedesktop.org/show_bug.cgi?id=22611
Global maintenance on all modules
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
commit df4745e5565b98cea278f33001f38a64e027e4ce
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date: Thu Jul 16 11:37:34 2009 +1000
Update to xextproto 7.1 support.
DPMS header was split into dpms.h (client) and dpmsconst.h (server). Drivers
need to include dpmsconst.h if xextproto 7.1 is available.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
commit 3d9dd15cf30832bdb467e8fe02327f474e1e2130
Author: Chris Ball <cjb@laptop.org>
Date: Fri Jun 19 09:51:28 2009 -0400
Release 2.11.3.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 26bd1287ef4f9e63f4e3722f21c168db3d55099e
Author: Dave Airlie <airlied@redhat.com>
Date: Wed Jun 10 14:18:12 2009 +1000
geode: add inputstr.h include explicitly.
commit 1bfde92b1e2c1a386b679b67f1901a57623db633
Author: Adam Jackson <ajax@redhat.com>
Date: Thu May 28 14:56:22 2009 -0400
Remove useless loader symbol lists.
commit 106c341c4076f7714cd67e0fcf5942a22554c8f3
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon May 25 23:28:17 2009 +0300
Cleaned up the FAQ about WXGA modes.
commit 60f37744b09fa1cdf4a3bcfa1a039ac8c984b942
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon May 25 17:51:34 2009 +0300
Added a FAQ about disabling Panel in BIOS to enable WXGA modes.
commit 639e9c88e588cae55698cfb4063f625c38224afb
Author: Otavio Salvador <otavio@ossystems.com.br>
Date: Sat May 23 05:52:13 2009 +0800
Fix GPIO BAR detection with libpciaccess
This patch fixes an issue with the GPIO BAR detection. Basically,
with libpciaccess we're finding the ISA device and checking its BARs,
but we're not bothering to fill in the BAR information via
pci_device_probe. This results in a 0'd out bar and:
(EE) GEODE(0): Could not find the GPIO I/O base
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Andres Salomon <dilinger@collabora.co.uk>
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 54303b269f1efe04a80177dbb62d7b94882ff45d
Author: Chris Ball <cjb@laptop.org>
Date: Tue May 12 00:05:07 2009 -0400
Release 2.11.2.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit b172617909976c4a7d8f05191e23e4647c1a1c96
Author: Kyle McMartin <kyle@redhat.com>
Date: Mon May 11 23:58:57 2009 -0400
Crasher fix: Use ExaDriverAlloc() to calloc the EXA struct.
Patch from Kyle McMartin. A recent exa/exa.c commit from Dave Airlie
(02ae85c4..) added a new member to the EXA struct, and corresponding
code to call it if it's non-NULL. We were using calloc with sizeof()
that struct at driver-compile-time; as a result, after the ABI change
the new member contained garbage, passed the EXA test for NULL, was
called, and segfaulted at startup.
RH bug https://bugzilla.redhat.com/show_bug.cgi?id=500086
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 23e62499a5ecfd9c70db00c181a4801d4898fe83
Author: Chris Ball <cjb@laptop.org>
Date: Fri Feb 27 10:53:11 2009 -0500
Revert EXA 3 build fix.
The EXA developers have backed out the ABI bump to version 3.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 7ce365dafcbeb549fa083b8115475d5b7b01a704
Author: Chris Ball <cjb@laptop.org>
Date: Tue Feb 24 22:26:39 2009 -0500
Build fix: Include config.h earlier
geode.h includes exa.h, without anything having included config.h
(which sets the EXA major version) beforehand; add config.h to geode.h.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 2c293240f8003b3a52121161d0b0464100fd990d
Author: Chris Ball <cjb@laptop.org>
Date: Tue Feb 24 12:51:45 2009 -0500
configure: use AC_DEFINE instead of shell substitution
(This is just cosmetic.)
Signed-off-by: Chris Ball <cjb@laptop.org>
commit c5c7f60b577cc86a670bedea2bd70bd05d5cd128
Author: Chris Ball <cjb@laptop.org>
Date: Tue Feb 24 11:46:20 2009 -0500
Build fix: set EXA_DRIVER_KNOWN_MAJOR=3.
We don't use {Prepare,Finish}Access, and:
/home/cjb/xorg-build/include/xorg/exa.h:45:2: error: #error Make sure
this EXA driver either does not have Prepare/FinishAccess hooks or that
they can handle EXA_PREPARE_AUX*, and #define EXA_DRIVER_KNOWN_MAJOR 3
before including exa.h
Signed-off-by: Chris Ball <cjb@laptop.org>
commit da07a540db2078e00e48897b52a5a1f6d283cfeb
Author: Chris Ball <cjb@laptop.org>
Date: Mon Feb 16 13:37:03 2009 -0500
Release 2.11.1.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 4176e9ed24e7b79cefe3e7f4f5d73c7353781f1b
Author: Chris Ball <cjb@laptop.org>
Date: Mon Feb 16 13:41:48 2009 -0500
Makefile.am: use "git log" instead of "git-log"
"git-log" doesn't work on my Fedora machine, but "git log" should work
everywhere. Some distributions choose not to ship all the git aliases.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 990ff710c6220cc3d1ba6b9e8fb972bd168b4472
Author: Chris Ball <cjb@laptop.org>
Date: Sun Feb 15 15:30:09 2009 -0500
Change OLPC detection heuristic to one that works on upstream kernels
We've been checking whether we have a DCON/are on an OLPC by looking for
files from the "olpc_dcon" kernel module. This module isn't upstream yet,
so this only works for the OLPC custom kernel. We might as well check for
an OLPC kernel module that *is* upstream, so that we can run on unmodified
distributions. This patch moves us to checking for "olpc-ac" instead.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit e33dc807bf4504ba242cb19ce8024cdb32e10f4d
Author: Chris Ball <cjb@laptop.org>
Date: Sun Feb 15 00:17:45 2009 -0500
Fix pMsk=NULL segfault at startup on OLPC
Commit 7c278551c79d7a5898c627341f58fad59b7ae20d uses pMsk without testing
for non-NULL, and this causes an immediate segfault when running Sugar.
Signed-off-by: Chris Ball <cjb@laptop.org>
commit 7c278551c79d7a5898c627341f58fad59b7ae20d
Author: Mart Raudsepp <mart.raudsepp@artecdesign.ee>
Date: Fri Jan 9 19:32:50 2009 +0200
Fallback in case of mask transforms as well.
Fixes attachment #21519 test case on bug #15700, but not the initial report.
Detective work by Michel Dänzer.
Signed-off-by: Mart Raudsepp <mart.raudsepp@artecdesign.ee>
commit 0e65d77a636848b6bc24518d8e45aed506122b49
Author: Jordan Crouse <jordan@cosmicpenguin.net>
Date: Tue Dec 9 20:54:20 2008 -0700
2.11.0 release
commit 2a36083f3cb93bd4ab456024d6b6776725085904
Author: Andres Salomon <dilinger@queued.net>
Date: Thu Dec 4 22:41:59 2008 -0500
xf86-video-geode: after reloading cursors, hide the cursor
Whenever we reload cursors, the geode driver needs to call hide_cursor()
to ensure that the cursor is hidden until we finally unhide the cursor.
Without this, we see ghost cursors during rotation or VT switches.
Signed-off-by: Andres Salomon <dilinger@debian.org>
commit fb2c1af124a56f34c4212bba16e1926889104cb4
Author: Andres Salomon <dilinger@queued.net>
Date: Thu Dec 4 21:33:22 2008 -0500
xf86-video-geode: fix up cursor size (again)
The geode hardware (and cimarron) expects cursor memory size to be 48x64,
and cimarron will zero out the excess when a smaller cursor is used. It
would be nice to be able to use the full cursor size, but xorg's interleaving
stuff requires a cursor width that's a multiple of 32. Thus, we're stuck
back at 32x32 for cursor size, but we allocate enough memory for a 48x64
cursor.
This fixes misc interleaving corruption that we see with 2bpp cursors (when
converting to ARGB).
Signed-off-by: Andres Salomon <dilinger@debian.org>
commit 356dec75b96e7b235632bb8c5f7cc70002a590b1
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date: Thu Dec 4 02:24:42 2008 -0200
Ensure symbol GXRandRSetConfig is of public visibility.
Symbol is referenced via LoaderSymbol(), and this patch doesn't
should provide the same behavior as when compiling with public symbols
by default.
commit fe7ede0c073bd8dc22f61388b8a5d83f17696113
Author: Andres Salomon <dilinger@queued.net>
Date: Wed Nov 26 17:56:14 2008 -0500
xf86-video-geode: change cursor size to match cimarron
When we use ARGB cursors and rotate the screen, we get double cursors
and stale cursor data left over. This is because cimarron expects a
cursor that is smaller than or equal to 48x64, but hardcodes a memory
shift of 192 bytes (4*48). This means that if we have a 32x64 cursor,
cimarron screws it up. Change the cursor size to 48x64.
Signed-off-by: Andres Salomon <dilinger@debian.org>
commit 8080f7a01cf62a13c5a32013668b2796c23d97a4
Author: Andres Salomon <dilinger@queued.net>
Date: Wed Nov 26 01:39:28 2008 -0500
xf86-video-geode: DCON: set the default (physical) screen size if we detect a DCON
We can be assured that a DCON device has an OLPC panel that's 152x114 mm.
This adds fields to GeodeRec to allow other panels to potentially
override physical width/height fields, and also allows xorg.conf to
override the values.
Signed-off-by: Andres Salomon <dilinger@debian.org>
commit f57f2bd7161d4a7c2ededfc43a7709fb06213b99
Author: Jordan Crouse <jordan@cosmicpenguin.net>
Date: Tue Nov 25 11:36:03 2008 -0700
LX: Set default scaling coefficients
Systems without a traditional BIOS may not have the default
scaling coefficients set up - make sure that we force them on
when the mode gets set.
commit d7f73aca763eb2fa918c3e5a27e264aa14f653d1
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Wed Nov 19 12:06:06 2008 -0800
include <errno.h> instead of <sys/errno.h>
Solaris defines errno itself in <errno.h>
commit fa38cc225ef39aeb6a2ab1c90a233b285d4c77f8
Author: Jordan Crouse <jordan@cosmicpenguin.net>
Date: Tue Nov 18 20:07:53 2008 -0700
LX: Put back variable needed when PCIACCCESS is defined
commit c4142d3a05e4b889f7933dcfa8bc9cd744ccfdd6
Author: Jordan Crouse <jordan@cosmicpenguin.net>
Date: Tue Nov 18 15:41:58 2008 -0700
LX: Make the version in configure.ac reflect the upcoming release
commit cf0655edbcbd3910c12c33d8c786cc72c0242786
Author: Jordan Crouse <jordan@cosmicpenguin.net>
Date: Tue Nov 18 15:41:58 2008 -0700
LX: Change the way EXA memory is allocated
Change how EXA memory is allocated to better allow for
EXA + video + rotation to co-exist on the system. Change
the video to only allocate memory when it needs it.
Also, automatically disable compression when there is less then
16Mb of memory.
commit ee23fd75f5eb4447ca238694cc03fcdc219ee245
Author: Jordan Crouse <jordan@cosmicpenguin.net>
Date: Tue Nov 18 15:41:58 2008 -0700
LX: Fix the memory allocated by the video so it fails
when there isn't enough memory.
commit aac2e161818494b88677f11115bca890a552c709
Author: Jordan Crouse <jordan@cosmicpenguin.net>
Date: Tue Nov 18 15:41:58 2008 -0700
LX: Fix a bug in the memory allocator
commit fc772694ec04f729b5a1cdced7f33dc406c1d67f
Author: Andres Salomon <dilinger@queued.net>
Date: Tue Nov 18 14:14:17 2008 -0500
DCON: Mark 1200x900 mode as preferred.
commit 1e3fcaaa67dde12a658206f3b0fd07b627a3b61b
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Oct 7 13:12:19 2008 -0600
geode: Move the hardware cursor support to full ARGB mode
commit f66c9d1928ec9bcde57009c7263f6c8575ad0d0c
Merge: 85d2103 62d2b0e
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Sep 10 17:33:30 2008 -0600
Merge branch 'randr12-branch'
Conflicts:
src/geode_ddc.c
src/gx_randr.c
src/lx_randr.c
src/lx_rotate.c
commit 85d2103a90e6ab422246b66d252dbee19c96a0d7
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Sep 8 15:20:51 2008 -0600
XINPUT_ABI bumped on us and broke the previous evil workaround
for the miPointerPosition issue.
commit 62d2b0ede08042147ca528be9ab1e392886a10ff
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Sep 4 17:43:32 2008 -0600
LX: RandR 1.2 updates for Lenny
Fix some build issues for Lenny and make the branch work
on an XO running Lenny.
commit 526da8a3b279dbfc35505ebb1ddc4b8db8dc46d3
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Aug 28 16:59:41 2008 -0600
LX: Fix a possible segfault in EXA
Avoid passing a null pointer to PictureTransformPoint
commit c6339a360b611514155e5101dc2c5bc6472d8865
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Aug 25 11:34:36 2008 -0600
[LX] - RandR 1.2 updates
Remove a flag that was making EXA pixmaps break horribly.
Also, Make the new code compile for Hardy and warning cleanups.
commit 38e868271bd24be7a884c8c56772b25cd6fa6f1d
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Aug 18 14:19:34 2008 -0600
lx: Add rotation for Randr 1.2 + cleanups
Enable rotation through RandR 1.2 and add the accelerated rotation blit
the EXA composite function. Also, fix a handful of critical bugs and
remove some more dead code.
commit f8a09702f0905d45a03cc71ae67767b7effc1500
Author: Adam Jackson <ajax@redhat.com>
Date: Fri Aug 15 14:25:00 2008 -0400
s/XF86_VERSION_CURRENT/XORG_VERSION_CURRENT/
commit b06f75895b6363816bf88402a233800631718f4d
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Aug 15 14:13:12 2008 +0300
Bump to version 2.10.1 and release.
commit 6908dda7ac66cbe13737db6c9c3e5ebe16156099
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Aug 13 09:51:23 2008 +0300
Added info about the current roadmap.
commit 89c6a947f31af15a8f65706de328300ea2e75f1a
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Aug 13 09:32:21 2008 +0300
All your typos are belong to us!!!
commit 4e95ee76d47982450ec112988adb2079658bb682
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Aug 13 09:25:49 2008 +0300
Updated the README with the URL of the Geode X.Org wiki and
with info on the current Build Dependencies.
commit 316e89aa58f4d7f3cb4513a6decb035e99abc7d6
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Aug 7 14:29:50 2008 -0600
Geode: Add DDC support for the CS5535
commit f89f6d8004a0ae0ae7826f72a1058d26e9e0217a
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Jul 24 10:47:57 2008 -0600
lx: Fix rotate issue
EXA pixmaps are now protected against outside intrusion, so use
a different way to find the base of the shadow buffer for rotation.
commit d681a844e448712a9a419d2a4dca81930d39a80a
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Aug 7 11:21:48 2008 -0600
[LX] - Add RandR 1.2 support
A wholesale update to Randr 1.2 for LX accompanied by massive
cleanup.
commit e98927f2c60acd9262cfb6fca2491fe0decc7aa5
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jun 13 15:59:44 2008 -0600
Bump to version 2.10.0
commit 2fc546c0d129fe7d3edee6b0cbfd530de33e2209
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Jun 10 12:08:53 2008 -0600
geode: Bring over the DCON detection code from the OLPC tree
commit 489546dfd2dd295db63f31e123b0073a6fa330a9
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Jun 10 12:08:52 2008 -0600
geode: Unmap the PCI memory when we close the screen
commit 739eb15da7bb0d2ca681eeb9a308b1297ee4eca7
Author: Peter Hutterer <peter@cs.unisa.edu.au>
Date: Wed May 28 11:13:54 2008 +0930
Fix build for git-master (missing device pointers).
We don't have an updated Video ABI yet, so use the XINPUT ABI as check for
when to use which call.
Note that the check is not optimal. We only check for the position of the VCP,
not of any other device to adjust the viewpoint. This needs to be fixed.
commit 5186a2b736e30b7d68a75f861f51047491182e57
Author: Peter Hutterer <peter@cs.unisa.edu.au>
Date: Wed May 28 10:54:09 2008 +0930
Revert "Fix build (missing device pointers)."
Silly me, this breaks the build for non-git-master servers.
This reverts commit 3005e9c7eb10e212c956e87b3631548e268c794e.
commit 3005e9c7eb10e212c956e87b3631548e268c794e
Author: Peter Hutterer <peter@cs.unisa.edu.au>
Date: Wed May 28 09:25:06 2008 +0930
Fix build (missing device pointers).
miPointerGetScreen, miPointerGetPosition and pScreen->SetCursorPosition all
require a device argument now. For lack of other choices, just pass in the
VCP.
commit 94b9029e335ddbe7c22a8fe4bf69858b75179219
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed May 7 22:35:23 2008 +0300
Making libDDC support the 2.9.0 release.
commit 61663593475f61567466c105ca19d5009a4e9c41
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Apr 15 14:54:57 2008 -0600
geode: Add "native" DDC parsing to the Geode driver
Teach libDDC to access the DDC pins on the Geode natively, instead
of using the BIOS which has proven to be broken time and time again.
commit 401a7ed390beca4d37121575e64b72969d55fa7c
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Apr 1 13:41:48 2008 -0600
geode: Bump to new version and replace two instances of the old amd name
commit e93660928499f963d477720b628a05e8d14ea197
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Mar 14 16:38:21 2008 -0600
amd: Missed a merge artifact - kick me in the head for breaking tinderbox
commit c42454a5d1fba9dc0ef4d671cb839108ef827ec9
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Mar 14 13:57:14 2008 -0600
amd: fix compile and warning issues from the merge
commit 5e1f6e925bd92c389169c971502b1fd17c625056
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Mar 14 13:55:23 2008 -0600
amd: fix up the versioning and naming of the new driver
commit 1fd63467e3fa71f289f80dba013046d0065ff3f3
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Mar 11 16:21:58 2008 -0600
Massive coding style fixup - move to X coding style,
remove trailing whitespace, zap unused files and
remove blocks of ifdefed out code.
commit ec8edd1393f482ca42b401463f0f09580aa263a0
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Mar 11 15:43:00 2008 -0600
First stage of the rename process - get rid of all amd_ prefixes -
change either to geode_ or just to lx_ or gx_ depending on the processor.
Change the name in the Makefiles and other collateral
commit a7bc1a7f6b439419fc27b669d9d7f99f882d83fe
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Mar 13 17:30:03 2008 -0600
amd: release version 2.7.7.7
xf86-video-amd is now dead - long live xf86-video-geode!
commit 248a1f24c9f232cb9d5218faee5d4f7f014ef9c5
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Mar 13 16:01:21 2008 -0600
amd: fix panel and DDC interation with GX
commit d8f8277c89752286da329c50b769986a19b521de
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Mar 13 15:00:36 2008 -0600
amd: Fix a compile error in < 1.5 builds
commit 95159125cb19acdfb23ee5042acf9d8b9d776c7a
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Mar 12 14:14:45 2008 -0600
amd: Add the 'geode' name in preparation for the renaming
commit b884e17eb74f6b7f11f4bba71ce0421cd0d28855
Author: Stefano Fedrigo <aleph@develer.com>
Date: Wed Mar 12 14:13:55 2008 -0600
amd: Add libpciaccess probe function
commit 01a23f48f4777c705eb4345b3d5e27b6a4f73254
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Mar 10 19:21:07 2008 +1000
amd: fix distcheck
commit 0464e1e6b7587aaf87b818fabd93e484f9bc8288
Author: Dave Airlie <airlied@linux.ie>
Date: Mon Mar 10 18:56:22 2008 +1000
amd: fixup pciaccess compile
commit eec3a36983867611c9ee401079a8c3a81181d941
Author: Dave Airlie <airlied@linux.ie>
Date: Mon Mar 10 18:56:08 2008 +1000
fix devprivates properly
commit 68e3f6c80c1db7c84e176ef298c700ce5bedd501
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Mar 10 18:38:49 2008 +1000
old privates v2
commit 497a081b8fc5d22890b3555589dfc4d2f9c9b6f6
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Mar 10 17:09:18 2008 +1000
amd: move to new devprivates
commit da6ca8ff17373428844f904bbc3a1d0e55c8e5c2
Author: Dave Airlie <airlied@clockmaker.usersys.redhat.com>
Date: Mon Mar 10 16:54:25 2008 +1000
pciaccess: fix name of struct
commit 0899664b9f9dc7a9a7fafab008e145f5e3340ac9
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Mar 10 16:47:53 2008 +1000
pciaccess: forgot some commas
commit 0e655a383d3fa8d6757b6b785451468ed1550443
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Mar 10 16:25:09 2008 +1000
oops I did it again.. forgot the damn include
commit 2b7d32a60ffa6c87fa7a89eb206ed8916a682d93
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Mar 10 16:22:57 2008 +1000
amd: initial pciaccess conversion
commit 1e763626aaefa1ae0cf4d4896c0b7192955e5993
Author: Bart Trojanowski <bart@jukie.net>
Date: Sun Mar 2 11:52:01 2008 +0200
Implement support for wide and non-standard screen resolutions.
Works fine on the VGA output, but requires further testing to
ensure that it doesn't disturb operation on the TFT output.
commit 2a7240e845ba27a9d2f485fda0bb5f8175234454
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Feb 10 01:55:06 2008 +0200
Erm... That would be pScrni, of course.
commit ae448a3beafe001c2bbc60f9fa09ebcfb00e828f
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Feb 10 01:50:26 2008 +0200
Added trivial fix for Gamma initialization.
commit 4670abb6036379245995f000dcb7d3e33f39570f
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sat Jan 26 01:51:39 2008 +0200
[GX/LX] Bump the default pixel depth up to 16-bit.
This is a reasonable compromise between memory consumption
and picture readability. This also gives the driver usable
defaults for X server >= 1.3 when used with -configure.
commit 2ac6c6e3764f4e6ae014af23db6b5211bb034424
Author: Bernardo Innocenti <bernie@codewiz.org>
Date: Sat Jan 26 01:46:24 2008 +0200
Constify a few huge tables to reduce data section size.
This driver is still unusually big compared to the other X.org
drivers. The biggest offender is cimarron.o as demonstrated by:
nm -S -t d cimarron.o | sort -k 2 -n
commit db25e615f81ea94e1c3e82a408c09d915389d3b7
Author: Bernardo Innocenti <bernie@codewiz.org>
Date: Mon Jan 14 01:43:16 2008 +0100
amd_drv: Remove a few (harmless) warnings
Signed-off-by: Bernardo Innocenti <bernie@codewiz.org>
commit ba2880433912cd63c68cd81682d8e48c3cf77a09
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Jan 14 12:32:13 2008 +0200
Expanded the bug reporting URL in configure.ac to specify the Driver/AMD component.
commit cf5e5d2b37de2504b76d96e1f26a5450550b8320
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Jan 14 03:05:48 2008 +0200
Basic OLPC support from Bernardo Innocenti and Jordan Crouse.
commit 471f96cf85c6db9952ff4443f84a3c8d701927e7
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Tue Jan 8 13:57:25 2008 -0700
Trivial patch to fix the ZTV module
commit 407f403583f901bbb38d267b9194835d5255d41c
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sat Jan 5 06:29:59 2008 +0200
[GX][LX] Push PreInit fixes to avoid segfauls on X -configure.
This is known to work on products with GeodeROM and Insyde BIOSes.
On products with a General Software BIOS, a freeze occurs while X
is probing VBE. The same issue occurs with LinuxBIOS and VGAROM,
but not with LinuxBIOS omitting VGAROM.
Both issues appear to be caused by X server core upgrading from
vm86 to x86emu since X server release 1.3, which requires fixing
x86emu, or the concerned BIOSes, or both.
commit cc570675d97af7b0f4f6a70af0e7e01c89690aa1
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Dec 24 13:00:48 2007 -0700
[GX] Fix the autoconfigure segfault for GX too
commit f1482feb5b210095c564e2cad5bfd6d6e4e2cd78
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Dec 24 11:56:19 2007 -0700
[LX] Re-arrange PreInit to avoid segfaults in Xorg -configure
Re-arrange the early part of PreInit so that Xorg -configure can run
cleanly.
commit d4cd5d91a015088d548736831edd31760bcda88d
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Oct 15 16:32:56 2007 +0300
Bumped package version to 2.7.7.3.
commit 5833df9f71af8253f02a360c1b0e5e36ba2e4910
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Sep 28 09:05:56 2007 -0600
[XORG] Fix video downscaling
When downscaling the window, apparently the clip region doesn't
change (not sure why), so we didn't get the message to re-init
the video. This will make the re-init process happen on both
the clip region changing and the width/height changing.
commit dfe2ab1ea3c1a66952b6d38e436a064d677e5fba
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Sep 18 13:45:10 2007 -0600
[XORG] Remove the upload function for LX
Remove the upload function for LX. The default function is going to be
faster for all 0xCC BLTs; which just so happens to be what all the
uploads will be.
commit b795643e860548eff6f1a458391e56098c490f64
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Sep 17 14:57:22 2007 +0300
Update the package version in configure.ac
commit 65a629fb9861f51f7591bfc1d80068194e7f840e
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Mon Sep 17 14:55:49 2007 +0300
ChangeLog DOES need to be cleaned, but in MAINTIANERCLEANFILES.
commit 5179095e4e9ba4e699f6965b752df932d2808155
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Sep 12 10:53:34 2007 +0300
Creating a release of course requires updating the package version...
commit 39be7f612783fcc6e51ee0a502e4630661fab702
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Sep 12 09:04:08 2007 +0300
We no longer delete the ChangeLog in the clean target. We will simply overwrite it instead.
commit 48b20f8c1424e953485149b707318386339e2953
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 2 13:28:57 2007 +0300
Erm... actually, the ChangeLog needs ot be removed, since it's generated at release time.
commit 4ade6759760b52ed3b84a846f9c4f5f421a70ef8
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 2 13:18:28 2007 +0300
Commit the clean 2.7.7.0 ChangeLog to GIT.
commit 1d1b3005a741b04331fecb1453a0c5c6381518a7
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 2 12:54:30 2007 +0300
Added the standard X.org ChangeLog generation target to Makefile.am
commit f159ec89c2e1fd33a52d8f0375233c5fb06bc6f0
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 2 12:46:40 2007 +0300
Reverted autogen.sh changes too, since the 'dist' target does what we need.
commit bae63fbe0871229ecd9fca75043065c15a8ea9dc
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 2 12:39:06 2007 +0300
Reverted the autotool file generation from the GIT tree.
commit 1afba2099aaefead9e87827c60dea146d6e264f3
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 2 10:18:49 2007 +0300
Regenerated configure based on new package version.
commit e525ca0d68faed9ede9f55df6d0d4a3099d3ad49
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Sun Sep 2 10:05:49 2007 +0300
Bumped the package version to 2.7.7.0 and calling it a release.
commit 47c1bc40e2a06ac84953f4a8b62031fb978ab316
Author: Martin-Eric Racine <q-funk@yonix.lan>
Date: Wed Aug 29 22:02:23 2007 +0300
Updated the ChangeLog.
commit b29cce202abb0c6afb30ec1f06c98d7f84e8d2e4
Author: Martin-Eric Racine <q-funk@yonix.lan>
Date: Wed Aug 29 22:01:28 2007 +0300
Regenerated ChangeLog and autotool files.
commit a6192811e21c9f8d17b409018f945adc2eea3594
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Aug 2 10:45:14 2007 -0600
Fix the upload / composite mask race
We fix a race with the upload function when using a composite mask
by using the exa core function exaGetPixmapFirstPixel, which does
the right thing in X 1.4 and newer. For older versions, the fix is
to stall the pipeine to ensure the upload is complete, so thats what
we do.
commit 8ce4c5cc9650ddc81d9243bc416522800bce3afc
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Wed Jul 25 09:55:25 2007 -0600
Add the all-important if/then loop to avoid
squashing the ChangeLog if autogen.sh is executed outside of a git
tree.
commit bb0f0afc6c5cf849081a007af0c2d3485e87e9c4
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Jul 13 12:34:45 2007 -0600
This autogen.sh implements ChangeLog generation from the git commit
log. It also calls the correct Makefile macro to clean up after
maintainer configuration, instead of cleaning up by hand.
commit 08c26f1bda66b8ffd91e345cdd2cb29171b615b3
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Jul 10 15:16:12 2007 -0600
Fix "old-school" MSR accesses
This fixes the "old" way of reading MSRs (through virtual registers) -
we had swapped arguments in one of the macros, which does very bad
things to the poor systems it was running on.
commit 9f8ea76662733cec5ee6289727c143bf057aee57
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Jul 10 10:06:01 2007 -0600
Change _X_INLINE to just inline - the define probably isn't needed
for us unless we go to a system that doesn't support it. We'll cross
that bridge when we get to it.
commit 47b5a249e7ae877d7816504fec4f987442d07931
Author: Martin-Éric Racine <q-funk@iki.fi>
Date: Fri Jul 6 16:59:51 2007 -0600
An improved autogen.sh script
commit f42add8948e2cee3d9f2edf580f260c42718fc0c
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jul 6 16:13:14 2007 -0600
Remove the DCON sleep code
The DCON sleep code was introduced by a previous commit - for now that
will only live in the OLPC tree.
commit bff92101bd22fcb6a5c0e9da9be58105f7655be4
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jul 6 13:22:02 2007 -0600
Use the right bit depth when doing EXA copies on the GX.
This fixes the image corruption problem on OLPC.
commit 247faeeb1d1c429800f187e08cfaa31407c660ff
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Jul 3 15:53:56 2007 -0600
Make sure we turn on the video palette when video starts, and turn it off
when video ends.
commit 610f9a6b443afa8e40637a62b2b377a992f5eb05
Author: Dan Williams <dcbw@redhat.com>
Date: Mon Jun 25 15:30:02 2007 -0400
Fix LX video downscaling
The GX video downscaling logic apparently isn't appropriate for the LX
commit fd870f7acd4654ea1b440925e78df2afc5bf7259
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Mon Jun 25 11:06:39 2007 -0400
uint32_t -> CARD32
commit 54ac7918b53a999a25185ff140cda001255596b3
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jun 22 17:09:28 2007 -0600
Multiple fixes for the LX driver
* Fix VGA detection
* Restrict EXA implementations older then 2.0
* Fix crash when VT is switched while rotated
* Turn the shadow framebuffer into a true exa offscreen component
* Shut off video when we are rotated
Conflicts:
src/amd_lx_driver.c
src/amd_lx_rotate.c
commit ea11d99bc29086a8fa92c01dd22f195d626b33d2
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jun 15 18:08:56 2007 -0600
Two fixes for compositing for Cairo 1.4.4 and X server 1.3+
commit 7bf0627cd001325affbe16118a2f27225179eabd
Author: Zephaniah E. Hull <warp@agamemnon.b5>
Date: Wed Jun 13 12:28:36 2007 -0400
From Bernardo Innocenti.
- enable a few GCC warnings
- make a few globals const and static
- move MGP_RASTER_MODE writes before writes to color registers
- compute BPP dynamically in the SolidFill EXA hook
Conflicts:
configure.ac
commit dc23a3168df78424108e8609b250e88c3dd16775
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jun 1 18:32:28 2007 -0600
Fix A8 masks
We were using the wrong operation for A8 masks, resulting in badness.
Also, clean up the mask blt to be much simpler.
commit 167d9dcfe6c13f37590b26bd544ae225cb7934ac
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jun 1 09:31:52 2007 -0600
Use the correct pitch for composite mask operations
We need to specify the correct pitch for composite mask operations - this
fixes the stride problem. Also, correctly set up the source color and
some other minor issues, this helps us pass caps-join in the cairo test
suite.
commit 802282679447f2be6d815a6aa196d764a33bb07d
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu May 17 17:07:17 2007 -0600
Swizzle the sync when the panel is enabled to account for Cimarron being
silly.
commit 0a138f4a36ff2b474705bb542b446fe340be324d
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Thu May 31 15:10:59 2007 -0400
Add DCON detection to LX.
commit 6350e6e2bdc42aa7220d3101111a3bcc0a9b864a
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Thu May 31 15:07:29 2007 -0400
DCON detection cleanup and generification.
commit 506a23c3618905cbcc1c767b9e388ca86706bc73
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Thu May 31 14:34:07 2007 -0400
Un-libcwrap.
commit c37fc13ea909a7a1315d3723ccac0e4146b3a0b2
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Thu May 31 14:30:10 2007 -0400
Add extra GCC warning fu. -Wall cleanup.
commit 0953a855c7d20186a8efb6db4842eb777f6e0e56
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Thu May 31 13:58:59 2007 -0400
Rename: amd_gx_dcon.c -> amd_dcon.c
commit 0da247099df93a9774e8a638170f2142615ed5df
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Wed May 16 13:05:46 2007 -0400
Remove 'man' directory references from configure.ac.
commit 217eeed3c1659cc9e0f13ba6932d1342c0255df4
Merge: 6d1942f 022a106
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu May 10 10:39:08 2007 -0600
Merge Geode GX and LX development from OLPC
Conflicts:
man/amd.man
commit 022a106b38693d2d705e8c15ad84c18832fa2e8c
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed May 9 17:17:25 2007 -0600
Documentation cleanups
Rework the readme, and delete the now woefully out of date man pages.
Also update the TODO file with more interesting information.
commit 37719011a020eafc9a6848025f3e07219c2f5444
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed May 9 17:17:16 2007 -0600
Fix warnings discovered by Dan Williams and -Wall
commit da653c761c9a275cf2b5ff4e087cb0239421c72d
Author: Dan Williams <dcbw@redhat.com>
Date: Wed May 9 13:32:42 2007 -0600
More -Wall warnings fixed
commit 8fa5d1e3653f91c0c1409147f7292463554dd9f9
Author: Dan Williams <dcbw@redhat.com>
Date: Wed May 9 13:31:15 2007 -0600
Eliminate the first round of warnings discovered with -Wall
commit 0af46deb156c1d4bdc7c3378c70bb9ef696a4886
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri May 4 11:43:09 2007 -0600
Completely eliminate the rotation pitch
Chris Ball is still getting segfalts - completely eliminate the
call.
commit c35f7fe15a5a872606f18c84c097f3b5b1cada74
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri May 4 11:30:55 2007 -0600
Fix a segfault in RandR
commit 1ddbc60536d6e2b7a4654dd9019a3872c1a54de2
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri May 4 09:03:26 2007 -0600
Use the same stride for all rotations
This avoids problems copying pixmaps from EXA space.
commit 69501cb09955741a3bb93a0992085cf4f64c70d7
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri May 4 09:03:22 2007 -0600
Cimarron wants to use CF8/CFC
Avoid using the PCI access routines in Cimarron
commit 460c5b55d30086b013e35c76fd406e8826e6a814
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri May 4 08:53:40 2007 -0600
Handle out of memory situations more gracefully
commit 501f1b6d11ce35d5e53de798a364b7712c754e7b
Author: Dan Williams <dcbw@redhat.com>
Date: Thu May 3 10:05:17 2007 -0400
commit 5f7979e990c5eafb44aa0fa9779a7ed3904d25ce
include string.h for memset
commit 89bb73e915a8aca7a04d2ab0818f9b21c88d59c3
Author: Dan Williams <dcbw@redhat.com>
Date: Thu May 3 09:56:42 2007 -0400
commit 7125fcab372b24f7045bbdaa6d4f6e435b1f7a83
Fix missed GXQueryImageAttributes->GeodeQueryImageAttributes
commit 4dfae85222779694e162c8bb942b7587c2600592
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed May 2 14:38:24 2007 -0600
Solve several vexing issues with RandR:
* Incorrect rendering while rotated
* Mouse was incorrectly drawn for 90 and 270
* subsequent RandR commands were killing the rotated stride
commit dc5db7c4d68268377cd99f7c8e4bc54556923ed1
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue May 1 17:08:42 2007 -0600
Fix video and VGA bugs
Fix two small bugs: The VGA dection code wasn't working, and the video
engine was not using color keying.
commit 59eac173349afa24c126ec670bedb68643dd5a84
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Apr 26 15:34:11 2007 -0600
Use a secret bit to ensure we use channel A alpha *before* color conversion
commit 46b29acf1f239dd89adabf1cb2c138cf8a2b1700
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Apr 20 11:17:16 2007 -0600
Several fixes to support OLPC LX turnon
These are fixes discovered during the OLPC LX turn on. The compression
was incorrectly being configured, resulting in bad drawing, that has
bee repaired. Assume by default that we're going to use a panel and the
CRT, no longer read the straps MSR because it is unreliable. Finally,
fix the MSR hooks by moving the hook definitions where they will do some
good and disabling the VSA method.
commit 8bfed84a1f972325cdf61876d7f7dfd0e8f0d4d5
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Apr 11 13:37:02 2007 -0600
Add Linux MSR suport for LX
Extend the GX MSR support to LX - this is to support the VSAless
OFW, and share code.
commit 2d7689990c19fd74d5fad11bcf6317a7874a6057
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Mar 8 18:06:11 2007 -0700
Fix a couple of scary bugs - including one that seemed to be causing
corruption.
commit b959509bb37e6ef269088ecbe92f49c7dc971fb6
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Mar 7 18:27:52 2007 -0700
Add a TODO file filled with many bugs and enhancements
commit b59bfdde9341ca9014e00795e344ac64b5b91b8c
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Mar 7 18:14:34 2007 -0700
[MAJOR UPDATE] Geode LX driver
This is a major re-vamping of the Geode LX driver to support EXA, RandR,
and advanced xserver features. The GX and LX drivers now share the similar
streamlined infrastructure, and acceleration. The LX driver also adds
features the GX does not have, such as accelerated rotations and
far better composite support.
This provides the basis for the rotation and acceleration enhancements.
commit 6d1942fb5e9a1e37baae3ec8559f9567ddeb2f67
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Thu Mar 1 10:38:08 2007 -0800
Replace references to XFree86/XF86Config in man page
commit d2f53b7c576c91f07f55b62b0020be1d0ab358dc
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Jan 31 13:50:19 2007 -0700
Fix an unfortunate segfault when NoAccel is selected
commit 610e65d49c3060b9512be785ab78de0824583155
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Jan 15 22:03:00 2007 -0700
Fixed broken EXA - things actually move faster now.
commit 7f3e76af1675dc071769cdd68fa0ae4f1290b7b4
Author: Dan Williams <dcbw@redhat.com>
Date: Mon Jan 15 16:49:09 2007 -0500
Fix distcheck
commit edbd744b31eb7996b521eca4a42e0e20700ffa78
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jan 12 10:30:19 2007 -0700
Correctly program the sync polarity taking into account the GX wierdness
commit 461c5fb1ed00101e9832b4a0236bbb51d092ddb6
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Jan 11 17:30:45 2007 -0700
Broken logic on the previous Xv fix - should work now
commit a212981da0147a5f277b43b801de6d2454005c17
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Jan 10 17:51:23 2007 -0700
Add Xv hardware support for a RGB565 source.
commit acc4421ac55d021ef917967ecd09b650e8dd9699
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Jan 10 14:23:02 2007 -0700
Fix a segfault when no valid modes are found
Also - be smart about allocating memory in the RandR part.
commit 888dab329bb66c8e4317d0b6a9736fa70c9686a6
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Jan 10 14:21:43 2007 -0700
I missed a few updates of the new driver structure in the video code
commit cb69ce0f54569c68c79173e144c3c90e46e64f8b
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Mon Jan 8 15:23:59 2007 -0500
Minor DCON fixes.
Wire up the DCON init to GXPreInit, and set the panel geometry appropriately
if found.
commit c4f21aaaaf6d101e7c8828e246e06be3ff0591c3
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Mon Jan 8 15:22:28 2007 -0500
Fix RANDR support to be dlloader-friendly.
commit d4d16bf29802549b501a00e32195162ed5e8ab93
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Mon Jan 8 15:21:33 2007 -0500
Build fix.
commit f762b456b98063860e38e9541f4be2fb1302e3c2
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date: Mon Jan 8 15:20:44 2007 -0500
Add --enable-visibility.
Allow the driver to be built with the default symbol visbility set to hidden,
for smaller better code.
commit cf77a1fe9ec232cbb0d99685f34d0acb91ee5d88
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Dec 29 10:58:35 2006 -0700
Remove direct PCI accesses from Durango
Accessing PCI through X is one thing, accessing it directly is quite
another.
commit fb92319afde24b91c64314e4f2d8725fa2cd61fe
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Dec 20 17:30:44 2006 -0700
Replace the VSA MSR interface with something more sane
commit e34f70fc46b36a0ea26636045ce9f9bf24ec89cd
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Dec 18 11:01:34 2006 -0700
Correctly rotate the HW cursor data so that it matches the rest of the screen
commit 2e558b7cf6c508a1f745d922d911d612eba7d2c4
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Dec 15 16:37:35 2006 -0700
A few fixes for the panel - the mode should be set correctly now, and
segfaults have gone away.
commit 243edb93e131734f23d9c5f39f1cd614ecc6a1f8
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Dec 15 13:23:49 2006 -0700
Remove debugging messages and other cleanups
commit 8cd3fa16e377119452d8575198a7f1f1a77e44fc
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Dec 15 13:23:48 2006 -0700
Default the GX driver to use EXA for acceleration
commit 04e5aa4e6e9ec4ddc8ebeaf9f7004cb832c194c8
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Dec 15 13:23:48 2006 -0700
Allow the user to specify an initial rotation
commit dc2244b398d68bb340e97c723615e3b52ecd47ae
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Dec 15 13:23:45 2006 -0700
Clean up the VGA init
commit 5b66b41b1d91345700e8f18569fa984c6ce53aca
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Dec 15 08:46:42 2006 -0700
Remove unneeded GX options
commit d901348441642fadbd71ed2e37e74b3b2a7af97c
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Dec 14 17:28:48 2006 -0700
Fix the memory mapping so its more sane, and disable XAA pixmap caches
during rotation.
commit 73dc69c6597d5f0f6023c067f7b1c2d7709b604b
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Dec 14 17:26:59 2006 -0700
PATCH: Automatically probe to see if VGA exists
commit a38f40687c00f35d2e6529c3cfb894ee29cdea66
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Dec 13 16:03:36 2006 -0700
Clean up whitespace and other code style issues
commit edd326cc9ba5b9f46ca7a4516806a5b7fd3605f0
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Dec 12 17:31:48 2006 -0700
First attempt at adding dynamic rotation (just RandR 1.1 for now)
commit 98aad0c298e59b6336e9219cc37294644d2d9e95
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Nov 9 15:31:07 2006 -0700
PATCH: Add special support for the OLPC DCON
commit e18f0a7efe7bbc7655a9fdcd3b74ec8c799a86a2
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Nov 8 16:41:44 2006 -0700
PATCH: More gamma fixes
Be smarter about how gamma is saved and restored by checking the bits.
commit 881c2aac50af3265d98daa4be5ccf49cabe2f5d6
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Nov 8 11:24:26 2006 -0700
PATCH: Avoid incorrectly killing the gamma RAM when the driver starts up
The Xv driver requires color adjustment by programming the gamma LUT. The
driver was incorectly programming the LUT at startup, which is damaging
for any previous applications that may have graphics gamma information in
the LUT. Change only applies the video adjustment when video is enabled.
commit 57921b0fffbd1a4bf36dbef69badb9b71918a3b8
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Oct 16 16:54:15 2006 -0600
Fixed stupid buglet that I introduced
commit 1c2fdaa4bc0df076f2d15184cfba74b2df82c6e4
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Oct 16 16:27:01 2006 -0600
Missed a place where I needed to clear the EXA memory
commit 8d9986ffa3d678469901d595c80770696bd866d8
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Wed Oct 11 17:42:30 2006 -0600
Xv needs to understand how to allocate offscreen code from EXA too
When EXA is enabled, it takes enough of the offscreen memory for itself,
so that Xv cannot query memory with xf86AllocateOffscreen.
commit 2979196dae5615f2a78ace891d4ad6dd98c8fe6e
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Sep 28 09:09:27 2006 -0600
Update for 7.2 - fix config.h and other include problems.
This closes bug 8290 by applying the patch from Andres Salomon.
commit 45eeb43888e92e2736d9b678ce6d67fb99449800
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Aug 21 11:24:42 2006 -0600
PATCH: Clean ups some of the log messages
Remove the useless DDC probe message and only warn when MSR reads don't
work.
commit 1665bf4ae01b88bd2d981ebacc306568715ee927
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Aug 21 11:24:41 2006 -0600
PATCH: Move the check for EXA version
The check for the EXA version occurs before the EXA_VERSION is defined.
This results in EXA being permanently turned off. This makes sure exa.h
is defined before checking the version.
commit 38f3d21beba13daba4844a129f3c268b5f291fb1
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Tue Aug 15 13:14:01 2006 -0600
PATCH: When compression is off, adjust the pitch to be linear, saving memory
commit 9d8d08c6a7449faf9c52d728eeb5793180eaf98e
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Mon Aug 7 17:46:56 2006 -0600
PATCH: Fixup Xv
Xv was still stuck in the 6.8.1 days.
commit 4a29b63925ea8ffa4e220925dd8aca280fd887a7
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Aug 4 14:23:52 2006 -0600
PATCH: Add specific support for the OLPC dcon panel
The OLPC dcon panel operates differently then the other panels in the
GX universe.
commit 7a49bf6205d77a22b07c785f2cb589abd8671667
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Aug 4 14:23:40 2006 -0600
PATCH: Remove the build files that shouldn't be in the repository
commit d67ec33ef47086469446f0bd692ec15581124424
Author: Zephaniah E. Hull <warp@agamemnon.b5>
Date: Thu Aug 3 10:41:41 2006 -0400
Make EXA support on EXA_VERSION_MAJOR >= 2.
Catch the two places where we tried to use EXA stuff when it wasn't available.
commit 3718e9e2639d0f6313c3ec9ab32d277d2224f8cf
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jul 7 17:18:06 2006 -0600
PATCH: Fix some VGA issues
Fix some issues from the recent NoVGA refactoring
commit 726d46c8da96b2a0168b39d36be32467d54a9de3
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Fri Jul 7 13:05:19 2006 -0600
Update with cleanup and other fixes
Final commit of cleanup fixes prior to pushing
commit c3ab9f1a60afe1f5e86db1cf2635acda14fae2f5
Author: Jordan Crouse <jordan.crouse@amd.com>
Date: Thu Jul 6 14:56:42 2006 -0600
Initial commit of the xf86-video-amd tree
|