mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 20:59:10 +07:00
5e9615bfb9
The thunderx ethernet driver fails to build on architectures that do not have an atomic readq() and writeq() function for 64-bit PCI bus access: drivers/net/ethernet/cavium/thunder/thunder_bgx.c: In function 'bgx_reg_read': include/asm-generic/io.h:195:23: error: implicit declaration of function 'readq' [-Werror=implicit-function-declaration] It seems impossible to get this driver to work on most 32-bit hardware, so it's better to add an explicit dependency, in order to let us keep building 'allmodconfig' kernels on all architectures. As the driver is meant for the internal hardware on an arm64 SoC, this is not a problem for usability. Allowing the build on all 64-bit architectures rather than just CONFIG_ARM64 on the other hand means that we get the benefit of build testing on x86. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David S. Miller <davem@davemloft.net>
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
#
|
|
# Cavium ethernet device configuration
|
|
#
|
|
|
|
config NET_VENDOR_CAVIUM
|
|
tristate "Cavium ethernet drivers"
|
|
depends on PCI && 64BIT
|
|
---help---
|
|
Enable support for the Cavium ThunderX Network Interface
|
|
Controller (NIC). The NIC provides the controller and DMA
|
|
engines to move network traffic to/from the memory. The NIC
|
|
works closely with TNS, BGX and SerDes to implement the
|
|
functions replacing and virtualizing those of a typical
|
|
standalone PCIe NIC chip.
|
|
|
|
If you have a Cavium Thunder board, say Y.
|
|
|
|
if NET_VENDOR_CAVIUM
|
|
|
|
config THUNDER_NIC_PF
|
|
tristate "Thunder Physical function driver"
|
|
default NET_VENDOR_CAVIUM
|
|
select THUNDER_NIC_BGX
|
|
---help---
|
|
This driver supports Thunder's NIC physical function.
|
|
|
|
config THUNDER_NIC_VF
|
|
tristate "Thunder Virtual function driver"
|
|
default NET_VENDOR_CAVIUM
|
|
---help---
|
|
This driver supports Thunder's NIC virtual function
|
|
|
|
config THUNDER_NIC_BGX
|
|
tristate "Thunder MAC interface driver (BGX)"
|
|
default NET_VENDOR_CAVIUM
|
|
---help---
|
|
This driver supports programming and controlling of MAC
|
|
interface from NIC physical function driver.
|
|
|
|
endif # NET_VENDOR_CAVIUM
|