mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-24 16:11:27 +02:00
The MSM8916/APQ8016 Technical Reference Manual is publicly available and contains a lot of useful register maps for many core parts of the SoC. Include an archive.org link to it in the dragonboard410c documentation. Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Reviewed-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
48 lines
1.8 KiB
ReStructuredText
48 lines
1.8 KiB
ReStructuredText
.. SPDX-License-Identifier: GPL-2.0+
|
|
.. sectionauthor:: Stephan Gerhold <stephan@gerhold.net>
|
|
|
|
DragonBoard 410c
|
|
================
|
|
|
|
The DragonBoard 410c is a development board based on the Qualcomm APQ8016E SoC.
|
|
More information can be found on the `96Boards product page`_.
|
|
|
|
U-Boot can be used as a replacement for Qualcomm's original Android bootloader
|
|
(a fork of Little Kernel/LK). Like LK, it is installed directly into the ``aboot``
|
|
partition. Note that the U-Boot port used to be loaded as an Android boot image
|
|
through LK. This is no longer the case, now U-Boot can replace LK entirely.
|
|
|
|
.. _96Boards product page: https://www.96boards.org/product/dragonboard410c/
|
|
|
|
.. _MSM8916/SD410/APQ8016 Technical Reference Manual: https://web.archive.org/web/20210525022203/https://developer.qualcomm.com/qfile/35259/lm80-p0436-100_d_snapdragon_410e_apq8016e_tech_reference_manual_revd.pdf
|
|
|
|
Installation
|
|
------------
|
|
First, setup ``CROSS_COMPILE`` for aarch64. Then, build U-Boot for ``dragonboard410c``::
|
|
|
|
$ export CROSS_COMPILE=<aarch64 toolchain prefix>
|
|
$ make dragonboard410c_defconfig
|
|
$ make
|
|
|
|
This will build ``u-boot.elf`` in the configured output directory.
|
|
|
|
Although the DragonBoard 410c does not have secure boot set up by default,
|
|
the firmware still expects firmware ELF images to be "signed". The signature
|
|
does not provide any security in this case, but it provides the firmware with
|
|
some required metadata.
|
|
|
|
To "sign" ``u-boot.elf`` you can use e.g. `qtestsign`_::
|
|
|
|
$ ./qtestsign.py aboot u-boot.elf
|
|
|
|
Then install the resulting ``u-boot-test-signed.mbn`` to the ``aboot`` partition
|
|
on your device, e.g. with ``fastboot flash aboot u-boot-test-signed.mbn``.
|
|
|
|
U-Boot should be running after a reboot (``fastboot reboot``).
|
|
|
|
.. _qtestsign: https://github.com/msm8916-mainline/qtestsign
|
|
|
|
Usage
|
|
-----
|
|
Press Volume Down during boot to enter Fastboot mode.
|