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