brintos

brintos / linux-shallow public Read only

0
0
Text · 2.2 KiB · 3eb55dc Raw
73 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Solarflare device configuration4#5 6config NET_VENDOR_SOLARFLARE7	bool "Solarflare devices"8	default y9	help10	  If you have a network (Ethernet) card belonging to this class, say Y.11 12	  Note that the answer to this question doesn't directly affect the13	  kernel: saying N will just cause the configurator to skip all14	  the questions about Solarflare devices. If you say Y, you will be asked15	  for your specific card in the following questions.16 17if NET_VENDOR_SOLARFLARE18 19config SFC20	tristate "Solarflare SFC9100/EF100-family support"21	depends on PCI22	depends on PTP_1588_CLOCK_OPTIONAL23	select MDIO24	select CRC3225	select NET_DEVLINK26	help27	  This driver supports 10/40-gigabit Ethernet cards based on28	  the Solarflare SFC9100-family controllers.29 30	  It also supports 10/25/40/100-gigabit Ethernet cards based31	  on the Solarflare EF100 networking IP in Xilinx FPGAs.32 33	  To compile this driver as a module, choose M here.  The module34	  will be called sfc.35config SFC_MTD36	bool "Solarflare SFC9100-family MTD support"37	depends on SFC && MTD && !(SFC=y && MTD=m)38	default y39	help40	  This exposes the on-board flash and/or EEPROM as MTD devices41	  (e.g. /dev/mtd1).  This is required to update the firmware or42	  the boot configuration under Linux.43config SFC_MCDI_MON44	bool "Solarflare SFC9100-family hwmon support"45	depends on SFC && HWMON && !(SFC=y && HWMON=m)46	default y47	help48	  This exposes the on-board firmware-managed sensors as a49	  hardware monitor device.50config SFC_SRIOV51	bool "Solarflare SFC9100-family SR-IOV support"52	depends on SFC && PCI_IOV53	depends on INET54	default y55	help56	  This enables support for the Single Root I/O Virtualization57	  features, allowing accelerated network performance in58	  virtualized environments.59config SFC_MCDI_LOGGING60	bool "Solarflare SFC9100-family MCDI logging support"61	depends on SFC62	default y63	help64	  This enables support for tracing of MCDI (Management-Controller-to-65	  Driver-Interface) commands and responses, allowing debugging of66	  driver/firmware interaction.  The tracing is actually enabled by67	  a sysfs file 'mcdi_logging' under the PCI device.68 69source "drivers/net/ethernet/sfc/falcon/Kconfig"70source "drivers/net/ethernet/sfc/siena/Kconfig"71 72endif # NET_VENDOR_SOLARFLARE73