From owner-freebsd-mobile@FreeBSD.ORG Thu Mar 23 16:31:33 2006 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 AF81F16A400 for ; Thu, 23 Mar 2006 16:31:33 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E3BC43D5D for ; Thu, 23 Mar 2006 16:31:29 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by xproxy.gmail.com with SMTP id h29so521776wxd for ; Thu, 23 Mar 2006 08:31:29 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=Gra5Qg+gAphZokKJRkgKhSH5Yrhnrk0wdZPUDCeb24cq+oXUSQ8cpkHKsO0ESj/47RSQEiVHuDF6blRAN61teDiXjb2o4IKTtA1asZG6XcBHHam8iSdUsZFGDdQXWyi3DJsX2XyRs7PHCwlWuvmHNYDTA8RiKXyAtDrnj+af3HM= Received: by 10.70.128.2 with SMTP id a2mr567924wxd; Thu, 23 Mar 2006 08:31:00 -0800 (PST) Received: by 10.70.27.14 with HTTP; Thu, 23 Mar 2006 08:31:00 -0800 (PST) Message-ID: <790a9fff0603230831h6ce8e7d2w1c5fa8eafb78f4ad@mail.gmail.com> Date: Thu, 23 Mar 2006 10:31:00 -0600 From: "Scot Hetzel" To: "Peter Jeremy" In-Reply-To: <20060323055408.GA679@turion.vk2pj.dyndns.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_8430_8501699.1143131460770" References: <790a9fff0603221033s2165f7bfyee8a07ee1e37689e@mail.gmail.com> <20060323055408.GA679@turion.vk2pj.dyndns.org> Cc: freebsd-mobile@freebsd.org Subject: Re: Broadcom 54g wireless card 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: Thu, 23 Mar 2006 16:31:33 -0000 ------=_Part_8430_8501699.1143131460770 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On 3/22/06, Peter Jeremy wrote: > On Wed, 2006-Mar-22 12:33:48 -0600, Scot Hetzel wrote: > >Broadcom 54g? 802.11b/g WLAN with 125HSM / SpeedBooster support > >PCI Slot 3 (PCI bus 6 device 2 function 0) > > Broadcom refuses to make programming information available. NDIS is your > only option. > guess I'll have to use NDIS for this one. > >none0 - Conexant AC97 Soft Data/Fax Modem with SmartCP > > Winmodem =3D=3D Junk > wasn't planning on using it any way. > >none1 - ATI Mobility Radeon Xpress 200 Series > > Supported by X.Org 6.9 > But it's not supported by our current radeon kernel module. I was able to patch sys/dev/drm/drm_pciids.h to get the card reconized. But I have no ideal if my patch is correct, or how to test it. Sent the information to the dri-devel mailing list at source forge. > >none3 - Texas Instruments PCIxx21 Integrated FlashMedia > >none4 - ? > > There's no driver for this. It's not clear whether the publicly > available datasheet is adequate to write a driver. It definitely > isn't adequate for all functions. > Guess I won't be using any FlashMedia under FreeBSD. Going thru the XP device manager, I was able to identify te none4 device: SDA Standard Compliant SD Host Controller PCI Slot 3 (PCI bus 6 device 4 function 4) Driver Provider:=09Microsoft Driver Version:=096.0.4096.1 c:\windows\system32\drivers\sdbus.sys (SecureDigital Bus Driver) But I guess there is no driver for this one either. Thanks for your help. Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. ------=_Part_8430_8501699.1143131460770 Content-Type: application/octet-stream; name=drm.patch Content-Transfer-Encoding: 7bit X-Attachment-Id: f_el5ar1hi Content-Disposition: attachment; filename="drm.patch" Index: sys/dev/drm/drm_pciids.h =================================================================== RCS file: /home/ncvs/src/sys/dev/drm/drm_pciids.h,v retrieving revision 1.2.2.2 diff -u -r1.2.2.2 drm_pciids.h --- sys/dev/drm/drm_pciids.h 14 Dec 2005 00:52:58 -0000 1.2.2.2 +++ sys/dev/drm/drm_pciids.h 23 Mar 2006 03:18:15 -0000 @@ -78,6 +78,7 @@ {0x1002, 0x5835, CHIP_RS300|CHIP_IS_IGP|CHIP_IS_MOBILITY, "ATI Radeon RS300 Mobility IGP"}, \ {0x1002, 0x5836, CHIP_RS300|CHIP_IS_IGP, "ATI Radeon RS300 IGP"}, \ {0x1002, 0x5837, CHIP_RS300|CHIP_IS_IGP, "ATI Radeon RS300 IGP"}, \ + {0x1002, 0x5955, CHIP_R200|CHIP_IS_MOBILITY, "ATI Mobility Radeon Xpress 200"}, \ {0x1002, 0x5960, CHIP_RV280, "ATI Radeon RV280 9200"}, \ {0x1002, 0x5961, CHIP_RV280, "ATI Radeon RV280 9200 SE"}, \ {0x1002, 0x5962, CHIP_RV280, "ATI Radeon RV280 9200"}, \ ------=_Part_8430_8501699.1143131460770--