89 lines · plain
1# SPDX-License-Identifier: GPL-2.02# Copyright (c) 2003-2019, Intel Corporation. All rights reserved.3config INTEL_MEI4 tristate "Intel Management Engine Interface"5 depends on X86 && PCI6 default GENERIC_CPU || MCORE2 || MATOM || X86_GENERIC7 help8 The Intel Management Engine (Intel ME) provides Manageability,9 Security and Media services for system containing Intel chipsets.10 if selected /dev/mei misc device will be created.11 12 For more information see13 <https://software.intel.com/en-us/manageability/>14 15if INTEL_MEI16 17config INTEL_MEI_ME18 tristate "ME Enabled Intel Chipsets"19 default y20 help21 MEI support for ME Enabled Intel chipsets.22 23 Supported Chipsets are:24 7 Series Chipset Family25 6 Series Chipset Family26 5 Series Chipset Family27 4 Series Chipset Family28 Mobile 4 Series Chipset Family29 ICH930 82946GZ/GL31 82G35 Express32 82Q963/Q96533 82P965/G96534 Mobile PM965/GM96535 Mobile GME965/GLE96036 82Q35 Express37 82G33/G31/P35/P31 Express38 82Q33 Express39 82X38/X48 Express40 41config INTEL_MEI_TXE42 tristate "Intel Trusted Execution Environment with ME Interface"43 help44 MEI Support for Trusted Execution Environment device on Intel SoCs45 46 Supported SoCs:47 Intel Bay Trail48 49config INTEL_MEI_GSC50 tristate "Intel MEI GSC embedded device"51 depends on INTEL_MEI_ME52 depends on DRM_I91553 help54 Intel auxiliary driver for GSC devices embedded in Intel graphics devices.55 56 An MEI device here called GSC can be embedded in an57 Intel graphics devices, to support a range of chassis58 tasks such as graphics card firmware update and security59 tasks.60 61config INTEL_MEI_VSC_HW62 tristate "Intel visual sensing controller device transport driver"63 depends on ACPI && SPI64 depends on GPIOLIB || COMPILE_TEST65 help66 Intel SPI transport driver between host and Intel visual sensing67 controller (IVSC) device.68 69 This driver can also be built as a module. If so, the module70 will be called mei-vsc-hw.71 72config INTEL_MEI_VSC73 tristate "Intel visual sensing controller device with ME interface"74 depends on INTEL_MEI_VSC_HW75 help76 Intel MEI over SPI driver for Intel visual sensing controller77 (IVSC) device embedded in IA platform. It supports camera sharing78 between IVSC for context sensing and IPU for typical media usage.79 Select this config should enable transport layer for IVSC device.80 81 This driver can also be built as a module. If so, the module82 will be called mei-vsc.83 84source "drivers/misc/mei/hdcp/Kconfig"85source "drivers/misc/mei/pxp/Kconfig"86source "drivers/misc/mei/gsc_proxy/Kconfig"87 88endif89