Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0-only
menu "Intel MIC & related support"

comment "Intel MIC Bus Driver"

config CONFIG_INTEL_MIC_BUS
	tristate "Intel MIC Bus Driver"
	depends on CONFIG_64BIT && CONFIG_PCI && CONFIG_X86
	help
	  This option is selected by any driver which registers a
	  device or driver on the MIC Bus, such as CONFIG_INTEL_MIC_HOST,
	  CONFIG_INTEL_MIC_CARD, CONFIG_INTEL_MIC_X100_DMA etc.

	  If you are building a host/card kernel with an Intel MIC device
	  then say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  More information about the Intel MIC family as well as the Linux
	  OS and tools for MIC to use with this driver are available from
	  <http://software.intel.com/en-us/mic-developer>.

comment "SCIF Bus Driver"

config CONFIG_SCIF_BUS
	tristate "SCIF Bus Driver"
	depends on CONFIG_64BIT && CONFIG_PCI && CONFIG_X86
	help
	  This option is selected by any driver which registers a
	  device or driver on the CONFIG_SCIF Bus, such as CONFIG_INTEL_MIC_HOST
	  and CONFIG_INTEL_MIC_CARD.

	  If you are building a host/card kernel with an Intel MIC device
	  then say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  More information about the Intel MIC family as well as the Linux
	  OS and tools for MIC to use with this driver are available from
	  <http://software.intel.com/en-us/mic-developer>.

comment "VOP Bus Driver"

config CONFIG_VOP_BUS
	tristate "VOP Bus Driver"
	help
	  This option is selected by any driver which registers a
	  device or driver on the CONFIG_VOP Bus, such as CONFIG_INTEL_MIC_HOST
	  and CONFIG_INTEL_MIC_CARD.

	  If you are building a host/card kernel with an Intel MIC device
	  then say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  More information about the Intel MIC family as well as the Linux
	  OS and tools for MIC to use with this driver are available from
	  <http://software.intel.com/en-us/mic-developer>.

comment "Intel MIC Host Driver"

config CONFIG_INTEL_MIC_HOST
	tristate "Intel MIC Host Driver"
	depends on CONFIG_64BIT && CONFIG_PCI && CONFIG_X86
	depends on CONFIG_INTEL_MIC_BUS && CONFIG_SCIF_BUS && CONFIG_MIC_COSM && CONFIG_VOP_BUS
	help
	  This enables Host Driver support for the Intel Many Integrated
	  Core (MIC) family of PCIe form factor coprocessor devices that
	  run a 64 bit Linux OS. The driver manages card OS state and
	  enables communication between host and card. Intel MIC X100
	  devices are currently supported.

	  If you are building a host kernel with an Intel MIC device then
	  say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  More information about the Intel MIC family as well as the Linux
	  OS and tools for MIC to use with this driver are available from
	  <http://software.intel.com/en-us/mic-developer>.

comment "Intel MIC Card Driver"

config CONFIG_INTEL_MIC_CARD
	tristate "Intel MIC Card Driver"
	depends on CONFIG_64BIT && CONFIG_X86
	depends on CONFIG_INTEL_MIC_BUS && CONFIG_SCIF_BUS && CONFIG_MIC_COSM && CONFIG_VOP_BUS
	select CONFIG_VIRTIO
	help
	  This enables card driver support for the Intel Many Integrated
	  Core (MIC) device family. The card driver communicates shutdown/
	  crash events to the host and allows registration/configuration of
	  virtio devices. Intel MIC X100 devices are currently supported.

	  If you are building a card kernel for an Intel MIC device then
	  say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  For more information see
	  <http://software.intel.com/en-us/mic-developer>.

comment "SCIF Driver"

config CONFIG_SCIF
	tristate "SCIF Driver"
	depends on CONFIG_64BIT && CONFIG_PCI && CONFIG_X86 && CONFIG_SCIF_BUS && CONFIG_IOMMU_SUPPORT
	select CONFIG_IOMMU_IOVA
	help
	  This enables CONFIG_SCIF Driver support for the Intel Many Integrated
	  Core (MIC) family of PCIe form factor coprocessor devices that
	  run a 64 bit Linux OS. The Symmetric Communication Interface
	  (CONFIG_SCIF (pronounced as skiff)) is a low level communications API
	  across PCIe currently implemented for MIC.

	  If you are building a host kernel with an Intel MIC device then
	  say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  More information about the Intel MIC family as well as the Linux
	  OS and tools for MIC to use with this driver are available from
	  <http://software.intel.com/en-us/mic-developer>.

comment "Intel MIC Coprocessor State Management (COSM) Drivers"

config CONFIG_MIC_COSM
	tristate "Intel MIC Coprocessor State Management (COSM) Drivers"
	depends on CONFIG_64BIT && CONFIG_PCI && CONFIG_X86 && CONFIG_SCIF
	help
	  This enables COSM driver support for the Intel Many
	  Integrated Core (MIC) family of PCIe form factor coprocessor
	  devices. COSM drivers implement functions such as boot,
	  shutdown, reset and reboot of MIC devices.

	  If you are building a host kernel with an Intel MIC device then
	  say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  More information about the Intel MIC family as well as the Linux
	  OS and tools for MIC to use with this driver are available from
	  <http://software.intel.com/en-us/mic-developer>.

comment "VOP Driver"

config CONFIG_VOP
	tristate "VOP Driver"
	depends on CONFIG_VOP_BUS
	select CONFIG_VHOST_RING
	select CONFIG_VIRTIO
	help
	  This enables CONFIG_VOP (Virtio over PCIe) Driver support for the Intel
	  Many Integrated Core (MIC) family of PCIe form factor coprocessor
	  devices. The CONFIG_VOP driver allows virtio drivers, e.g. net, console
	  and block drivers, on the card connect to user space virtio
	  devices on the host.

	  If you are building a host kernel with an Intel MIC device then
	  say CONFIG_M (recommended) or Y, else say N. If unsure say N.

	  More information about the Intel MIC family as well as the Linux
	  OS and tools for MIC to use with this driver are available from
	  <http://software.intel.com/en-us/mic-developer>.

if CONFIG_VOP
source "drivers/vhost/Kconfig.vringh"
endif

endmenu