Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 1 | menu "MVEBU commands" |
| 2 | depends on ARCH_MVEBU |
| 3 | |
| 4 | config CMD_MVEBU_BUBT |
| 5 | bool "bubt" |
Alexandru Gagniuc | 8d310ef | 2021-09-02 19:54:17 -0500 | [diff] [blame] | 6 | select SHA256 if ARMADA_3700 |
Pali Rohár | a4bbb2c | 2022-07-26 16:11:58 +0200 | [diff] [blame] | 7 | select SHA512 if ARMADA_3700 |
Pali Rohár | d83e04a | 2022-08-23 14:52:24 +0200 | [diff] [blame] | 8 | select MVEBU_EFUSE if ARMADA_38X || ARMADA_3700 |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 9 | help |
| 10 | bubt - Burn a u-boot image to flash |
| 11 | For details about bubt command please see the documentation |
| 12 | in doc/mvebu/cmd/bubt.txt |
| 13 | |
Pali Rohár | 3cf4cf9 | 2022-05-03 11:13:24 +0200 | [diff] [blame] | 14 | if CMD_MVEBU_BUBT |
| 15 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 16 | choice |
| 17 | prompt "Flash for image" |
| 18 | default MVEBU_SPI_BOOT |
| 19 | |
| 20 | config MVEBU_NAND_BOOT |
| 21 | bool "NAND flash boot" |
| 22 | depends on NAND_PXA3XX |
| 23 | help |
| 24 | Enable boot from NAND flash. |
| 25 | Allow usage of NAND flash as a target for "bubt" command |
| 26 | For details about bubt command please see the documentation |
| 27 | in doc/mvebu/cmd/bubt.txt |
| 28 | |
| 29 | config MVEBU_SPI_BOOT |
| 30 | bool "SPI flash boot" |
| 31 | depends on SPI_FLASH |
| 32 | help |
| 33 | Enable boot from SPI flash. |
| 34 | Allow usage of SPI flash as a target for "bubt" command |
| 35 | For details about bubt command please see the documentation |
| 36 | in doc/mvebu/cmd/bubt.txt |
| 37 | |
| 38 | config MVEBU_MMC_BOOT |
| 39 | bool "eMMC flash boot" |
Konstantin Porotchkin | e78a389 | 2021-03-17 18:53:43 +0200 | [diff] [blame] | 40 | depends on MVEBU_MMC || MMC_SDHCI_XENON |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 41 | help |
| 42 | Enable boot from eMMC boot partition |
| 43 | Allow usage of eMMC/SD device as a target for "bubt" command |
| 44 | For details about bubt command please see the documentation |
| 45 | in doc/mvebu/cmd/bubt.txt |
| 46 | |
| 47 | endchoice |
| 48 | |
| 49 | config MVEBU_UBOOT_DFLT_NAME |
| 50 | string "Default image name for bubt command" |
| 51 | default "flash-image.bin" |
| 52 | help |
| 53 | This option should contain a default file name to be used with |
| 54 | MVEBU "bubt" command if the source file name is omitted |
| 55 | |
Pali Rohár | 3cf4cf9 | 2022-05-03 11:13:24 +0200 | [diff] [blame] | 56 | endif |
| 57 | |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 58 | config CMD_MVEBU_COMPHY_RX_TRAINING |
| 59 | bool "mvebu_comphy_rx_training" |
| 60 | depends on ARMADA_8K |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 61 | help |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 62 | Perform COMPHY RX training sequence |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 63 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 64 | endmenu |