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 |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 7 | 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ár | 3cf4cf9 | 2022-05-03 11:13:24 +0200 | [diff] [blame^] | 12 | if CMD_MVEBU_BUBT |
| 13 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 14 | choice |
| 15 | prompt "Flash for image" |
| 16 | default MVEBU_SPI_BOOT |
| 17 | |
| 18 | config 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 | |
| 27 | config 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 | |
| 36 | config MVEBU_MMC_BOOT |
| 37 | bool "eMMC flash boot" |
Konstantin Porotchkin | e78a389 | 2021-03-17 18:53:43 +0200 | [diff] [blame] | 38 | depends on MVEBU_MMC || MMC_SDHCI_XENON |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 39 | 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 | |
| 45 | endchoice |
| 46 | |
| 47 | config 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ár | 3cf4cf9 | 2022-05-03 11:13:24 +0200 | [diff] [blame^] | 54 | endif |
| 55 | |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 56 | config CMD_MVEBU_COMPHY_RX_TRAINING |
| 57 | bool "mvebu_comphy_rx_training" |
| 58 | depends on ARMADA_8K |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 59 | help |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 60 | Perform COMPHY RX training sequence |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 61 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 62 | endmenu |