From owner-freebsd-mobile@FreeBSD.ORG Sun Feb 27 22:55:05 2005 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9F7D16A4CE for ; Sun, 27 Feb 2005 22:55:05 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D4D843D54 for ; Sun, 27 Feb 2005 22:55:05 +0000 (GMT) (envelope-from jamesd.earl@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so720528wri for ; Sun, 27 Feb 2005 14:55:04 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=smuE/x2gbBThCa6NZmfiHDmSTfz49saesGWkkEHCBEX78rS1D0tkXqcVp3JE/KL8h+ZccXdZYXnk7I1VBbiJvaLYCcI1rbjvqJkZxkCz1rN+xueNNTuw/fM93viOLx9E1cEGObMeXRaI2s6b/vwQmoBn77tEdbmViB/kzzBNH6k= Received: by 10.54.46.2 with SMTP id t2mr28998wrt; Sun, 27 Feb 2005 14:55:04 -0800 (PST) Received: by 10.54.54.57 with HTTP; Sun, 27 Feb 2005 14:55:04 -0800 (PST) Message-ID: Date: Sun, 27 Feb 2005 15:55:04 -0700 From: James Earl To: freebsd-mobile@freebsd.org In-Reply-To: <42222FB8.30808@nrw.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <42222FB8.30808@nrw.ca> Subject: Re: Adding Sierra AirCard support from OpenBSD X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: James Earl List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Feb 2005 22:55:05 -0000 On Sun, 27 Feb 2005 15:38:16 -0500, Mike Goumans wrote: > James Earl wrote: > > >Hi, > > > >I'm trying to port OpenBSD's support for the Sierra AirCard's over to > >FreeBSD. I don't really know what I'm doing... but I just had to give > >it a shot. I have three AirCard 555's at the moment. > > > > > I fought and fought and fought with this. > > I was about to give up, and suddenly someone suggested something that > worked. > > This are the pccard_cis_quirks entries I used > > static struct pccard_function pccard_a555_func0 = { > 0, /* function number */ > PCCARD_FUNCTION_SERIAL, > 0x23, /* last cfe number */ > 0x00, /* ccr_base */ > 0x73, /* ccr_mask */ > }; > > struct pccard_config_entry pccard_a555_func0_cfe0 = { > 0x20, > PCCARD_CFE_IO8 | PCCARD_CFE_IRQLEVEL, > PCCARD_IFTYPE_IO, > 1, /* num_iospace */ > 3, /* iomask */ > { { 0x07, 0x3e8 } }, /* iospace */ > 0x3fbc, /* irqmask */ > 0, /* num_memspace */ > { }, /* memspace */ > 0, /* maxtwins */ > }; > > and pccarddevs > > vendor SIERRAWIRELESS 0x0192 Sierra Wireless > > /* Sierra Wireless */ > product SIERRAWIRELESS A555 0xa555 Sierra Wireless AirCard 555 > > It gets detected as an 8250, but it works ok, I think it just that it > cant find the proper uart. > > It is SLOOOOOOW I get 3k/sec on a good day. Alot less on a bad day. > > I ended up junking it and replacing it with an external multi-tech > modem. Its much faster, its sturdier and it works with incoming as well > as outgoing calls. > > And it was cheaper than replacing the A555. > > Sierra wireless has no way of registering an incoming call via the > serial interface, only the network interface with cns. > The antenna and its jack also came off the card after spending a few > hours in my trunk. > > Sorry for the messy way the information is , I dont have that card > anymore so Im just going over it from the notes I had made. Hi Mike, Thank you! Changing the iomask and iospace did the trick.