blob: 2877c3cbaaae175fdcf266bd8d051f9670618340 [file] [log] [blame]
Sam Protsenko586a1bf2020-01-24 17:53:44 +02001.. SPDX-License-Identifier: GPL-2.0+
2
Sebastian Siewior3aab70a2014-05-05 15:08:10 -05003Android Fastboot
Alex Kiernan277b1332018-05-29 15:30:56 +00004================
Sebastian Siewior3aab70a2014-05-05 15:08:10 -05005
6Overview
Sam Protsenko586a1bf2020-01-24 17:53:44 +02007--------
Sebastian Siewior3aab70a2014-05-05 15:08:10 -05008
Sam Protsenko586a1bf2020-01-24 17:53:44 +02009The protocol that is used over USB and UDP is described in [1]_.
Alex Kiernan277b1332018-05-29 15:30:56 +000010
11The current implementation supports the following standard commands:
12
13- ``boot``
14- ``continue``
15- ``download``
16- ``erase`` (if enabled)
17- ``flash`` (if enabled)
18- ``getvar``
19- ``reboot``
20- ``reboot-bootloader``
21- ``set_active`` (only a stub implementation which always succeeds)
22
23The following OEM commands are supported (if enabled):
24
Sam Protsenko586a1bf2020-01-24 17:53:44 +020025- ``oem format`` - this executes ``gpt write mmc %x $partitions``
Alex Kiernan277b1332018-05-29 15:30:56 +000026
27Support for both eMMC and NAND devices is included.
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050028
29Client installation
Sam Protsenko586a1bf2020-01-24 17:53:44 +020030-------------------
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050031
Alex Kiernan277b1332018-05-29 15:30:56 +000032The counterpart to this is the fastboot client which can be found in
33Android's ``platform/system/core`` repository in the fastboot
34folder. It runs on Windows, Linux and OSX. The fastboot client is
Sam Protsenko586a1bf2020-01-24 17:53:44 +020035part of the Android SDK Platform-Tools and can be downloaded from [2]_.
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050036
37Board specific
Sam Protsenko586a1bf2020-01-24 17:53:44 +020038--------------
Alex Kiernan277b1332018-05-29 15:30:56 +000039
40USB configuration
Sam Protsenko586a1bf2020-01-24 17:53:44 +020041^^^^^^^^^^^^^^^^^
Alex Kiernan277b1332018-05-29 15:30:56 +000042
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050043The fastboot gadget relies on the USB download gadget, so the following
44options must be configured:
45
Alex Kiernan277b1332018-05-29 15:30:56 +000046::
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050047
Alex Kiernan277b1332018-05-29 15:30:56 +000048 CONFIG_USB_GADGET_DOWNLOAD
49 CONFIG_USB_GADGET_VENDOR_NUM
50 CONFIG_USB_GADGET_PRODUCT_NUM
51 CONFIG_USB_GADGET_MANUFACTURER
Barnes, Clifton A183cbff2014-07-22 11:23:56 -040052
Alex Kiernan277b1332018-05-29 15:30:56 +000053NOTE: The ``CONFIG_USB_GADGET_VENDOR_NUM`` must be one of the numbers
54supported by the fastboot client. The list of vendor IDs supported can
55be found in the fastboot client source code.
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050056
Alex Kiernan277b1332018-05-29 15:30:56 +000057General configuration
Sam Protsenko586a1bf2020-01-24 17:53:44 +020058^^^^^^^^^^^^^^^^^^^^^
Alex Kiernan277b1332018-05-29 15:30:56 +000059
60The fastboot protocol requires a large memory buffer for
61downloads. This buffer should be as large as possible for a
62platform. The location of the buffer and size are set with
63``CONFIG_FASTBOOT_BUF_ADDR`` and ``CONFIG_FASTBOOT_BUF_SIZE``. These
64may be overridden on the fastboot command line using ``-l`` and
65``-s``.
66
67Fastboot environment variables
Sam Protsenko586a1bf2020-01-24 17:53:44 +020068------------------------------
Alex Kiernan277b1332018-05-29 15:30:56 +000069
70Partition aliases
Sam Protsenko586a1bf2020-01-24 17:53:44 +020071^^^^^^^^^^^^^^^^^
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050072
Michael Scott8a418022015-03-11 10:02:31 -070073Fastboot partition aliases can also be defined for devices where GPT
Sam Protsenko586a1bf2020-01-24 17:53:44 +020074limitations prevent user-friendly partition names such as ``boot``, ``system``
75and ``cache``. Or, where the actual partition name doesn't match a standard
Alex Kiernan277b1332018-05-29 15:30:56 +000076partition name used commonly with fastboot.
77
78The current implementation checks aliases when accessing partitions by
79name (flash_write and erase functions). To define a partition alias
Sam Protsenko586a1bf2020-01-24 17:53:44 +020080add an environment variable similar to::
Alex Kiernan277b1332018-05-29 15:30:56 +000081
Sam Protsenko586a1bf2020-01-24 17:53:44 +020082 fastboot_partition_alias_<alias partition name>=<actual partition name>
Alex Kiernan277b1332018-05-29 15:30:56 +000083
Sam Protsenko586a1bf2020-01-24 17:53:44 +020084for example::
Alex Kiernan277b1332018-05-29 15:30:56 +000085
Sam Protsenko586a1bf2020-01-24 17:53:44 +020086 fastboot_partition_alias_boot=LNX
Alex Kiernan277b1332018-05-29 15:30:56 +000087
Filip Brozovica17c0cb2020-06-29 13:14:37 +020088Raw partition descriptors
89^^^^^^^^^^^^^^^^^^^^^^^^^
90
91In cases where no partition table is present, a raw partition descriptor can be
92defined, specifying the offset, size, and optionally the MMC hardware partition
93number for a given partition name.
94
95This is useful when using fastboot to flash files (e.g. SPL or U-Boot) to a
96specific offset in the eMMC boot partition, without having to update the entire
97boot partition.
98
99To define a raw partition descriptor, add an environment variable similar to::
100
101 fastboot_raw_partition_<raw partition name>=<offset> <size> [mmcpart <num>]
102
103for example::
104
105 fastboot_raw_partition_boot=0x100 0x1f00 mmcpart 1
106
Alex Kiernan277b1332018-05-29 15:30:56 +0000107Variable overrides
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200108^^^^^^^^^^^^^^^^^^
Alex Kiernan277b1332018-05-29 15:30:56 +0000109
110Variables retrived through ``getvar`` can be overridden by defining
111environment variables of the form ``fastboot.<variable>``. These are
112looked up first so can be used to override values which would
113otherwise be returned. Using this mechanism you can also return types
114for NAND filesystems, as the fully parameterised variable is looked
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200115up, e.g.::
Alex Kiernan277b1332018-05-29 15:30:56 +0000116
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200117 fastboot.partition-type:boot=jffs2
Alex Kiernan277b1332018-05-29 15:30:56 +0000118
119Boot command
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200120^^^^^^^^^^^^
Alex Kiernan277b1332018-05-29 15:30:56 +0000121
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200122When executing the fastboot ``boot`` command, if ``fastboot_bootcmd`` is set
123then that will be executed in place of ``bootm <CONFIG_FASTBOOT_BUF_ADDR>``.
Michael Scott8a418022015-03-11 10:02:31 -0700124
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200125Partition Names
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200126---------------
Alex Kiernan277b1332018-05-29 15:30:56 +0000127
128The Fastboot implementation in U-Boot allows to write images into disk
129partitions. Target partitions are referred on the host computer by
130their names.
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200131
132For GPT/EFI the respective partition name is used.
133
134For MBR the partitions are referred by generic names according to the
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200135following schema::
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200136
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200137 <device type><device index letter><partition index>
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200138
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200139Example: ``hda3``, ``sdb1``, ``usbda1``.
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200140
141The device type is as follows:
142
Alex Kiernan277b1332018-05-29 15:30:56 +0000143 * IDE, ATAPI and SATA disks: ``hd``
144 * SCSI disks: ``sd``
145 * USB media: ``usbd``
146 * MMC and SD cards: ``mmcsd``
147 * Disk on chip: ``docd``
148 * other: ``xx``
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200149
Alex Kiernan277b1332018-05-29 15:30:56 +0000150The device index starts from ``a`` and refers to the interface (e.g. USB
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200151controller, SD/MMC controller) or disk index. The partition index starts
Alex Kiernan277b1332018-05-29 15:30:56 +0000152from ``1`` and describes the partition number on the particular device.
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200153
154Writing Partition Table
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200155-----------------------
Alex Kiernan277b1332018-05-29 15:30:56 +0000156
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200157Fastboot also allows to write the partition table to the media. This can be
158done by writing the respective partition table image to a special target
159"gpt" or "mbr". These names can be customized by defining the following
160configuration options:
161
Alex Kiernan277b1332018-05-29 15:30:56 +0000162::
163
164 CONFIG_FASTBOOT_GPT_NAME
165 CONFIG_FASTBOOT_MBR_NAME
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200166
Sebastian Siewior3aab70a2014-05-05 15:08:10 -0500167In Action
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200168---------
Alex Kiernan277b1332018-05-29 15:30:56 +0000169
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200170Enter into fastboot by executing the fastboot command in U-Boot for either USB::
Alex Kiernan277b1332018-05-29 15:30:56 +0000171
172 => fastboot usb 0
173
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200174or UDP::
Alex Kiernan277b1332018-05-29 15:30:56 +0000175
176 => fastboot udp
177 link up on port 0, speed 100, full duplex
178 Using ethernet@4a100000 device
179 Listening for fastboot command on 192.168.0.102
Sebastian Siewior3aab70a2014-05-05 15:08:10 -0500180
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200181On the client side you can fetch the bootloader version for instance::
Alex Kiernan277b1332018-05-29 15:30:56 +0000182
Sam Protsenko29a81142019-07-03 19:34:07 +0300183 $ fastboot getvar version-bootloader
184 version-bootloader: U-Boot 2019.07-rc4-00240-g00c9f2a2ec
185 Finished. Total time: 0.005s
Sebastian Siewior3aab70a2014-05-05 15:08:10 -0500186
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200187or initiate a reboot::
Alex Kiernan277b1332018-05-29 15:30:56 +0000188
189 $ fastboot reboot
Sebastian Siewior3aab70a2014-05-05 15:08:10 -0500190
191and once the client comes back, the board should reset.
192
193You can also specify a kernel image to boot. You have to either specify
Alex Kiernan277b1332018-05-29 15:30:56 +0000194the an image in Android format *or* pass a binary kernel and let the
Sebastian Siewior3aab70a2014-05-05 15:08:10 -0500195fastboot client wrap the Android suite around it. On OMAP for instance you
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200196take zImage kernel and pass it to the fastboot client::
Sebastian Siewior3aab70a2014-05-05 15:08:10 -0500197
Alex Kiernan277b1332018-05-29 15:30:56 +0000198 $ fastboot -b 0x80000000 -c "console=ttyO2 earlyprintk root=/dev/ram0 mem=128M" boot zImage
199 creating boot image...
200 creating boot image - 1847296 bytes
201 downloading 'boot.img'...
202 OKAY [ 2.766s]
203 booting...
204 OKAY [ -0.000s]
205 finished. total time: 2.766s
206
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200207and on the U-Boot side you should see::
Alex Kiernan277b1332018-05-29 15:30:56 +0000208
209 Starting download of 1847296 bytes
210 ........................................................
211 downloading of 1847296 bytes finished
212 Booting kernel..
213 ## Booting Android Image at 0x81000000 ...
214 Kernel load addr 0x80008000 size 1801 KiB
215 Kernel command line: console=ttyO2 earlyprintk root=/dev/ram0 mem=128M
216 Loading Kernel Image ... OK
217 OK
218
219 Starting kernel ...
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200220
221References
222----------
223
224.. [1] :doc:`fastboot-protocol`
225.. [2] https://developer.android.com/studio/releases/platform-tools