blob: b97c67bf6094fc3dce22e239c99caab15074123d [file] [log] [blame]
Alex Kiernan65de9552018-05-29 15:30:39 +00001menu "Fastboot support"
Steve Rae437689f2016-08-15 17:26:26 -07002
Alex Kiernan65de9552018-05-29 15:30:39 +00003config FASTBOOT
4 bool
5 imply ANDROID_BOOT_IMAGE
6 imply CMD_FASTBOOT
Steve Rae437689f2016-08-15 17:26:26 -07007
8config USB_FUNCTION_FASTBOOT
9 bool "Enable USB fastboot gadget"
Alex Kiernan65de9552018-05-29 15:30:39 +000010 depends on USB_GADGET
11 default y if ARCH_SUNXI && USB_MUSB_GADGET
12 select FASTBOOT
Maxime Ripard6d7dfe22017-09-07 10:29:51 +020013 select USB_GADGET_DOWNLOAD
Steve Rae437689f2016-08-15 17:26:26 -070014 help
15 This enables the USB part of the fastboot gadget.
16
Alex Kiernand5aa57c2018-05-29 15:30:53 +000017config 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
Christian Gmeiner7fd97aa2022-01-13 08:40:06 +010024config UDP_FUNCTION_FASTBOOT_PORT
25 depends on UDP_FUNCTION_FASTBOOT
26 int "Define FASTBOOT UDP port"
27 default 5554
28 help
29 The fastboot protocol requires a UDP port number.
30
Alex Kiernan65de9552018-05-29 15:30:39 +000031if FASTBOOT
Steve Rae437689f2016-08-15 17:26:26 -070032
33config FASTBOOT_BUF_ADDR
34 hex "Define FASTBOOT buffer address"
Tom Rinib5bf5622017-08-25 17:50:27 -040035 default 0x82000000 if MX6SX || MX6SL || MX6UL || MX6SLL
36 default 0x81000000 if ARCH_OMAP2PLUS
37 default 0x42000000 if ARCH_SUNXI && !MACH_SUN9I
38 default 0x22000000 if ARCH_SUNXI && MACH_SUN9I
39 default 0x60800800 if ROCKCHIP_RK3036 || ROCKCHIP_RK3188 || \
40 ROCKCHIP_RK322X
41 default 0x800800 if ROCKCHIP_RK3288 || ROCKCHIP_RK3329 || \
42 ROCKCHIP_RK3399
43 default 0x280000 if ROCKCHIP_RK3368
44 default 0x100000 if ARCH_ZYNQMP
Jens Wiklanderf1edae92018-09-25 16:40:23 +020045 default 0 if SANDBOX
Steve Rae437689f2016-08-15 17:26:26 -070046 help
47 The fastboot protocol requires a large memory buffer for
48 downloads. Define this to the starting RAM address to use for
49 downloaded images.
50
51config FASTBOOT_BUF_SIZE
52 hex "Define FASTBOOT buffer size"
Tom Rinib5bf5622017-08-25 17:50:27 -040053 default 0x8000000 if ARCH_ROCKCHIP
54 default 0x6000000 if ARCH_ZYNQMP
55 default 0x2000000 if ARCH_SUNXI
Jens Wiklanderf1edae92018-09-25 16:40:23 +020056 default 0x8192 if SANDBOX
Tom Rinib5bf5622017-08-25 17:50:27 -040057 default 0x7000000
Steve Rae437689f2016-08-15 17:26:26 -070058 help
59 The fastboot protocol requires a large memory buffer for
60 downloads. This buffer should be as large as possible for a
61 platform. Define this to the size available RAM for fastboot.
62
Semen Protsenko97bb3f82016-10-24 18:41:10 +030063config FASTBOOT_USB_DEV
64 int "USB controller number"
Alex Kiernan65de9552018-05-29 15:30:39 +000065 depends on USB_FUNCTION_FASTBOOT
Semen Protsenko97bb3f82016-10-24 18:41:10 +030066 default 0
67 help
68 Some boards have USB OTG controller other than 0. Define this
69 option so it can be used in compiled environment (e.g. in
70 CONFIG_BOOTCOMMAND).
71
Steve Rae437689f2016-08-15 17:26:26 -070072config FASTBOOT_FLASH
73 bool "Enable FASTBOOT FLASH command"
Jagan Teki04aae032019-11-19 13:56:18 +053074 default y if ARCH_SUNXI || ARCH_ROCKCHIP
Miquel Raynald0935362019-10-03 19:50:03 +020075 depends on MMC || (MTD_RAW_NAND && CMD_MTDPARTS)
Alex Kiernanc568bcb2018-05-29 15:30:52 +000076 select IMAGE_SPARSE
Steve Rae437689f2016-08-15 17:26:26 -070077 help
78 The fastboot protocol includes a "flash" command for writing
79 the downloaded image to a non-volatile storage device. Define
80 this to enable the "fastboot flash" command.
81
Heiko Schocher3a994482021-02-10 09:29:03 +010082config FASTBOOT_UUU_SUPPORT
83 bool "Enable FASTBOOT i.MX UUU special command"
Heiko Schocher3a994482021-02-10 09:29:03 +010084 help
85 The fastboot protocol includes "UCmd" and "ACmd" command.
86 Be aware that you provide full access to any U-Boot command,
87 including working with memory and may open a huge backdoor,
88 when enabling this option.
89
Patrick Delaunay99a8e032017-12-07 18:26:17 +010090choice
91 prompt "Flash provider for FASTBOOT"
92 depends on FASTBOOT_FLASH
93
94config FASTBOOT_FLASH_MMC
95 bool "FASTBOOT on MMC"
96 depends on MMC
97
98config FASTBOOT_FLASH_NAND
99 bool "FASTBOOT on NAND"
Miquel Raynald0935362019-10-03 19:50:03 +0200100 depends on MTD_RAW_NAND && CMD_MTDPARTS
Patrick Delaunay99a8e032017-12-07 18:26:17 +0100101
102endchoice
103
Steve Rae437689f2016-08-15 17:26:26 -0700104config FASTBOOT_FLASH_MMC_DEV
105 int "Define FASTBOOT MMC FLASH default device"
Patrick Delaunay99a8e032017-12-07 18:26:17 +0100106 depends on FASTBOOT_FLASH_MMC
Jagan Teki04aae032019-11-19 13:56:18 +0530107 default 0 if ARCH_ROCKCHIP
Maxime Ripard65cefba2017-08-23 10:12:22 +0200108 default 0 if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA = -1
109 default 1 if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA != -1
Steve Rae437689f2016-08-15 17:26:26 -0700110 help
111 The fastboot "flash" command requires additional information
112 regarding the non-volatile storage device. Define this to
113 the eMMC device that fastboot should use to store the image.
114
Alex Kiernandc405852018-05-29 15:30:51 +0000115config FASTBOOT_FLASH_NAND_TRIMFFS
116 bool "Skip empty pages when flashing NAND"
117 depends on FASTBOOT_FLASH_NAND
118 help
119 When flashing NAND enable the DROP_FFS flag to drop trailing all-0xff
120 pages.
121
Patrick Delaunay2579b0e2021-01-27 14:46:47 +0100122config FASTBOOT_MMC_BOOT_SUPPORT
123 bool "Enable EMMC_BOOT flash/erase"
124 depends on FASTBOOT_FLASH_MMC
developer6a105562020-01-16 16:11:42 +0800125 help
126 The fastboot "flash" and "erase" commands normally does operations
Patrick Delaunay2579b0e2021-01-27 14:46:47 +0100127 on eMMC userdata. Define this to enable the special commands to
128 flash/erase eMMC boot partition.
129 The default target name for updating eMMC boot partition 1/2 is
130 CONFIG_FASTBOOT_MMC_BOOT1_NAME/CONFIG_FASTBOOT_MMC_BOOT2_NAME.
developer6a105562020-01-16 16:11:42 +0800131
132config FASTBOOT_MMC_BOOT1_NAME
133 string "Target name for updating EMMC_BOOT1"
Patrick Delaunay2579b0e2021-01-27 14:46:47 +0100134 depends on FASTBOOT_MMC_BOOT_SUPPORT
developer6a105562020-01-16 16:11:42 +0800135 default "mmc0boot0"
136 help
137 The fastboot "flash" and "erase" commands support operations on
138 EMMC_BOOT1. This occurs when the specified "EMMC_BOOT1 name" on
139 the "fastboot flash" and "fastboot erase" commands match the value
140 defined here.
141 The default target name for updating EMMC_BOOT1 is "mmc0boot0".
142
Patrick Delaunay2579b0e2021-01-27 14:46:47 +0100143config FASTBOOT_MMC_BOOT2_NAME
144 string "Target name for updating EMMC_BOOT2"
145 depends on FASTBOOT_MMC_BOOT_SUPPORT
146 default "mmc0boot1"
147 help
148 The fastboot "flash" and "erase" commands support operations on
149 EMMC_BOOT2. This occurs when the specified "EMMC_BOOT2 name" on
150 the "fastboot flash" and "fastboot erase" commands match the value
151 defined here.
152 The default target name for updating EMMC_BOOT2 is "mmc0boot1".
153
Patrick Delaunay8b0a29a2021-01-27 14:46:46 +0100154config FASTBOOT_MMC_USER_SUPPORT
155 bool "Enable eMMC userdata partition flash/erase"
156 depends on FASTBOOT_FLASH_MMC
157 help
158 Define this to enable the support "flash" and "erase" command on
159 eMMC userdata. The "flash" command only update the MBR and GPT
160 header when CONFIG_EFI_PARTITION is supported.
161 The "erase" command erase all the userdata.
162 This occurs when the specified "partition name" on the
163 fastboot command line matches the value CONFIG_FASTBOOT_MMC_USER_NAME.
164
developer6a105562020-01-16 16:11:42 +0800165config FASTBOOT_MMC_USER_NAME
Patrick Delaunay8b0a29a2021-01-27 14:46:46 +0100166 string "Target name for updating EMMC_USER"
167 depends on FASTBOOT_MMC_USER_SUPPORT
developer6a105562020-01-16 16:11:42 +0800168 default "mmc0"
169 help
Patrick Delaunay8b0a29a2021-01-27 14:46:46 +0100170 The fastboot "flash" and "erase" command supports EMMC_USER.
171 This occurs when the specified "EMMC_USER name" on the
172 "fastboot flash" and the "fastboot erase" commands match the value
173 defined here.
developer6a105562020-01-16 16:11:42 +0800174 The default target name for erasing EMMC_USER is "mmc0".
175
Petr Kulhavy4ed1eca2016-09-09 10:27:18 +0200176config FASTBOOT_GPT_NAME
177 string "Target name for updating GPT"
Alex Kiernan8cb1eab2018-05-29 15:30:42 +0000178 depends on FASTBOOT_FLASH_MMC && EFI_PARTITION
Petr Kulhavy4ed1eca2016-09-09 10:27:18 +0200179 default "gpt"
180 help
181 The fastboot "flash" command supports writing the downloaded
182 image to the Protective MBR and the Primary GUID Partition
183 Table. (Additionally, this downloaded image is post-processed
184 to generate and write the Backup GUID Partition Table.)
185 This occurs when the specified "partition name" on the
186 "fastboot flash" command line matches the value defined here.
187 The default target name for updating GPT is "gpt".
188
189config FASTBOOT_MBR_NAME
190 string "Target name for updating MBR"
Alex Kiernan8cb1eab2018-05-29 15:30:42 +0000191 depends on FASTBOOT_FLASH_MMC && DOS_PARTITION
Petr Kulhavy4ed1eca2016-09-09 10:27:18 +0200192 default "mbr"
193 help
194 The fastboot "flash" command allows to write the downloaded image
195 to the Master Boot Record. This occurs when the "partition name"
196 specified on the "fastboot flash" command line matches the value
197 defined here. The default target name for updating MBR is "mbr".
198
Alex Kiernanc86cde92018-05-29 15:30:54 +0000199config FASTBOOT_CMD_OEM_FORMAT
200 bool "Enable the 'oem format' command"
201 depends on FASTBOOT_FLASH_MMC && CMD_GPT
202 help
203 Add support for the "oem format" command from a client. This
204 relies on the env variable partitions to contain the list of
205 partitions as required by the gpt command.
206
Patrick Delaunay61687702021-01-27 14:46:48 +0100207config FASTBOOT_CMD_OEM_PARTCONF
208 bool "Enable the 'oem partconf' command"
209 depends on FASTBOOT_FLASH_MMC && SUPPORT_EMMC_BOOT
210 help
211 Add support for the "oem partconf" command from a client. This set
212 the mmc boot-partition for the selecting eMMC device.
213
Patrick Delaunay67af29a2021-01-27 14:46:49 +0100214config FASTBOOT_CMD_OEM_BOOTBUS
215 bool "Enable the 'oem bootbus' command"
216 depends on FASTBOOT_FLASH_MMC && SUPPORT_EMMC_BOOT
217 help
218 Add support for the "oem bootbus" command from a client. This set
219 the mmc boot configuration for the selecting eMMC device.
220
Yann E. MORIN3d2561f2016-11-13 22:26:13 +0100221endif # FASTBOOT
Alex Kiernan65de9552018-05-29 15:30:39 +0000222
223endmenu