diff options
Diffstat (limited to 'recipes-bsp/firmware-imx/imx-boot-firmware-files_8.26.bb')
| -rw-r--r-- | recipes-bsp/firmware-imx/imx-boot-firmware-files_8.26.bb | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/recipes-bsp/firmware-imx/imx-boot-firmware-files_8.26.bb b/recipes-bsp/firmware-imx/imx-boot-firmware-files_8.26.bb new file mode 100644 index 000000000..c35e31e07 --- /dev/null +++ b/recipes-bsp/firmware-imx/imx-boot-firmware-files_8.26.bb | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | # Copyright (C) 2018-2024 NXP | ||
| 2 | SUMMARY = "Freescale i.MX Firmware files used for boot" | ||
| 3 | |||
| 4 | require firmware-imx-${PV}.inc | ||
| 5 | |||
| 6 | inherit deploy nopackages | ||
| 7 | |||
| 8 | do_install[noexec] = "1" | ||
| 9 | |||
| 10 | DEPLOY_FOR = "" | ||
| 11 | DEPLOY_FOR:mx8-generic-bsp = "mx8" | ||
| 12 | DEPLOY_FOR:mx8m-generic-bsp = "mx8m" | ||
| 13 | DEPLOY_FOR:mx9-generic-bsp = "mx9" | ||
| 14 | |||
| 15 | deploy_for_mx8() { | ||
| 16 | # Cadence HDMI | ||
| 17 | install -m 0644 ${S}/firmware/hdmi/cadence/hdmitxfw.bin ${DEPLOYDIR} | ||
| 18 | install -m 0644 ${S}/firmware/hdmi/cadence/hdmirxfw.bin ${DEPLOYDIR} | ||
| 19 | install -m 0644 ${S}/firmware/hdmi/cadence/dpfw.bin ${DEPLOYDIR} | ||
| 20 | } | ||
| 21 | |||
| 22 | deploy_for_mx8m() { | ||
| 23 | # Synopsys DDR | ||
| 24 | for ddr_firmware in ${DDR_FIRMWARE_NAME}; do | ||
| 25 | install -m 0644 ${S}/firmware/ddr/synopsys/${ddr_firmware} ${DEPLOYDIR} | ||
| 26 | done | ||
| 27 | |||
| 28 | # Cadence DP and HDMI | ||
| 29 | install -m 0644 ${S}/firmware/hdmi/cadence/signed_dp_imx8m.bin ${DEPLOYDIR} | ||
| 30 | install -m 0644 ${S}/firmware/hdmi/cadence/signed_hdmi_imx8m.bin ${DEPLOYDIR} | ||
| 31 | } | ||
| 32 | |||
| 33 | |||
| 34 | deploy_for_mx9() { | ||
| 35 | # Synopsys DDR | ||
| 36 | for ddr_firmware in ${DDR_FIRMWARE_NAME}; do | ||
| 37 | install -m 0644 ${S}/firmware/ddr/synopsys/${ddr_firmware} ${DEPLOYDIR} | ||
| 38 | done | ||
| 39 | } | ||
| 40 | |||
| 41 | python () { | ||
| 42 | # Manually add the required functions as dependencies otherwise they won't be included in the | ||
| 43 | # final run script. | ||
| 44 | deploy_for = d.getVar('DEPLOY_FOR', True).split() | ||
| 45 | for soc in deploy_for: | ||
| 46 | d.appendVarFlag('do_deploy', 'vardeps', ' deploy_for_%s' % soc) | ||
| 47 | } | ||
| 48 | |||
| 49 | do_deploy () { | ||
| 50 | for soc in ${DEPLOY_FOR}; do | ||
| 51 | bbnote "Running deploy for $soc" | ||
| 52 | deploy_for_$soc | ||
| 53 | done | ||
| 54 | } | ||
| 55 | |||
| 56 | addtask deploy after do_install before do_build | ||
| 57 | |||
| 58 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 59 | |||
| 60 | COMPATIBLE_MACHINE = "(mx8-generic-bsp|mx9-generic-bsp)" | ||
| 61 | COMPATIBLE_MACHINE:mx8x-generic-bsp = "(^$)" | ||
