From owner-freebsd-current Mon Nov 26 5:37:19 2001 Delivered-To: freebsd-current@freebsd.org Received: from eken2.eken.phys.nagoya-u.ac.jp (eken2.eken.phys.nagoya-u.ac.jp [133.6.121.2]) by hub.freebsd.org (Postfix) with ESMTP id CFC6F37B417; Mon, 26 Nov 2001 05:37:14 -0800 (PST) Received: from e-ppp0.eken.phys.nagoya-u.ac.jp (e-ppp9.eken.phys.nagoya-u.ac.jp [133.6.121.59]) by eken2.eken.phys.nagoya-u.ac.jp (8.11.6+3.4W/3.7W-E) with ESMTP id fAQDbDB17166; Mon, 26 Nov 2001 22:37:13 +0900 (JST) Date: Mon, 26 Nov 2001 22:39:00 +0900 Message-ID: <86herh4por.wl@eken.phys.nagoya-u.ac.jp> From: Yoichi NAKAYAMA To: Jonathan Chen , Warner Losh Cc: current@FreeBSD.ORG Subject: Re: 3CXFE575CT-JP with NEWCARD doesn't work In-Reply-To: References: <86n14cms6f.wl@e-ppp8.eken.phys.nagoya-u.ac.jp> <20010905114730.C28669@enterprise.spock.org> User-Agent: Wanderlust/2.7.6 (Too Funky) EMIKO/1.14.1 (Choanoflagellata) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.5 (beta3) (asparagus) (i386-unknown-freebsd4.3) Organization: E-ken, Dept. of Physics, Nagoya University, JAPAN X-Face: wLZki+KbGjgKe0,<&3g*rA|R**vj[a8L%[v]ecJh1L(Uqm|LBx;v7Nq7n%?0d.aS]F#[~C\!{m?m,C&#U5}$_pZvBR>5VmX1Ol0`P\M-U8`sUF<5Quj'z&zzW8r|Zl9#W7Wut3duYzpKrP{n+AbarKtJ!i"Al7]P;-?[=iBZa*]r=>C':0~JECx]IH+RXq=/hUX}MB9e]oQKBxsDd/ X-Face-Version: X-Face utility v1.3.6.13 - "Eleanor Rigby (remix)" X-Fortune: =?ISO-2022-JP?B?GyRCOiNGfCROJF8kOiQsJGE6QiRPOD08QiROTngbKEI=?= =?ISO-2022-JP?B?GyRCJCskaUYoSHIkNyRGJDckXiQkJD0kJiRKRnwhIxsoQg==?= X-Weather: =?ISO-2022-JP?B?GyRCTEBGfCROMCZDTjgpJE9GXjt+ITlAMiRHJDkbKEI=?= / =?ISO-2022-JP?B?GyRCTEBGfCROOzA9RTgpJE9GXjt+ITlAMiRHJDkbKEI=?= MIME-Version: 1.0 (generated by EMIKO 1.14.1 - "Choanoflagellata") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > At Wed, 5 Sep 2001 11:47:30 -0400, > Jonathan Chen wrote: > > On Mon, Sep 03, 2001 at 08:26:16PM +0900, Yoichi NAKAYAMA wrote: > > > I just cvsup'ed and buildkernel with NEWCARD. > > > Then my note book doesn't recognize MAC address of the card(3CXFE575CT-JP) > > > following are concerning log for new kernel and old kernel(cvsup'ed 2-3 weeks ago) > > > > This looks like it could have been caused by my moving the default io > > range around. The IO port assigned to your card could be in conflict with > > something else. Try the following patch, which reverts to the old range. > > > > It would be really nice if the pci bus code could just do these assignments > > automagically... > > > > Index: pccbb.c > > =================================================================== > > RCS file: /export/ncvs/src/sys/dev/pccbb/pccbb.c,v > > retrieving revision 1.24 > > diff -u -r1.24 pccbb.c > > --- pccbb.c 2001/08/27 11:23:05 1.24 > > +++ pccbb.c 2001/09/05 15:44:45 > > @@ -1243,8 +1243,8 @@ > > start = end = tmp; > > break; > > case SYS_RES_IOPORT: > > - if (start <= 0x1000) > > - start = 0x1000; > > + if (start <= 0x3000) > > + start = 0x3000; > > if (end < start) > > end = start; > > break; I think this trouble can be easily solved if we can controll PCCBB_START_IO as we can controll PCCBB_START_MEM by last change: ; revision 1.31 ; date: 2001/11/26 07:17:09; author: imp; state: Exp; lines: +16 -5 ; Make the start memory address that we use configurable via a boot ; loader parameter. This allows us to more easily boot on big memory ; configuration machines. hw.pccbb.start_mem. Reflect this in a sysctl ; so we can read it from userland. Is it my misunderstanding? -- Yoichi Nakayama To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message