[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-11-21 Thread blokeinlondon

Thanks very much Bryce

Here is the correct info

parse-edid: parse-edid version 1.4.1
get-edid: get-edid version 1.4.1

Performing real mode VBE call
Interrupt 0x10 ax=0x4f00 bx=0x0 cx=0x0
Function supported
Call successful

VBE version 300
VBE string at 0x0 NVidia

VBE/DDC service about to be called
Report DDC capabilities

Performing real mode VBE call
Interrupt 0x10 ax=0x4f15 bx=0x0 cx=0x0
Function supported
Call successful

Monitor and video card combination does not support DDC1 transfers
Monitor and video card combination supports DDC2 transfers
0 seconds per 128 byte EDID block transfer
Screen is not blanked during DDC transfer

Reading next EDID block

VBE/DDC service about to be called
Read EDID

Performing real mode VBE call
Interrupt 0x10 ax=0x4f15 bx=0x1 cx=0x0
Function supported
Call successful

parse-edid: EDID checksum passed.

# EDID version 1 revision 1
Section Monitor
# Block type: 2:0 3:fc
Identifier GATEWAY CS700
VendorName GWY
ModelName GATEWAY CS700
# Block type: 2:0 3:fc
# Block type: 2:0 3:fd
HorizSync 30-70
VertRefresh 50-120
# Max dot clock not given
# DPMS capabilities: Active off:yes  Suspend:yes  Standby:no

Mode800x600   # vfreq 85.061Hz, hfreq 53.674kHz
DotClock56.25
HTimings800 832 896 1048
VTimings600 601 604 631
Flags   +HSync +VSync
EndMode
Mode800x600   # vfreq 75.000Hz, hfreq 46.875kHz
DotClock49.50
HTimings800 816 896 1056
VTimings600 601 604 625
Flags   +HSync +VSync
EndMode
# Block type: 2:0 3:fc
# Block type: 2:0 3:fd
EndSection

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-10-21 Thread Tony Pursell
I wrote a few days ago to say that the Live CD works OK with my setup.
I have now upgraded my installed version from Feisty to Gutsy and have
found that the splash screen and boot progress bar does not display
because the monitor complains that the settings are out of range.  In
Feisty the work around for this was to add a vesa code to the boot
parameters in GRUB.  This no longer works.  Does the live CD use special
boot parameters for this to work?

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-10-20 Thread Peter Clifton
Checkmate, take a look at the description of this bug, and try some of
the suggested things there.

sudo ddcprobe
(attach the output)

Perhaps install the read-edid package, and post the output from:
sudo get-edid

What is the output of:
sudo get-edid | parse-edid

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-10-20 Thread Peter Clifton
Ah, 64 bit. As I understand it, there are some issues probing monitor
info on 64 bit machines that people are working on. Hopefully it will be
resolved by Hardy.

People not replying probably means they don't know how to help.. that or
are jealous of your huge hi-res monitor ;)

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-10-20 Thread Checkmate
I doubt the 64-bitness is a problem here, because it got the EDID data
from my monitor. The vesa driver has to use an x86 emulator to run code
from the video BIOS, but I think it manages that fine (Fine here, but
not on my Tecra 8000).

I looked at the source code for ddcprobe (part of xresprobe) and found
the part where it calculates ctimings:

/* Standard timings. */
for(i = 0; i  8; i++) {
double aspect = 1;
unsigned int x, y;
unsigned char xres, vfreq;
xres = edid_info-standard_timing[i].xresolution;
vfreq = edid_info-standard_timing[i].vfreq;
if((xres != vfreq) ||
   ((xres != 0)  (xres != 1)) ||
   ((vfreq != 0)  (vfreq != 1))) {
switch(edid_info-standard_timing[i].aspect) {
case 0: aspect = 1; break; /*undefined*/
case 1: aspect = 0.750; break;
case 2: aspect = 0.800; break;
case 3: aspect = 0.625; break;
}
x = (xres + 31) * 8;
y = x * aspect;
printf(ctiming: [EMAIL PROTECTED], x, y,
   (vfreq  0x3f) + 60);
}
}

So that's how it detected 1680x1680 and 1440x1440: It thinks there's
an aspect ratio of 1 because of an undefined condition. Is this the
same code that Ubuntu uses to configure xorg.conf for the vesa driver?
If so, that would explain everything.

By the way, has anyone ever looked at edid-decode? It's awesome. It's in the 
xorg git tree here: 
http://gitweb.freedesktop.org/?p=xorg/app/edid-decode.git;a=summary
I tried it on my EDID and it correctly parsed EVERYTHING. The output is 
attached.

So, I know how people can help with this issue:
Make ddcprobe more like edid-decode. :)

** Attachment added: Output of edid-decode
   http://launchpadlibrarian.net/10104181/results.txt

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-10-20 Thread Checkmate
Attached is a patch for the file ddcprobe/ddcprobe.c in xresprobe.

Here is the REAL spec for the aspect field of a standard timing descriptor:
00: 16/10
01: 4/3
10: 5/4
11: 16/9

After applying this patch, it mostly works. There's no more 1680x1680 or
1440x1440 when I do sudo dpkg-reconfigure -phigh xserver-xorg.
However, I still have to edit xorg.conf and delete 1600x1200 to get X
to start.

This is an extremely important patch! If anyone knows a better place to
send it, please tell me!

** Attachment added: Interpret the aspect field correctly.
   http://launchpadlibrarian.net/10104432/aspect-fix.patch

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-10-08 Thread blokeinlondon

similar problem to Caroline

sudo ddcprobe
vbe: VESA 3.0 detected.
oem: NVidia
vendor: NVidia Corporation
product: NV17 () Board Chip Rev A2
memory: 131072kb
mode: 640x400x256
mode: 640x480x256
mode: 800x600x16
mode: 800x600x256
mode: 1024x768x16
mode: 1024x768x256
mode: 1280x1024x16
mode: 1280x1024x256
mode: 80x60 (text)
mode: 132x25 (text)
mode: 132x43 (text)
mode: 132x50 (text)
mode: 132x60 (text)
mode: 320x200x64k
mode: 320x200x16m
mode: 640x480x64k
mode: 640x480x16m
mode: 800x600x64k
mode: 800x600x16m
mode: 1024x768x64k
mode: 1024x768x16m
mode: 1280x1024x64k
mode: 1280x1024x16m
edid: 
edid: 1 1
id: 7658
eisa: GWY7658
serial: 1ffe
manufacture: 34 1997
input: sync on green, analog signal.
screensize: 33 24
gamma: 2.70
dpms: RGB, active off, suspend, no standby
timing: [EMAIL PROTECTED] Hz (VGA)
timing: [EMAIL PROTECTED] Hz (VESA)
timing: [EMAIL PROTECTED] Hz (VESA)
timing: [EMAIL PROTECTED] Hz (VESA)
timing: [EMAIL PROTECTED] Hz (VESA)
ctiming: [EMAIL PROTECTED]
ctiming: [EMAIL PROTECTED]
dtiming: [EMAIL PROTECTED]
dtiming: [EMAIL PROTECTED]
monitorname: GATEWAY CS70
monitorrange: 30-70, 50-120

I would of thought that this monitor just needs adding to bullet proof X
???

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-09-29 Thread Bryce Harrington
Checkmate:  wow, that's an insidious little bug you've found!  We'll
want to do some testing before we commit that.  Can you file a new bug
requesting that patch, and assign it to me?  I think if it causes no
other unusual behavior we can roll out that change for Gutsy.

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-09-05 Thread maikelmeyers
I don't know if this information helps, but I have to tell ;)
When I connect my beamer to my laptop with a long (5m) vga-cable, the desktop 
and beamer resolution is set to 800x600 and I don't get the resolution higher.
When I use a short cable (1.5m) everything works fine (1024x768).
So for now, I have to start with the short cable, and then after booting plug 
the long cable :D

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-08-18 Thread Chris
Hi Bryce,

Any news about this project?

Anything to test yet?

Chris

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-04-27 Thread jamings
Hi
My name is Ed   [EMAIL PROTECTED]   

I had a problem installing version 7.0.  I could not get a resolution
greater than 640 x 480.  This prevented me from installing the system,
therefore I could not do any of the tweaks that you folks had suggested.
My solution was to upgrade my video card and now get a resolution of
1024 x 768.  I was able to install the system and am using it at
present.  Thanks for all the support and hope this info is helpful.

Ed

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-04-27 Thread Bryce Harrington
** Tags added: metabug

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-04-26 Thread Bryce Harrington
Also see bug 8177 regarding vbetool.  Also has some good background into
the ddcprobe situation and describes some of the amd64 portability
problems.

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-04-25 Thread Olivier Lacroix
Hi, 
as this bug seems to be the one where to gather resolution autodetection 
problems, here I go.

Feisty failed to detect well the native resolution (1400x1050) of my
laptop screen. That is strange because xresprobe gave the right one. I
have no idea what went wrong.

It's an asus laptop based on a centrino dothan platform with an X600
graphic card

just tested it : xrandr got it right.

If you need any debug info, just ask for it.

Olivier

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 3731] Re: Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect

2007-04-24 Thread Bryce Harrington
** Description changed:

  I'm upgrade my system to ubuntu 5.10, after that, xorg can't load the
  correct resolution of the monitor ( 1024 x 768 ). I'ts only load
  640x480. I've used dpkg-recunfigure xserver-xorg, and insert the correct
  values, but don't work. The system is a Samsung 753dfx and a gforce mx
  200 32mb.
  
  [Update]
  A lot of people have reported this same bug.  Symptoms include:
  
* Your hardware supports a variety of resolutions, but Ubuntu only runs in 
640x480, 800x600, and/or 1024x768
* In the Monitor section of /etc/X11/xorg.conf, your monitor is listed as 
Generic Monitor, with HorizSync and VertRefresh rates that do not match your 
monitor
* `xresprobe driver` fails to work, or does not return accurate 
information for your hardware.  (You can find your driver by looking in 
/etc/X11/xorg.conf for the line Driver ...  It will be something like 'ati', 
'nv', 'nvidia', etc.  If you are using this on a laptop, run `xresprobe 
driver laptop`.
  
  The work-around for this bug is to edit /etc/X11/xorg.conf and replace
  the rates with ones that match your monitor.  The section should look
  something like this:
  
  Section Monitor
  Identifier  Generic Monitor
  VendorName   SNY
  ModelNameSDM-S91
  Option  DPMS
  HorizSync   28-80 # Important:  Use horizontal frequency for 
your monitor
  VertRefresh 48-75 # Important:  Use vertical frequency for 
your monitor
  EndSection
  
  Your monitor's documentation will tell you what the frequencies are.
  It's typically on a data sheet in the back of the book titled Input
  Signal or similar.  If you don't have the printed manual, you can
  usually also find it on the manufacturer's website.
  
+ Alternatively, you can try running `sudo dpkg-reconfigure xserver-xorg`
+ and specifying the refresh rates through that interface, if you wish to
+ avoid hand editing config files.  Note that this will replace your
+ xorg.conf file entirely.
+ 
  The proper fix for this bug is to identify WHY xresprobe isn't working,
  and for this we will need everyone's help.  Here are some ideas on why
  it may or may not work, that need testing:
  
* Does it work with DVI monitors?
* Does it work with KVM switches?
* Does it work with DVI-to-VGA adapters?
* Does it work with HD monitors?
* Does it work with multi-headed systems?
* Does it work on non-x86 systems (AMD64, PPC64, et al)?
  
  If you are having resolution problems, you can help by running xresprobe
  (see above) and if it fails, then try to think of anything a-typical
  about your system, and report your findings in the comments of this bug.

-- 
Xorg resolution falling back to 640x480 and/or 800x600 when h/v freqs incorrect
https://bugs.launchpad.net/bugs/3731
You received this bug notification because you are a member of Kubuntu
Team, which is a subscriber of a duplicate bug.

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs