mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-05 05:04:47 +02:00

Having one common recipe for optee-os, TF-A and DDR init blobs coming from rkbin is nice for maintenance but it doesn't allow for having e.g. TF-A come from another recipe and optee-os and DDR init from this one. Now that upstream TF-A has initial support for RK356x and RK3588, but there's still no open OP-TEE OS or DDR init, it'd be nice to allow users to have upstream TF-A. Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
28 lines
683 B
BlitzBasic
28 lines
683 B
BlitzBasic
DESCRIPTION = "Rockchip Trusted-Firmware-A (BL31) blob"
|
|
|
|
require rockchip-rkbin.inc
|
|
|
|
PROVIDES += "trusted-firmware-a"
|
|
|
|
do_deploy:rk3308() {
|
|
# Prebuilt TF-A
|
|
install -m 644 ${S}/bin/rk33/rk3308_bl31_v*.elf ${DEPLOYDIR}/bl31-rk3308.elf
|
|
}
|
|
|
|
# NOTE: the following are not typos
|
|
# the rk3566 uses the same bl31 as the rk3568
|
|
do_deploy:rk3566() {
|
|
# Prebuilt TF-A
|
|
install -m 644 ${S}/bin/rk35/rk3568_bl31_v*.elf ${DEPLOYDIR}/bl31-rk3566.elf
|
|
}
|
|
|
|
do_deploy:rk3568() {
|
|
# Prebuilt TF-A
|
|
install -m 644 ${S}/bin/rk35/rk3568_bl31_v*.elf ${DEPLOYDIR}/bl31-rk3568.elf
|
|
}
|
|
|
|
do_deploy:rk3588s() {
|
|
# Prebuilt TF-A
|
|
install -m 644 ${S}/bin/rk35/rk3588_bl31_v*.elf ${DEPLOYDIR}/bl31-rk3588.elf
|
|
}
|