blob: 7c42c75afbe2d9b6519f88d3a4d96ee6a94d65ac [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
7 help
8 bubt - Burn a u-boot image to flash
9 For details about bubt command please see the documentation
10 in doc/mvebu/cmd/bubt.txt
11
12choice
13 prompt "Flash for image"
14 default MVEBU_SPI_BOOT
15
16config MVEBU_NAND_BOOT
17 bool "NAND flash boot"
18 depends on NAND_PXA3XX
19 help
20 Enable boot from NAND flash.
21 Allow usage of NAND flash as a target for "bubt" command
22 For details about bubt command please see the documentation
23 in doc/mvebu/cmd/bubt.txt
24
25config MVEBU_SPI_BOOT
26 bool "SPI flash boot"
27 depends on SPI_FLASH
28 help
29 Enable boot from SPI flash.
30 Allow usage of SPI flash as a target for "bubt" command
31 For details about bubt command please see the documentation
32 in doc/mvebu/cmd/bubt.txt
33
34config MVEBU_MMC_BOOT
35 bool "eMMC flash boot"
Konstantin Porotchkin9f27bcc2021-03-17 18:53:43 +020036 depends on MVEBU_MMC || MMC_SDHCI_XENON
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +020037 help
38 Enable boot from eMMC boot partition
39 Allow usage of eMMC/SD device as a target for "bubt" command
40 For details about bubt command please see the documentation
41 in doc/mvebu/cmd/bubt.txt
42
43endchoice
44
45config MVEBU_UBOOT_DFLT_NAME
46 string "Default image name for bubt command"
47 default "flash-image.bin"
48 help
49 This option should contain a default file name to be used with
50 MVEBU "bubt" command if the source file name is omitted
51
Stefan Roese961ab072021-05-05 09:15:10 +020052config CMD_MVEBU_COMPHY_RX_TRAINING
53 bool "mvebu_comphy_rx_training"
54 depends on ARMADA_8K
Igal Libermane49cdbe2021-03-23 11:57:57 +010055 help
Stefan Roese961ab072021-05-05 09:15:10 +020056 Perform COMPHY RX training sequence
Igal Libermane49cdbe2021-03-23 11:57:57 +010057
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +020058endmenu