From jgreco@aurora.sol.net  Sat Jan 12 18:27:28 2008
Return-Path: <jgreco@aurora.sol.net>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5104B16A418
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 12 Jan 2008 18:27:28 +0000 (UTC)
	(envelope-from jgreco@aurora.sol.net)
Received: from mail1.sol.net (mail1.sol.net [206.55.64.72])
	by mx1.freebsd.org (Postfix) with ESMTP id 8C5FA13C442
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 12 Jan 2008 18:27:22 +0000 (UTC)
	(envelope-from jgreco@aurora.sol.net)
Received: from aurora.sol.net (aurora.sol.net [206.55.65.130])
	by mail1.sol.net (8.11.0/8.11.0/SNNS-1.04) with ESMTP id m0CHJGZ12129
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 12 Jan 2008 11:19:26 -0600 (CST)
Received: (from jgreco@localhost)
	by aurora.sol.net (8.12.8p1/8.12.9/Submit) id m0CHJ4li007860;
	Sat, 12 Jan 2008 11:19:04 -0600 (CST)
Message-Id: <200801121719.m0CHJ4li007860@aurora.sol.net>
Date: Sat, 12 Jan 2008 11:19:04 -0600 (CST)
From: Joe Greco <jgreco@ns.sol.net>
Reply-To: Joe Greco <jgreco@ns.sol.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: PCMCIA card not attached to driver
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         119606
>Category:       kern
>Synopsis:       [sio] [patch] PCMCIA card not attached to driver
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    eadler
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jan 12 18:30:01 UTC 2008
>Closed-Date:    Fri Jan 13 03:50:01 UTC 2012
>Last-Modified:  Fri Jan 13 03:50:01 UTC 2012
>Originator:     Joe Greco
>Release:        FreeBSD 6.3-RC2 i386
>Organization:
sol.net Network Services - Solaria Public Access UNIX
>Environment:
System: FreeBSD 6.3-RC2 i386, GENERIC kernel

>Description:

Sony Ericsson GC89 Wifi/EDGE/GPRS card not attached to driver upon
insertion.

>How-To-Repeat:

Insert Sony Ericsson GC89 cellular data card (T-Mobile, Rogers, etc).
Note sad kernel messages.

>Fix:

WiFi looks to be a lost cause (closed-source driver?), however, basic
communications with the GC89 can be accomplished via sio driver.

The following patch modifies sio_pci.c to recognize the GC89's serial
port.  It also corrects a labelling error for the GC79 support in the
line above; the GC79 is an 802.11b-only card.

*** usr/src/sys/dev/sio/sio_pci.c.fcs	Sat May 28 23:42:25 2005
--- usr/src/sys/dev/sio/sio_pci.c	Sat Jan 12 00:19:23 2008
***************
*** 77,83 ****
  	{ 0x7101135e, "SeaLevel Ultra 530.PCI Single Port Serial", 0x18 },
  	{ 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
  	{ 0x0103115d, "Xircom Cardbus modem", 0x10 },
! 	{ 0x432214e4, "Broadcom 802.11g/GPRS CardBus (Serial)", 0x10 },
  	{ 0x01c0135c, "Quatech SSCLP-200/300", 0x18 
  		/* 
  		 * NB: You must mount the "SPAD" jumper to correctly detect
--- 77,84 ----
  	{ 0x7101135e, "SeaLevel Ultra 530.PCI Single Port Serial", 0x18 },
  	{ 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
  	{ 0x0103115d, "Xircom Cardbus modem", 0x10 },
! 	{ 0x432214e4, "Broadcom 802.11b/GPRS CardBus (Serial)", 0x10 },
! 	{ 0x434414e4, "Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)", 0x10 },
  	{ 0x01c0135c, "Quatech SSCLP-200/300", 0x18 
  		/* 
  		 * NB: You must mount the "SPAD" jumper to correctly detect
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->analyzed 
State-Changed-By: eadler 
State-Changed-When: Tue Nov 15 16:44:15 UTC 2011 
State-Changed-Why:  
awaiting approval 


Responsible-Changed-From-To: freebsd-bugs->eadler 
Responsible-Changed-By: eadler 
Responsible-Changed-When: Tue Nov 15 16:44:15 UTC 2011 
Responsible-Changed-Why:  
awaiting approval 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119606 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/119606: commit references a PR
Date: Tue, 15 Nov 2011 17:15:18 +0000 (UTC)

 Author: eadler (ports committer)
 Date: Tue Nov 15 17:15:09 2011
 New Revision: 227532
 URL: http://svn.freebsd.org/changeset/base/227532
 
 Log:
   - add support for Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)
   - correct mislabeling of 0x432214e4 device
   
   PR:		kern/119606
   Submitted by:	Joe Greco <jgreco@ns.sol.net>
   Approved by:	jhb
   MFC after:	1 week
 
 Modified:
   head/sys/dev/sio/sio_pci.c
 
 Modified: head/sys/dev/sio/sio_pci.c
 ==============================================================================
 --- head/sys/dev/sio/sio_pci.c	Tue Nov 15 16:20:39 2011	(r227531)
 +++ head/sys/dev/sio/sio_pci.c	Tue Nov 15 17:15:09 2011	(r227532)
 @@ -76,7 +76,8 @@ static struct pci_ids pci_ids[] = {
  	{ 0x7101135e, "SeaLevel Ultra 530.PCI Single Port Serial", 0x18 },
  	{ 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
  	{ 0x0103115d, "Xircom Cardbus modem", 0x10 },
 -	{ 0x432214e4, "Broadcom 802.11g/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x432214e4, "Broadcom 802.11b/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x434414e4, "Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)", 0x10 },
  	{ 0x01c0135c, "Quatech SSCLP-200/300", 0x18 
  		/* 
  		 * NB: You must mount the "SPAD" jumper to correctly detect
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: analyzed->patched 
State-Changed-By: eadler 
State-Changed-When: Tue Nov 15 17:29:46 UTC 2011 
State-Changed-Why:  
I committed this change 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119606 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/119606: commit references a PR
Date: Tue, 10 Jan 2012 00:27:03 +0000 (UTC)

 Author: eadler (ports committer)
 Date: Tue Jan 10 00:26:54 2012
 New Revision: 229892
 URL: http://svn.freebsd.org/changeset/base/229892
 
 Log:
   MFC r227532:
   	- add support for Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)
   	- correct mislabeling of 0x432214e4 device
   
   PR:		kern/119606
   Approved by:	jhb
 
 Modified:
   stable/9/sys/dev/sio/sio_pci.c
 Directory Properties:
   stable/9/sys/   (props changed)
 
 Modified: stable/9/sys/dev/sio/sio_pci.c
 ==============================================================================
 --- stable/9/sys/dev/sio/sio_pci.c	Tue Jan 10 00:20:28 2012	(r229891)
 +++ stable/9/sys/dev/sio/sio_pci.c	Tue Jan 10 00:26:54 2012	(r229892)
 @@ -76,7 +76,8 @@ static struct pci_ids pci_ids[] = {
  	{ 0x7101135e, "SeaLevel Ultra 530.PCI Single Port Serial", 0x18 },
  	{ 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
  	{ 0x0103115d, "Xircom Cardbus modem", 0x10 },
 -	{ 0x432214e4, "Broadcom 802.11g/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x432214e4, "Broadcom 802.11b/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x434414e4, "Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)", 0x10 },
  	{ 0x01c0135c, "Quatech SSCLP-200/300", 0x18 
  		/* 
  		 * NB: You must mount the "SPAD" jumper to correctly detect
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/119606: commit references a PR
Date: Tue, 10 Jan 2012 00:27:34 +0000 (UTC)

 Author: eadler (ports committer)
 Date: Tue Jan 10 00:27:16 2012
 New Revision: 229893
 URL: http://svn.freebsd.org/changeset/base/229893
 
 Log:
   MFC r227532:
   	- add support for Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)
   	- correct mislabeling of 0x432214e4 device
   
   PR:		kern/119606
   Approved by:	jhb
 
 Modified:
   stable/8/sys/dev/sio/sio_pci.c
 Directory Properties:
   stable/8/sys/   (props changed)
 
 Modified: stable/8/sys/dev/sio/sio_pci.c
 ==============================================================================
 --- stable/8/sys/dev/sio/sio_pci.c	Tue Jan 10 00:26:54 2012	(r229892)
 +++ stable/8/sys/dev/sio/sio_pci.c	Tue Jan 10 00:27:16 2012	(r229893)
 @@ -76,7 +76,8 @@ static struct pci_ids pci_ids[] = {
  	{ 0x7101135e, "SeaLevel Ultra 530.PCI Single Port Serial", 0x18 },
  	{ 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
  	{ 0x0103115d, "Xircom Cardbus modem", 0x10 },
 -	{ 0x432214e4, "Broadcom 802.11g/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x432214e4, "Broadcom 802.11b/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x434414e4, "Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)", 0x10 },
  	{ 0x01c0135c, "Quatech SSCLP-200/300", 0x18 
  		/* 
  		 * NB: You must mount the "SPAD" jumper to correctly detect
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/119606: commit references a PR
Date: Tue, 10 Jan 2012 00:27:46 +0000 (UTC)

 Author: eadler (ports committer)
 Date: Tue Jan 10 00:27:37 2012
 New Revision: 229894
 URL: http://svn.freebsd.org/changeset/base/229894
 
 Log:
   MFC r227532:
   	- add support for Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)
   	- correct mislabeling of 0x432214e4 device
   
   PR:		kern/119606
   Approved by:	jhb
 
 Modified:
   stable/7/sys/dev/sio/sio_pci.c
 Directory Properties:
   stable/7/sys/   (props changed)
 
 Modified: stable/7/sys/dev/sio/sio_pci.c
 ==============================================================================
 --- stable/7/sys/dev/sio/sio_pci.c	Tue Jan 10 00:27:16 2012	(r229893)
 +++ stable/7/sys/dev/sio/sio_pci.c	Tue Jan 10 00:27:37 2012	(r229894)
 @@ -77,7 +77,8 @@ static struct pci_ids pci_ids[] = {
  	{ 0x7101135e, "SeaLevel Ultra 530.PCI Single Port Serial", 0x18 },
  	{ 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 },
  	{ 0x0103115d, "Xircom Cardbus modem", 0x10 },
 -	{ 0x432214e4, "Broadcom 802.11g/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x432214e4, "Broadcom 802.11b/GPRS CardBus (Serial)", 0x10 },
 +	{ 0x434414e4, "Broadcom 802.11bg/EDGE/GPRS CardBus (Serial)", 0x10 },
  	{ 0x01c0135c, "Quatech SSCLP-200/300", 0x18 
  		/* 
  		 * NB: You must mount the "SPAD" jumper to correctly detect
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: patched->closed 
State-Changed-By: eadler 
State-Changed-When: Fri Jan 13 03:49:59 UTC 2012 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119606 
>Unformatted:
