summaryrefslogtreecommitdiffstats
path: root/src/commonlib/storage/Kconfig
blob: 3581e2d77d0e238afb3ffacb587391403ff766a1 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
##
## This file is part of the coreboot project.
##
## SPDX-License-Identifier: GPL-2.0-only

config COMMONLIB_STORAGE
	bool
	default n

if COMMONLIB_STORAGE

config COMMONLIB_STORAGE_MMC
	bool "Enable MultiMediaCard (MMC) and eMMC device support"
	default n

config COMMONLIB_STORAGE_SD
	bool "Enable Secure Digital (SD) memory card support"
	default n

config STORAGE_ERASE
	bool "Support SD/MMC erase operations"
	default n
	help
	  Select to enable SD/MMC erase oprations

config STORAGE_EARLY_ERASE
	bool "Enable erase operations in bootblock and verstage"
	default n
	depends on STORAGE_ERASE

config STORAGE_WRITE
	bool "Support SD/MMC write operations"
	default n
	help
	  Select to enable SD/MMC write oprations

config STORAGE_EARLY_WRITE
	bool "Enable write operations in bootblock and verstage"
	default n
	depends on STORAGE_WRITE

config SD_MMC_DEBUG
	bool "Debug SD/MMC card/devices operations"
	default n
	help
	  Display overview of SD/MMC card/device operations

config SD_MMC_TRACE
	bool "Trace SD/MMC card/device operations"
	default n
	help
	  Display details of SD/MMC card/device operations

config SDHC_DEBUG
	bool "Debug SD/MMC controller settings"
	default n
	help
	  Display clock speed and bus width settings

config SDHC_TRACE
	bool "Trace SD/MMC controller operations"
	default n
	help
	  Display the operations performed by the SD/MMC controller

config SDHCI_CONTROLLER
	bool "Support SD host controller"
	default n

if SDHCI_CONTROLLER

config SDHCI_ADMA_IN_BOOTBLOCK
	bool
	default n
	help
	  Determine if bootblock is able to use ADMA2 or ADMA64

config SDHCI_ADMA_IN_ROMSTAGE
	bool
	default n
	help
	  Determine if romstage is able to use ADMA2 or ADMA64

config SDHCI_ADMA_IN_VERSTAGE
	bool
	default n
	help
	  Determine if verstage is able to use ADMA2 or ADMA64

config SDHCI_BOUNCE_BUFFER
	bool "Use DMA bounce buffer for SD/MMC controller"
	default n

endif # SDHCI_CONTROLLER
endif # COMMONLIB_STORAGE