From owner-freebsd-mobile@FreeBSD.ORG Fri May 23 08:06:00 2003 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 CB8BE37B401 for ; Fri, 23 May 2003 08:06:00 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4E4B43F85 for ; Fri, 23 May 2003 08:05:59 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h4NF04kA027595; Fri, 23 May 2003 09:00:05 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 23 May 2003 08:59:21 -0600 (MDT) Message-Id: <20030523.085921.09571203.imp@bsdimp.com> To: chops@cinci.rr.com From: "M. Warner Losh" In-Reply-To: <3ECD0A64.3070606@cinci.rr.com> References: <3ECD0A64.3070606@cinci.rr.com> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-mobile@freebsd.org Subject: Re: any luck with 02micro OZ6933 CardBus Controller X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 May 2003 15:06:01 -0000 In message: <3ECD0A64.3070606@cinci.rr.com> Mike B writes: : My toshiba satellite 1905 has an 02micro OZ6933 cardbus controller and I : can't seem to get it working. I have pcic, pccard, and cardbus compiled : into my kernel. When I insert a card I get the following message : : May 22 13:16:04 1905 kernel: pccard0: 00 CD 3e : May 22 13:16:04 1905 kernel: pccard0: enqueing INSERTION event : May 22 13:16:05 1905 kernel: pccard0: insertion event : May 22 13:16:05 1905 kernel: pccard0: pcic_chip_socket_enable cardtype mem : May 22 13:16:05 1905 kernel: pcic_chip_mem_map window 0 bus d2800+0+400 at : May 22 13:16:05 1905 kernel: pcic_chip_do_mem_map window 0: 00d2 80d2 3f2d : May 22 13:16:05 1905 kernel: pcic_chip_do_mem_map window 0: 00d2 80d2 7f2d : May 22 13:16:05 1905 kernel: pcic_chip_do_mem_map window 0: 00d2 80d2 7f2d : May 22 13:16:05 1905 kernel: pccard0: Card has no functions! : : Any ideas about how to get it working, it does gives the same message : with either my 802.11b card or my compact flash reader. Thanks in advance. Can you add hw.cardbus.cis_debug=1 in your /boot/loader.conf file and tell me what prints. You should see something like: cbb1: card inserted: event=0x00000000, state=30000910 pccard1: chip_socket_enable cbb_pcic_socket_enable: cbb1: cbb_power: CARD_VCC_0V and CARD_VPP_0V [44] cbb1: cbb_power: CARD_VCC_3V and CARD_VPP_VCC [11] pccard1: read_cis cis mem map d4a08000 pccard1: CIS tuple chain: CISTPL_DEVICE type=null speed=null 01 03 00 00 ff ... So it looks like you might be using pcic, which won't work. Take pcic out of your kernel and add cbb instead. O2 micro is a pci cardbus bridge. This is for current. For stable, do a pccardc dumpcis. Warner