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" |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 6 | help |
| 7 | bubt - Burn a u-boot image to flash |
| 8 | For details about bubt command please see the documentation |
| 9 | in doc/mvebu/cmd/bubt.txt |
| 10 | |
| 11 | choice |
| 12 | prompt "Flash for image" |
| 13 | default MVEBU_SPI_BOOT |
| 14 | |
| 15 | config MVEBU_NAND_BOOT |
| 16 | bool "NAND flash boot" |
| 17 | depends on NAND_PXA3XX |
| 18 | help |
| 19 | Enable boot from NAND flash. |
| 20 | Allow usage of NAND flash as a target for "bubt" command |
| 21 | For details about bubt command please see the documentation |
| 22 | in doc/mvebu/cmd/bubt.txt |
| 23 | |
| 24 | config MVEBU_SPI_BOOT |
| 25 | bool "SPI flash boot" |
| 26 | depends on SPI_FLASH |
| 27 | help |
| 28 | Enable boot from SPI flash. |
| 29 | Allow usage of SPI flash as a target for "bubt" command |
| 30 | For details about bubt command please see the documentation |
| 31 | in doc/mvebu/cmd/bubt.txt |
| 32 | |
| 33 | config MVEBU_MMC_BOOT |
| 34 | bool "eMMC flash boot" |
Konstantin Porotchkin | e78a389 | 2021-03-17 18:53:43 +0200 | [diff] [blame] | 35 | depends on MVEBU_MMC || MMC_SDHCI_XENON |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 36 | help |
| 37 | Enable boot from eMMC boot partition |
| 38 | Allow usage of eMMC/SD device as a target for "bubt" command |
| 39 | For details about bubt command please see the documentation |
| 40 | in doc/mvebu/cmd/bubt.txt |
| 41 | |
| 42 | endchoice |
| 43 | |
| 44 | config MVEBU_UBOOT_DFLT_NAME |
| 45 | string "Default image name for bubt command" |
| 46 | default "flash-image.bin" |
| 47 | help |
| 48 | This option should contain a default file name to be used with |
| 49 | MVEBU "bubt" command if the source file name is omitted |
| 50 | |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 51 | config CMD_MVEBU_COMPHY_RX_TRAINING |
| 52 | bool "mvebu_comphy_rx_training" |
| 53 | depends on ARMADA_8K |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 54 | help |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 55 | Perform COMPHY RX training sequence |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 56 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 57 | endmenu |