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
#
# CONFIG_CAIF net configurations
#

menuconfig CONFIG_CAIF
	tristate "CAIF support"
	select CONFIG_CRC_CCITT
	default n
	---help---
	The "Communication CPU to Application CPU Interface" (CONFIG_CAIF) is a packet
	based connection-oriented MUX protocol developed by ST-Ericsson for use
	with its modems. It is accessed from user space as sockets (PF_CAIF).

	Say Y (or CONFIG_M) here if you build for a phone product (e.g. Android or
	MeeGo ) that uses CONFIG_CAIF as transport, if unsure say N.

	If you select to build it as module then CONFIG_CAIF_NETDEV also needs to be
	built as modules. You will also need to say yes to any CONFIG_CAIF physical
	devices that your platform requires.

	See Documentation/networking/caif for a further explanation on how to
	use and configure CONFIG_CAIF.

config  CONFIG_CAIF_DEBUG
	bool "Enable Debug"
	depends on CONFIG_CAIF
	default n
	---help---
	Enable the inclusion of debug code in the CONFIG_CAIF stack.
	Be aware that doing this will impact performance.
	If unsure say N.

config CONFIG_CAIF_NETDEV
	tristate "CAIF GPRS Network device"
	depends on CONFIG_CAIF
	default CONFIG_CAIF
	---help---
	Say Y if you will be using a CONFIG_CAIF based GPRS network device.
	This can be either built-in or a loadable module,
	If you select to build it as a built-in then the main CONFIG_CAIF device must
	also be a built-in.
	If unsure say Y.

config CONFIG_CAIF_USB
	tristate "CAIF USB support"
	depends on CONFIG_CAIF
	default n
	---help---
	Say Y if you are using CONFIG_CAIF over CONFIG_USB CDC NCM.
	This can be either built-in or a loadable module,
	If you select to build it as a built-in then the main CONFIG_CAIF device must
	also be a built-in.
	If unsure say N.