2016-12-08 10:22:28 +00:00
|
|
|
menu "MVEBU commands"
|
|
|
|
depends on ARCH_MVEBU
|
|
|
|
|
|
|
|
config CMD_MVEBU_BUBT
|
|
|
|
bool "bubt"
|
2023-01-21 22:51:15 +00:00
|
|
|
default y
|
2021-09-03 00:54:17 +00:00
|
|
|
select SHA256 if ARMADA_3700
|
2022-07-26 14:11:58 +00:00
|
|
|
select SHA512 if ARMADA_3700
|
2023-01-22 00:25:12 +00:00
|
|
|
select DOS_PARTITION if ARMADA_3700
|
|
|
|
select EFI_PARTITION if ARMADA_3700
|
|
|
|
select PARTITION_TYPE_GUID if ARMADA_3700
|
2022-08-23 12:52:24 +00:00
|
|
|
select MVEBU_EFUSE if ARMADA_38X || ARMADA_3700
|
2016-12-08 10:22:28 +00:00
|
|
|
help
|
|
|
|
bubt - Burn a u-boot image to flash
|
|
|
|
For details about bubt command please see the documentation
|
|
|
|
in doc/mvebu/cmd/bubt.txt
|
|
|
|
|
2022-05-03 09:13:24 +00:00
|
|
|
if CMD_MVEBU_BUBT
|
|
|
|
|
2016-12-08 10:22:28 +00:00
|
|
|
choice
|
|
|
|
prompt "Flash for image"
|
2023-01-21 22:38:31 +00:00
|
|
|
default MVEBU_SPI_BOOT if MVEBU_SPL_BOOT_DEVICE_SPI
|
|
|
|
default MVEBU_NAND_BOOT if MVEBU_SPL_BOOT_DEVICE_NAND
|
|
|
|
default MVEBU_MMC_BOOT if MVEBU_SPL_BOOT_DEVICE_MMC
|
|
|
|
default MVEBU_SATA_BOOT if MVEBU_SPL_BOOT_DEVICE_SATA
|
2016-12-08 10:22:28 +00:00
|
|
|
default MVEBU_SPI_BOOT
|
|
|
|
|
|
|
|
config MVEBU_NAND_BOOT
|
|
|
|
bool "NAND flash boot"
|
|
|
|
depends on NAND_PXA3XX
|
|
|
|
help
|
|
|
|
Enable boot from NAND flash.
|
|
|
|
Allow usage of NAND flash as a target for "bubt" command
|
|
|
|
For details about bubt command please see the documentation
|
|
|
|
in doc/mvebu/cmd/bubt.txt
|
|
|
|
|
|
|
|
config MVEBU_SPI_BOOT
|
|
|
|
bool "SPI flash boot"
|
|
|
|
depends on SPI_FLASH
|
|
|
|
help
|
|
|
|
Enable boot from SPI flash.
|
|
|
|
Allow usage of SPI flash as a target for "bubt" command
|
|
|
|
For details about bubt command please see the documentation
|
|
|
|
in doc/mvebu/cmd/bubt.txt
|
|
|
|
|
|
|
|
config MVEBU_MMC_BOOT
|
|
|
|
bool "eMMC flash boot"
|
2021-03-17 16:53:43 +00:00
|
|
|
depends on MVEBU_MMC || MMC_SDHCI_XENON
|
2016-12-08 10:22:28 +00:00
|
|
|
help
|
|
|
|
Enable boot from eMMC boot partition
|
|
|
|
Allow usage of eMMC/SD device as a target for "bubt" command
|
|
|
|
For details about bubt command please see the documentation
|
|
|
|
in doc/mvebu/cmd/bubt.txt
|
|
|
|
|
2023-01-22 00:25:12 +00:00
|
|
|
config MVEBU_SATA_BOOT
|
|
|
|
bool "SATA flash boot"
|
|
|
|
depends on SCSI
|
|
|
|
help
|
|
|
|
Enable boot from SATA disk.
|
|
|
|
Allow usage of SATA disk as a target for "bubt" command
|
|
|
|
For details about bubt command please see the documentation
|
|
|
|
in doc/mvebu/cmd/bubt.txt
|
|
|
|
|
2016-12-08 10:22:28 +00:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config MVEBU_UBOOT_DFLT_NAME
|
|
|
|
string "Default image name for bubt command"
|
2023-01-08 13:01:03 +00:00
|
|
|
default BUILD_TARGET if ARMADA_32BIT && BUILD_TARGET != ""
|
2016-12-08 10:22:28 +00:00
|
|
|
default "flash-image.bin"
|
|
|
|
help
|
|
|
|
This option should contain a default file name to be used with
|
|
|
|
MVEBU "bubt" command if the source file name is omitted
|
|
|
|
|
2022-05-03 09:13:24 +00:00
|
|
|
endif
|
|
|
|
|
2021-05-05 07:15:10 +00:00
|
|
|
config CMD_MVEBU_COMPHY_RX_TRAINING
|
|
|
|
bool "mvebu_comphy_rx_training"
|
|
|
|
depends on ARMADA_8K
|
2021-03-23 10:57:57 +00:00
|
|
|
help
|
2021-05-05 07:15:10 +00:00
|
|
|
Perform COMPHY RX training sequence
|
2021-03-23 10:57:57 +00:00
|
|
|
|
2016-12-08 10:22:28 +00:00
|
|
|
endmenu
|