thunderbolt: Update Kconfig entries to USB4
Since the driver now supports USB4 which is the standard going forward, update the Kconfig entry to mention this and rename the entry from CONFIG_THUNDERBOLT to CONFIG_USB4 instead to help people to find the correct option if they want to enable USB4. Also do the same for Thunderbolt network driver. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Cc: David S. Miller <davem@davemloft.net> Link: https://lore.kernel.org/r/20191217123345.31850-6-mika.westerberg@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b04079837b
commit
690ac0d20d
@@ -171,7 +171,7 @@ obj-$(CONFIG_POWERCAP) += powercap/
|
|||||||
obj-$(CONFIG_MCB) += mcb/
|
obj-$(CONFIG_MCB) += mcb/
|
||||||
obj-$(CONFIG_PERF_EVENTS) += perf/
|
obj-$(CONFIG_PERF_EVENTS) += perf/
|
||||||
obj-$(CONFIG_RAS) += ras/
|
obj-$(CONFIG_RAS) += ras/
|
||||||
obj-$(CONFIG_THUNDERBOLT) += thunderbolt/
|
obj-$(CONFIG_USB4) += thunderbolt/
|
||||||
obj-$(CONFIG_CORESIGHT) += hwtracing/coresight/
|
obj-$(CONFIG_CORESIGHT) += hwtracing/coresight/
|
||||||
obj-y += hwtracing/intel_th/
|
obj-y += hwtracing/intel_th/
|
||||||
obj-$(CONFIG_STM) += hwtracing/stm/
|
obj-$(CONFIG_STM) += hwtracing/stm/
|
||||||
|
|||||||
@@ -489,12 +489,12 @@ config FUJITSU_ES
|
|||||||
This driver provides support for Extended Socket network device
|
This driver provides support for Extended Socket network device
|
||||||
on Extended Partitioning of FUJITSU PRIMEQUEST 2000 E2 series.
|
on Extended Partitioning of FUJITSU PRIMEQUEST 2000 E2 series.
|
||||||
|
|
||||||
config THUNDERBOLT_NET
|
config USB4_NET
|
||||||
tristate "Networking over Thunderbolt cable"
|
tristate "Networking over USB4 and Thunderbolt cables"
|
||||||
depends on THUNDERBOLT && INET
|
depends on USB4 && INET
|
||||||
help
|
help
|
||||||
Select this if you want to create network between two
|
Select this if you want to create network between two computers
|
||||||
computers over a Thunderbolt cable. The driver supports Apple
|
over a USB4 and Thunderbolt cables. The driver supports Apple
|
||||||
ThunderboltIP protocol and allows communication with any host
|
ThunderboltIP protocol and allows communication with any host
|
||||||
supporting the same protocol including Windows and macOS.
|
supporting the same protocol including Windows and macOS.
|
||||||
|
|
||||||
|
|||||||
@@ -76,6 +76,6 @@ obj-$(CONFIG_NTB_NETDEV) += ntb_netdev.o
|
|||||||
obj-$(CONFIG_FUJITSU_ES) += fjes/
|
obj-$(CONFIG_FUJITSU_ES) += fjes/
|
||||||
|
|
||||||
thunderbolt-net-y += thunderbolt.o
|
thunderbolt-net-y += thunderbolt.o
|
||||||
obj-$(CONFIG_THUNDERBOLT_NET) += thunderbolt-net.o
|
obj-$(CONFIG_USB4_NET) += thunderbolt-net.o
|
||||||
obj-$(CONFIG_NETDEVSIM) += netdevsim/
|
obj-$(CONFIG_NETDEVSIM) += netdevsim/
|
||||||
obj-$(CONFIG_NET_FAILOVER) += net_failover.o
|
obj-$(CONFIG_NET_FAILOVER) += net_failover.o
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
menuconfig THUNDERBOLT
|
menuconfig USB4
|
||||||
tristate "Thunderbolt support"
|
tristate "Unified support for USB4 and Thunderbolt"
|
||||||
depends on PCI
|
depends on PCI
|
||||||
depends on X86 || COMPILE_TEST
|
depends on X86 || COMPILE_TEST
|
||||||
select APPLE_PROPERTIES if EFI_STUB && X86
|
select APPLE_PROPERTIES if EFI_STUB && X86
|
||||||
@@ -9,9 +9,10 @@ menuconfig THUNDERBOLT
|
|||||||
select CRYPTO_HASH
|
select CRYPTO_HASH
|
||||||
select NVMEM
|
select NVMEM
|
||||||
help
|
help
|
||||||
Thunderbolt Controller driver. This driver is required if you
|
USB4 and Thunderbolt driver. USB4 is the public speficiation
|
||||||
want to hotplug Thunderbolt devices on Apple hardware or on PCs
|
based on Thunderbolt 3 protocol. This driver is required if
|
||||||
with Intel Falcon Ridge or newer.
|
you want to hotplug Thunderbolt and USB4 compliant devices on
|
||||||
|
Apple hardware or on PCs with Intel Falcon Ridge or newer.
|
||||||
|
|
||||||
To compile this driver a module, choose M here. The module will be
|
To compile this driver a module, choose M here. The module will be
|
||||||
called thunderbolt.
|
called thunderbolt.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
obj-${CONFIG_THUNDERBOLT} := thunderbolt.o
|
obj-${CONFIG_USB4} := thunderbolt.o
|
||||||
thunderbolt-objs := nhi.o nhi_ops.o ctl.o tb.o switch.o cap.o path.o tunnel.o eeprom.o
|
thunderbolt-objs := nhi.o nhi_ops.o ctl.o tb.o switch.o cap.o path.o tunnel.o eeprom.o
|
||||||
thunderbolt-objs += domain.o dma_port.o icm.o property.o xdomain.o lc.o usb4.o
|
thunderbolt-objs += domain.o dma_port.o icm.o property.o xdomain.o lc.o usb4.o
|
||||||
|
|||||||
Reference in New Issue
Block a user