1# Corstone1000 machines specific TFM support
2
3COMPATIBLE_MACHINE = "(corstone1000)"
4
5TFM_PLATFORM = "arm/corstone1000"
6
7TFM_DEBUG = "1"
8
9## Default is the MPS3 board
10TFM_PLATFORM_IS_FVP ?= "FALSE"
11EXTRA_OECMAKE += "-DPLATFORM_IS_FVP=${TFM_PLATFORM_IS_FVP}"
12EXTRA_OECMAKE += "-DCC312_LEGACY_DRIVER_API_ENABLED=ON"
13
14# libmetal
15LICENSE += "& BSD-3-Clause"
16LIC_FILES_CHKSUM += "file://../libmetal/LICENSE.md;md5=fe0b8a4beea8f0813b606d15a3df3d3c"
17SRC_URI += "git://github.com/OpenAMP/libmetal.git;protocol=https;branch=main;name=libmetal;destsuffix=git/libmetal"
18SRCREV_libmetal = "f252f0e007fbfb8b3a52b1d5901250ddac96baad"
19EXTRA_OECMAKE += "-DLIBMETAL_SRC_PATH=${S}/../libmetal -DLIBMETAL_BIN_PATH=${B}/libmetal-build"
20
21# OpenAMP
22LICENSE += "& BSD-2-Clause & BSD-3-Clause"
23LIC_FILES_CHKSUM += "file://../openamp/LICENSE.md;md5=a8d8cf662ef6bf9936a1e1413585ecbf"
24SRC_URI += "git://github.com/OpenAMP/open-amp.git;protocol=https;branch=main;name=openamp;destsuffix=git/openamp"
25SRCREV_openamp = "347397decaa43372fc4d00f965640ebde042966d"
26EXTRA_OECMAKE += "-DLIBOPENAMP_SRC_PATH=${S}/../openamp -DLIBOPENAMP_BIN_PATH=${B}/libopenamp-build"
27
28
29FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
30SRC_URI:append:corstone1000 = " \
31    file://0001-Platform-corstone1000-Increase-BL2-size-in-flash-lay.patch \
32    file://0002-Platform-Corstone1000-Increase-BL2_DATA_SIZE.patch \
33    file://0003-Platform-Corstone1000-Calculate-the-new-CRC32-value-.patch \
34    file://0004-arm-trusted-firmware-m-disable-fatal-warnings.patch \
35    file://0005-Platform-corstone1000-add-unique-firmware-GUID.patch \
36    "
37
38# TF-M ships patches for external dependencies that needs to be applied
39apply_tfm_patches() {
40    find ${S}/lib/ext/qcbor -type f -name '*.patch' -print0 | sort -z | xargs -r -t -0 -n 1 patch -p1 -d ${S}/../qcbor/ -i
41    find ${S}/lib/ext/mbedcrypto -type f -name '*.patch' -print0 | sort -z | xargs -r -t -0 -n 1 patch -p1 -d ${S}/../mbedtls/ -i
42    find ${S}/lib/ext/mcuboot -type f -name '*.patch' -print0 | sort -z | xargs -r -t -0 -n 1 patch -p1 -d ${S}/../mcuboot/ -i
43    find ${S}/lib/ext/tf-m-tests -type f -name '*.patch' -print0 | sort -z | xargs -r -t -0 -n 1 patch -p1 -d ${S}/../tf-m-tests/ -i
44}
45
46do_patch[postfuncs] += "apply_tfm_patches"
47
48do_install() {
49  install -D -p -m 0644 ${B}/install/outputs/tfm_s_signed.bin ${D}/firmware/tfm_s_signed.bin
50  install -D -p -m 0644 ${B}/install/outputs/bl2_signed.bin ${D}/firmware/bl2_signed.bin
51  install -D -p -m 0644 ${B}/install/outputs/bl1_1.bin ${D}/firmware/bl1_1.bin
52  install -D -p -m 0644 ${B}/install/outputs/bl1_provisioning_bundle.bin ${D}/firmware/bl1_provisioning_bundle.bin
53}
54
55create_bl1_image(){
56    dd conv=notrunc bs=1 if=${D}/firmware/bl1_1.bin of=${D}/firmware/bl1.bin seek=0
57    dd conv=notrunc bs=1 if=${D}/firmware/bl1_provisioning_bundle.bin of=${D}/firmware/bl1.bin seek=40960
58}
59do_install[postfuncs] += "create_bl1_image"
60