summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorRouven Czerwinski <r.czerwinski@pengutronix.de>2020-10-14 08:18:58 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-10-14 08:44:52 +0200
commitf91b28d3113bc21048b74d4517c77072ed9c6cdf (patch)
treeb14f1e4e1f86b7a193d1cc053cf0e3d368a7e428 /firmware
parenta0d8dbc2332923450c10bd91ea99d71f07c79f10 (diff)
downloadbarebox-f91b28d3113bc21048b74d4517c77072ed9c6cdf.tar.gz
barebox-f91b28d3113bc21048b74d4517c77072ed9c6cdf.tar.xz
ARM: imx: Add Support for Webasto ccbv2
Add support for the Webasto Common Communication Board Version 2. The device tree included with barebox can eventually be replaced with the required barebox changes when the ccbv2 device tree is upstream. Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'firmware')
-rw-r--r--firmware/Kconfig5
-rw-r--r--firmware/Makefile2
2 files changed, 7 insertions, 0 deletions
diff --git a/firmware/Kconfig b/firmware/Kconfig
index 97b7b3c2ee..c2ff51b911 100644
--- a/firmware/Kconfig
+++ b/firmware/Kconfig
@@ -16,4 +16,9 @@ config FIRMWARE_IMX8MP_ATF
config FIRMWARE_IMX8MQ_ATF
bool
+config FIRMWARE_CCBV2_OPTEE
+ bool
+ depends on MACH_WEBASTO_CCBV2 && PBL_OPTEE
+ default y
+
endmenu
diff --git a/firmware/Makefile b/firmware/Makefile
index 3d4b7fd935..0d1b445783 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -17,6 +17,8 @@ firmware-$(CONFIG_DRIVER_NET_FSL_FMAN) += fsl_fman_ucode_ls1046_r1.0_106_4_18.bi
firmware-$(CONFIG_ARCH_LAYERSCAPE_PPA) += ppa-ls1046a.bin
+firmware-$(CONFIG_FIRMWARE_CCBV2_OPTEE) += ccbv2_optee.bin
+
# Create $(fwabs) from $(CONFIG_EXTRA_FIRMWARE_DIR) -- if it doesn't have a
# leading /, it's relative to $(srctree).
fwdir := $(subst $(quote),,$(CONFIG_EXTRA_FIRMWARE_DIR))