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 | 2a27fc2 | 2023-01-22 01:25:12 +0100 | [diff] [blame] | 8 | select DOS_PARTITION if ARMADA_3700 |
| 9 | select EFI_PARTITION if ARMADA_3700 |
| 10 | select PARTITION_TYPE_GUID if ARMADA_3700 |
Pali Rohár | d83e04a | 2022-08-23 14:52:24 +0200 | [diff] [blame] | 11 | select MVEBU_EFUSE if ARMADA_38X || ARMADA_3700 |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 12 | help |
| 13 | bubt - Burn a u-boot image to flash |
| 14 | For details about bubt command please see the documentation |
| 15 | in doc/mvebu/cmd/bubt.txt |
| 16 | |
Pali Rohár | 3cf4cf9 | 2022-05-03 11:13:24 +0200 | [diff] [blame] | 17 | if CMD_MVEBU_BUBT |
| 18 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 19 | choice |
| 20 | prompt "Flash for image" |
| 21 | default MVEBU_SPI_BOOT |
| 22 | |
| 23 | config MVEBU_NAND_BOOT |
| 24 | bool "NAND flash boot" |
| 25 | depends on NAND_PXA3XX |
| 26 | help |
| 27 | Enable boot from NAND flash. |
| 28 | Allow usage of NAND flash as a target for "bubt" command |
| 29 | For details about bubt command please see the documentation |
| 30 | in doc/mvebu/cmd/bubt.txt |
| 31 | |
| 32 | config MVEBU_SPI_BOOT |
| 33 | bool "SPI flash boot" |
| 34 | depends on SPI_FLASH |
| 35 | help |
| 36 | Enable boot from SPI flash. |
| 37 | Allow usage of SPI flash as a target for "bubt" command |
| 38 | For details about bubt command please see the documentation |
| 39 | in doc/mvebu/cmd/bubt.txt |
| 40 | |
| 41 | config MVEBU_MMC_BOOT |
| 42 | bool "eMMC flash boot" |
Konstantin Porotchkin | e78a389 | 2021-03-17 18:53:43 +0200 | [diff] [blame] | 43 | depends on MVEBU_MMC || MMC_SDHCI_XENON |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 44 | help |
| 45 | Enable boot from eMMC boot partition |
| 46 | Allow usage of eMMC/SD device as a target for "bubt" command |
| 47 | For details about bubt command please see the documentation |
| 48 | in doc/mvebu/cmd/bubt.txt |
| 49 | |
Pali Rohár | 2a27fc2 | 2023-01-22 01:25:12 +0100 | [diff] [blame] | 50 | config MVEBU_SATA_BOOT |
| 51 | bool "SATA flash boot" |
| 52 | depends on SCSI |
| 53 | help |
| 54 | Enable boot from SATA disk. |
| 55 | Allow usage of SATA disk as a target for "bubt" command |
| 56 | For details about bubt command please see the documentation |
| 57 | in doc/mvebu/cmd/bubt.txt |
| 58 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 59 | endchoice |
| 60 | |
| 61 | config MVEBU_UBOOT_DFLT_NAME |
| 62 | string "Default image name for bubt command" |
Pali Rohár | cca95b0 | 2023-01-08 14:01:03 +0100 | [diff] [blame^] | 63 | default BUILD_TARGET if ARMADA_32BIT && BUILD_TARGET != "" |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 64 | default "flash-image.bin" |
| 65 | help |
| 66 | This option should contain a default file name to be used with |
| 67 | MVEBU "bubt" command if the source file name is omitted |
| 68 | |
Pali Rohár | 3cf4cf9 | 2022-05-03 11:13:24 +0200 | [diff] [blame] | 69 | endif |
| 70 | |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 71 | config CMD_MVEBU_COMPHY_RX_TRAINING |
| 72 | bool "mvebu_comphy_rx_training" |
| 73 | depends on ARMADA_8K |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 74 | help |
Stefan Roese | 3873032 | 2021-05-05 09:15:10 +0200 | [diff] [blame] | 75 | Perform COMPHY RX training sequence |
Igal Liberman | 6795a66 | 2021-03-23 11:57:57 +0100 | [diff] [blame] | 76 | |
Konstantin Porotchkin | 97d2678 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 77 | endmenu |