From owner-freebsd-mobile@FreeBSD.ORG Sat Oct 1 05:36:16 2005 Return-Path: X-Original-To: freebsd-mobile@freebsd.org 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 03A9F16A41F for ; Sat, 1 Oct 2005 05:36:16 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B73E43D53 for ; Sat, 1 Oct 2005 05:36:14 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id j915Z7Ti055899; Fri, 30 Sep 2005 23:35:07 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 30 Sep 2005 23:35:51 -0600 (MDT) Message-Id: <20050930.233551.85392774.imp@bsdimp.com> To: guru@Sisis.de From: "M. Warner Losh" In-Reply-To: <20050930125924.GA1100@rebelion.Sisis.de> References: <20050930125924.GA1100@rebelion.Sisis.de> 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 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 30 Sep 2005 23:35:07 -0600 (MDT) Cc: freebsd-mobile@freebsd.org Subject: Re: 5.4-REL && pcmcia card Option N.V. Fusion UMTS Quad-GPRS X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Oct 2005 05:36:16 -0000 In message: <20050930125924.GA1100@rebelion.Sisis.de> guru@Sisis.de writes: : I've now enabled the debugging of PCMCIA and PC-card and I'm attaching : the snippets of /var/log/messages below, one for inserting this : GlobeTrotter Fusion Quad Lite UMTS card, and one for some older : 3COM network card; Looks like it is working to me. ugen0 attaching generally mans that the CardBus part of the card is working. You'll need to find out what driver supports your card. 0x0af0 + 0x6300 doesn't appear to be in any of them. You'll need to try each usb driver one at a time until you can find one that works. : what does the message 'cardbus1: Resource not specified in CIS ...' : means and where could I proceed? It means that there's a BAR in the card that has no resource entry in the CardBus CIS. I'd ignore it for now. : is there some good documentation : explaining the things PC-card / cardbus / ... in detail for FreeBSD? not really. Blame the author.... Oh wait, that's me. For your 3c589D, you'll need to kldload if_ep. This is one of the best supported 16-bit cards in the system... I have a bunch of them that I have deployed on my various laptops. : I saw that FreeBSD comes with a kernel module ucom.ko, but it : does not help to load it; ucom.ko is best viewed as a 'base class' for tty usb devices. Almost all usb com devices have very similar characteristics, only certain details differ... Warner