mb/google/nissa/var/glassway: Modify touch screen ILIT2901 sequence
[coreboot2.git] / src / commonlib / storage / Kconfig
blob7b98ca190f79cfef929b5d551fd080817af7ec90
1 ## SPDX-License-Identifier: GPL-2.0-only
3 config COMMONLIB_STORAGE
4         bool
5         default n
7 if COMMONLIB_STORAGE
9 config COMMONLIB_STORAGE_MMC
10         bool "Enable MultiMediaCard (MMC) and eMMC device support"
11         default n
13 config COMMONLIB_STORAGE_SD
14         bool "Enable Secure Digital (SD) memory card support"
15         default n
17 config STORAGE_ERASE
18         bool "Support SD/MMC erase operations"
19         default n
20         help
21           Select to enable SD/MMC erase oprations
23 config STORAGE_EARLY_ERASE
24         bool "Enable erase operations in bootblock and verstage"
25         default n
26         depends on STORAGE_ERASE
28 config STORAGE_WRITE
29         bool "Support SD/MMC write operations"
30         default n
31         help
32           Select to enable SD/MMC write oprations
34 config STORAGE_EARLY_WRITE
35         bool "Enable write operations in bootblock and verstage"
36         default n
37         depends on STORAGE_WRITE
39 config SD_MMC_DEBUG
40         bool "Debug SD/MMC card/devices operations"
41         default n
42         help
43           Display overview of SD/MMC card/device operations
45 config SD_MMC_TRACE
46         bool "Trace SD/MMC card/device operations"
47         default n
48         help
49           Display details of SD/MMC card/device operations
51 config SDHC_DEBUG
52         bool "Debug SD/MMC controller settings"
53         default n
54         help
55           Display clock speed and bus width settings
57 config SDHC_TRACE
58         bool "Trace SD/MMC controller operations"
59         default n
60         help
61           Display the operations performed by the SD/MMC controller
63 config SDHCI_CONTROLLER
64         bool "Support SD host controller"
65         default n
67 if SDHCI_CONTROLLER
69 config SDHCI_ADMA_IN_BOOTBLOCK
70         bool
71         default n
72         help
73           Determine if bootblock is able to use ADMA2 or ADMA64
75 config SDHCI_ADMA_IN_ROMSTAGE
76         bool
77         default n
78         help
79           Determine if romstage is able to use ADMA2 or ADMA64
81 config SDHCI_ADMA_IN_VERSTAGE
82         bool
83         default n
84         help
85           Determine if verstage is able to use ADMA2 or ADMA64
87 config SDHCI_BOUNCE_BUFFER
88         bool "Use DMA bounce buffer for SD/MMC controller"
89         default n
91 endif # SDHCI_CONTROLLER
92 endif # COMMONLIB_STORAGE