blob: 39963db82c9877adc4c8824bab9922412b7d9e16 [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"
Alexandru Gagniuceb5171d2021-09-02 19:54:17 -05006 select SHA256 if ARMADA_3700
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02007 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
Pali Rohár008468f2022-05-03 11:13:24 +020012if CMD_MVEBU_BUBT
13
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +020014choice
15 prompt "Flash for image"
16 default MVEBU_SPI_BOOT
17
18config MVEBU_NAND_BOOT
19 bool "NAND flash boot"
20 depends on NAND_PXA3XX
21 help
22 Enable boot from NAND flash.
23 Allow usage of NAND flash as a target for "bubt" command
24 For details about bubt command please see the documentation
25 in doc/mvebu/cmd/bubt.txt
26
27config MVEBU_SPI_BOOT
28 bool "SPI flash boot"
29 depends on SPI_FLASH
30 help
31 Enable boot from SPI flash.
32 Allow usage of SPI flash as a target for "bubt" command
33 For details about bubt command please see the documentation
34 in doc/mvebu/cmd/bubt.txt
35
36config MVEBU_MMC_BOOT
37 bool "eMMC flash boot"
Konstantin Porotchkin9f27bcc2021-03-17 18:53:43 +020038 depends on MVEBU_MMC || MMC_SDHCI_XENON
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +020039 help
40 Enable boot from eMMC boot partition
41 Allow usage of eMMC/SD device as a target for "bubt" command
42 For details about bubt command please see the documentation
43 in doc/mvebu/cmd/bubt.txt
44
45endchoice
46
47config MVEBU_UBOOT_DFLT_NAME
48 string "Default image name for bubt command"
49 default "flash-image.bin"
50 help
51 This option should contain a default file name to be used with
52 MVEBU "bubt" command if the source file name is omitted
53
Pali Rohár008468f2022-05-03 11:13:24 +020054endif
55
Stefan Roese961ab072021-05-05 09:15:10 +020056config CMD_MVEBU_COMPHY_RX_TRAINING
57 bool "mvebu_comphy_rx_training"
58 depends on ARMADA_8K
Igal Libermane49cdbe2021-03-23 11:57:57 +010059 help
Stefan Roese961ab072021-05-05 09:15:10 +020060 Perform COMPHY RX training sequence
Igal Libermane49cdbe2021-03-23 11:57:57 +010061
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +020062endmenu