Gentoo Archives: gentoo-user

From: Richard Fish <bigfish@××××××××××.org>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Radeon 9200/Xorg refresh rate
Date: Fri, 18 Nov 2005 00:14:59
Message-Id: 7573e9640511171604y3b1da66cued410d930910fef@mail.gmail.com
In Reply to: [gentoo-user] Radeon 9200/Xorg refresh rate by Michael Kjorling
1 On 11/17/05, Michael Kjorling <michael@××××××××.com> wrote:
2 > -----BEGIN PGP SIGNED MESSAGE-----
3 > Hash: SHA1
4 >
5 > I have a ATI Radeon 9200 graphics card (lspci says ATI Technologies,
6 > device 5940, rev 01) which currently drives my monitor at 48.5 kHz 60
7 > Hz 1024x768 using x11-base/xorg-x11-6.8.2-r4 and the "radeon" driver.
8 > I would like to raise the refresh rate to 75 Hz. How do I do that?
9 >
10 > Various Google searches have turned me up empty, except that possibly
11 > the answer lies in the ModeLine used. Is that correct and if so, what
12 > values would I need to tune to adjust the refresh rate?
13 >
14 > /etc/X11/xorg.conf says that the vertical refresh rate is "50-90" Hz.
15
16 Current x.org versions should be able to auto-detect the VertRefresh
17 and HorizSync settings, as well as appropriate modelines. So I would
18 comment out all such stuff from your xorg.conf file, and see if the
19 autodetection will work.
20
21 Probably the easiest way to do this will be:
22
23 mv /etc/X11/xorg.conf /etc/X11/xorg.conf.save
24 X -configure
25 (follow the printed instructions for testing the generated config)
26 mv <path from X -configure> /etc/X11/xorg.conf
27
28 You may have to change /dev/mouse to /dev/input/mice in the generated
29 config before it will work.
30
31 Then you can diff the generated config with your old one, and see what
32 settings you want/need to keep.
33
34 For reference, my Monitor and Screen sections contain just:
35
36 Section "Monitor"
37 Identifier "LCD"
38 VendorName "ASUS"
39 ModelName "1680 x 1050"
40 # DisplaySize 331 207
41 EndSection
42
43 Section "Screen"
44 Identifier "LCD"
45 Device "X600"
46 Monitor "LCD"
47 DefaultDepth 24
48 SubSection "Display"
49 Viewport 0 0
50 Depth 8
51 EndSubSection
52 SubSection "Display"
53 Viewport 0 0
54 Depth 16
55 EndSubSection
56 SubSection "Display"
57 Viewport 0 0
58 Depth 24
59 EndSubSection
60 EndSection
61
62 --
63 gentoo-user@g.o mailing list

Replies

Subject Author
Re: [gentoo-user] Radeon 9200/Xorg refresh rate Michael Kjorling <michael@××××××××.com>