From owner-freebsd-hackers@FreeBSD.ORG Fri Feb 23 04:13:46 2007 Return-Path: X-Original-To: freebsd-hackers@freebsd.org Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8244F16A409 for ; Fri, 23 Feb 2007 04:13:46 +0000 (UTC) (envelope-from dakfreebsd@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.234]) by mx1.freebsd.org (Postfix) with ESMTP id 3EE7513C47E for ; Fri, 23 Feb 2007 04:13:46 +0000 (UTC) (envelope-from dakfreebsd@gmail.com) Received: by wr-out-0506.google.com with SMTP id 69so471298wra for ; Thu, 22 Feb 2007 20:13:45 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=IVY80Prv+PcQpNmqo5XSAkD0zyuYJSHYWFvuc5buD1WINo8Ua0XCf113N0qxAN2lI3cpYOE2zU9O2Zz3iPvDkaOJUNKWoDYNsx53x+5VLX0PjSYdBkTuu4eRIFcJg192Q8n4p4DDUl7OqqBsxinn3w93GCdHn6QhYxaV5hwHq/A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=YGnr7oZberl/PXnoQhd1FFnCBP58nUS5Nz+qhmpBb9xEeQ8xp/Z0MIlNoko93TYAbiqHqzCuguhiaPxXEFEynCL5QtbWtbkv7+R9whK2oJPGQvfFnmhyNlsib2m/2GVQTUHV1xjnBYACNM6IK/V8Wlb26cNCw1OP/qctRtN1gf8= Received: by 10.114.171.1 with SMTP id t1mr637647wae.1172204025122; Thu, 22 Feb 2007 20:13:45 -0800 (PST) Received: by 10.114.157.16 with HTTP; Thu, 22 Feb 2007 20:13:45 -0800 (PST) Message-ID: <5df74baa0702222013w31a4ea16q6b7fe248f6c47f53@mail.gmail.com> Date: Thu, 22 Feb 2007 23:13:45 -0500 From: "DAK GHATIKACHALAM" To: cokane@cokane.org, freebsd-hackers@freebsd.org In-Reply-To: <346a80220702211957t691bc8e9y2bde48bc0d1d0d32@mail.gmail.com> MIME-Version: 1.0 References: <5df74baa0702181756o24be57c5r660bfb5f70db1194@mail.gmail.com> <346a80220702211957t691bc8e9y2bde48bc0d1d0d32@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Wireless card not being detected X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Feb 2007 04:13:46 -0000 On 2/21/07, Coleman Kane wrote: > > On 2/18/07, DAK GHATIKACHALAM wrote: > > > Hi Freebsd > > > > > > I have an issue with new card I need to make it work with freebsd, > > > > > > on /var/log/messages I get > > > > > > Feb 18 20:51:55 DAK kernel: pccard0: > > (manufacturer=0x0192, > > produc > > t=0x0710, function_type=6) at function 0 > > Feb 18 20:51:55 DAK kernel: pccard0: CIS info: Sierra Wireless, > > AC860, 3G > > Net > > work Adapter, R1 > > > > > > For some reason I dont understand why I get unknown card error > > > > Does any one has idea > > > > > > Thanks > > Dak > > > > This is a 3G wireless card (not Wi-Fi)... apparently it is supposed to be > supported by the uart or sio drivers. You should try searching google for: > freebsd "sierra wireless" AC860 > > There are apparently some sort of changes to the kernel that need to be > made. > Thanks a lot for your input. Yes I have made changes to /usr/src/sys/dev/pccard/pccard_quirks.c file added a static struct static struct pccard_function pccard_sierra_860_func0 = { 6, /* function number */ PCCARD_FUNCTION_SERIAL, 0x0006, /* last cfe number */ 0x00, /* ccr_base */ 0x07, /* ccr_mask */ }; static struct pccard_config_entry pccard_sierra_860_func0_cfe0 = { 0x0006, /* cfe number */ PCCARD_CFE_IO8 | PCCARD_CFE_IRQLEVEL, PCCARD_IFTYPE_IO, 1, /* num_iospace */ 3, /* iomask */ { { 0x3e8 , 0x3ee } }, /* iospace */ 0x3fbc, /* irqmask */ 0, /* num_memspace */ { }, /* memspace */ 0, /* maxtwins */ }; and as well /usr/src/sys/dev/pccard/pccarddevs file vendor SIERRA 0x0192 Sierra Wireless /* Sierra Wireless */ product SIERRA WIRELESS 0x0710 Sierra Wireless Card I added these the pccard device driver detects my card but on the detection of the card while booting the laptop on tI get he console I get Feb 22 22:51:12 DAK kernel: pccard0: Allocation failed for cfe 6 Feb 22 22:51:12 DAK kernel: pccard0: No config entry could be allocated. errors Do you have idea why I am getting there errors Thanks Dak -- > Coleman > > >