boards/st/stm32h747i_disco/doc/index.rst
.. zephyr:board:: stm32h747i_disco
Overview
The discovery kit enables a wide diversity of applications taking benefit from audio, multi-sensor support, graphics, security, video, and high-speed connectivity features.
The board includes an STM32H747XI SoC with a high-performance DSP, Arm Cortex-M7 + Cortex-M4 MCU, with 2MBytes of Flash memory, 1MB RAM, 480 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals, SMPS, and MIPI-DSI.
Additionally, the board features:
On-board ST-LINK/V3E supporting USB reenumeration capability
USB ST-LINK functions: virtual COM port, mass storage, debug port
Flexible power-supply options:
4” capacitive touch LCD display module with MIPI® DSI interface
Ethernet compliant with IEEE802.3-2002
USB OTG HS
Stereo speaker outputs
ST-MEMS digital microphones
2 x 512-Mbit QUAD-SPI NOR Flash memory
256-Mbit SDRAM
4 color user LEDs
1 user and reset push-button
4-direction joystick with selection button
Arduino Uno V3 connectors
More information about the board can be found at the STM32H747I-DISCO website_.
More information about STM32H747XIH6 can be found here:
STM32H747XI on www.st.com_STM32H747xx reference manual_STM32H747xx datasheet_.. zephyr:board-supported-hw::
.. note: From UM2411 Rev 4: With the default setting, the Ethernet feature is not working because of a conflict between ETH_MDC and SAI4_D1 of the MEMs digital microphone. Make sure you have SB8 closed and SB21 open to get Ethernet working.
STM32H747I Discovery kit has 9 GPIO controllers. These controllers are responsible for pin muxing, input/output, pull-up, etc.
For more details please refer to STM32H747I-DISCO website_.
The STM32H747I System Clock can be driven by an internal or external oscillator, as well as by the main PLL clock. By default, the CPU1 (Cortex-M7) System clock is driven by the PLL clock at 400MHz, and the CPU2 (Cortex-M4) System clock is driven at 200MHz. PLL clock is feed by a 25MHz high speed external clock.
The STM32H747I Discovery kit has up to 8 UARTs. Default configuration assigns USART1 and UART8 to the CPU1. The Zephyr console output is assigned to UART1 which connected to the onboard ST-LINK/V3.0. Virtual COM port interface. Default communication settings are 115200 8N1.
Disclaimer: This section is mostly copy-paste of corresponding
DISCO_H747I modifications for Ethernet_ mbed blog post. The author of this
article sincerely allowed to use the images and his knowledge about necessary
HW modifications to get Ethernet working with this board.
To get Ethernet working following HW modifications are required:
Following two images shows necessary changes on the board marked:
.. image:: img/disco_h747i_ethernet_modification_1.jpg :align: center :alt: STM32H747I-DISCO - Ethernet modification 1 (SB44, SB45)
.. image:: img/disco_h747i_ethernet_modification_2.jpg :align: center :alt: STM32H747I-DISCO - Ethernet modification 2 (SB21, R87, SB22, SB17 and SB8)
The STM32H747I Discovery kit has a dedicated DSI LCD connector CN15, where
the MB1166 (B-LCD40-DSI1) display extension board can be mounted. Enable display
support in Zephyr by adding the shield st_b_lcd40_dsi1_mb1166 or
st_b_lcd40_dsi1_mb1166_a09 to your build command, for example:
.. zephyr-app-commands:: :zephyr-app: samples/drivers/display :board: stm32h747i_disco/stm32h747xx/m7 :shield: st_b_lcd40_dsi1_mb1166 :goals: build flash
.. note::
The shield comes in different hardware revisions, the MB1166-A09
is utilizing a NT35510 panel controller and shall specifically
use st_b_lcd40_dsi1_mb1166_a09 as SHIELD when building.
Prior versions are utilizing an OTM8009a controller and shall
use shield name without postfix, that is: st_b_lcd40_dsi1_mb1166.
Shield version is printed on a sticker placed below the two bottom
mounting holes and has the format: MB1166-Axx.
The dual core nature of STM32H747 SoC requires sharing HW resources between the two cores. This is done in 3 ways:
Programming and Debugging
.. zephyr:board-supported-runners::
STM32H747I-DISCO board includes an ST-LINK/V3 embedded debug tool interface.
Applications for the stm32h747i_disco board should be built per core target,
using either stm32h747i_disco/stm32h747xx/m7 or stm32h747i_disco/stm32h747xx/m4
as the target.
See :ref:build_an_application for more information about application builds.
.. note::
Check if the board's ST-LINK V3 has the newest FW version. It can be updated
using STM32CubeProgrammer_.
.. note::
With OpenOCD, sometimes, flashing does not work. It is necessary to erase the flash (with STM32CubeProgrammer for example) to make it work again. Debugging with OpenOCD is currently working for this board only with Cortex M7, not Cortex M4.
Flashing operation will depend on the target to be flashed and the SoC option bytes configuration.
The board is configured to be flashed using west STM32CubeProgrammer_ runner
for both cores, so its :ref:installation <stm32cubeprog-flash-host-tools> is required.
The target core is detected automatically.
Alternatively, OpenOCD or JLink can also be used to flash the board using
the --runner (or -r) option:
.. code-block:: console
$ west flash --runner openocd $ west flash --runner jlink
It is advised to use STM32CubeProgrammer_ to check and update option bytes
configuration.
By default:
Also, default out of the box board configuration enables CM7 and CM4 boot when board is powered (Option bytes BCM7 and BCM4 are checked). It is possible to change Option Bytes so that CM7 boots first in stand alone, and CM7 will wakeup CM4 after clock initialization. Drivers are able to take into account both Option Bytes configurations automatically.
Zephyr flash configuration has been set to meet these default settings.
First, connect the STM32H747I Discovery kit to your host computer using the USB port to prepare it for flashing. Then build and flash your application.
Here is an example for the :zephyr:code-sample:hello_world application.
.. zephyr-app-commands:: :zephyr-app: samples/hello_world :board: stm32h747i_disco/stm32h747xx/m7 :goals: build flash
Run a serial host program to connect with your board:
.. code-block:: console
$ minicom -D /dev/ttyACM0
You should see the following message on the console:
.. code-block:: console
Hello World! stm32h747i_disco
.. note:: Sometimes, flashing is not working. It is necessary to erase the flash (with STM32CubeProgrammer for example) to make it work again.
Similarly, you can build and flash samples on the M4 target. For this, please take care of the resource sharing (UART port used for console for instance).
Here is an example for the :zephyr:code-sample:blinky application on M4 core.
.. zephyr-app-commands:: :zephyr-app: samples/basic/blinky :board: stm32h747i_disco/stm32h747xx/m4 :goals: build flash
You can debug an application on Cortex M7 side in the usual way. Here is an example
for the :zephyr:code-sample:hello_world application.
.. zephyr-app-commands:: :zephyr-app: samples/hello_world :board: stm32h747i_disco/stm32h747xx/m7 :goals: debug
Debugging a Zephyr application on Cortex M4 side with west is currently not available.
As a workaround, you can use STM32CubeIDE_.
.. _STM32H747I-DISCO website: https://www.st.com/en/evaluation-tools/stm32h747i-disco.html
.. _STM32H747XI on www.st.com: https://www.st.com/content/st_com/en/products/microcontrollers-microprocessors/stm32-32-bit-arm-cortex-mcus/stm32-high-performance-mcus/stm32h7-series/stm32h747-757/stm32h747xi.html
.. _STM32H747xx reference manual: https://www.st.com/resource/en/reference_manual/dm00176879.pdf
.. _STM32H747xx datasheet: https://www.st.com/resource/en/datasheet/stm32h747xi.pdf
.. _STM32CubeProgrammer: https://www.st.com/en/development-tools/stm32cubeprog.html
.. _DISCO_H747I modifications for Ethernet: https://os.mbed.com/teams/ST/wiki/DISCO_H747I-modifications-for-Ethernet
.. _STM32CubeIDE: https://www.st.com/en/development-tools/stm32cubeide.html