Directory Files
.. 18
falcon 30
siena 48
File Size
Kconfig 2.3 kB
Makefile 747 B
bitfield.h 23 kB
ef10.c 131 kB
ef100.c 15 kB
ef100.h 534 B
ef100_ethtool.c 2.6 kB
ef100_ethtool.h 542 B
ef100_netdev.c 13 kB
ef100_netdev.h 910 B
ef100_nic.c 42 kB
ef100_nic.h 3.2 kB
ef100_regs.h 26 kB
ef100_rep.c 14 kB
ef100_rep.h 2.7 kB
ef100_rx.c 6.4 kB
ef100_rx.h 803 B
ef100_sriov.c 1.9 kB
ef100_sriov.h 646 B
ef100_tx.c 16 kB
ef100_tx.h 1.1 kB
ef10_regs.h 15 kB
ef10_sriov.c 20 kB
ef10_sriov.h 2.4 kB
efx.c 34 kB
efx.h 7.7 kB
efx_channels.c 35 kB
efx_channels.h 2.1 kB
efx_common.c 39 kB
efx_common.h 4.0 kB
efx_devlink.c 20 kB
efx_devlink.h 1.9 kB
enum.h 6.1 kB
ethtool.c 9.0 kB
ethtool_common.c 39 kB
ethtool_common.h 3.0 kB
filter.h 12 kB
io.h 7.5 kB
mae.c 77 kB
mae.h 5.3 kB
mae_counter_format.h 2.9 kB
mcdi.c 69 kB
mcdi.h 18 kB
mcdi_filters.c 69 kB
mcdi_filters.h 6.5 kB
mcdi_functions.c 13 kB
mcdi_functions.h 1.5 kB
mcdi_mon.c 16 kB
mcdi_pcol.h 1.5 MB
mcdi_pcol_mae.h 991 B
mcdi_port.c 3.1 kB
mcdi_port.h 570 B
mcdi_port_common.c 38 kB
mcdi_port_common.h 2.9 kB
mtd.c 2.8 kB
net_driver.h 66 kB
nic.c 11 kB
nic.h 7.1 kB
nic_common.h 8.1 kB
ptp.c 68 kB
ptp.h 2.0 kB
rx.c 12 kB
rx_common.c 31 kB
rx_common.h 4.2 kB
selftest.c 23 kB
selftest.h 1.4 kB
sfc.mod.c 0 B
sriov.c 1.9 kB
sriov.h 848 B
tc.c 85 kB
tc.h 11 kB
tc_bindings.c 6.6 kB
tc_bindings.h 1.4 kB
tc_conntrack.c 15 kB
tc_conntrack.h 1.7 kB
tc_counters.c 17 kB
tc_counters.h 2.4 kB
tc_encap_actions.c 22 kB
tc_encap_actions.h 4.2 kB
tx.c 17 kB
tx.h 1.7 kB
tx_common.c 13 kB
tx_common.h 1.7 kB
tx_tso.c 12 kB
workarounds.h 920 B

Linux v6.6.1 - sfc

# SPDX-License-Identifier: GPL-2.0-only
#
# Solarflare device configuration
#

config NET_VENDOR_SOLARFLARE
	bool "Solarflare devices"
	default y
	help
	  If you have a network (Ethernet) card belonging to this class, say Y.

	  Note that the answer to this question doesn't directly affect the
	  kernel: saying N will just cause the configurator to skip all
	  the questions about Solarflare devices. If you say Y, you will be asked
	  for your specific card in the following questions.

if NET_VENDOR_SOLARFLARE

config SFC
	tristate "Solarflare SFC9100/EF100-family support"
	depends on PCI
	depends on PTP_1588_CLOCK_OPTIONAL
	select MDIO
	select CRC32
	select NET_DEVLINK
	help
	  This driver supports 10/40-gigabit Ethernet cards based on
	  the Solarflare SFC9100-family controllers.

	  It also supports 10/25/40/100-gigabit Ethernet cards based
	  on the Solarflare EF100 networking IP in Xilinx FPGAs.

	  To compile this driver as a module, choose M here.  The module
	  will be called sfc.
config SFC_MTD
	bool "Solarflare SFC9100-family MTD support"
	depends on SFC && MTD && !(SFC=y && MTD=m)
	default y
	help
	  This exposes the on-board flash and/or EEPROM as MTD devices
	  (e.g. /dev/mtd1).  This is required to update the firmware or
	  the boot configuration under Linux.
config SFC_MCDI_MON
	bool "Solarflare SFC9100-family hwmon support"
	depends on SFC && HWMON && !(SFC=y && HWMON=m)
	default y
	help
	  This exposes the on-board firmware-managed sensors as a
	  hardware monitor device.
config SFC_SRIOV
	bool "Solarflare SFC9100-family SR-IOV support"
	depends on SFC && PCI_IOV
	depends on INET
	default y
	help
	  This enables support for the Single Root I/O Virtualization
	  features, allowing accelerated network performance in
	  virtualized environments.
config SFC_MCDI_LOGGING
	bool "Solarflare SFC9100-family MCDI logging support"
	depends on SFC
	default y
	help
	  This enables support for tracing of MCDI (Management-Controller-to-
	  Driver-Interface) commands and responses, allowing debugging of
	  driver/firmware interaction.  The tracing is actually enabled by
	  a sysfs file 'mcdi_logging' under the PCI device.

source "drivers/net/ethernet/sfc/falcon/Kconfig"
source "drivers/net/ethernet/sfc/siena/Kconfig"

endif # NET_VENDOR_SOLARFLARE