从零开始打造 OpenSTLinux 6.6 Yocto 系统 - STM32MP2(基于STM32CubeMX)(三)

准备stm32mp-ddr-phy

复制代码
参考stm32mp-ddr-phy-A2022.11-r0目录下README.HOW_TO.txt.stm32mp2,非常重要!!!

cd ~/develop/STM32MP2/test/stm32mp-openstlinux-6.6-yocto-scarthgap-mpu-v25.08.27/sources/ostl-linux

#准备stm32mp-ddr-phy源码
cd stm32mp-ddr-phy-A2022.11-r0/
tar xf stm32mp-ddr-phy-A2022.11-r0.tar.xz
cd stm32mp-ddr-phy-A2022.11/
test -d .git || git init . && git add . && git commit -m "new stm32mp-ddr-phy" && git gc
git checkout -b WORKING

准备TF-A

复制代码
参考tf-a-stm32mp-v2.10.13-stm32mp-r2-r0目录下README.HOW_TO.txt.stm32mp2,非常重要!!!
cd tf-a-stm32mp-v2.10.13-stm32mp-r2-r0/
vi test.sh

#在test.sh增加以下内容,参考README.HOW_TO.txt.stm32mp2的4.2,打补丁+git管理
tar xf tf-a-stm32mp-v2.10.13-stm32mp-r2-r0.tar.xz
cd tf-a-stm32mp-v2.10.13-stm32mp-r2
test -d .git || git init . && git add . && git commit -m "tf-a source code" && git gc
git checkout -b WORKING
for p in `ls -1 ../*.patch`; do git am $p; done
#end of test.sh

/bin/bash test.sh

export FIP_DEPLOYDIR_ROOT=/home/niuke/develop/STM32MP2/test/stm32mp-openstlinux-6.6-yocto-scarthgap-mpu-v25.08.27/sources/ostl-linux/FIP_artifacts

export FWDDR_DIR==/home/niuke/develop/STM32MP2/test/stm32mp-openstlinux-6.6-yocto-scarthgap-mpu-v25.08.27/sources/ostl-linux/stm32mp-ddr-phy-A2022.11-r0/stm32mp-ddr-phy-A2022.11

export DEPLOYDIR=$FIP_DEPLOYDIR_ROOT/arm-trusted-firmware
source ~/sdk6.6_mp2
cd tf-a-stm32mp-v2.10.13-stm32mp-r2/
make -f $PWD/../Makefile.sdk.stm32mp2 clean
make -f $PWD/../Makefile.sdk.stm32mp2 stm32

按照步骤,编译成功如下图所示,同时会在arm-trusted-firmware目录下生成多个文件和目录

准备optee

复制代码
参考optee-os-stm32mp-4.0.0-stm32mp-r2-r0目录下README.HOW_TO.txt.stm32mp2,非常重要!!!
!!!注意:如果是在当前的shell环境下面,则不需要重新声明TF-A的环境变量


#将DEPLOYDIR修改成optee
export DEPLOYDIR=$FIP_DEPLOYDIR_ROOT/optee

cd optee-os-stm32mp-4.0.0-stm32mp-r2-r0/
vi test.sh

#在test.sh增加以下内容,参考README.HOW_TO.txt.stm32mp2的4.2,打补丁+git管理
tar xf optee-os-stm32mp-4.0.0-stm32mp-r2-r0.tar.xz
cd optee-os-stm32mp-4.0.0-stm32mp-r2
test -d .git || git init . && git add . && git commit -m "optee-os source code" && git gc
git checkout -b WORKING
tar xf ../fonts.tar.gz
for p in `ls -1 ../*.patch`; do git am $p; done
#end of test.sh

/bin/bash test.sh

cd optee-os-stm32mp-4.0.0-stm32mp-r2/

make -f $PWD/../Makefile.sdk.stm32mp2 clean
make -f $PWD/../Makefile.sdk.stm32mp2 optee

按照步骤,编译成功如下图所示,同时会在optee目录下生成多个文件和目录

准备u-boot

复制代码
参考u-boot-stm32mp-v2023.10-stm32mp-r2-r0目录下README.HOW_TO.txt.stm32mp2,非常重要!!!
!!!注意:如果是在当前的shell环境下面,则不需要重新声明TF-A的环境变量


#将DEPLOYDIR修改成u-boot
export DEPLOYDIR=$FIP_DEPLOYDIR_ROOT/u-boot

cd u-boot-stm32mp-v2023.10-stm32mp-r2-r0/
vi test.sh

#在test.sh增加以下内容,参考README.HOW_TO.txt.stm32mp2的4.2,打补丁+git管理
tar xf u-boot-stm32mp-v2023.10-stm32mp-r2-r0.tar.xz
cd u-boot-stm32mp-v2023.10-stm32mp-r2
test -d .git || git init . && git add . && git commit -m "U-Boot source code" && git gc
git checkout -b WORKING
for p in `ls -1 ../*.patch`; do git am $p; done
#end of test.sh

/bin/bash test.sh

cd u-boot-stm32mp-v2023.10-stm32mp-r2/

make -f $PWD/../Makefile.sdk.stm32mp2 clean
make -f $PWD/../Makefile.sdk.stm32mp2 UBOOT_CONFIG=default UBOOT_DEFCONFIG=stm32mp25_defconfig UBOOT_BINARY=u-boot.dtb DEVICE_TREE=stm32mp257f-ev1 all

按照步骤,编译成功如下图所示,同时会在u-boot和fip目录下生成多个文件和目录

准备kernel - 暂时不需要

下一章

使用STM32CubeMX生成的设备树

编译TF-A

编译optee

编译uboot和fip

相关推荐
_Ningye2 小时前
STM32 — 2.2 新建工程
stm32·单片机·嵌入式硬件
森利威尔电子-3 小时前
森利威尔SL3062替代 LM3485 60V降压恒压芯片
单片机·嵌入式硬件·集成电路·芯片·电源芯片
_Ningye3 小时前
STM32 — 3.1 GPIO输出
stm32·单片机·嵌入式硬件
学嵌入式的小杨同学3 小时前
STM32 进阶封神之路(十九):ADC 深度解析 —— 从模拟信号到数字转换(底层原理 + 寄存器配置)
c++·stm32·单片机·嵌入式硬件·mcu·架构·硬件架构
青桔柠薯片4 小时前
51单片机(STC89C52RC)学习总结:从裸机编程到外设驱动
嵌入式硬件·学习·51单片机
weiyvyy4 小时前
从开发视角看硬件接口:接口开发的本质与全景图
驱动开发·单片机·嵌入式硬件·硬件工程
老李的森林4 小时前
杂谈--如何与AI高效率的对话
人工智能·stm32·嵌入式硬件·机械
_Ningye5 小时前
STM32 —2.1 软件安装
stm32
weixin_462901975 小时前
esp32wifi的AP模式
单片机·嵌入式硬件
2501_918126915 小时前
学习所有6502写游戏动画的语句
汇编·嵌入式硬件·学习·程序人生·游戏