summaryrefslogtreecommitdiffstats
path: root/src/drivers/smmstore/Kconfig
blob: 3e20e3e66d8917e9032dfe7ed1d0ead95be9cf28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
## SPDX-License-Identifier: GPL-2.0-only

config SMMSTORE
	bool "Support for flash based, SMM mediated data store"
	depends on BOOT_DEVICE_SUPPORTS_WRITES && HAVE_SMI_HANDLER
	default y if PAYLOAD_TIANOCORE
	select SPI_FLASH_SMM if BOOT_DEVICE_SPI_FLASH_RW_NOMMAP

config SMMSTORE_V2
	bool "Use version 2 of SMMSTORE API"
	depends on SMMSTORE
	default y if TIANOCORE_UEFIPAYLOAD
	default n
	help
	  Version 2 of SMMSTORE allows secure communication with SMM and
	  makes no assumptions on the structure of the data stored within.
	  It splits the store into chunks to allows fault tolerant writes.

	  By using version 2 you cannot make use of software that expects
	  a version 1 SMMSTORE.

if SMMSTORE

config SMMSTORE_SIZE
	hex "size of the SMMSTORE FMAP region"
	default 0x40000
	help
	  Sets the size of the default SMMSTORE FMAP region.
	  If using an UEFI payload, note that UEFI specifies at least 64K.
	  The current implementation of SMMSTORE is append only, so until
	  garbage collection is implemented it is better to set this to
	  a rather large value.

endif