<br><br><div class="gmail_quote">On Sat, Dec 20, 2008 at 6:58 PM, Greg Stark <span dir="ltr"><<a href="mailto:gsstark@mit.edu">gsstark@mit.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I'm running into this intel driver limit on a i945GM card:<br><br>xrandr: screen cannot be larger than 1280x1824 (desired size 1920x1824)<br><br>I've recompiled from source from<br>git://<a href="http://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel" target="_blank">anongit.freedesktop.org/git/xorg/driver/xf86-video-intel</a> but it seems at<br>


least the master branch still has this problem. Are there plans to work around<br>this problem? Is there a branch containing fixes for it?<br><br>I know it's possible because in Windows this card happily drives this monitor<br>


at 1920x1200 for a total desktop size of 3200x1200.<br>
</blockquote></div><br><br>I'm not sure if this is related but I see the following code in i830_driver.c:<br><br>    /* See i830_exa.c comments for why we limit the framebuffer size like this.<br>     */<br>    if (IS_I965G(pI830)) {<br>
    max_width = 8192;<br>    max_height = 8192;<br>    } else {<br>    max_width = 2048;<br>    max_height = 2048;<br>    }<br>    xf86CrtcSetSizeRange (pScrn, 320, 200, max_width, max_height);<br><br>There is no such related comments in i830_exa.c as the comment here claims. (In fact there are hardly any comments in i830_exa.c at all). Is this code just obsolete? What will happen if I just put a more reasonable set of values here?<br>