From owner-freebsd-current@FreeBSD.ORG Mon Jun 18 10:03:13 2007 Return-Path: X-Original-To: freebsd-current@FreeBSD.org Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 131F716A41F for ; Mon, 18 Jun 2007 10:03:13 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from heff.fud.org.nz (203-109-251-39.static.bliink.ihug.co.nz [203.109.251.39]) by mx1.freebsd.org (Postfix) with ESMTP id 4716B13C455 for ; Mon, 18 Jun 2007 10:02:48 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 67D3A1CC58; Mon, 18 Jun 2007 22:02:38 +1200 (NZST) Date: Mon, 18 Jun 2007 22:02:38 +1200 From: Andrew Thompson To: Jeremie Le Hen Message-ID: <20070618100238.GD46910@heff.fud.org.nz> References: <20070616224703.GC63387@obiwan.tataz.chchile.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070616224703.GC63387@obiwan.tataz.chchile.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: freebsd-current@FreeBSD.org Subject: Re: Cannot use iwi(4): "could not load firmware iwi_bss" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 18 Jun 2007 10:03:13 -0000 On Sun, Jun 17, 2007 at 12:47:03AM +0200, Jeremie Le Hen wrote: > Hi, > > I'm trying to use iwi(4) on my laptop. > > % jarjarbinks:space$ kenv | grep intel > % legal.intel_iwi.license_ack="1" > > I first load iwi_bss and then iwi. Unfortunately I get the following > messages: > > % iwi0: mem 0xc8218000-0xc8218fff irq 11 at device 3.0 on pci6 > % iwi0: Ethernet address: 00:12:f0:2c:f3:6e > % iwi0: [ITHREAD] > % interrupt storm detected on "irq10:"; throttling interrupt source > % iwi0: timeout waiting for iwi_bss firmware initialization to complete > % iwi0: could not load boot firmware iwi_bss > % interrupt storm detected on "irq10:"; throttling interrupt source > % iwi0: timeout waiting for iwi_bss firmware initialization to complete > % iwi0: could not load boot firmware iwi_bss > % interrupt storm detected on "irq10:"; throttling interrupt source > % iwi0: timeout waiting for iwi_bss firmware initialization to complete > % iwi0: could not load boot firmware iwi_bss > % interrupt storm detected on "irq10:"; throttling interrupt source > % iwi0: timeout waiting for iwi_bss firmware initialization to complete > % iwi0: could not load boot firmware iwi_bss The driver will wait one second for the firmware to load, it is possible that the interrupt storm is affecting this. You can always increase the iwi timeout on line 2516 of if_iwi.c and see what happens. Change hz to hz * 3 perhaps. Andrew