mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
961ab07df6
Rename the misleading cmd "rx_training" to "mvebu_comphy_rx_training" to avoid confusion and mixup with DDR3/4 training. This makes it clear, that this command is platform specific and handles the COMPHY RX training. Also depend this cmd on ARMADA_8K and not TARGET_MVEBU_ARMADA_8K to make is available for OcteonTX2 CN913x. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Pali Rohár <pali@kernel.org> Cc: Marek Behun <marek.behun@nic.cz> Cc: Kostya Porotchkin <kostap@marvell.com> Cc: Nadav Haklai <nadavh@marvell.com> Acked-by: Marek Behún <marek.behun@nic.cz> Acked-by: Pali Rohár <pali@kernel.org>
58 lines
1.5 KiB
Text
58 lines
1.5 KiB
Text
menu "MVEBU commands"
|
|
depends on ARCH_MVEBU
|
|
|
|
config CMD_MVEBU_BUBT
|
|
bool "bubt"
|
|
default n
|
|
help
|
|
bubt - Burn a u-boot image to flash
|
|
For details about bubt command please see the documentation
|
|
in doc/mvebu/cmd/bubt.txt
|
|
|
|
choice
|
|
prompt "Flash for image"
|
|
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"
|
|
depends on MVEBU_MMC || MMC_SDHCI_XENON
|
|
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
|
|
|
|
endchoice
|
|
|
|
config MVEBU_UBOOT_DFLT_NAME
|
|
string "Default image name for bubt command"
|
|
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
|
|
|
|
config CMD_MVEBU_COMPHY_RX_TRAINING
|
|
bool "mvebu_comphy_rx_training"
|
|
depends on ARMADA_8K
|
|
help
|
|
Perform COMPHY RX training sequence
|
|
|
|
endmenu
|