2019-05-19 13:07:45 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2010-03-30 13:56:30 +00:00
|
|
|
#
|
|
|
|
# CAIF physical drivers
|
|
|
|
#
|
|
|
|
|
2019-10-01 16:04:00 -07:00
|
|
|
menuconfig CAIF_DRIVERS
|
|
|
|
bool "CAIF transport drivers"
|
|
|
|
depends on CAIF
|
|
|
|
help
|
|
|
|
Enable this to see CAIF physical drivers.
|
|
|
|
|
|
|
|
if CAIF_DRIVERS
|
2010-03-30 13:56:30 +00:00
|
|
|
|
|
|
|
config CAIF_TTY
|
|
|
|
tristate "CAIF TTY transport driver"
|
2013-01-17 22:44:22 -08:00
|
|
|
depends on CAIF && TTY
|
2010-03-30 13:56:30 +00:00
|
|
|
default n
|
2020-06-14 01:50:22 +09:00
|
|
|
help
|
2019-11-21 21:28:28 +08:00
|
|
|
The CAIF TTY transport driver is a Line Discipline (ldisc)
|
|
|
|
identified as N_CAIF. When this ldisc is opened from user space
|
|
|
|
it will redirect the TTY's traffic into the CAIF stack.
|
2010-06-29 00:08:21 -07:00
|
|
|
|
2011-06-01 03:29:18 +00:00
|
|
|
config CAIF_HSI
|
2019-11-21 21:28:28 +08:00
|
|
|
tristate "CAIF HSI transport driver"
|
|
|
|
depends on CAIF
|
|
|
|
default n
|
2020-06-14 01:50:22 +09:00
|
|
|
help
|
2019-11-21 21:28:28 +08:00
|
|
|
The CAIF low level driver for CAIF over HSI.
|
|
|
|
Be aware that if you enable this then you also need to
|
|
|
|
enable a low-level HSI driver.
|
2013-03-20 13:52:24 +10:30
|
|
|
|
|
|
|
config CAIF_VIRTIO
|
|
|
|
tristate "CAIF virtio transport driver"
|
2020-04-23 08:36:57 -04:00
|
|
|
depends on CAIF && HAS_DMA
|
2013-03-20 13:52:24 +10:30
|
|
|
select VHOST_RING
|
|
|
|
select VIRTIO
|
|
|
|
select GENERIC_ALLOCATOR
|
|
|
|
default n
|
2020-06-14 01:50:22 +09:00
|
|
|
help
|
2019-11-21 21:28:28 +08:00
|
|
|
The CAIF driver for CAIF over Virtio.
|
2013-03-20 13:52:24 +10:30
|
|
|
|
2019-10-01 16:04:00 -07:00
|
|
|
endif # CAIF_DRIVERS
|