Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

13.02.2007, 11:08

[gelöst] ATI Mobility P/M AGP 2x (rev 64) und DRI

Hallo Leute,

ich versuche seit Tagen das Direct Rendering zum Laufen zu bekommen, jedoch ohne erfolg.

Vieleicht kann mir ja einer dabei helfen.

Hier mal die Ausgaben welche ich abgerufen habe:

Quellcode

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
# cat /etc/X11/xorg.conf
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "aticonfig-Screen[0]" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	FontPath     "/usr/share/fonts/misc:unscaled"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/corefonts"
	FontPath     "/usr/share/fonts/freefont"
	FontPath     "/usr/share/fonts/sharefonts"
	FontPath     "/usr/share/fonts/terminus"
	FontPath     "/usr/share/fonts/ttf-bitstream-vera"
	FontPath     "/usr/share/fonts/unifont"
	FontPath     "/usr/share/fonts/75dpi:unscaled"
	FontPath     "/usr/share/fonts/100dpi:unscaled"
	FontPath     "/usr/share/fonts/artwiz"
EndSection

Section "Module"
	Load  "dri"
	Load  "glx"
	Load  "extmod"
	Load  "xtrap"
	Load  "record"
	Load  "dbe"
	Load  "freetype"
	Load  "type1"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
        Identifier      "aticonfig-Device[0]"
	Option 		"VendorName" "ATI"
	Option		"ModelName" "ATI Technologies Inc Rage Mobility P/M AGP 2x (rev 64)"
	Option		"PCIMode"   "true"
        Driver          "ati"
        ChipSet         "mach64"
        BusID           "PCI:1:0:0"
        Option           "DMAMode"      "mmio"          
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]"
	Device     "aticonfig-Device[0]"
	Monitor    "aticonfig-Monitor[0]"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "dri"
	Mode         0666
EndSection

# cat /var/log/Xorg.0.log
X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: UNKNOWN 
Current Operating System: Linux localhost 2.6.19-gentoo-r5 #9 SMP Sun Feb 11 14:27:09 CET 2007 i686
Build Date: 11 February 2007
	Before reporting problems, check [URL]http://wiki.x.org[/URL]
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 12 08:06:46 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "aticonfig-Screen[0]" (0)
(**) |   |-->Monitor "aticonfig-Monitor[0]"
(**) |   |-->Device "aticonfig-Device[0]"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) FontPath set to:
	/usr/share/fonts/misc:unscaled,
	/usr/share/fonts/Type1,
	/usr/share/fonts/TTF,
	/usr/share/fonts/corefonts,
	/usr/share/fonts/freefont,
	/usr/share/fonts/sharefonts,
	/usr/share/fonts/terminus,
	/usr/share/fonts/ttf-bitstream-vera,
	/usr/share/fonts/unifont,
	/usr/share/fonts/75dpi:unscaled,
	/usr/share/fonts/100dpi:unscaled,
	/usr/share/fonts/artwiz
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.3
	X.Org Video Driver: 1.0
	X.Org XInput driver : 0.6
	X.Org Server Extension : 0.3
	X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.0
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7190 card 0e11,b110 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card 0000,0000 rev 03 class 06,04,00 hdr 01
(II) PCI: 00:04:0: chip 104c,ac1c card 1000,0000 rev 01 class 06,07,00 hdr 82
(II) PCI: 00:04:1: chip 104c,ac1c card 1800,0000 rev 01 class 06,07,00 hdr 82
(II) PCI: 00:07:0: chip 8086,7110 card 0000,0000 rev 02 class 06,80,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7111 card 0000,0000 rev 01 class 01,01,80 hdr 00
(II) PCI: 00:07:2: chip 8086,7112 card 0000,0000 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 8086,7113 card 0000,0000 rev 03 class 06,80,00 hdr 00
(II) PCI: 00:08:0: chip 125d,1978 card 0e11,b112 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:09:0: chip 11c1,0449 card 0e11,b14e rev 01 class 07,80,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c4d card 0e11,b160 rev 64 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,6), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x008c (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0x00002000 - 0x000020ff (0x100) IX[B]
	[1] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
	[2] -1	0	0x00002800 - 0x000028ff (0x100) IX[B]
	[3] -1	0	0x00002c00 - 0x00002cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0x40000000 - 0x410fffff (0x1100000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0x28000000 - 0x280fffff (0x100000) MX[B]
(II) PCI-to-CardBus bridge:
(II) Bus 2: bridge is at (0:4:0), (0,2,5), BCTRL: 0x05c0 (VGA_EN is cleared)
(II) Bus 2 I/O range:
	[0] -1	0	0x00001000 - 0x000010ff (0x100) IX[B]
	[1] -1	0	0x00001400 - 0x000014ff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
	[0] -1	0	0x22000000 - 0x23ffffff (0x2000000) MX[B]
(II) Bus 2 prefetchable memory range:
	[0] -1	0	0x20000000 - 0x21ffffff (0x2000000) MX[B]
(II) PCI-to-CardBus bridge:
(II) Bus 6: bridge is at (0:4:1), (0,6,9), BCTRL: 0x05c0 (VGA_EN is cleared)
(II) Bus 6 I/O range:
	[0] -1	0	0x00001800 - 0x000018ff (0x100) IX[B]
	[1] -1	0	0x00001c00 - 0x00001cff (0x100) IX[B]
(II) Bus 6 non-prefetchable memory range:
	[0] -1	0	0x26000000 - 0x27ffffff (0x2000000) MX[B]
(II) Bus 6 prefetchable memory range:
	[0] -1	0	0x24000000 - 0x25ffffff (0x2000000) MX[B]
(--) PCI:*(1:0:0) ATI Technologies Inc Rage Mobility P/M AGP 2x rev 100, Mem @ 0x40000000/24, 0x41000000/12, I/O @ 0x2000/8
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0x50000000 from 0x53ffffff to 0x4fffffff
(II) Active PCI resource ranges:
	[0] -1	0	0x41200000 - 0x412000ff (0x100) MX[B]
	[1] -1	0	0x50000000 - 0x4fffffff (0x0) MX[B]O
	[2] -1	0	0x41000000 - 0x41000fff (0x1000) MX[B](B)
	[3] -1	0	0x40000000 - 0x40ffffff (0x1000000) MX[B](B)
	[4] -1	0	0x00003800 - 0x000038ff (0x100) IX[B]
	[5] -1	0	0x00003430 - 0x00003437 (0x8) IX[B]
	[6] -1	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[7] -1	0	0x00003400 - 0x0000341f (0x20) IX[B]
	[8] -1	0	0x00003420 - 0x0000342f (0x10) IX[B]
	[9] -1	0	0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0x41200000 - 0x412000ff (0x100) MX[B]
	[1] -1	0	0x50000000 - 0x4fffffff (0x0) MX[B]O
	[2] -1	0	0x41000000 - 0x41000fff (0x1000) MX[B](B)
	[3] -1	0	0x40000000 - 0x40ffffff (0x1000000) MX[B](B)
	[4] -1	0	0x00003800 - 0x000038ff (0x100) IX[B]
	[5] -1	0	0x00003430 - 0x00003437 (0x8) IX[B]
	[6] -1	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[7] -1	0	0x00003400 - 0x0000341f (0x20) IX[B]
	[8] -1	0	0x00003420 - 0x0000342f (0x10) IX[B]
	[9] -1	0	0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x41200000 - 0x412000ff (0x100) MX[B]
	[5] -1	0	0x50000000 - 0x4fffffff (0x0) MX[B]O
	[6] -1	0	0x41000000 - 0x41000fff (0x1000) MX[B](B)
	[7] -1	0	0x40000000 - 0x40ffffff (0x1000000) MX[B](B)
	[8] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[9] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[10] -1	0	0x00003800 - 0x000038ff (0x100) IX[B]
	[11] -1	0	0x00003430 - 0x00003437 (0x8) IX[B]
	[12] -1	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[13] -1	0	0x00003400 - 0x0000341f (0x20) IX[B]
	[14] -1	0	0x00003420 - 0x0000342f (0x10) IX[B]
	[15] -1	0	0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.3
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.3
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions/libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension RECORD
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
	compiled for 7.1.1, module version = 2.1.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.2
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "ati"
(II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
(II) Module ati: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 6.6.3
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.1.1
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.1.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.6
(II) ATI: ATI driver (version 6.6.3) for chipsets: ati, ativga
(II) R128: Driver for ATI Rage 128 chipsets:
	ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP),
	ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP),
	ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP),
	ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI),
	ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP),
	ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP),
	ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP),
	ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP),
	ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP),
	ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI),
	ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI),
	ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP),
	ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP),
	ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP),
	ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP),
	ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI),
	ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP),
	ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP),
	ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP),
	ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP),
	ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP),
	ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP),
	ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?),
	ATI Rage 128 Pro ULTRA TU (AGP?)
(II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI),
	ATI ES1000 515E (PCI), ATI ES1000 5969 (PCI),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330/340/350 (A4) 4137,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437,
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP),
	ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP),
	ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835, ATI Radeon 9100 PRO IGP 7834,
	ATI Radeon Mobility 9200 IGP 7835, ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP),
	ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
	ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP),
	ATI FireGL RV360 AV (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon 9650,
	ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP),
	ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE),
	ATI Radeon Mobility X600 (M24) 3150 (PCIE),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE),
	ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE), ATI FireGL V5000 (RV410) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 XT (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE),
	ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 SE (R420) (AGP),
	ATI Radeon AIW X800 VE (R420) JT (AGP),
	ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V7100 (R423) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Radeon X800 (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 XTP (R430) (PCIE),
	ATI Radeon X850 5D4C (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP)
(II) Primary Device is: PCI 01:00:0
(II) ATI:  Candidate "Device" section "aticonfig-Device[0]".
(II) ATI:  Shared PCI/AGP Mach64 in slot 1:0:0 detected.
(II) ATI:  Shared PCI/AGP Mach64 in slot 1:0:0 assigned to active "Device" section "aticonfig-Device[0]".
(II) resource ranges after xf86ClaimFixedResources() call:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x41200000 - 0x412000ff (0x100) MX[B]
	[5] -1	0	0x50000000 - 0x4fffffff (0x0) MX[B]O
	[6] -1	0	0x41000000 - 0x41000fff (0x1000) MX[B](B)
	[7] -1	0	0x40000000 - 0x40ffffff (0x1000000) MX[B](B)
	[8] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[9] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[10] -1	0	0x00003800 - 0x000038ff (0x100) IX[B]
	[11] -1	0	0x00003430 - 0x00003437 (0x8) IX[B]
	[12] -1	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[13] -1	0	0x00003400 - 0x0000341f (0x20) IX[B]
	[14] -1	0	0x00003420 - 0x0000342f (0x10) IX[B]
	[15] -1	0	0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) Loading sub module "atimisc"
(II) LoadModule: "atimisc"
(II) Loading /usr/lib/xorg/modules/drivers/atimisc_drv.so
(II) Module atimisc: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 6.6.3
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after probing:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x41200000 - 0x412000ff (0x100) MX[B]
	[5] -1	0	0x50000000 - 0x4fffffff (0x0) MX[B]O
	[6] -1	0	0x41000000 - 0x41000fff (0x1000) MX[B](B)
	[7] -1	0	0x40000000 - 0x40ffffff (0x1000000) MX[B](B)
	[8] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B]
	[9] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B]
	[10] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B]
	[11] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[12] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[13] -1	0	0x00003800 - 0x000038ff (0x100) IX[B]
	[14] -1	0	0x00003430 - 0x00003437 (0x8) IX[B]
	[15] -1	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[16] -1	0	0x00003400 - 0x0000341f (0x20) IX[B]
	[17] -1	0	0x00003420 - 0x0000342f (0x10) IX[B]
	[18] -1	0	0x00002000 - 0x000020ff (0x100) IX[B](B)
	[19] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
	[20] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) ATI(0): Chipset:  "mach64".
(**) ATI(0): Depth 24, (--) framebuffer bpp 32
(**) ATI(0): Option "dma_mode" "mmio"
(==) ATI(0): Using XAA acceleration architecture
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.0
(II) ATI(0): Primary V_BIOS segment is: 0xc000
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.0
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.1.0
	ABI class: X.Org Video Driver, version 1.0
(II) ATI(0): VESA BIOS detected
(II) ATI(0): VESA VBE Version 2.0
(II) ATI(0): VESA VBE Total Mem: 8128 kB
(II) ATI(0): VESA VBE OEM: ATI MACH64
(II) ATI(0): VESA VBE OEM Software Rev: 1.0
(II) ATI(0): VESA VBE OEM Vendor: ATI Technologies Inc.
(II) ATI(0): VESA VBE OEM Product: MACH64RM
(II) ATI(0): VESA VBE OEM Product Rev: 01.00
(II) ATI(0): VESA VBE DDC supported
(II) ATI(0): VESA VBE DDC Level none
(II) ATI(0): VESA VBE DDC transfer in appr. 2 sec.
(II) ATI(0): VESA VBE DDC read failed
(II) ATI(0): BIOS Data:  BIOSSize=0x10000, ROMTable=0x010C.
(II) ATI(0): BIOS Data:  ClockTable=0x0A8C, FrequencyTable=0x0A66.
(II) ATI(0): BIOS Data:  LCDTable=0x0180, LCDPanelInfo=0xE980.
(II) ATI(0): BIOS Data:  VideoTable=0x0000, HardwareTable=0x015C.
(II) ATI(0): BIOS Data:  I2CType=0x0F, Tuner=0x00, Decoder=0x00, Audio=0x0F.
(--) ATI(0): ATI 3D Rage Mobility graphics controller detected.
(--) ATI(0): Chip type 4C4D "LM", version 4, foundry TSMC, class 0, revision 0x01.
(--) ATI(0): AGP bus interface detected;  block I/O base is 0x2000.
(--) ATI(0): ATI Mach64 adapter detected.
(!!) ATI(0): For information on using the multimedia capabilities
	of this adapter, please see [URL]http://gatos.sf.net.[/URL]
(--) ATI(0): Internal RAMDAC (subtype 1) detected.
(==) ATI(0): RGB weight 888
(==) ATI(0): Default visual is TrueColor
(==) ATI(0): Using gamma correction (1.0, 1.0, 1.0)
(II) ATI(0): Using Mach64 accelerator CRTC.
(--) ATI(0): 1024x768 panel (ID 2) detected.
(--) ATI(0): Panel model NEC NL10276BC28-11F.
(--) ATI(0): Panel clock is 65.146 MHz.
(II) ATI(0): Using digital flat panel interface.
(II) ATI(0): Storing hardware cursor image at 0x407FFC00.
(II) ATI(0): Using 8 MB linear aperture at 0x40000000.
(!!) ATI(0): Virtual resolutions will be limited to 8191 kB
 due to linear aperture size and/or placement of hardware cursor image area.
(II) ATI(0): Using Block 0 MMIO aperture at 0x41000400.
(II) ATI(0): Using Block 1 MMIO aperture at 0x41000000.
(==) ATI(0): Removed MMIO write-combining range (0x40000000,0x400000)
(==) ATI(0): Write-combining range (0x40000000,0x800000)
(II) ATI(0): MMIO write caching enabled.
(--) ATI(0): 8192 kB of SDRAM (1:1) detected (using 8191 kB).
(WW) ATI(0): Cannot shadow an accelerated frame buffer.
(II) ATI(0): Engine XCLK 124.453 MHz;  Refresh rate code 12.
(--) ATI(0): Internal programmable clock generator detected.
(--) ATI(0): Reference clock 29.500 MHz.
(II) ATI(0): Maximum clock: 230.00 MHz
(II) ATI(0): Not using default mode "1152x864" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "576x432" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1280x960" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "640x480" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1280x960" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "640x480" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1280x1024" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "640x512" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1280x1024" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "640x512" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1280x1024" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "640x512" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1600x1200" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "800x600" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1600x1200" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "800x600" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1600x1200" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "800x600" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1600x1200" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "800x600" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1600x1200" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "800x600" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1792x1344" (insufficient memory for mode)
(II) ATI(0): Not using default mode "896x672" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1792x1344" (insufficient memory for mode)
(II) ATI(0): Not using default mode "896x672" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1856x1392" (insufficient memory for mode)
(II) ATI(0): Not using default mode "928x696" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1856x1392" (insufficient memory for mode)
(II) ATI(0): Not using default mode "928x696" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1920x1440" (insufficient memory for mode)
(II) ATI(0): Not using default mode "960x720" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1920x1440" (insufficient memory for mode)
(II) ATI(0): Not using default mode "960x720" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1152x768" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1400x1050" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "700x525" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1400x1050" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "700x525" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1600x1024" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "800x512" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "1920x1440" (insufficient memory for mode)
(II) ATI(0): Not using default mode "960x720" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "2048x1536" (insufficient memory for mode)
(II) ATI(0): Not using default mode "1024x768" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "2048x1536" (insufficient memory for mode)
(II) ATI(0): Not using default mode "1024x768" (exceeds panel dimensions)
(II) ATI(0): Not using default mode "2048x1536" (insufficient memory for mode)
(II) ATI(0): Not using default mode "1024x768" (exceeds panel dimensions)
(--) ATI(0): Virtual size is 1024x768 (pitch 1024)
(**) ATI(0): *Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz
(II) ATI(0): Modeline "1024x768"   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync
(**) ATI(0): *Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(II) ATI(0): Modeline "1024x768"   78.80  1024 1040 1136 1312  768 769 772 800 +hsync +vsync
(**) ATI(0): *Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(II) ATI(0): Modeline "1024x768"   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync
(**) ATI(0): *Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(II) ATI(0): Modeline "1024x768"   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync
(**) ATI(0): *Default mode "1024x768": 44.9 MHz, 35.5 kHz, 86.9 Hz (I)
(II) ATI(0): Modeline "1024x768"   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync
(**) ATI(0): *Built-in mode "Native panel mode": 65.1 MHz, 62.6 kHz, 81.4 Hz
(II) ATI(0): Modeline "Native panel mode"   65.15  1024 1024 1032 1040  768 768 769 770
(**) ATI(0): *Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
(II) ATI(0): Modeline "832x624"   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync
(**) ATI(0): *Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz
(II) ATI(0): Modeline "800x600"   56.30  800 832 896 1048  600 601 604 631 +hsync +vsync
(**) ATI(0): *Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(II) ATI(0): Modeline "800x600"   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync
(**) ATI(0): *Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
(II) ATI(0): Modeline "800x600"   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync
(**) ATI(0): *Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(II) ATI(0): Modeline "800x600"   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync
(**) ATI(0): *Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
(II) ATI(0): Modeline "800x600"   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync
(**) ATI(0): *Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz
(II) ATI(0): Modeline "640x480"   36.00  640 696 752 832  480 481 484 509 -hsync -vsync
(**) ATI(0): *Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(II) ATI(0): Modeline "640x480"   31.50  640 656 720 840  480 481 484 500 -hsync -vsync
(**) ATI(0): *Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
(II) ATI(0): Modeline "640x480"   31.50  640 664 704 832  480 489 491 520 -hsync -vsync
(**) ATI(0): *Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(II) ATI(0): Modeline "640x480"   25.20  640 656 752 800  480 490 492 525 -hsync -vsync
(**) ATI(0): *Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz
(II) ATI(0): Modeline "720x400"   35.50  720 756 828 936  400 401 404 446 -hsync +vsync
(**) ATI(0): *Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz
(II) ATI(0): Modeline "640x400"   31.50  640 672 736 832  400 401 404 445 -hsync +vsync
(**) ATI(0): *Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz
(II) ATI(0): Modeline "640x350"   31.50  640 672 736 832  350 382 385 445 +hsync -vsync
(**) ATI(0): *Default mode "576x384": 32.5 MHz, 44.2 kHz, 54.8 Hz (D)
(II) ATI(0): Modeline "576x384"   32.50  576 589 657 736  384 385 388 403 doublescan +hsync +vsync
(**) ATI(0): *Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(II) ATI(0): Modeline "512x384"   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync
(**) ATI(0): *Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(II) ATI(0): Modeline "512x384"   39.40  512 520 568 656  384 384 386 400 doublescan +hsync +vsync
(**) ATI(0): *Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(II) ATI(0): Modeline "512x384"   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync
(**) ATI(0): *Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(II) ATI(0): Modeline "512x384"   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync
(**) ATI(0): *Default mode "512x384": 22.4 MHz, 35.5 kHz, 86.6 Hz (D)
(II) ATI(0): Modeline "512x384"   22.45  512 516 604 632  384 384 388 409 interlace doublescan +hsync +vsync
(**) ATI(0): *Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(II) ATI(0): Modeline "416x312"   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync
(**) ATI(0): *Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(II) ATI(0): Modeline "400x300"   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync
(**) ATI(0): *Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(II) ATI(0): Modeline "400x300"   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync
(**) ATI(0): *Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(II) ATI(0): Modeline "400x300"   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync
(**) ATI(0): *Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(II) ATI(0): Modeline "400x300"   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync
(**) ATI(0): *Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)
(II) ATI(0): Modeline "400x300"   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync
(**) ATI(0): *Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D)
(II) ATI(0): Modeline "320x240"   18.00  320 348 376 416  240 240 242 254 doublescan -hsync -vsync
(**) ATI(0): *Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D)
(II) ATI(0): Modeline "320x240"   15.75  320 328 360 420  240 240 242 250 doublescan -hsync -vsync
(**) ATI(0): *Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D)
(II) ATI(0): Modeline "320x240"   15.75  320 332 352 416  240 244 245 260 doublescan -hsync -vsync
(**) ATI(0): *Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(II) ATI(0): Modeline "320x240"   12.60  320 328 376 400  240 245 246 262 doublescan -hsync -vsync
(**) ATI(0): *Default mode "360x200": 17.8 MHz, 37.9 kHz, 85.0 Hz (D)
(II) ATI(0): Modeline "360x200"   17.75  360 378 414 468  200 200 202 223 doublescan -hsync +vsync
(**) ATI(0): *Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(II) ATI(0): Modeline "320x200"   15.75  320 336 368 416  200 200 202 222 doublescan -hsync +vsync
(**) ATI(0): *Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(II) ATI(0): Modeline "320x175"   15.75  320 336 368 416  175 191 192 222 doublescan +hsync -vsync
(==) ATI(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 0.1.0
	ABI class: X.Org Video Driver, version 1.0
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/xorg/modules/libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.2.0
	ABI class: X.Org Video Driver, version 1.0
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules/libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.2.0
	ABI class: X.Org Video Driver, version 1.0
(II) ATI(0): I2C bus "Mach64" initialized.
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
	[0] 0	0	0x41000000 - 0x41000fff (0x1000) MS[B]
	[1] 0	0	0x40000000 - 0x40ffffff (0x1000000) MS[B]
	[2] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[3] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[4] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[5] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[6] -1	0	0x41200000 - 0x412000ff (0x100) MX[B]
	[7] -1	0	0x50000000 - 0x4fffffff (0x0) MX[B]O
	[8] -1	0	0x41000000 - 0x41000fff (0x1000) MX[B](B)
	[9] -1	0	0x40000000 - 0x40ffffff (0x1000000) MX[B](B)
	[10] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B](OprU)
	[11] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU)
	[12] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B](OprU)
	[13] 0	0	0x00002000 - 0x000020ff (0x100) IS[B]
	[14] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[15] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[16] -1	0	0x00003800 - 0x000038ff (0x100) IX[B]
	[17] -1	0	0x00003430 - 0x00003437 (0x8) IX[B]
	[18] -1	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[19] -1	0	0x00003400 - 0x0000341f (0x20) IX[B]
	[20] -1	0	0x00003420 - 0x0000342f (0x10) IX[B]
	[21] -1	0	0x00002000 - 0x000020ff (0x100) IX[B](B)
	[22] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
	[23] 0	0	0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(==) ATI(0): Write-combining range (0x40000000,0x800000)
(II) ATI(0): [drm] SAREA 2200+1208: 3408
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) ATI(0): [drm] loaded kernel module for "mach64" driver
(II) ATI(0): [drm] DRM interface version 1.2
(II) ATI(0): [drm] created "mach64" driver at busid "pci:0000:01:00.0"
(II) ATI(0): [drm] added 8192 byte SAREA at 0xd0cc8000
(II) ATI(0): [drm] mapped SAREA 0xd0cc8000 to 0xb7237000
(II) ATI(0): [drm] framebuffer handle = 0x40000000
(II) ATI(0): [drm] added 1 reserved context for kernel
(II) ATI(0): [drm] Will request pseudo-DMA (MMIO) mode
(==) ATI(0): [agp] Using AGP 2x Mode
(==) ATI(0): [agp] Using 8 MB AGP aperture
(II) ATI(0): [agp] Mode 0x1f000203 [AGP 0x8086/0x7190; Card 0x1002/0x4c4d]
(II) ATI(0): [agp] 8192 kB allocated with handle 0x00000001
(II) ATI(0): [agp] Using 16 kB for DMA descriptor ring
(==) ATI(0): [agp] Using 2 MB for DMA buffers
(II) ATI(0): [agp] Using 6016 kB for AGP textures
(II) ATI(0): [agp] ring handle = 0x50000000
(II) ATI(0): [agp] Ring mapped at 0xb7233000
(II) ATI(0): [agp] vertex buffers handle = 0x50004000
(II) ATI(0): [agp] Vertex buffers mapped at 0xb7033000
(II) ATI(0): [agp] AGP texture region handle = 0x50204000
(II) ATI(0): [agp] AGP Texture region mapped at 0xb6a53000
(II) ATI(0): [drm] register handle = 0x41000000
(II) ATI(0): [dri] Visual configs initialized
(II) ATI(0): [dri] Block 0 base at 0x41000400
(II) ATI(0): Memory manager initialized to (0,0) (1024,2047)
(II) ATI(0): Largest offscreen area available: 1024 x 1279
(II) ATI(0): Will use 511 kB of offscreen memory for XAA
(II) ATI(0): Will use back buffer at offset 0x37f000
(II) ATI(0): Will use depth buffer at offset 0x67f000
(II) ATI(0): Using XFree86 Acceleration Architecture (XAA)
	Screen to screen bit blits
	Solid filled rectangles
	8x8 mono pattern filled rectangles
	Indirect CPU to Screen color expansion
	Solid Lines
	Offscreen Pixmaps
	Setting up tile and stipple cache:
		32 128x128 slots
		10 256x256 slots
(==) ATI(0): Backing store disabled
(==) ATI(0): Silken mouse enabled
(**) Option "dpms" "true"
(**) ATI(0): DPMS enabled
(WW) ATI(0): Option "VendorName" is not used
(WW) ATI(0): Option "ModelName" is not used
(II) ATI(0): X context handle = 0x1
(II) ATI(0): [drm] installed DRM signal handler
(II) ATI(0): [DRI] installation complete
(II) ATI(0): [drm] Added 128 16384 byte DMA buffers
(II) ATI(0): [drm] Mapped 128 DMA buffers at 0xb6853000
(II) ATI(0): [drm] Installed interrupt handler, using IRQ 11
(II) ATI(0): Direct rendering enabled
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: drmOpenMinor returns 9
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(WW) AIGLX: 3D driver claims to not support visual 0x23
(WW) AIGLX: 3D driver claims to not support visual 0x24
(WW) AIGLX: 3D driver claims to not support visual 0x25
(WW) AIGLX: 3D driver claims to not support visual 0x26
(WW) AIGLX: 3D driver claims to not support visual 0x27
(WW) AIGLX: 3D driver claims to not support visual 0x28
(WW) AIGLX: 3D driver claims to not support visual 0x29
(WW) AIGLX: 3D driver claims to not support visual 0x2a
(WW) AIGLX: 3D driver claims to not support visual 0x2b
(WW) AIGLX: 3D driver claims to not support visual 0x2c
(WW) AIGLX: 3D driver claims to not support visual 0x2d
(WW) AIGLX: 3D driver claims to not support visual 0x2e
(WW) AIGLX: 3D driver claims to not support visual 0x2f
(WW) AIGLX: 3D driver claims to not support visual 0x30
(WW) AIGLX: 3D driver claims to not support visual 0x31
(WW) AIGLX: 3D driver claims to not support visual 0x32
(II) AIGLX: Loaded and initialized /usr/lib/dri/mach64_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/input/mice"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: Core Pointer
(**) Option "Device" "/dev/input/mice"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5 6 7"
(**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
(**) Mouse0: Buttons: 11
(**) Option "CoreKeyboard"
(**) Keyboard0: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Keyboard0: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    xkb_keycodes             { include "xfree86+aliases(qwerty)" };
    xkb_types                { include "complete" };
    xkb_compatibility        { include "complete" };
    xkb_symbols              { include "pc(pc105)+us" };
    xkb_geometry             { include "pc(pc105)" };
(--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded
    xkb_keycodes             { include "xfree86+aliases(qwertz)" };
    xkb_types                { include "complete" };
    xkb_compatibility        { include "complete" };
    xkb_symbols              { include "pc(pc105)+de+inet(armada)" };
    xkb_geometry             { include "pc(pc104)" };
(II) ATI(0): Largest offscreen area available: 1024 x 1279
(II) ATI(0): Largest offscreen area available: 1024 x 1279

# lsmod
Module                  Size  Used by
mach64                 44928  1 
...
drm                    57880  2 mach64
...
intel_agp              18972  1 
agpgart                21320  2 drm,intel_agp
...

# glxinfo | grep rendering
direct rendering: No

# lspci
00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)
00:04.0 CardBus bridge: Texas Instruments PCI1225 (rev 01)
00:04.1 CardBus bridge: Texas Instruments PCI1225 (rev 01)
00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
00:07.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03)
00:08.0 Multimedia audio controller: ESS Technology ES1978 Maestro 2E (rev 10)
00:09.0 Communication controller: Agere Systems WinModem 56k (rev 01)
01:00.0 VGA compatible controller: ATI Technologies Inc Rage Mobility P/M AGP 2x (rev 64)


# startx -- :2&
....
(EE) ATI(0): [dri] DRIScreenInit Failed
(EE) AIGLX: Screen 0 is not DRI capable
....


Kann mir bitte jemand sagen ,was ich falsch mache?
Habe x11-base/x11-drm installiert.
In der make.conf ist VIDEO_CARDS="r128 mach64 ati vesa" eingestellt

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »TheX« (24.03.2007, 10:29)


2

13.02.2007, 11:13

Poste mal die Ausgabe von

Quellcode

1
LIBGL_DEBUG=verbose glxgears


Ich musste in /usr/lib/xorg/modules/dri einen Symlink auf die Dateien in /usr/lib/dri machen (bzw. kopieren)
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

3

13.02.2007, 15:52

Hi,

ich habe jetzt alle Dateien die jeweils nicht drin waren von /usr/lib/dri nach /usr/lib/xorg/modules/dri und umgekehrt kopiert.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/mach64_dri.so
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/mach64_dri.so
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
513 frames in 6.3 seconds = 81.379 FPS


Kannst du damit was anfangen? Ich nicht.

Denn laut der Ausgabe oben:

Quellcode

1
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)


Aber:

Quellcode

1
2
3
4
5
# echo $LIBGL_DRIVERS_PATH
$LIBGL_DRIVERS_PATH::/usr/lib/xorg/modules/dri

# ls /usr/lib/xorg/modules/dri
atiogl_a_dri.so  fglrx_dri.so  mach64_dri.so  r128_dri.so


Hmm, was jetzt?

4

13.02.2007, 16:49

Das du das jetzt ein ein code-Tag im ersten Beitrag gepackt hast macht es schon leserlicher. Wenn du jetzt für die unterschiedlichen Dinger noch eigene verwenden könntest.

Quellcode

1
/usr/lib/xorg/modules/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context

und ein revdep-rebuild will dir da nichts neu bauen? ?(
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

5

13.02.2007, 17:27

Ne, der will nix neu bauen.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# revdep-rebuild
Configuring search environment for revdep-rebuild

Checking reverse dependencies...

Packages containing binaries and libraries broken by a package update
will be emerged.

Collecting system binaries and libraries... done.
  (/root/.revdep-rebuild.1_files)

Collecting complete LD_LIBRARY_PATH... done.
  (/root/.revdep-rebuild.2_ldpath)

Checking dynamic linking consistency...
 done.
  (/root/.revdep-rebuild.3_rebuild)

Assigning files to ebuilds... Nothing to rebuild

Evaluating package order... done.
  (/root/.revdep-rebuild.5_order)

Dynamic linking on your system is consistent... All done.

6

13.02.2007, 18:36

Kannst du die Dateien, die nun nicht mehr am originales Platz sind mal löschen und Mesa neu mergen?
Dann nochmal das mit dem Verbose machen?
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

7

14.02.2007, 08:36

Hi,

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- !empty dir /usr/include
--- !empty dir /usr
>>> Regenerating /etc/ld.so.cache...
>>> Original instance of package unmerged safely.

Switching to ati OpenGL interface... done
>>> Regenerating /etc/ld.so.cache...
>>> media-libs/mesa-6.5.1-r1 merged.
>>> Recording media-libs/mesa in "world" favorites file...

>>> No packages selected for removal by clean
>>> Auto-cleaning packages...

>>> No outdated packages were found on your system.


So, Mesa neu gemerged, aber:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/mach64_dri.so
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL error: unable to find driver: mach64_dri.so
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/mach64_dri.so
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL error: unable to find driver: mach64_dri.so



*HEUL*

8

14.02.2007, 09:59

Das war ja jetzt klar, dass das kommt. Dir nicht? ;-)

Quellcode

1
LIBGL_DRIVERS_PATH=/usr/lib/dri LIBGL_DEBUG=verbose glxgears
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

9

14.02.2007, 10:10

Jo stimmt, ich hempel.

Aber trotzdem meckert er.

Guckst du.

Quellcode

1
2
3
4
5
6
7
8
9
10
# LIBGL_DRIVERS_PATH=/usr/lib/dri LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
393 frames in 5.0 seconds = 78.596 FPS

10

14.02.2007, 10:28

Kannst du es mal mit libdrm-2.3.0, mesa-6.5.2, x11-drivers/xf86-video-ati-6.8.3 (mit dri USE-Flag) (verwendest du die -ati? Ansonsten halt xf86-video-irgendwas) von testing probieren?

Wieso hast du eigentlich hier so viele drin?
VIDEO_CARDS="r128 mach64 ati vesa"

Und nochmal

Zitat

Das du das jetzt ein ein code-Tag im ersten Beitrag gepackt hast macht es schon leserlicher. Wenn du jetzt für die unterschiedlichen Dinger noch eigene verwenden könntest.


Und wegen dem Pfad hab ich nun sowas gemacht (dann muss man die Symlinks nicht machen)

Quellcode

1
2
# cat /etc/env.d/99my_envs
LIBGL_DRIVERS_PATH="$LIBGL_DRIVERS_PATH:/usr/lib/xorg/modules/dri:/usr/lib/dri"
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

11

14.02.2007, 11:05

Zitat

Original von maggu2810
Kannst du es mal mit libdrm-2.3.0, mesa-6.5.2, x11-drivers/xf86-video-ati-6.8.3 (mit dri USE-Flag) (verwendest du die -ati? Ansonsten halt xf86-video-irgendwas) von testing probieren?


Ja, habe das dri USE-Flag drin. Aber laut Portage sind die aktuellen Versionen: libdrm-2.0.2 mesa-6.5.1-r1 xf86-video-ati-6.6.3.
Wo trag ich ein, das er die testing Ebuilds verwendet? Hab mich bis jetzt immer an die Stable gehalten. Läuft das auch über package.keywords?

Zitat


Wieso hast du eigentlich hier so viele drin?
VIDEO_CARDS="r128 mach64 ati vesa"


Das r128 kann ich mir sparen, aber die mach64 und ati brauch ich doch wegen der Karte, oder nicht? Und Vesa hab ich als Fallback drin.

Zitat


Und nochmal

Zitat

Das du das jetzt ein ein code-Tag im ersten Beitrag gepackt hast macht es schon leserlicher. Wenn du jetzt für die unterschiedlichen Dinger noch eigene verwenden könntest.



Ich pack die doch in einzelne Tags, und zwar das was zusammengehört. Kann ja wohl schlecht jede Zeile in ein Tag packen, oder wie meinst du das?

12

14.02.2007, 11:14

Also in deinem ersten Post in dem Thread steht zum Beispiel (kleiner Ausschnitt):

Quellcode

1
2
3
4
5
6
7
8
9
Section "dri"
	Mode         0666
EndSection

# cat /var/log/Xorg.0.log
X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: UNKNOWN


Der obere Teil ist von der xorg.conf und dann kommt die Xorg.0.log. Das sollte man doch teilen.

Ja, trag die Pakete in /etc/portage/package.keywords ein.


Wenn du dir mal das xorg-server Ebuild anschaust, dann wirst du merken, dass es bei VIDEO_CARDS die Option ati gar nicht gibt.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
grep -i ati xorg-server-1.2.0.ebuild
# Copyright 1999-2007 Gentoo Foundation
                video_cards_mach64? ( >=x11-drivers/xf86-video-ati-6.6.0 )
                video_cards_r128? ( >=x11-drivers/xf86-video-ati-6.6.0 )
                video_cards_radeon? ( >=x11-drivers/xf86-video-ati-6.6.0 )
                video_cards_fglrx? ( >=x11-drivers/ati-drivers-8.27.10 )
        # localstatedir is used for the log location; we need to override the default
        # sysconfdir is used for the xorg.conf location; same applies
                real_card=${real_card/radeon/ati}
                # Switch to the xorg implementation.
        # Patch init script for fonts location


Dir sollte also ein "mach64" reichen (und als Rückhalt vielleicht noch ein vesa wenn man so will).
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

13

14.02.2007, 11:33

ok, libdrm und mesa will er updaten, aber xf86-video-ati scheint er trotzdem nicht updaten zu wollen.

Ausschnitt aus der package.keywords

Quellcode

1
2
3
x11-libs/libdrm
media-libs/mesa
x11-drivers/xf86-video-ati


Quellcode

1
2
3
4
5
6
7
8
9
10
# emerge -avuD world

These are the packages that would be merged, in order:

Calculating world dependencies... done!
[ebuild     U ] x11-libs/libdrm-2.3.0 [2.0.2] USE="-debug" 383 kB
[ebuild     U ] media-libs/mesa-6.5.2 [6.5.1-r1] USE="motif nptl -debug -doc -hardened -xcb%" VIDEO_CARDS="mach64 -i810 -mga -none -r128* -radeon -s3virge -savage -sis (-sunffb) -tdfx -trident -via" 3,218 kB
[ebuild     U ] kde-base/kdegraphics-3.5.5-r2 [3.5.5-r1] USE="arts imlib opengl xinerama* -debug -gphoto2 -kdeenablefinal -openexr -pdf -povray -scanner -tetex" 0 kB

Total: 3 packages (3 upgrades), Size of downloads: 3,601 kB


Muss ich das Paket noch wo anders eintragen?

14

14.02.2007, 11:35

Da hast du schon das aktuellste, da dieses stable ist.
Hab im letzten Beitrag auf Seite 1 ab und an was geändert, weiß nicht, ob das mit den Pfaden noch mitbekommen hast (damit keine Symlinks oder ähnliches machen musst).
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

15

14.02.2007, 13:08

Also, updates sind durch, aber keine Besserung.

Guckst du:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/mach64_dri.so
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/mach64_dri.so
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
632 frames in 5.9 seconds = 106.512 FPS


Hmmm, habe aber deinen Rat befolgt und danach nen neustart gemacht.

Quellcode

1
2
 # cat /etc/env.d/99my_envs
LIBGL_DRIVERS_PATH="$LIBGL_DRIVERS_PATH:/usr/lib/xorg/modules/dri:/usr/lib/dri"


Naja, dann halt so:

Quellcode

1
2
3
4
5
6
7
8
9
10
# LIBGL_DRIVERS_PATH=/usr/lib/dri LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
589 frames in 6.1 seconds = 96.155 FPS


Kann ja net sein, dass die Programmierer schlampig gearbeitet haben. Funzt ja scheinbar bei allen anderen, nu bei mir net.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »TheX« (14.02.2007, 13:11)


16

14.02.2007, 13:44

So, ich hab jetzt mal ein:

Quellcode

1
eselect opengl set xorg-x11


gemacht. Anschließend meldet glxgears:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
LIBGL_DRIVERS_PATH=/usr/lib/dri LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/tls/mach64_dri.so
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenByBusid: drmOpenMinor returns 6
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
Mach64 DRI driver expected DRM version 2.0.x but got version 1.0.0
libGL warning: 3D driver returned no fbconfigs.
libGL error: InitDriver failed
libGL error: reverting to (slow) indirect rendering
513 frames in 5.1 seconds = 101.517 FPS


Dann hab ich wieder:

Quellcode

1
eselect opengl set ati


und noch mal:

Quellcode

1
2
3
4
5
6
7
8
9
# LIBGL_DRIVERS_PATH=/usr/lib/dri LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
libGL error: dlopen /usr/lib/dri/mach64_dri.so failed (/usr/lib/dri/mach64_dri.so: undefined symbol: _glapi_tls_Context)
libGL error: unable to find driver: mach64_dri.so


Hmm. Die Ausgabe kommt als root und als normaler user (wohlgemerkt jedesmal im KDE Desktop vom normalen User).

Wenn ich einen Desktop unter dem root Account mit "startx -- :2&" starte.
Dann kommt:

Quellcode

1
2
3
# LIBGL_DEBUG=verbose glxgears
libGL error: XF86DRIQueryDirectRenderingCapable returned false
libGL error: XF86DRIQueryDirectRenderingCapable returned false


Hmm, jetzt bin ich verwirrt. Direct rendering geht trotzdem nicht. Logischerweise.

Oh man.

17

14.02.2007, 14:24

Na dann, natürlich musst du ein

Quellcode

1
eselect opengl set xorg-x11

machen

Quellcode

1
eselect opengl set ati

ist doch für die closed source (fglrx) Treiber.
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.

18

14.02.2007, 14:50

ok, funktioniert aber trotzdem nicht.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# LIBGL_DEBUG=verbose glxgears
libGL: XF86DRIGetClientDriverName: 6.6.3 mach64 (screen 0)
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/tls/mach64_dri.so
libGL: OpenDriver: trying $LIBGL_DRIVERS_PATH/mach64_dri.so
libGL error: dlopen $LIBGL_DRIVERS_PATH/mach64_dri.so failed ($LIBGL_DRIVERS_PATH/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/tls/mach64_dri.so
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/mach64_dri.so
libGL error: dlopen /usr/lib/xorg/modules/dri/mach64_dri.so failed (/usr/lib/xorg/modules/dri/mach64_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/dri/tls/mach64_dri.so
libGL: OpenDriver: trying /usr/lib/dri/mach64_dri.so
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenByBusid: drmOpenMinor returns 6
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
Mach64 DRI driver expected DRM version 2.0.x but got version 1.0.0
libGL warning: 3D driver returned no fbconfigs.
libGL error: InitDriver failed
libGL error: reverting to (slow) indirect rendering


Quellcode

1
2
# cat /var/log/Xorg.0.log | grep WW
(EE) AIGLX error: Calling driver entry point failed(EE) AIGLX: reverting to software rendering

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »TheX« (14.02.2007, 15:34)


19

15.02.2007, 10:16

bekommt man das irgendwie geregelt?

Quellcode

1
2
Mach64 DRI driver expected DRM version 2.0.x but got version 1.0.0
libGL warning: 3D driver returned no fbconfigs.

20

15.02.2007, 10:26

DRM im Kernel deaktivieren und x11-base/x11-drm-20060608 benutzen
"Erst nachdem wir alles verloren haben, haben wir die Freiheit, alles zu tun."
"It's only after we've lost everything, that we're free to do anything!"

Jabber: Die ID kann via PN erfragt werden.