blob: 340fb3aff6b85e7731912a7e02c1423aeadbd0c1 [file] [log] [blame]
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02001menu "MVEBU commands"
2depends on ARCH_MVEBU
3
4config CMD_MVEBU_BUBT
5 bool "bubt"
6 default n
Alexandru Gagniuceb5171d2021-09-02 19:54:17 -05007 select SHA256 if ARMADA_3700
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02008 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
13choice
14 prompt "Flash for image"
15 default MVEBU_SPI_BOOT
16
17config 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
26config 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
35config MVEBU_MMC_BOOT
36 bool "eMMC flash boot"
Konstantin Porotchkin9f27bcc2021-03-17 18:53:43 +020037 depends on MVEBU_MMC || MMC_SDHCI_XENON
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +020038 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
44endchoice
45
46config 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
Stefan Roese961ab072021-05-05 09:15:10 +020053config CMD_MVEBU_COMPHY_RX_TRAINING
54 bool "mvebu_comphy_rx_training"
55 depends on ARMADA_8K
Igal Libermane49cdbe2021-03-23 11:57:57 +010056 help
Stefan Roese961ab072021-05-05 09:15:10 +020057 Perform COMPHY RX training sequence
Igal Libermane49cdbe2021-03-23 11:57:57 +010058
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +020059endmenu