From owner-freebsd-x11@FreeBSD.ORG Sun Jul 3 00:32:30 2005 Return-Path: X-Original-To: x11@freebsd.org Delivered-To: freebsd-x11@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08ED016A428; Sun, 3 Jul 2005 00:32:30 +0000 (GMT) (envelope-from ps@mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31FB144359; Sun, 3 Jul 2005 00:18:49 +0000 (GMT) (envelope-from ps@mu.org) Received: by elvis.mu.org (Postfix, from userid 1000) id 4F1A361AE9; Sat, 2 Jul 2005 17:18:22 -0700 (PDT) X-Original-To: ps@mu.org Delivered-To: ps@mu.org Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by elvis.mu.org (Postfix) with ESMTP id CB46A5C97C for ; Sun, 30 Jan 2005 14:51:14 -0800 (PST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id EDFC0563F7; Sun, 30 Jan 2005 22:51:12 +0000 (GMT) (envelope-from owner-freebsd-current@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 1F0A316A4FC; Sun, 30 Jan 2005 22:51:09 +0000 (GMT) Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 508) id 7330716A4CF; Sun, 30 Jan 2005 22:51:05 +0000 (GMT) To: eta@lclark.edu, julian@freebsd.org In-Reply-To: <1107119941.849.5.camel@leguin> Message-Id: <20050130225105.7330716A4CF@hub.freebsd.org> From: julian@FreeBSD.ORG (Julian Elischer) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Sender: owner-freebsd-current@freebsd.org Errors-To: owner-freebsd-current@freebsd.org X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on elvis.mu.org X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.1 X-Spam-Level: Cc: x11@freebsd.org, current@freebsd.org Subject: Re: Inspiron 7500 vs x.org server X-BeenThere: freebsd-x11@freebsd.org List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Sun, 03 Jul 2005 00:32:31 -0000 X-Original-Date: Sun, 30 Jan 2005 22:51:05 +0000 (GMT) X-List-Received-Date: Sun, 03 Jul 2005 00:32:31 -0000 I tried the fix of changing vert to horz as mentionned in 1881 in the radeon driver but that didn't seem to fix anything. In particular I have the following code in radeon_driver.c now: static void RADEONGetPanelInfoFromReg (ScrnInfoPtr pScrn) { RADEONInfoPtr info = RADEONPTR(pScrn); unsigned char *RADEONMMIO = info->MMIO; CARD32 fp_vert_stretch = INREG(RADEON_FP_VERT_STRETCH); CARD32 fp_horz_stretch = INREG(RADEON_FP_HORZ_STRETCH); info->PanelPwrDly = 200; if (fp_vert_stretch & RADEON_VERT_STRETCH_ENABLE) { info->PanelYRes = (fp_vert_stretch>>12) + 1; } else { info->PanelYRes = (INREG(RADEON_CRTC_V_TOTAL_DISP)>>16) + 1; } if (fp_horz_stretch & RADEON_HORZ_STRETCH_ENABLE) { info->PanelXRes = ((fp_horz_stretch>>16) + 1) * 8; } else { info->PanelXRes = ((INREG(RADEON_CRTC_H_TOTAL_DISP)>>16) + 1) * 8; } if ((info->PanelXRes < 640) || (info->PanelYRes < 480)) { info->PanelXRes = 640; info->PanelYRes = 480; } xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Panel size %dx%d is derived, this may not be correct.\n" "If not, use PanelSize option to overwrite this setting\n", info->PanelXRes, info->PanelYRes); } Can you put that file somewhere I can download it? I don't have mime at teh moment.. I'm reading mail on hub.freebsd.org using 'mail' :-) (I edited the file by had and then cd'd to /usr/ports/x11-servers/xorg-servers and typed "make ; make install" it did a lot of stuff and installed it but the problem persists. > From eta@lclark.edu Sun Jan 30 21:19:03 2005 > Delivered-To: julian@freebsd.org > X-Authentication-Warning: leguin.anholt.net: anholt set sender to eta@lclark.edu using -f > Subject: Re: Inspiron 7500 vs x.org server > From: Eric Anholt > To: Julian Elischer > Cc: current@freebsd.org, x11@freebsd.org > In-Reply-To: <20050130205650.C370416A4CF@hub.freebsd.org> > References: <20050130205650.C370416A4CF@hub.freebsd.org> > Content-Type: multipart/mixed; boundary="=-hrD0wS1TBru356BqLxVW" > Date: Sun, 30 Jan 2005 13:19:01 -0800 > Mime-Version: 1.0 > X-Mailer: Evolution 2.0.2 FreeBSD GNOME Team Port > > > --=-hrD0wS1TBru356BqLxVW > Content-Type: text/plain > Content-Transfer-Encoding: 7bit > > On Sun, 2005-01-30 at 20:56 +0000, Julian Elischer wrote: > > Adding more to this.. x.org has this as bug 1109 > > It was erroneously linked as a duplicate of 1881 which has > > been fixed, however that was a bug in the radeon driver and this > > is the ati driver. > > The ati driver is just a little wrapper that loads radeon, r128, or > atimisc as appropriate. If you could verify that 1881's fix helps you, > I'll dump it into the xorg-server port (or I might anyway whenever I > commit to xorg-server next). A patch to xorg-server is attached. > > -- > Eric Anholt eta@lclark.edu > http://people.freebsd.org/~anholt/ anholt@FreeBSD.org _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"