Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1228902 > unrolled thread
| Started by | Knuth Posern <knuth@posern.org> |
|---|---|
| First post | 2015-09-20 18:30 +0200 |
| Last post | 2015-09-20 19:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] Thunderbolt 2 driver for recent Apple MacBooks Knuth Posern <knuth@posern.org> - 2015-09-20 18:30 +0200
Re: [PATCH] Thunderbolt 2 driver for recent Apple MacBooks Greg KH <greg@kroah.com> - 2015-09-20 19:30 +0200
| From | Knuth Posern <knuth@posern.org> |
|---|---|
| Date | 2015-09-20 18:30 +0200 |
| Subject | [PATCH] Thunderbolt 2 driver for recent Apple MacBooks |
| Message-ID | <qaPEZ-55P-5@gated-at.bofh.it> |
[Multipart message — attachments visible in raw view] — view raw
Hi, This patch is submitted for upstream inclusion. This is a first for me, so I hope the format of this mail is convenient. Thanks to Greg and Andreas the attached patch (diff -up) fixes the bug: https://bugzilla.kernel.org/show_bug.cgi?id=100191 The pci device ids listed in the tb driver are to restrictive, which prevents the driver from being loaded. We have had a similar issue with the new Mac mini. Changing the subvendor and subdevice to PCI_ANY_ID in drivers/thunderbolt/nhi.c the thunderbolt driver loads and binds to the pci device 07:00.0 System peripheral: Intel Corporation Device 156c which is the thunderbolt 2 controller. Cheers, Knuth.
[toc] | [next] | [standalone]
| From | Greg KH <greg@kroah.com> |
|---|---|
| Date | 2015-09-20 19:30 +0200 |
| Message-ID | <qaQB6-6qO-39@gated-at.bofh.it> |
| In reply to | #1228902 |
On Sun, Sep 20, 2015 at 06:11:25PM +0200, Knuth Posern wrote:
> Hi,
>
> This patch is submitted for upstream inclusion.
> This is a first for me, so I hope the format of this mail is convenient.
>
> Thanks to Greg and Andreas the attached patch (diff -up) fixes the bug:
> https://bugzilla.kernel.org/show_bug.cgi?id=100191
>
> The pci device ids listed in the tb driver are to restrictive, which
> prevents the driver from being loaded. We have had a similar issue
> with the new Mac mini.
>
> Changing the subvendor and subdevice to PCI_ANY_ID in
> drivers/thunderbolt/nhi.c
> the thunderbolt driver loads and binds to the pci device
> 07:00.0 System peripheral: Intel Corporation Device 156c
> which is the thunderbolt 2 controller.
>
>
> Cheers,
>
> Knuth.
>
> --- linux/drivers/thunderbolt/nhi.c.orig 2015-09-20 17:36:14.014964300 +0200
> +++ linux/drivers/thunderbolt/nhi.c 2015-09-13 09:58:18.000000000 +0200
> @@ -643,7 +643,7 @@ static struct pci_device_id nhi_ids[] =
> {
> .class = PCI_CLASS_SYSTEM_OTHER << 8, .class_mask = ~0,
> .vendor = PCI_VENDOR_ID_INTEL, .device = 0x156c,
> - .subvendor = 0x2222, .subdevice = 0x1111,
> + .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID,
> },
> { 0,}
> };
>
>
This looks good, but can you resend it in the format described in
Documentation/SubmittingPatches so that I can apply it (i.e. a cleaned
up changelog comment and a signed-off-by: line?)
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web