From owner-freebsd-current@FreeBSD.ORG Sun Apr 30 17:45:17 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org 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 7039116A402 for ; Sun, 30 Apr 2006 17:45:17 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 229D743D46 for ; Sun, 30 Apr 2006 17:45:17 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.199] ([10.0.0.199]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id k3UHjGTb060807 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 30 Apr 2006 10:45:16 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <4454F7AC.3070904@errno.com> Date: Sun, 30 Apr 2006 10:45:16 -0700 From: Sam Leffler Organization: Errno Consulting User-Agent: Thunderbird 1.5.0.2 (Macintosh/20060308) MIME-Version: 1.0 To: rmgls@wanadoo.fr References: <20060430125904.E7BF47000091@mwinf1306.wanadoo.fr> In-Reply-To: <20060430125904.E7BF47000091@mwinf1306.wanadoo.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: iwi driver 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: Sun, 30 Apr 2006 17:45:17 -0000 rmgls@wanadoo.fr wrote: > hello all, > > since the last update dated > Sat Apr 29, (on current), > the iwi driver does not work: > cannot change any achannel, and no association! > the old version of the driver works. > > ... > ;* Copyright Sam Leffler */ > > previous: > /* $FreeBSD: src/sys/dev/iwi/if_iwi.c,v 1.27 2006/01/29 12:03:03 damien Exp $ */ > > the nic is seated onboard of a s5 Sony laptop. > dmesg: > ... > firmware_get: failed to load firmware image iwi_bss > iwi0: could not load firmware > > ... > > firmware_get: failed to load firmware image iwi_bss > iwi0: could not load firmware > > pciconf -lv > iwi0@pci6:11:0: class=0x028000 card=0x27538086 chip=0x42208086 rev=0x05 hdr=0x00 > vendor = 'Intel Corporation' > device = 'PRO/Wireless 2200BG Network Connection' > class = network > > Please can you tell me something to do about this? The firmware image file could not be loaded; verify it is present and named properly. The driver in cvs will accept either 2.4 or 3.x rev image formats so if you get the filename right it should just work. Unfortunately there was a period of time where the driver in cvs would only accept rev 3.0 firmware then the names associated with the firmware changed, etc. As a result some people have bogus firmware files on their system. When in doubt you can pre-load the firmware with kldload. Unfortunately firmware(9) doesn't have any debug msgs to show things like firmware images being registered. This would be useful for cases like this. Sam