All of lore.kernel.org
 help / color / mirror / Atom feed
* Is bluetooth supported on lastest mac-mini?
@ 2011-09-01  8:38 John Frankish
  2011-09-01  9:53 ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 5+ messages in thread
From: John Frankish @ 2011-09-01  8:38 UTC (permalink / raw)
  To: linux-bluetooth

Using bluez-4.96, things work fine on:

dell latitude d430
Bus 002 Device 004: ID 413c:8140 Dell Computer Corp. Wireless 360 Bluetooth

..but don't work on:

2011 unibody mac mini server
Bus 001 Device 003: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)

"bluetoothd -nd" does not throw up any error messages, but "hcitool scan" fails with a "no device" found message.

Is there any further troubleshooting I could try?

Regards
John

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

* Re: Is bluetooth supported on lastest mac-mini?
  2011-09-01  8:38 Is bluetooth supported on lastest mac-mini? John Frankish
@ 2011-09-01  9:53 ` Luiz Augusto von Dentz
  2011-09-04  3:55   ` John Frankish
  0 siblings, 1 reply; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2011-09-01  9:53 UTC (permalink / raw)
  To: John Frankish; +Cc: linux-bluetooth

Hi John,

On Thu, Sep 1, 2011 at 11:38 AM, John Frankish <j-frankish@slb.com> wrote:
> Using bluez-4.96, things work fine on:
>
> dell latitude d430
> Bus 002 Device 004: ID 413c:8140 Dell Computer Corp. Wireless 360 Bluetooth
>
> ..but don't work on:
>
> 2011 unibody mac mini server
> Bus 001 Device 003: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
>
> "bluetoothd -nd" does not throw up any error messages, but "hcitool scan" fails with a "no device" found message.
>
> Is there any further troubleshooting I could try?

It might need some change in the kernel to able to load the proper
driver, something like the following should do it:

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 91d13a9..16abfd1 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -75,6 +75,9 @@ static struct usb_device_id btusb_table[] = {
        /* Apple MacBookPro8,2 */
        { USB_DEVICE(0x05ac, 0x821a) },

+       /* Apple Mac Mini */
+       { USB_DEVICE(0x05ac, 0x4500) },
+
        /* AVM BlueFRITZ! USB v2.0 */
        { USB_DEVICE(0x057c, 0x3800) },


-- 
Luiz Augusto von Dentz

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

* RE: Is bluetooth supported on lastest mac-mini?
  2011-09-01  9:53 ` Luiz Augusto von Dentz
@ 2011-09-04  3:55   ` John Frankish
  2011-09-04 18:12     ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 5+ messages in thread
From: John Frankish @ 2011-09-04  3:55 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Luiz Augusto von Dentz

> -----Original Message-----
> From: Luiz Augusto von Dentz [mailto:luiz.dentz@gmail.com]
> Sent: Thursday, 01 September, 2011 13:53
> To: John Frankish
> Cc: linux-bluetooth@vger.kernel.org
> Subject: Re: Is bluetooth supported on lastest mac-mini?
> 
> Hi John,
> 
> On Thu, Sep 1, 2011 at 11:38 AM, John Frankish <j-frankish@slb.com> wrote:
> > Using bluez-4.96, things work fine on:
> >
> > dell latitude d430
> > Bus 002 Device 004: ID 413c:8140 Dell Computer Corp. Wireless 360
> > Bluetooth
> >
> > ..but don't work on:
> >
> > 2011 unibody mac mini server
> > Bus 001 Device 003: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub
> > (part of BCM2046 Bluetooth)
> >
> > "bluetoothd -nd" does not throw up any error messages, but "hcitool scan"
> > fails with a "no device" found message.
> >
> > Is there any further troubleshooting I could try?
> 
> It might need some change in the kernel to able to load the proper driver,
> something like the following should do it:
> 
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index
> 91d13a9..16abfd1 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -75,6 +75,9 @@ static struct usb_device_id btusb_table[] = {
>         /* Apple MacBookPro8,2 */
>         { USB_DEVICE(0x05ac, 0x821a) },
> 
> +       /* Apple Mac Mini */
> +       { USB_DEVICE(0x05ac, 0x4500) },
> +
>         /* AVM BlueFRITZ! USB v2.0 */
>         { USB_DEVICE(0x057c, 0x3800) },
> 
> 
Thanks, I recompiled the 3.0.3 kernel with the patch, but my machine crashed as soon as the driver tried to load..


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

* Re: Is bluetooth supported on lastest mac-mini?
  2011-09-04  3:55   ` John Frankish
@ 2011-09-04 18:12     ` Luiz Augusto von Dentz
  2011-09-04 18:24       ` Jurgen Kramer
  0 siblings, 1 reply; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2011-09-04 18:12 UTC (permalink / raw)
  To: John Frankish; +Cc: linux-bluetooth

Hi John,

On Sun, Sep 4, 2011 at 6:55 AM, John Frankish <j-frankish@slb.com> wrote:
>> -----Original Message-----
>> From: Luiz Augusto von Dentz [mailto:luiz.dentz@gmail.com]
>> Sent: Thursday, 01 September, 2011 13:53
>> To: John Frankish
>> Cc: linux-bluetooth@vger.kernel.org
>> Subject: Re: Is bluetooth supported on lastest mac-mini?
>>
>> Hi John,
>>
>> On Thu, Sep 1, 2011 at 11:38 AM, John Frankish <j-frankish@slb.com> wrote:
>> > Using bluez-4.96, things work fine on:
>> >
>> > dell latitude d430
>> > Bus 002 Device 004: ID 413c:8140 Dell Computer Corp. Wireless 360
>> > Bluetooth
>> >
>> > ..but don't work on:
>> >
>> > 2011 unibody mac mini server
>> > Bus 001 Device 003: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub
>> > (part of BCM2046 Bluetooth)
>> >
>> > "bluetoothd -nd" does not throw up any error messages, but "hcitool scan"
>> > fails with a "no device" found message.
>> >
>> > Is there any further troubleshooting I could try?
>>
>> It might need some change in the kernel to able to load the proper driver,
>> something like the following should do it:
>>
>> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index
>> 91d13a9..16abfd1 100644
>> --- a/drivers/bluetooth/btusb.c
>> +++ b/drivers/bluetooth/btusb.c
>> @@ -75,6 +75,9 @@ static struct usb_device_id btusb_table[] = {
>>         /* Apple MacBookPro8,2 */
>>         { USB_DEVICE(0x05ac, 0x821a) },
>>
>> +       /* Apple Mac Mini */
>> +       { USB_DEVICE(0x05ac, 0x4500) },
>> +
>>         /* AVM BlueFRITZ! USB v2.0 */
>>         { USB_DEVICE(0x057c, 0x3800) },
>>
>>
> Thanks, I recompiled the 3.0.3 kernel with the patch, but my machine crashed as soon as the driver tried to load..

Maybe it needs more changes, iirc this new mac minis have BT 4.0
controllers... Can you get any logs where it is crashing?


-- 
Luiz Augusto von Dentz

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

* Re: Is bluetooth supported on lastest mac-mini?
  2011-09-04 18:12     ` Luiz Augusto von Dentz
@ 2011-09-04 18:24       ` Jurgen Kramer
  0 siblings, 0 replies; 5+ messages in thread
From: Jurgen Kramer @ 2011-09-04 18:24 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: John Frankish, linux-bluetooth

On Sun, 2011-09-04 at 21:12 +0300, Luiz Augusto von Dentz wrote:
> Hi John,
> >>
> >> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index
> >> 91d13a9..16abfd1 100644
> >> --- a/drivers/bluetooth/btusb.c
> >> +++ b/drivers/bluetooth/btusb.c
> >> @@ -75,6 +75,9 @@ static struct usb_device_id btusb_table[] = {
> >>         /* Apple MacBookPro8,2 */
> >>         { USB_DEVICE(0x05ac, 0x821a) },
> >>
> >> +       /* Apple Mac Mini */
> >> +       { USB_DEVICE(0x05ac, 0x4500) },
> >> +
> >>         /* AVM BlueFRITZ! USB v2.0 */
> >>         { USB_DEVICE(0x057c, 0x3800) },
> >>
> >>
> > Thanks, I recompiled the 3.0.3 kernel with the patch, but my machine crashed as soon as the driver tried to load..
> 
> Maybe it needs more changes, iirc this new mac minis have BT 4.0
> controllers... Can you get any logs where it is crashing?
> 
> 
Hi,

I've sent the needed patch to the list a couple of hours ago.

Jurgen


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

end of thread, other threads:[~2011-09-04 18:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-01  8:38 Is bluetooth supported on lastest mac-mini? John Frankish
2011-09-01  9:53 ` Luiz Augusto von Dentz
2011-09-04  3:55   ` John Frankish
2011-09-04 18:12     ` Luiz Augusto von Dentz
2011-09-04 18:24       ` Jurgen Kramer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.