blob: 120397d6d4d09d0e777a99c91f92d2fc14432c03 [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"
Alexandru Gagniuc8d310ef2021-09-02 19:54:17 -05006 select SHA256 if ARMADA_3700
Pali Rohára4bbb2c2022-07-26 16:11:58 +02007 select SHA512 if ARMADA_3700
Konstantin Porotchkin97d26782016-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
Pali Rohár3cf4cf92022-05-03 11:13:24 +020013if CMD_MVEBU_BUBT
14
Konstantin Porotchkin97d26782016-12-08 12:22:28 +020015choice
16 prompt "Flash for image"
17 default MVEBU_SPI_BOOT
18
19config MVEBU_NAND_BOOT
20 bool "NAND flash boot"
21 depends on NAND_PXA3XX
22 help
23 Enable boot from NAND flash.
24 Allow usage of NAND flash as a target for "bubt" command
25 For details about bubt command please see the documentation
26 in doc/mvebu/cmd/bubt.txt
27
28config MVEBU_SPI_BOOT
29 bool "SPI flash boot"
30 depends on SPI_FLASH
31 help
32 Enable boot from SPI flash.
33 Allow usage of SPI flash as a target for "bubt" command
34 For details about bubt command please see the documentation
35 in doc/mvebu/cmd/bubt.txt
36
37config MVEBU_MMC_BOOT
38 bool "eMMC flash boot"
Konstantin Porotchkine78a3892021-03-17 18:53:43 +020039 depends on MVEBU_MMC || MMC_SDHCI_XENON
Konstantin Porotchkin97d26782016-12-08 12:22:28 +020040 help
41 Enable boot from eMMC boot partition
42 Allow usage of eMMC/SD device as a target for "bubt" command
43 For details about bubt command please see the documentation
44 in doc/mvebu/cmd/bubt.txt
45
46endchoice
47
48config MVEBU_UBOOT_DFLT_NAME
49 string "Default image name for bubt command"
50 default "flash-image.bin"
51 help
52 This option should contain a default file name to be used with
53 MVEBU "bubt" command if the source file name is omitted
54
Pali Rohár3cf4cf92022-05-03 11:13:24 +020055endif
56
Stefan Roese38730322021-05-05 09:15:10 +020057config CMD_MVEBU_COMPHY_RX_TRAINING
58 bool "mvebu_comphy_rx_training"
59 depends on ARMADA_8K
Igal Liberman6795a662021-03-23 11:57:57 +010060 help
Stefan Roese38730322021-05-05 09:15:10 +020061 Perform COMPHY RX training sequence
Igal Liberman6795a662021-03-23 11:57:57 +010062
Konstantin Porotchkin97d26782016-12-08 12:22:28 +020063endmenu