blob: 4afe0bf32ddb5d77b2e52b93a1c9f4daeb34d500 [file] [log] [blame]
Konstantin Porotchkin97d26782016-12-08 12:22:28 +02001menu "MVEBU commands"
2depends on ARCH_MVEBU
3
4config CMD_MVEBU_BUBT
5 bool "bubt"
Konstantin Porotchkin97d26782016-12-08 12:22:28 +02006 help
7 bubt - Burn a u-boot image to flash
8 For details about bubt command please see the documentation
9 in doc/mvebu/cmd/bubt.txt
10
11choice
12 prompt "Flash for image"
13 default MVEBU_SPI_BOOT
14
15config MVEBU_NAND_BOOT
16 bool "NAND flash boot"
17 depends on NAND_PXA3XX
18 help
19 Enable boot from NAND flash.
20 Allow usage of NAND flash as a target for "bubt" command
21 For details about bubt command please see the documentation
22 in doc/mvebu/cmd/bubt.txt
23
24config MVEBU_SPI_BOOT
25 bool "SPI flash boot"
26 depends on SPI_FLASH
27 help
28 Enable boot from SPI flash.
29 Allow usage of SPI flash as a target for "bubt" command
30 For details about bubt command please see the documentation
31 in doc/mvebu/cmd/bubt.txt
32
33config MVEBU_MMC_BOOT
34 bool "eMMC flash boot"
Konstantin Porotchkine78a3892021-03-17 18:53:43 +020035 depends on MVEBU_MMC || MMC_SDHCI_XENON
Konstantin Porotchkin97d26782016-12-08 12:22:28 +020036 help
37 Enable boot from eMMC boot partition
38 Allow usage of eMMC/SD device as a target for "bubt" command
39 For details about bubt command please see the documentation
40 in doc/mvebu/cmd/bubt.txt
41
42endchoice
43
44config MVEBU_UBOOT_DFLT_NAME
45 string "Default image name for bubt command"
46 default "flash-image.bin"
47 help
48 This option should contain a default file name to be used with
49 MVEBU "bubt" command if the source file name is omitted
50
Stefan Roese38730322021-05-05 09:15:10 +020051config CMD_MVEBU_COMPHY_RX_TRAINING
52 bool "mvebu_comphy_rx_training"
53 depends on ARMADA_8K
Igal Liberman6795a662021-03-23 11:57:57 +010054 help
Stefan Roese38730322021-05-05 09:15:10 +020055 Perform COMPHY RX training sequence
Igal Liberman6795a662021-03-23 11:57:57 +010056
Konstantin Porotchkin97d26782016-12-08 12:22:28 +020057endmenu