From owner-freebsd-current@FreeBSD.ORG Thu Jun 3 23:50:53 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAD3216A4D2 for ; Thu, 3 Jun 2004 23:50:53 -0700 (PDT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 643B243D3F for ; Thu, 3 Jun 2004 23:50:51 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i546lbxO055224; Fri, 4 Jun 2004 00:47:37 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 04 Jun 2004 00:47:43 -0600 (MDT) Message-Id: <20040604.004743.38326324.imp@bsdimp.com> To: j.e.drews@att.net From: "M. Warner Losh" In-Reply-To: <060420040512.28846.40C004B80004C4ED000070AE21603760219C990A9D0BD20AD206@att.net> References: <060420040512.28846.40C004B80004C4ED000070AE21603760219C990A9D0BD20AD206@att.net> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-current@freebsd.org Subject: Re: PCMCIA Modem causes hang on boot X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jun 2004 06:50:53 -0000 In message: <060420040512.28846.40C004B80004C4ED000070AE21603760219C990A9D0BD20AD206@att.net> j.e.drews@att.net writes: : FreeBSD 5.2-CURRENT #0: Tue Jun 1 00:00:38 CDT 2004 : FreeBSD CURRENT hangs on boot when I use this PCMCIA MODEM. The : laptop will not respond to CTRL C. I have to do a hard : reboot. I get the following messages just before the hang: : : sio4 at port 0x2f8-0x2ff irq 11 : function 0 config 23 on pccard 0 : sio4: Type 8250 or not responding : sio4: Unable to activate interrupt in fast mode - using normal mode. : : After this last message the laptop hangs and I must press the power : off button. Any advice on what may be wrong would be : appreciated. The manufacturer claims that it uses a Hayes : AT compatible command set. Theis PCMCIA modem also works under Linux. sounds like a possible interrupt storm, or the modem isn't getting mapped to the address we think it is (see the 8250 message, there are no 8250 pcmcia modems), so the first interrupt we get, we spin forever in siointr. I think I'm going to put code into the pcmcia attachment that actively fails to attach to 8250's on pcmcia. Can I get a more complete dmesg? I assume that the sources are from June 1? Warner