diff options
| author | Tom Hochstein <tom.hochstein@nxp.com> | 2018-11-29 14:13:49 -0600 | 
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2018-12-13 07:26:04 -0200 | 
| commit | d9597d0ce603ee99434abd7da0786b7d1cb553e5 (patch) | |
| tree | 9c66869a35eade51ed656e46ca50c005016ec744 | |
| parent | 0e518077c9e08bc0269d52eadb3147e027573e5b (diff) | |
| download | meta-freescale-d9597d0ce603ee99434abd7da0786b7d1cb553e5.tar.gz | |
firmware-imx-8*: Add new firmware recipes for i.MX 8 series
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
| -rw-r--r-- | recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb | 25 | ||||
| -rw-r--r-- | recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb | 24 | ||||
| -rw-r--r-- | recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb | 20 | 
3 files changed, 69 insertions, 0 deletions
| diff --git a/recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb b/recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb new file mode 100644 index 000000000..d99aa41be --- /dev/null +++ b/recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | # Copyright 2018 NXP | ||
| 2 | SUMMARY = "Freescale i.MX firmware for 8 family" | ||
| 3 | DESCRIPTION = "Freescale i.MX firmware for 8 family" | ||
| 4 | |||
| 5 | require firmware-imx-${PV}.inc | ||
| 6 | |||
| 7 | inherit deploy | ||
| 8 | |||
| 9 | do_install[noexec] = "1" | ||
| 10 | |||
| 11 | do_deploy() { | ||
| 12 | # Cadence HDMI | ||
| 13 | install -m 0644 ${S}/firmware/hdmi/cadence/hdmitxfw.bin ${DEPLOYDIR} | ||
| 14 | install -m 0644 ${S}/firmware/hdmi/cadence/hdmirxfw.bin ${DEPLOYDIR} | ||
| 15 | install -m 0644 ${S}/firmware/hdmi/cadence/dpfw.bin ${DEPLOYDIR} | ||
| 16 | # SECO | ||
| 17 | install -m 0644 ${S}/firmware/seco/mx8qm-ahab-container.img ${DEPLOYDIR} | ||
| 18 | } | ||
| 19 | addtask deploy after do_install before do_build | ||
| 20 | |||
| 21 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 22 | |||
| 23 | COMPATIBLE_MACHINE = "(mx8)" | ||
| 24 | COMPATIBLE_MACHINE_mx8m = "(^$)" | ||
| 25 | COMPATIBLE_MACHINE_mx8x = "(^$)" | ||
| diff --git a/recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb b/recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb new file mode 100644 index 000000000..a605d2262 --- /dev/null +++ b/recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | # Copyright 2018 NXP | ||
| 2 | SUMMARY = "Freescale i.MX firmware for 8M and 8M Mini family" | ||
| 3 | DESCRIPTION = "Freescale i.MX firmware for 8M and 8M Mini family" | ||
| 4 | |||
| 5 | require firmware-imx-${PV}.inc | ||
| 6 | |||
| 7 | inherit deploy | ||
| 8 | |||
| 9 | do_install[noexec] = "1" | ||
| 10 | |||
| 11 | do_deploy() { | ||
| 12 | # Synopsys DDR | ||
| 13 | for ddr_firmware in ${DDR_FIRMWARE_NAME}; do | ||
| 14 | install -m 0644 ${S}/firmware/ddr/synopsys/${ddr_firmware} ${DEPLOYDIR} | ||
| 15 | done | ||
| 16 | # Cadence DP and HDMI | ||
| 17 | install -m 0644 ${S}/firmware/hdmi/cadence/signed_dp_imx8m.bin ${DEPLOYDIR} | ||
| 18 | install -m 0644 ${S}/firmware/hdmi/cadence/signed_hdmi_imx8m.bin ${DEPLOYDIR} | ||
| 19 | } | ||
| 20 | addtask deploy after do_install before do_build | ||
| 21 | |||
| 22 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 23 | |||
| 24 | COMPATIBLE_MACHINE = "(mx8m)" | ||
| diff --git a/recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb b/recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb new file mode 100644 index 000000000..85d394a00 --- /dev/null +++ b/recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | # Copyright 2018 NXP | ||
| 2 | SUMMARY = "Freescale i.MX firmware for 8X family" | ||
| 3 | DESCRIPTION = "Freescale i.MX firmware for 8X family" | ||
| 4 | |||
| 5 | require firmware-imx-${PV}.inc | ||
| 6 | |||
| 7 | inherit deploy | ||
| 8 | |||
| 9 | do_install[noexec] = "1" | ||
| 10 | |||
| 11 | do_deploy() { | ||
| 12 | # SECO | ||
| 13 | install -m 0644 ${S}/firmware/seco/mx8qx-ahab-container.img ${DEPLOYDIR} | ||
| 14 | } | ||
| 15 | |||
| 16 | addtask deploy after do_install before do_build | ||
| 17 | |||
| 18 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 19 | |||
| 20 | COMPATIBLE_MACHINE = "(mx8x)" | ||
