NetBSD Problem Report #2695

From gnats  Tue Aug 13 12:44:29 1996
Received: from danish.hitl.washington.edu by pain.lcs.mit.edu (8.7.5/8.7.3) with ESMTP id MAA17129 for <gnats-bugs@gnats.netbsd.org>; Tue, 13 Aug 1996 12:35:15 -0400 (EDT)
Message-Id: <199608131628.JAA04008@danish.hitl.washington.edu>
Date: Tue, 13 Aug 1996 09:28:53 -0700 (PDT)
From: perseant@hitl.washington.edu
Reply-To: perseant@hitl.washington.edu
To: gnats-bugs@NetBSD.ORG
Subject: cgfour framebuffer will not work with X
X-Send-Pr-Version: 3.95

>Number:         2695
>Category:       port-sparc
>Synopsis:       X dies on cgfour
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    gnats-admin
>State:          closed
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Tue Aug 13 12:50:05 +0000 1996
>Closed-Date:    Tue Aug 13 20:53:37 +0000 1996
>Last-Modified:  Tue Aug 13 20:54:39 +0000 1996
>Originator:     
>Release:        1.2_BETA (-current tar as of yesterday, 96.08.12)
>Organization:
-----------------------------------------------------------------------------
  Konrad Schroder           http://www.hitl.washington.edu/people/perseant/
  System Administrator                         perseant@hitl.washington.edu
  Human Interface Technology Lab
  215 Fluke Hall (Box 352142)                         Voice: (206) 616-1478
  University of Washington, 98195                       FAX: (206) 543-5380
-----------------------------------------------------------------------------
>Environment:
System: NetBSD brezhnev 1.2_BETA NetBSD 1.2_BETA (HITL_SUN4) #7: Mon Aug 12 16:52:54 PDT 1996     perseant@toast:/usr/src_12/sys/arch/sparc/compile/HITL_SUN4 sparc

>Description:

The problem appears to be that X is allocating "too much" of the cgfour frame
buffer memory; and the current version of cgfour.c does not properly
accommodate its request.  I don't know enough about the frame-buffer itself
to know how high one can actually map it without going too far, but the patch
seems to work.

>How-To-Repeat:

Compile a kernel with cgfour0, boot it, and type

	X :0

>Fix:

These are (two lines') diffs to /usr/src/sys/arch/sparc/dev/cgfour.c:

*** cgfour.c.dist       Tue Apr  2 04:32:39 1996
--- cgfour.c    Tue Aug 13 09:30:02 1996
***************
*** 402,408 ****
                panic("cgfourmap");

        if ((u_int)off >= NOOVERLAY) {
!               off =- NOOVERLAY;

                /*
                 * X11 maps a huge chunk of the frame buffer; far more than
--- 402,408 ----
                panic("cgfourmap");

        if ((u_int)off >= NOOVERLAY) {
!               off -= NOOVERLAY; /* was '=-' a.k.a. '= -' ?! */

                /*
                 * X11 maps a huge chunk of the frame buffer; far more than
***************
*** 423,429 ****
                 * in enable plane
                 */
                poff = (off - START_ENABLE) + PFOUR_COLOR_OFF_ENABLE;
!       } else if ((u_int)off < END_COLOR) {
                /*
                 * in colour plane
                 */
--- 423,429 ----
                 * in enable plane
                 */
                poff = (off - START_ENABLE) + PFOUR_COLOR_OFF_ENABLE;
!       } else if ((u_int)off < 0x600000 ) /* more than there is? */ {
                /*
                 * in colour plane
                 */

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: thorpej 
State-Changed-When: Tue Aug 13 13:53:37 PDT 1996 
State-Changed-Why:  
Slightly modified patch applied.  Thanks!  This has been haunting me 
for a while! 
>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: query-full-pr,v 1.39 2013/11/01 18:47:49 spz Exp $
$NetBSD: gnats_config.sh,v 1.8 2006/05/07 09:23:38 tsutsui Exp $
Copyright © 1994-2007 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.