common: Remove unused CONFIG_FIT_SHAxxx selectors
[platform/kernel/u-boot.git] / cmd / mvebu / Kconfig
1 menu "MVEBU commands"
2 depends on ARCH_MVEBU
3
4 config CMD_MVEBU_BUBT
5         bool "bubt"
6         default n
7         select SHA256 if ARMADA_3700
8         help
9           bubt - Burn a u-boot image to flash
10           For details about bubt command please see the documentation
11           in doc/mvebu/cmd/bubt.txt
12
13 choice
14         prompt "Flash for image"
15         default MVEBU_SPI_BOOT
16
17 config MVEBU_NAND_BOOT
18         bool "NAND flash boot"
19         depends on NAND_PXA3XX
20         help
21           Enable boot from NAND flash.
22           Allow usage of NAND flash as a target for "bubt" command
23           For details about bubt command please see the documentation
24           in doc/mvebu/cmd/bubt.txt
25
26 config MVEBU_SPI_BOOT
27         bool "SPI flash boot"
28         depends on SPI_FLASH
29         help
30           Enable boot from SPI flash.
31           Allow usage of SPI flash as a target for "bubt" command
32           For details about bubt command please see the documentation
33           in doc/mvebu/cmd/bubt.txt
34
35 config MVEBU_MMC_BOOT
36         bool "eMMC flash boot"
37         depends on MVEBU_MMC || MMC_SDHCI_XENON
38         help
39           Enable boot from eMMC boot partition
40           Allow usage of eMMC/SD device as a target for "bubt" command
41           For details about bubt command please see the documentation
42           in doc/mvebu/cmd/bubt.txt
43
44 endchoice
45
46 config MVEBU_UBOOT_DFLT_NAME
47         string "Default image name for bubt command"
48         default "flash-image.bin"
49         help
50           This option should contain a default file name to be used with
51           MVEBU "bubt" command if the source file name is omitted
52
53 config CMD_MVEBU_COMPHY_RX_TRAINING
54         bool "mvebu_comphy_rx_training"
55         depends on ARMADA_8K
56         help
57           Perform COMPHY RX training sequence
58
59 endmenu