All of lore.kernel.org
 help / color / mirror / Atom feed
From: Francesco Dolcini <francesco@dolcini.it>
To: Mehmet Fide <mehmet.fide@gmail.com>
Cc: u-boot@lists.u-boot-project.org, Tom Rini <trini@konsulko.com>,
	Francesco Dolcini <francesco@dolcini.it>,
	Stefano Babic <sbabic@nabladev.com>,
	Fabio Estevam <festevam@gmail.com>,
	Franz Schnyder <franz.schnyder@toradex.com>,
	Stefan Agner <stefan@agner.ch>,
	Mehmet Fide <mehmet.fide@screeningeagle.com>
Subject: Re: [PATCH 2/2] doc: board: toradex: add the Colibri VF50/VF61 page
Date: Fri, 14 Aug 2026 09:23:05 +0200	[thread overview]
Message-ID: <20260814072305.GC5246@francesco-nb> (raw)
In-Reply-To: <20260813150726.2184452-3-mehmet.fide@gmail.com>

Hello Mehmet,
thanks for the patch.

On Thu, Aug 13, 2026 at 05:07:26PM +0200, Mehmet Fide wrote:
> From: Mehmet Fide <mehmet.fide@screeningeagle.com>
> 
> The other Toradex modules are documented here, the Vybrid ones were
> not. Describe the build, the two ways of getting the image into NAND,
> and the flashloader command of the WinCE-era bootloader that modules
> from that era still carry.
> 
> Signed-off-by: Mehmet Fide <mehmet.fide@screeningeagle.com>
> ---
>  doc/board/toradex/colibri_vf.rst | 70 ++++++++++++++++++++++++++++++++
>  doc/board/toradex/index.rst      |  1 +
>  2 files changed, 71 insertions(+)
>  create mode 100644 doc/board/toradex/colibri_vf.rst
> 
> diff --git a/doc/board/toradex/colibri_vf.rst b/doc/board/toradex/colibri_vf.rst
> new file mode 100644
> index 00000000000..d2809bda2e8
> --- /dev/null
> +++ b/doc/board/toradex/colibri_vf.rst
> @@ -0,0 +1,70 @@
> +.. SPDX-License-Identifier: GPL-2.0-or-later
> +.. sectionauthor:: Mehmet Fide <mehmet.fide@screeningeagle.com>
> +
> +Colibri VF50/VF61 Modules
> +=========================
> +
> +- SoM: https://www.toradex.com/computer-on-modules/colibri-arm-family/nxp-vybrid-vf5xx-vf6xx
> +- Carrier boards: https://www.toradex.com/products/carrier-board/colibri-evaluation-board
> +  and https://www.toradex.com/products/carrier-board/iris-carrier-board
> +
> +Quick Start
> +-----------
> +
> +- Build U-Boot
> +- Flash to NAND from a running U-Boot
> +- Flash to NAND over recovery mode
> +- Modules still carrying the WinCE bootloader
> +
> +Build U-Boot
> +------------
> +
> +.. code-block:: bash

this should be 'console', not bash. Likewise in other places.

> +
> +    $ export CROSS_COMPILE=arm-linux-gnueabi-
> +    $ make colibri_vf_defconfig
> +    $ make
> +
> +This produces ``u-boot.imx``, the image with the IVT for the Vybrid
> +BootROM, ready to be written to the ``u-boot`` NAND partition.
> +
> +Flash to NAND from a running U-Boot
> +-----------------------------------
> +
> +Load the image over TFTP or from a FAT formatted SD card and use the
> +``update_uboot`` script from the default environment:
> +
> +.. code-block:: none
> +
> +    Colibri VFxx # fatload mmc 0:1 ${loadaddr} u-boot.imx
> +    Colibri VFxx # run update_uboot
> +    Colibri VFxx # reset
> +
> +Flash to NAND over recovery mode
> +--------------------------------
> +
> +With nothing bootable in NAND, the Vybrid BootROM falls back to the
> +serial downloader on the USB client port. The `imx_usb_loader
> +<https://github.com/boundarydevices/imx_usb_loader>`_ tool can push
> +``u-boot.imx`` straight into OCRAM and run it:
> +
> +.. code-block:: bash
> +
> +    $ imx_usb u-boot.imx
> +
> +From the running U-Boot, flash NAND as in the previous section.
> +
> +Modules still carrying the WinCE bootloader
> +-------------------------------------------
> +
> +Modules that were shipped with the WinCE-era Toradex bootloader (eBoot)
> +offer a ``flashloader`` command that writes a U-Boot image to NAND:
> +
> +.. code-block:: none
> +
> +    > flashloader u-boot.imx
> +    > reboot
> +
> +The image must be linked at ``CONFIG_TEXT_BASE=0x3f408000``; the BootROM
Not sure that this comment must be here, once you fix the defconfig.
It does not seem specific on the colibri, this is about the SoC.


in any case,

Acked-by: Francesco Dolcini <francesco.dolcini@toradex.com>

Francesco


      reply	other threads:[~2026-08-14  7:23 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-13 15:07 [PATCH 0/2] colibri_vf: fix NAND boot and add the board documentation Mehmet Fide
2026-08-13 15:07 ` [PATCH 1/2] colibri_vf: restore the pre-2017 text base, the BootROM refuses the low one Mehmet Fide
2026-08-14  7:19   ` Francesco Dolcini
2026-08-14  8:17     ` Mehmet Fide
2026-08-13 15:07 ` [PATCH 2/2] doc: board: toradex: add the Colibri VF50/VF61 page Mehmet Fide
2026-08-14  7:23   ` Francesco Dolcini [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260814072305.GC5246@francesco-nb \
    --to=francesco@dolcini.it \
    --cc=festevam@gmail.com \
    --cc=franz.schnyder@toradex.com \
    --cc=mehmet.fide@gmail.com \
    --cc=mehmet.fide@screeningeagle.com \
    --cc=sbabic@nabladev.com \
    --cc=stefan@agner.ch \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.u-boot-project.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.