1# SPDX-License-Identifier: GPL-2.0
2#
3# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
5# Amazon Nitro Enclaves (NE) support.
6# Nitro is a hypervisor that has been developed by Amazon.
7
8# TODO: Add dependency for ARM64 once NE is supported on Arm platforms. For now,
9# the NE kernel driver can be built for aarch64 arch.
10# depends on (ARM64 || X86) && HOTPLUG_CPU && PCI && SMP
11
12config NITRO_ENCLAVES
13	tristate "Nitro Enclaves Support"
14	depends on X86 && HOTPLUG_CPU && PCI && SMP
15	help
16	  This driver consists of support for enclave lifetime management
17	  for Nitro Enclaves (NE).
18
19	  To compile this driver as a module, choose M here.
20	  The module will be called nitro_enclaves.
21