Alex Kiernan | 65de955 | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 1 | menu "Fastboot support" |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 2 | |
Alex Kiernan | 65de955 | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 3 | config FASTBOOT |
| 4 | bool |
| 5 | imply ANDROID_BOOT_IMAGE |
| 6 | imply CMD_FASTBOOT |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 7 | |
| 8 | config USB_FUNCTION_FASTBOOT |
| 9 | bool "Enable USB fastboot gadget" |
Alex Kiernan | 65de955 | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 10 | depends on USB_GADGET |
| 11 | default y if ARCH_SUNXI && USB_MUSB_GADGET |
| 12 | select FASTBOOT |
Maxime Ripard | 6d7dfe2 | 2017-09-07 10:29:51 +0200 | [diff] [blame] | 13 | select USB_GADGET_DOWNLOAD |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 14 | help |
| 15 | This enables the USB part of the fastboot gadget. |
| 16 | |
Alex Kiernan | d5aa57c | 2018-05-29 15:30:53 +0000 | [diff] [blame] | 17 | config UDP_FUNCTION_FASTBOOT |
| 18 | depends on NET |
| 19 | select FASTBOOT |
| 20 | bool "Enable fastboot protocol over UDP" |
| 21 | help |
| 22 | This enables the fastboot protocol over UDP. |
| 23 | |
Alex Kiernan | 65de955 | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 24 | if FASTBOOT |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 25 | |
| 26 | config FASTBOOT_BUF_ADDR |
| 27 | hex "Define FASTBOOT buffer address" |
Tom Rini | b5bf562 | 2017-08-25 17:50:27 -0400 | [diff] [blame] | 28 | default 0x82000000 if MX6SX || MX6SL || MX6UL || MX6SLL |
| 29 | default 0x81000000 if ARCH_OMAP2PLUS |
| 30 | default 0x42000000 if ARCH_SUNXI && !MACH_SUN9I |
| 31 | default 0x22000000 if ARCH_SUNXI && MACH_SUN9I |
| 32 | default 0x60800800 if ROCKCHIP_RK3036 || ROCKCHIP_RK3188 || \ |
| 33 | ROCKCHIP_RK322X |
| 34 | default 0x800800 if ROCKCHIP_RK3288 || ROCKCHIP_RK3329 || \ |
| 35 | ROCKCHIP_RK3399 |
| 36 | default 0x280000 if ROCKCHIP_RK3368 |
| 37 | default 0x100000 if ARCH_ZYNQMP |
Jens Wiklander | f1edae9 | 2018-09-25 16:40:23 +0200 | [diff] [blame] | 38 | default 0 if SANDBOX |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 39 | help |
| 40 | The fastboot protocol requires a large memory buffer for |
| 41 | downloads. Define this to the starting RAM address to use for |
| 42 | downloaded images. |
| 43 | |
| 44 | config FASTBOOT_BUF_SIZE |
| 45 | hex "Define FASTBOOT buffer size" |
Tom Rini | b5bf562 | 2017-08-25 17:50:27 -0400 | [diff] [blame] | 46 | default 0x8000000 if ARCH_ROCKCHIP |
| 47 | default 0x6000000 if ARCH_ZYNQMP |
| 48 | default 0x2000000 if ARCH_SUNXI |
Jens Wiklander | f1edae9 | 2018-09-25 16:40:23 +0200 | [diff] [blame] | 49 | default 0x8192 if SANDBOX |
Tom Rini | b5bf562 | 2017-08-25 17:50:27 -0400 | [diff] [blame] | 50 | default 0x7000000 |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 51 | help |
| 52 | The fastboot protocol requires a large memory buffer for |
| 53 | downloads. This buffer should be as large as possible for a |
| 54 | platform. Define this to the size available RAM for fastboot. |
| 55 | |
Semen Protsenko | 97bb3f8 | 2016-10-24 18:41:10 +0300 | [diff] [blame] | 56 | config FASTBOOT_USB_DEV |
| 57 | int "USB controller number" |
Alex Kiernan | 65de955 | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 58 | depends on USB_FUNCTION_FASTBOOT |
Semen Protsenko | 97bb3f8 | 2016-10-24 18:41:10 +0300 | [diff] [blame] | 59 | default 0 |
| 60 | help |
| 61 | Some boards have USB OTG controller other than 0. Define this |
| 62 | option so it can be used in compiled environment (e.g. in |
| 63 | CONFIG_BOOTCOMMAND). |
| 64 | |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 65 | config FASTBOOT_FLASH |
| 66 | bool "Enable FASTBOOT FLASH command" |
Jagan Teki | 04aae03 | 2019-11-19 13:56:18 +0530 | [diff] [blame] | 67 | default y if ARCH_SUNXI || ARCH_ROCKCHIP |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 68 | depends on MMC || (MTD_RAW_NAND && CMD_MTDPARTS) |
Alex Kiernan | c568bcb | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 69 | select IMAGE_SPARSE |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 70 | help |
| 71 | The fastboot protocol includes a "flash" command for writing |
| 72 | the downloaded image to a non-volatile storage device. Define |
| 73 | this to enable the "fastboot flash" command. |
| 74 | |
Patrick Delaunay | 99a8e03 | 2017-12-07 18:26:17 +0100 | [diff] [blame] | 75 | choice |
| 76 | prompt "Flash provider for FASTBOOT" |
| 77 | depends on FASTBOOT_FLASH |
| 78 | |
| 79 | config FASTBOOT_FLASH_MMC |
| 80 | bool "FASTBOOT on MMC" |
| 81 | depends on MMC |
| 82 | |
| 83 | config FASTBOOT_FLASH_NAND |
| 84 | bool "FASTBOOT on NAND" |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 85 | depends on MTD_RAW_NAND && CMD_MTDPARTS |
Patrick Delaunay | 99a8e03 | 2017-12-07 18:26:17 +0100 | [diff] [blame] | 86 | |
| 87 | endchoice |
| 88 | |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 89 | config FASTBOOT_FLASH_MMC_DEV |
| 90 | int "Define FASTBOOT MMC FLASH default device" |
Patrick Delaunay | 99a8e03 | 2017-12-07 18:26:17 +0100 | [diff] [blame] | 91 | depends on FASTBOOT_FLASH_MMC |
Jagan Teki | 04aae03 | 2019-11-19 13:56:18 +0530 | [diff] [blame] | 92 | default 0 if ARCH_ROCKCHIP |
Maxime Ripard | 65cefba | 2017-08-23 10:12:22 +0200 | [diff] [blame] | 93 | default 0 if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA = -1 |
| 94 | default 1 if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA != -1 |
Steve Rae | 437689f | 2016-08-15 17:26:26 -0700 | [diff] [blame] | 95 | help |
| 96 | The fastboot "flash" command requires additional information |
| 97 | regarding the non-volatile storage device. Define this to |
| 98 | the eMMC device that fastboot should use to store the image. |
| 99 | |
Alex Kiernan | dc40585 | 2018-05-29 15:30:51 +0000 | [diff] [blame] | 100 | config FASTBOOT_FLASH_NAND_TRIMFFS |
| 101 | bool "Skip empty pages when flashing NAND" |
| 102 | depends on FASTBOOT_FLASH_NAND |
| 103 | help |
| 104 | When flashing NAND enable the DROP_FFS flag to drop trailing all-0xff |
| 105 | pages. |
| 106 | |
developer | 6a10556 | 2020-01-16 16:11:42 +0800 | [diff] [blame] | 107 | config FASTBOOT_MMC_BOOT1_SUPPORT |
| 108 | bool "Enable EMMC_BOOT1 flash/erase" |
| 109 | depends on FASTBOOT_FLASH_MMC && EFI_PARTITION && ARCH_MEDIATEK |
| 110 | help |
| 111 | The fastboot "flash" and "erase" commands normally does operations |
| 112 | on EMMC userdata. Define this to enable the special commands to |
| 113 | flash/erase EMMC_BOOT1. |
| 114 | The default target name for updating EMMC_BOOT1 is "mmc0boot0". |
| 115 | |
| 116 | config FASTBOOT_MMC_BOOT1_NAME |
| 117 | string "Target name for updating EMMC_BOOT1" |
| 118 | depends on FASTBOOT_MMC_BOOT1_SUPPORT |
| 119 | default "mmc0boot0" |
| 120 | help |
| 121 | The fastboot "flash" and "erase" commands support operations on |
| 122 | EMMC_BOOT1. This occurs when the specified "EMMC_BOOT1 name" on |
| 123 | the "fastboot flash" and "fastboot erase" commands match the value |
| 124 | defined here. |
| 125 | The default target name for updating EMMC_BOOT1 is "mmc0boot0". |
| 126 | |
Patrick Delaunay | 8b0a29a | 2021-01-27 14:46:46 +0100 | [diff] [blame^] | 127 | config FASTBOOT_MMC_USER_SUPPORT |
| 128 | bool "Enable eMMC userdata partition flash/erase" |
| 129 | depends on FASTBOOT_FLASH_MMC |
| 130 | help |
| 131 | Define this to enable the support "flash" and "erase" command on |
| 132 | eMMC userdata. The "flash" command only update the MBR and GPT |
| 133 | header when CONFIG_EFI_PARTITION is supported. |
| 134 | The "erase" command erase all the userdata. |
| 135 | This occurs when the specified "partition name" on the |
| 136 | fastboot command line matches the value CONFIG_FASTBOOT_MMC_USER_NAME. |
| 137 | |
developer | 6a10556 | 2020-01-16 16:11:42 +0800 | [diff] [blame] | 138 | config FASTBOOT_MMC_USER_NAME |
Patrick Delaunay | 8b0a29a | 2021-01-27 14:46:46 +0100 | [diff] [blame^] | 139 | string "Target name for updating EMMC_USER" |
| 140 | depends on FASTBOOT_MMC_USER_SUPPORT |
developer | 6a10556 | 2020-01-16 16:11:42 +0800 | [diff] [blame] | 141 | default "mmc0" |
| 142 | help |
Patrick Delaunay | 8b0a29a | 2021-01-27 14:46:46 +0100 | [diff] [blame^] | 143 | The fastboot "flash" and "erase" command supports EMMC_USER. |
| 144 | This occurs when the specified "EMMC_USER name" on the |
| 145 | "fastboot flash" and the "fastboot erase" commands match the value |
| 146 | defined here. |
developer | 6a10556 | 2020-01-16 16:11:42 +0800 | [diff] [blame] | 147 | The default target name for erasing EMMC_USER is "mmc0". |
| 148 | |
Petr Kulhavy | 4ed1eca | 2016-09-09 10:27:18 +0200 | [diff] [blame] | 149 | config FASTBOOT_GPT_NAME |
| 150 | string "Target name for updating GPT" |
Alex Kiernan | 8cb1eab | 2018-05-29 15:30:42 +0000 | [diff] [blame] | 151 | depends on FASTBOOT_FLASH_MMC && EFI_PARTITION |
Petr Kulhavy | 4ed1eca | 2016-09-09 10:27:18 +0200 | [diff] [blame] | 152 | default "gpt" |
| 153 | help |
| 154 | The fastboot "flash" command supports writing the downloaded |
| 155 | image to the Protective MBR and the Primary GUID Partition |
| 156 | Table. (Additionally, this downloaded image is post-processed |
| 157 | to generate and write the Backup GUID Partition Table.) |
| 158 | This occurs when the specified "partition name" on the |
| 159 | "fastboot flash" command line matches the value defined here. |
| 160 | The default target name for updating GPT is "gpt". |
| 161 | |
| 162 | config FASTBOOT_MBR_NAME |
| 163 | string "Target name for updating MBR" |
Alex Kiernan | 8cb1eab | 2018-05-29 15:30:42 +0000 | [diff] [blame] | 164 | depends on FASTBOOT_FLASH_MMC && DOS_PARTITION |
Petr Kulhavy | 4ed1eca | 2016-09-09 10:27:18 +0200 | [diff] [blame] | 165 | default "mbr" |
| 166 | help |
| 167 | The fastboot "flash" command allows to write the downloaded image |
| 168 | to the Master Boot Record. This occurs when the "partition name" |
| 169 | specified on the "fastboot flash" command line matches the value |
| 170 | defined here. The default target name for updating MBR is "mbr". |
| 171 | |
Alex Kiernan | c86cde9 | 2018-05-29 15:30:54 +0000 | [diff] [blame] | 172 | config FASTBOOT_CMD_OEM_FORMAT |
| 173 | bool "Enable the 'oem format' command" |
| 174 | depends on FASTBOOT_FLASH_MMC && CMD_GPT |
| 175 | help |
| 176 | Add support for the "oem format" command from a client. This |
| 177 | relies on the env variable partitions to contain the list of |
| 178 | partitions as required by the gpt command. |
| 179 | |
Yann E. MORIN | 3d2561f | 2016-11-13 22:26:13 +0100 | [diff] [blame] | 180 | endif # FASTBOOT |
Alex Kiernan | 65de955 | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 181 | |
| 182 | endmenu |