Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 1 | # N1SDP specific SCP configurations and build instructions |
| 2 | |
| 3 | SCP_PLATFORM = "n1sdp" |
| 4 | SCP_LOG_LEVEL = "INFO" |
| 5 | |
Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 6 | COMPATIBLE_MACHINE:n1sdp = "n1sdp" |
| 7 | |
| 8 | DEPENDS += "fiptool-native" |
| 9 | DEPENDS += "trusted-firmware-a" |
Patrick Williams | 8dd6848 | 2022-10-04 07:57:18 -0500 | [diff] [blame] | 10 | DEPENDS += "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 |
| 14 | EXTRA_OECMAKE:append = " \ |
| 15 | -DSCP_N1SDP_SENSOR_LIB_PATH=${RECIPE_SYSROOT}/n1sdp-board-firmware_source/LIB/sensor.a \ |
| 16 | " |
Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 17 | |
| 18 | do_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 | } |