Skip to content

Commit 830ea80

Browse files
committed
Merge branch 'bits/150-xhci-firmware' into asahi-wip
2 parents f154905 + 7f7e4c4 commit 830ea80

File tree

7 files changed

+448
-7
lines changed

7 files changed

+448
-7
lines changed

drivers/usb/host/Kconfig

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,26 @@ config USB_XHCI_DBGCAP
4040
config USB_XHCI_PCI
4141
tristate
4242
depends on USB_PCI
43-
depends on USB_XHCI_PCI_RENESAS || !USB_XHCI_PCI_RENESAS
4443
default y
4544

4645
config USB_XHCI_PCI_RENESAS
47-
tristate "Support for additional Renesas xHCI controller with firmware"
46+
bool "Support for Renesas xHCI controllers with firmware"
47+
depends on USB_XHCI_PCI
4848
help
4949
Say 'Y' to enable the support for the Renesas xHCI controller with
5050
firmware. Make sure you have the firmware for the device and
5151
installed on your system for this device to work.
5252
If unsure, say 'N'.
5353

54+
config USB_XHCI_PCI_ASMEDIA
55+
bool "Support for ASMedia xHCI controller with firmware"
56+
default ARCH_APPLE
57+
depends on USB_XHCI_PCI
58+
help
59+
Say 'Y' to enable support for ASMedia xHCI controllers with
60+
host-supplied firmware. These are usually present on Apple devices.
61+
If unsure, say 'N'.
62+
5463
config USB_XHCI_PLATFORM
5564
tristate "Generic xHCI driver for a platform device"
5665
help

drivers/usb/host/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o
6868
obj-$(CONFIG_USB_FHCI_HCD) += fhci.o
6969
obj-$(CONFIG_USB_XHCI_HCD) += xhci-hcd.o
7070
obj-$(CONFIG_USB_XHCI_PCI) += xhci-pci.o
71-
obj-$(CONFIG_USB_XHCI_PCI_RENESAS) += xhci-pci-renesas.o
71+
xhci-pci-y += xhci-pci-core.o
72+
xhci-pci-$(CONFIG_USB_XHCI_PCI_RENESAS) += xhci-pci-renesas.o
73+
xhci-pci-$(CONFIG_USB_XHCI_PCI_ASMEDIA) += xhci-pci-asmedia.o
7274
obj-$(CONFIG_USB_XHCI_PLATFORM) += xhci-plat-hcd.o
7375
obj-$(CONFIG_USB_XHCI_HISTB) += xhci-histb.o
7476
obj-$(CONFIG_USB_XHCI_RCAR) += xhci-rcar-hcd.o

0 commit comments

Comments
 (0)