blob: 811537aa58b892fbddca3f033cf3354c5d4d6ea8 [file] [log] [blame]
Brad Bishopbec4ebc2022-08-03 09:55:16 -04001# N1SDP specific SCP configurations and build instructions
2
3SCP_PLATFORM = "n1sdp"
4SCP_LOG_LEVEL = "INFO"
5
Brad Bishopbec4ebc2022-08-03 09:55:16 -04006COMPATIBLE_MACHINE:n1sdp = "n1sdp"
7
8DEPENDS += "fiptool-native"
9DEPENDS += "trusted-firmware-a"
Patrick Williams8dd68482022-10-04 07:57:18 -050010DEPENDS += "n1sdp-board-firmware"
11
12# The n1sdp sensor library is needed for building SCP N1SDP Platform
13# https://github.com/ARM-software/SCP-firmware/tree/master/product/n1sdp
14EXTRA_OECMAKE:append = " \
15 -DSCP_N1SDP_SENSOR_LIB_PATH=${RECIPE_SYSROOT}/n1sdp-board-firmware_source/LIB/sensor.a \
16"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040017
18do_install:append() {
19 fiptool \
20 create \
21 --scp-fw "${D}/firmware/scp_ramfw.bin" \
22 --blob uuid=cfacc2c4-15e8-4668-82be-430a38fad705,file="${RECIPE_SYSROOT}/firmware/bl1.bin" \
23 "scp_fw.bin"
24
25 # This UUID is FIP_UUID_MCP_BL2 in SCP-Firmware.
26 fiptool \
27 create \
28 --blob uuid=54464222-a4cf-4bf8-b1b6-cee7dade539e,file="${D}/firmware/mcp_ramfw.bin" \
29 "mcp_fw.bin"
30
31 install "scp_fw.bin" "${D}/firmware/scp_fw.bin"
32 install "mcp_fw.bin" "${D}/firmware/mcp_fw.bin"
33
34 ln -sf "scp_romfw.bin" "${D}/firmware/scp_rom.bin"
35 ln -sf "mcp_romfw.bin" "${D}/firmware/mcp_rom.bin"
36}