mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
9958d30f38
media Kconfig has two entries associated to V4L API: VIDEO_DEV and VIDEO_V4L2. On Kernel 2.6.x, there were two V4L APIs, each one with its own flag. VIDEO_DEV were meant to: 1) enable Video4Linux and make its Kconfig options to appear; 2) it makes the Kernel build the V4L core. while VIDEO_V4L2 where used to distinguish between drivers that implement the newer API and drivers that implemented the former one. With time, such meaning changed, specially after the removal of all V4L version 1 drivers. At the current implementation, VIDEO_DEV only does (1): it enables the media options related to V4L, that now has: menu "Video4Linux options" visible if VIDEO_DEV source "drivers/media/v4l2-core/Kconfig" endmenu but it doesn't affect anymore the V4L core drivers. The rationale is that the V4L2 core has a "soft" dependency at the I2C bus, and now requires to select a number of other Kconfig options: config VIDEO_V4L2 tristate depends on (I2C || I2C=n) && VIDEO_DEV select RATIONAL select VIDEOBUF2_V4L2 if VIDEOBUF2_CORE default (I2C || I2C=n) && VIDEO_DEV In the past, merging them would be tricky, but it seems that it is now possible to merge those symbols, in order to simplify V4L dependencies. Let's keep VIDEO_DEV, as this one is used on some make *defconfig configurations. Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Neil Armstrong <narmstrong@baylibre.com> # for meson-vdec & meson-ge2d Acked-by: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com> Acked-by: Łukasz Stelmach <l.stelmach@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
130 lines
3.2 KiB
Text
130 lines
3.2 KiB
Text
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# RMI4 configuration
|
|
#
|
|
config RMI4_CORE
|
|
tristate "Synaptics RMI4 bus support"
|
|
select IRQ_DOMAIN
|
|
help
|
|
Say Y here if you want to support the Synaptics RMI4 bus. This is
|
|
required for all RMI4 device support.
|
|
|
|
If unsure, say Y.
|
|
|
|
if RMI4_CORE
|
|
|
|
config RMI4_I2C
|
|
tristate "RMI4 I2C Support"
|
|
depends on I2C
|
|
help
|
|
Say Y here if you want to support RMI4 devices connected to an I2C
|
|
bus.
|
|
|
|
If unsure, say Y.
|
|
|
|
config RMI4_SPI
|
|
tristate "RMI4 SPI Support"
|
|
depends on SPI
|
|
help
|
|
Say Y here if you want to support RMI4 devices connected to a SPI
|
|
bus.
|
|
|
|
If unsure, say N.
|
|
|
|
config RMI4_SMB
|
|
tristate "RMI4 SMB Support"
|
|
depends on I2C
|
|
help
|
|
Say Y here if you want to support RMI4 devices connected to an SMB
|
|
bus.
|
|
|
|
If unsure, say N.
|
|
|
|
To compile this driver as a module, choose M here: the module will be
|
|
called rmi_smbus.
|
|
|
|
config RMI4_F03
|
|
bool "RMI4 Function 03 (PS2 Guest)"
|
|
depends on RMI4_CORE
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 03.
|
|
|
|
Function 03 provides PS2 guest support for RMI4 devices. This
|
|
includes support for TrackPoints on TouchPads.
|
|
|
|
config RMI4_F03_SERIO
|
|
tristate
|
|
depends on RMI4_CORE
|
|
depends on RMI4_F03
|
|
default RMI4_CORE
|
|
select SERIO
|
|
|
|
config RMI4_2D_SENSOR
|
|
bool
|
|
|
|
config RMI4_F11
|
|
bool "RMI4 Function 11 (2D pointing)"
|
|
select RMI4_2D_SENSOR
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 11.
|
|
|
|
Function 11 provides 2D multifinger pointing for touchscreens and
|
|
touchpads. For sensors that support relative pointing, F11 also
|
|
provides mouse input.
|
|
|
|
config RMI4_F12
|
|
bool "RMI4 Function 12 (2D pointing)"
|
|
select RMI4_2D_SENSOR
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 12.
|
|
|
|
Function 12 provides 2D multifinger pointing for touchscreens and
|
|
touchpads. For sensors that support relative pointing, F12 also
|
|
provides mouse input.
|
|
|
|
config RMI4_F30
|
|
bool "RMI4 Function 30 (GPIO LED)"
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 30.
|
|
|
|
Function 30 provides GPIO and LED support for RMI4 devices. This
|
|
includes support for buttons on TouchPads and ClickPads.
|
|
|
|
config RMI4_F34
|
|
bool "RMI4 Function 34 (Device reflash)"
|
|
select FW_LOADER
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 34.
|
|
|
|
Function 34 provides support for upgrading the firmware on the RMI4
|
|
device via the firmware loader interface. This is triggered using a
|
|
sysfs attribute.
|
|
|
|
config RMI4_F3A
|
|
bool "RMI4 Function 3A (GPIO)"
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 3A.
|
|
|
|
Function 3A provides GPIO support for RMI4 devices. This includes
|
|
support for buttons on TouchPads and ClickPads.
|
|
|
|
config RMI4_F54
|
|
bool "RMI4 Function 54 (Analog diagnostics)"
|
|
depends on VIDEO_DEV=y || (RMI4_CORE=m && VIDEO_DEV=m)
|
|
select VIDEOBUF2_VMALLOC
|
|
select RMI4_F55
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 54
|
|
|
|
Function 54 provides access to various diagnostic features in certain
|
|
RMI4 touch sensors.
|
|
|
|
config RMI4_F55
|
|
bool "RMI4 Function 55 (Sensor tuning)"
|
|
help
|
|
Say Y here if you want to add support for RMI4 function 55
|
|
|
|
Function 55 provides access to the RMI4 touch sensor tuning
|
|
mechanism.
|
|
|
|
endif # RMI_CORE
|