public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Added support for bluetooth controller shipped with iMac i5
@ 2010-07-09 10:34 Cyril Lacoux
  2010-07-09 13:21 ` Marcel Holtmann
  0 siblings, 1 reply; 5+ messages in thread
From: Cyril Lacoux @ 2010-07-09 10:34 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Cyril Lacoux

From: Cyril Lacoux <clacoux@easter-eggs.com>

Device class is ff(vend.) instead of e0(wlcon).

Output from command `usb-devices`:
T:  Bus=01 Lev=03 Prnt=03 Port=00 Cnt=01 Dev#=  6 Spd=12  MxCh= 0
D:  Ver= 2.00 Cls=ff(vend.) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
P:  Vendor=05ac ProdID=8215 Rev=01.82
S:  Manufacturer=Apple Inc.
S:  Product=Bluetooth USB Host Controller
S:  SerialNumber=7C6D62936607
C:  #Ifs= 4 Cfg#= 1 Atr=e0 MxPwr=0mA
I:  If#= 0 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=btusb
I:  If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
I:  If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
I:  If#= 3 Alt= 0 #EPs= 0 Cls=fe(app. ) Sub=01 Prot=00 Driver=(none)
---
 drivers/bluetooth/btusb.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 5d9cc53..8eb6be5 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -75,6 +75,9 @@ static struct usb_device_id btusb_table[] = {
 	/* Canyon CN-BTU1 with HID interfaces */
 	{ USB_DEVICE(0x0c10, 0x0000) },
 
+	/* Apple iMac11,1 */
+	{ USB_DEVICE(0x05ac, 0x8215) },
+
 	{ }	/* Terminating entry */
 };
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Added support for bluetooth controller shipped with iMac i5
  2010-07-09 10:34 [PATCH] Added support for bluetooth controller shipped with iMac i5 Cyril Lacoux
@ 2010-07-09 13:21 ` Marcel Holtmann
  2010-07-14  6:29   ` Cyril Lacoux
  0 siblings, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2010-07-09 13:21 UTC (permalink / raw)
  To: Cyril Lacoux; +Cc: linux-bluetooth, Cyril Lacoux

Hi Cyril,

> Device class is ff(vend.) instead of e0(wlcon).
> 
> Output from command `usb-devices`:
> T:  Bus=01 Lev=03 Prnt=03 Port=00 Cnt=01 Dev#=  6 Spd=12  MxCh= 0
> D:  Ver= 2.00 Cls=ff(vend.) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> P:  Vendor=05ac ProdID=8215 Rev=01.82
> S:  Manufacturer=Apple Inc.
> S:  Product=Bluetooth USB Host Controller
> S:  SerialNumber=7C6D62936607
> C:  #Ifs= 4 Cfg#= 1 Atr=e0 MxPwr=0mA
> I:  If#= 0 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=btusb
> I:  If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> I:  If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
> I:  If#= 3 Alt= 0 #EPs= 0 Cls=fe(app. ) Sub=01 Prot=00 Driver=(none)

you need to add a Signed-off-by: line here.

> ---
>  drivers/bluetooth/btusb.c |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> index 5d9cc53..8eb6be5 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -75,6 +75,9 @@ static struct usb_device_id btusb_table[] = {
>  	/* Canyon CN-BTU1 with HID interfaces */
>  	{ USB_DEVICE(0x0c10, 0x0000) },
>  
> +	/* Apple iMac11,1 */
> +	{ USB_DEVICE(0x05ac, 0x8215) },
> +

And since this a more likely device since all the other ones that are
not even sold anymore, just put it after the generic entry and before
the AVM one.

Regards

Marcel



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] Added support for bluetooth controller shipped with iMac i5
  2010-07-09 13:21 ` Marcel Holtmann
@ 2010-07-14  6:29   ` Cyril Lacoux
  2010-07-14  8:00     ` Marcel Holtmann
  0 siblings, 1 reply; 5+ messages in thread
From: Cyril Lacoux @ 2010-07-14  6:29 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Cyril Lacoux

Device class is ff(vend.) instead of e0(wlcon).

Output from command `usb-devices`:
T:  Bus=01 Lev=03 Prnt=03 Port=00 Cnt=01 Dev#=  6 Spd=12  MxCh= 0
D:  Ver= 2.00 Cls=ff(vend.) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
P:  Vendor=05ac ProdID=8215 Rev=01.82
S:  Manufacturer=Apple Inc.
S:  Product=Bluetooth USB Host Controller
S:  SerialNumber=7C6D62936607
C:  #Ifs= 4 Cfg#= 1 Atr=e0 MxPwr=0mA
I:  If#= 0 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=btusb
I:  If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
I:  If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
I:  If#= 3 Alt= 0 #EPs= 0 Cls=fe(app. ) Sub=01 Prot=00 Driver=(none)

Signed-off-by: Cyril Lacoux <clacoux@ifeelgood.org>
---
 drivers/bluetooth/btusb.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 5d9cc53..6fcb971 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -59,6 +59,9 @@ static struct usb_device_id btusb_table[] = {
 	/* Generic Bluetooth USB device */
 	{ USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
 
+	/* Apple iMac11,1 */
+	{ USB_DEVICE(0x05ac, 0x8215) },
+
 	/* AVM BlueFRITZ! USB v2.0 */
 	{ USB_DEVICE(0x057c, 0x3800) },
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Added support for bluetooth controller shipped with iMac i5
  2010-07-14  6:29   ` Cyril Lacoux
@ 2010-07-14  8:00     ` Marcel Holtmann
  2010-07-14  9:07       ` Cyril Lacoux (Yack)
  0 siblings, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2010-07-14  8:00 UTC (permalink / raw)
  To: Cyril Lacoux; +Cc: linux-bluetooth

Hi Cyril,

> Device class is ff(vend.) instead of e0(wlcon).
> 
> Output from command `usb-devices`:
> T:  Bus=01 Lev=03 Prnt=03 Port=00 Cnt=01 Dev#=  6 Spd=12  MxCh= 0
> D:  Ver= 2.00 Cls=ff(vend.) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> P:  Vendor=05ac ProdID=8215 Rev=01.82
> S:  Manufacturer=Apple Inc.
> S:  Product=Bluetooth USB Host Controller
> S:  SerialNumber=7C6D62936607
> C:  #Ifs= 4 Cfg#= 1 Atr=e0 MxPwr=0mA
> I:  If#= 0 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=btusb
> I:  If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> I:  If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
> I:  If#= 3 Alt= 0 #EPs= 0 Cls=fe(app. ) Sub=01 Prot=00 Driver=(none)
> 
> Signed-off-by: Cyril Lacoux <clacoux@ifeelgood.org>
> ---
>  drivers/bluetooth/btusb.c |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)

patch has been applied. Thanks.

Regards

Marcel



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Added support for bluetooth controller shipped with iMac i5
  2010-07-14  8:00     ` Marcel Holtmann
@ 2010-07-14  9:07       ` Cyril Lacoux (Yack)
  0 siblings, 0 replies; 5+ messages in thread
From: Cyril Lacoux (Yack) @ 2010-07-14  9:07 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

Le mercredi 14 juillet 2010 12:00:07, vous avez =C3=A9crit :

Marcel,

> patch has been applied. Thanks.

Thanks, some users will enjoy 2.6.36 :-)=20

Regards,
=2D-=20
Cyril Lacoux -- BOFH excuse #423:

It's not RFC-822 compliant.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-07-14  9:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-09 10:34 [PATCH] Added support for bluetooth controller shipped with iMac i5 Cyril Lacoux
2010-07-09 13:21 ` Marcel Holtmann
2010-07-14  6:29   ` Cyril Lacoux
2010-07-14  8:00     ` Marcel Holtmann
2010-07-14  9:07       ` Cyril Lacoux (Yack)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox