Git Product home page Git Product logo

buildroot-external-st's Introduction

STM32MP1 Buildroot external tree

This repository is a Buildroot BR2_EXTERNAL tree dedicated to supporting the STMicroelectronics STM32MP1 platforms. Using this project is not strictly necessary as Buildroot itself has support for STM32MP1, but this BR2_EXTERNAL tree provide example configurations demonstrating how to use the different features of the STM32MP1 platforms.

Available configurations

This BR2_EXTERNAL tree provides ten example Buildroot configurations:

  1. st_stm32mp157a_dk1_defconfig, which is a minimal configuration to support the STM32MP157A-DK1 Discovery Kit 1 board. It builds the TF-A firmware, U-Boot bootloader, Linux kernel and a minimal user-space composed of just Busybox.

  2. st_stm32mp157d_dk1_defconfig, which is a minimal configuration to support the STM32MP157D Discovery Kit 1 board. It builds the TF-A firmware, U-Boot bootloader, Linux kernel and a minimal user-space composed of just Busybox.

  3. st_stm32mp157c_dk2_defconfig, which is a minimal configuration to support the STM32MP157C-DK2 Discovery Kit 2 board. It builds the TF-A firmware, U-Boot bootloader, Linux kernel and a minimal user-space composed of just Busybox.

  4. st_stm32mp157f_dk2_defconfig, which is a minimal configuration to support the STM32MP157F-DK2 Discovery Kit 2 board. It builds the TF-A firmware, U-Boot bootloader, Linux kernel and a minimal user-space composed of just Busybox.

  5. st_stm32mp157a_dk1_demo_defconfig, which is a more feature-ful configuration to support the STM32MP157A-DK1 Discovery Kit 1 board. It has support for OpenGL and Qt5 for graphics, for OP-TEE as a Trusted Execution Environment. It also shows how Device Tree files generated by CubeMX can be integrated in a Buildroot configuration.

  6. st_stm32mp157d_dk1_demo_defconfig, which is a more feature-ful configuration to support the STM32MP157D-DK1 Discovery Kit 1 board. It has support for OpenGL and Qt5 for graphics, for OP-TEE as a Trusted Execution Environment. It also shows how Device Tree files generated by CubeMX can be integrated in a Buildroot configuration.

  7. st_stm32mp157c/f_dk2_demo_defconfig, which is a more feature-ful configuration to support the STM32MP1 Discovery Kit 2 board. It has support for OpenGL and Qt5 for graphics, for OP-TEE as a Trusted Execution Environment. It also shows how Device Tree files generated by CubeMX can be integrated in a Buildroot configuration.

  8. st_stm32mp157f_dk2_demo_defconfig, which is a more feature-ful configuration to support the STM32MP157F-DK2 Discovery Kit 2 board. It has support for OpenGL and Qt5 for graphics, for OP-TEE as a Trusted Execution Environment. It also shows how Device Tree files generated by CubeMX can be integrated in a Buildroot configuration.

  9. st_stm32mp135f_dk_defconfig, which is a minimal configuration to support the STM32MP135F Discovery Kit board. It builds the TF-A firmware, U-Boot bootloader, Linux kernel and a minimal user-space composed of just Busybox.

  10. st_stm32mp135f_dk_demo_defconfig, which is a more feature-ful configuration to support the STM32MP135F Discovery Kit board. It has support for OpenGL and Qt5 for graphics, for OP-TEE as a Trusted Execution Environment. It also shows how Device Tree files generated by CubeMX can be integrated in a Buildroot configuration.

Feature st_stm32mp157*_dk1 st_stm32mp157*_dk2 st_stm32mp157*_dk1_demo st_stm32mp157*_dk2_demo st_stm32mp135f_dk st_stm32mp135f_dk_demo
TF-A v2.8-stm32mp-r1 v2.8-stm32mp-r1 v2.8-stm32mp-r1 v2.8-stm32mp-r1 v2.8-stm32mp-r1 v2.8-stm32mp-r1
U-Boot v2022.10-stm32mp-r1 v2022.10-stm32mp-r1 v2022.10-stm32mp-r1 v2022.10-stm32mp-r1 v2022.10-stm32mp-r1 v2022.10-stm32mp-r1
Linux v6.1-stm32mp-r1 v6.1-stm32mp-r1 v6.1-stm32mp-r1 v6.1-stm32mp-r1 v6.1-stm32mp-r1 v6.1-stm32mp-r1
OP-TEE 3.19.0-stm32mp-r1 3.19.0-stm32mp-r1 3.19.0-stm32mp-r1 3.19.0-stm32mp-r1 3.19.0-stm32mp-r1 3.19.0-stm32mp-r1
Qt5 No No Yes Yes No Yes
OpenGL No No Yes Yes No Yes
WiFi N/A No N/A Yes No Yes
Bluetooth N/A No N/A Yes No Yes
Audio No No Yes Yes N/A N/A
Video N/A N/A N/A N/A No Yes
CubeMX Device Tree No No Yes Yes No Yes
Cortex M4 Firmware examples No No Yes Yes N/A N/A

Note that upstream Buildroot also contains pre-defined configurations for STM32MP1 platforms, but they use the upstream versions of TF-A, U-Boot and Linux, while the configurations in this BR2_EXTERNAL tree use the versions provided and supported by ST.

Getting started

Pre-requisites

In order to use Buildroot, you need to have a Linux distribution installed on your workstation. Any reasonably recent Linux distribution (Ubuntu, Debian, Fedora, Redhat, OpenSuse, etc.) will work fine.

Then, you need to install a small set of packages, as described in the Buildroot manual System requirements section.

For Debian/Ubuntu distributions, the following command allows to install the necessary packages:

$ sudo apt install debianutils sed make binutils build-essential gcc g++ bash patch gzip bzip2 perl tar cpio unzip rsync file bc git

There are also optional dependencies if you want to use Buildroot features like interface configuration, legal information or documentation. Please see the corresponding manual section.

Getting the code

This BR2_EXTERNAL tree is designed to work with the 2023.02.x LTS version of Buildroot. However, we needed a few changes on top of upstream Buildroot, so you need to use our own Buildroot fork together with this BR2_EXTERNAL tree, and more precisely its st/2023.02.2 branch.

$ git clone -b st/2023.02.2 https://github.com/bootlin/buildroot.git

See our documentation on internal details for more information about the changes we have compared to upstream Buildroot.

Now, clone the matching branch of the BR2_EXTERNAL tree:

$ git clone -b st/2023.02.2 https://github.com/bootlin/buildroot-external-st.git

You now have side-by-side a buildroot directory and a buildroot-external-st directory.

Configure and build

Go to the Buildroot directory:

$ cd buildroot/

And then, configure the system you want to build by using one of the 4 defconfigs provided in this BR2_EXTERNAL tree. For example:

buildroot/ $ make BR2_EXTERNAL=../buildroot-external-st st_stm32mp157c_dk2_defconfig

We are passing two informations to make:

  1. The path to BR2_EXTERNAL tree, which we have cloned side-by-side to the Buildroot repository

  2. The name of the Buildroot configuration we want to build.

If you want to further customize the Buildroot configuration, you can now run make menuconfig, but for your first build, we recommend you to keep the configuration unchanged so that you can verify that everything is working for you.

Start the build:

buildroot/ $ make

This will automaticaly download and build the entire Linux system for your STM32MP1 platform: cross-compilation toolchain, firmware, bootloader, Linux kernel, root filesystem. It might take between 30 and 60 minutes depending on the configuration you have chosen and how powerful your machine is.

Flashing and booting the system

The Buildroot configurations generate a ready-to-use SD card image, available as output/images/sdcard.img. Flash this image on a SD card:

buildroot/ $ dd if=output/images/sdcard.img of=/dev/sdX bs=1M

(Note: this assumes your SD card appears as /dev/sdX on your system.)

Then:

  1. Insert the microSD card

    • STM32MP157: connector CN15
    • STM32MP135: connector CN3
  2. Plug a micro-USB cable and run your serial communication program on /dev/ttyACM0.

    • STM32MP157: connector CN11
    • STM32MP135: connector CN10
  3. Configure the SW1 switch to boot on SD card

    • STM32MP157: BOOT0 and BOOT2 to ON
    • STM32MP135: BOOT0 to ON, BOOT1 to OFF, BOOT2 to ON
  4. Plug a USB-C cable to power-up the board

    • STM32MP157: connector CN6
    • STM32MP135: connectoer CN12
  5. The system will start, with the console on UART. You can log-in as root with no password for the minimal configuration, or with root as the password for the demo configurations.

Note: it is also possible to flash the SD card while leaving it into the board, by using the STM32 Cube Programmer. See our Using the STM32 Cube Programmer page for more details.

Going further

References

Support

You can contact Bootlin at [email protected] for commercial support on using Buildroot on STM32MP1 platforms.

buildroot-external-st's People

Contributors

kmaincent avatar tpetazzoni avatar agambier avatar bernardpuel avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.