blob: d4436dfc9173dc3c32274b2b6b135d9c00ca65f6 [file] [log] [blame]
Alex Kiernan312a10f2018-05-29 15:30:39 +00001menu "Fastboot support"
Steve Raee016f0b2016-08-15 17:26:26 -07002
Alex Kiernan312a10f2018-05-29 15:30:39 +00003config FASTBOOT
4 bool
5 imply ANDROID_BOOT_IMAGE
6 imply CMD_FASTBOOT
Steve Raee016f0b2016-08-15 17:26:26 -07007
8config USB_FUNCTION_FASTBOOT
9 bool "Enable USB fastboot gadget"
Alex Kiernan312a10f2018-05-29 15:30:39 +000010 depends on USB_GADGET
11 default y if ARCH_SUNXI && USB_MUSB_GADGET
12 select FASTBOOT
Maxime Ripardcfa34992017-09-07 10:29:51 +020013 select USB_GADGET_DOWNLOAD
Steve Raee016f0b2016-08-15 17:26:26 -070014 help
15 This enables the USB part of the fastboot gadget.
16
Alex Kiernanf73a7df2018-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
Alex Kiernan312a10f2018-05-29 15:30:39 +000024if FASTBOOT
Steve Raee016f0b2016-08-15 17:26:26 -070025
26config FASTBOOT_BUF_ADDR
27 hex "Define FASTBOOT buffer address"
Tom Rini48f62322017-08-25 17:50:27 -040028 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 Wiklander0a60a812018-09-25 16:40:23 +020038 default 0 if SANDBOX
Steve Raee016f0b2016-08-15 17:26:26 -070039 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
44config FASTBOOT_BUF_SIZE
45 hex "Define FASTBOOT buffer size"
Tom Rini48f62322017-08-25 17:50:27 -040046 default 0x8000000 if ARCH_ROCKCHIP
47 default 0x6000000 if ARCH_ZYNQMP
48 default 0x2000000 if ARCH_SUNXI
Jens Wiklander0a60a812018-09-25 16:40:23 +020049 default 0x8192 if SANDBOX
Tom Rini48f62322017-08-25 17:50:27 -040050 default 0x7000000
Steve Raee016f0b2016-08-15 17:26:26 -070051 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 Protsenko9af5ba82016-10-24 18:41:10 +030056config FASTBOOT_USB_DEV
57 int "USB controller number"
Alex Kiernan312a10f2018-05-29 15:30:39 +000058 depends on USB_FUNCTION_FASTBOOT
Semen Protsenko9af5ba82016-10-24 18:41:10 +030059 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 Raee016f0b2016-08-15 17:26:26 -070065config FASTBOOT_FLASH
66 bool "Enable FASTBOOT FLASH command"
Jagan Tekia9af59a2019-11-19 13:56:18 +053067 default y if ARCH_SUNXI || ARCH_ROCKCHIP
Miquel Raynal88718be2019-10-03 19:50:03 +020068 depends on MMC || (MTD_RAW_NAND && CMD_MTDPARTS)
Alex Kiernanc232d142018-05-29 15:30:52 +000069 select IMAGE_SPARSE
Steve Raee016f0b2016-08-15 17:26:26 -070070 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 Delaunayb0cce3f2017-12-07 18:26:17 +010075choice
76 prompt "Flash provider for FASTBOOT"
77 depends on FASTBOOT_FLASH
78
79config FASTBOOT_FLASH_MMC
80 bool "FASTBOOT on MMC"
81 depends on MMC
82
83config FASTBOOT_FLASH_NAND
84 bool "FASTBOOT on NAND"
Miquel Raynal88718be2019-10-03 19:50:03 +020085 depends on MTD_RAW_NAND && CMD_MTDPARTS
Patrick Delaunayb0cce3f2017-12-07 18:26:17 +010086
87endchoice
88
Steve Raee016f0b2016-08-15 17:26:26 -070089config FASTBOOT_FLASH_MMC_DEV
90 int "Define FASTBOOT MMC FLASH default device"
Patrick Delaunayb0cce3f2017-12-07 18:26:17 +010091 depends on FASTBOOT_FLASH_MMC
Jagan Tekia9af59a2019-11-19 13:56:18 +053092 default 0 if ARCH_ROCKCHIP
Maxime Ripardde86fc32017-08-23 10:12:22 +020093 default 0 if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA = -1
94 default 1 if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA != -1
Steve Raee016f0b2016-08-15 17:26:26 -070095 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 Kiernan4085b902018-05-29 15:30:51 +0000100config 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
mingming lee1fdbad02020-01-16 16:11:42 +0800107config 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
116config 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
127config FASTBOOT_MMC_USER_NAME
128 string "Target name for erasing EMMC_USER"
129 depends on FASTBOOT_FLASH_MMC && EFI_PARTITION && ARCH_MEDIATEK
130 default "mmc0"
131 help
132 The fastboot "erase" command supports erasing EMMC_USER. This occurs
133 when the specified "EMMC_USER name" on the "fastboot erase" commands
134 match the value defined here.
135 The default target name for erasing EMMC_USER is "mmc0".
136
Petr Kulhavy6f6c8632016-09-09 10:27:18 +0200137config FASTBOOT_GPT_NAME
138 string "Target name for updating GPT"
Alex Kiernan42d8dd42018-05-29 15:30:42 +0000139 depends on FASTBOOT_FLASH_MMC && EFI_PARTITION
Petr Kulhavy6f6c8632016-09-09 10:27:18 +0200140 default "gpt"
141 help
142 The fastboot "flash" command supports writing the downloaded
143 image to the Protective MBR and the Primary GUID Partition
144 Table. (Additionally, this downloaded image is post-processed
145 to generate and write the Backup GUID Partition Table.)
146 This occurs when the specified "partition name" on the
147 "fastboot flash" command line matches the value defined here.
148 The default target name for updating GPT is "gpt".
149
150config FASTBOOT_MBR_NAME
151 string "Target name for updating MBR"
Alex Kiernan42d8dd42018-05-29 15:30:42 +0000152 depends on FASTBOOT_FLASH_MMC && DOS_PARTITION
Petr Kulhavy6f6c8632016-09-09 10:27:18 +0200153 default "mbr"
154 help
155 The fastboot "flash" command allows to write the downloaded image
156 to the Master Boot Record. This occurs when the "partition name"
157 specified on the "fastboot flash" command line matches the value
158 defined here. The default target name for updating MBR is "mbr".
159
Alex Kiernan3845b902018-05-29 15:30:54 +0000160config FASTBOOT_CMD_OEM_FORMAT
161 bool "Enable the 'oem format' command"
162 depends on FASTBOOT_FLASH_MMC && CMD_GPT
163 help
164 Add support for the "oem format" command from a client. This
165 relies on the env variable partitions to contain the list of
166 partitions as required by the gpt command.
167
Yann E. MORINc2948732016-11-13 22:26:13 +0100168endif # FASTBOOT
Alex Kiernan312a10f2018-05-29 15:30:39 +0000169
170endmenu