mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-19 13:50:48 +00:00

The dependencies in the mei framework are inconsistent, with some symbols using 'select INTEL_MEI' to force it being enabled and others using 'depends on INTEL_MEI'. In general, one should not select user-visible symbols, so change all of these to normal dependencies, but change the default on INTEL_MEI to be enabled when building a kernel for an Intel CPU with ME or a generic x86 kernel. Having consistent dependencies makes the 'menuconfig' listing more readable by using proper indentation. A large if/endif block is just a simpler syntax than repeating the dependencies for each symbol. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Wentong Wu <wentong.wu@intel.com> Link: https://lore.kernel.org/r/20231214183946.109124-2-arnd@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14 lines
460 B
Text
14 lines
460 B
Text
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2022-2023, Intel Corporation. All rights reserved.
|
|
#
|
|
config INTEL_MEI_GSC_PROXY
|
|
tristate "Intel GSC Proxy services of ME Interface"
|
|
depends on INTEL_MEI_ME
|
|
depends on DRM_I915
|
|
help
|
|
MEI Support for GSC Proxy Services on Intel platforms.
|
|
|
|
MEI GSC proxy enables messaging between GSC service on
|
|
Intel graphics card and services on CSE (MEI) firmware
|
|
residing SoC or PCH.
|
|
|