summaryrefslogtreecommitdiffstats
path: root/conf/machine/imx7ulpevk.conf
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2020-12-03 16:51:53 -0600
committerOtavio Salvador <otavio@ossystems.com.br>2021-01-21 08:37:58 -0300
commit3b0fea0d1be4d2bd63563ff1d7ce93cab96bcc62 (patch)
tree23b098a5e2d6ccb170ed3afe90d7993398b57df3 /conf/machine/imx7ulpevk.conf
parent1d8e0f97a0dc240790b827f4fa6c417ad5c515b4 (diff)
downloadmeta-freescale-3b0fea0d1be4d2bd63563ff1d7ce93cab96bcc62.tar.gz
imx7ulpevk: Add OP-TEE and Broadcom WiFi, drop QCA 9377
Add OP-TEE support. Add optee to MACHINE_FEATURES to enable OP-TEE in u-boot-imx. OP-TEE is currently not supported by u-boot-fslc. Enable Broadcom 43430 WiFi module. Drop QCA 9377 as it is not supported for 7ULP EVK since 4.14 kernel. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'conf/machine/imx7ulpevk.conf')
-rw-r--r--conf/machine/imx7ulpevk.conf16
1 files changed, 11 insertions, 5 deletions
diff --git a/conf/machine/imx7ulpevk.conf b/conf/machine/imx7ulpevk.conf
index d9d2a559..d3b816b5 100644
--- a/conf/machine/imx7ulpevk.conf
+++ b/conf/machine/imx7ulpevk.conf
@@ -9,7 +9,7 @@ MACHINEOVERRIDES =. "mx7:mx7ulp:"
9require conf/machine/include/imx-base.inc 9require conf/machine/include/imx-base.inc
10require conf/machine/include/tune-cortexa7.inc 10require conf/machine/include/tune-cortexa7.inc
11 11
12MACHINE_FEATURES += " pci wifi bluetooth qca9377" 12MACHINE_FEATURES += "pci wifi bluetooth bcm43430"
13 13
14KERNEL_DEVICETREE = " \ 14KERNEL_DEVICETREE = " \
15 imx7ulp-evkb.dtb \ 15 imx7ulp-evkb.dtb \
@@ -26,10 +26,16 @@ KERNEL_DEVICETREE = " \
26 imx7ulp-evk-mipi.dtb \ 26 imx7ulp-evk-mipi.dtb \
27" 27"
28 28
29UBOOT_CONFIG ??= "sd" 29UBOOT_CONFIG ??= " \
30UBOOT_CONFIG[sd] = "mx7ulp_evk_config,sdcard" 30 sd \
31UBOOT_CONFIG[emmc] = "mx7ulp_evk_emmc_config,sdcard" 31 ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \
32UBOOT_CONFIG[mfgtool] = "mx7ulp_evk_config" 32"
33UBOOT_CONFIG[sd] = "mx7ulp_evk_config,sdcard"
34UBOOT_CONFIG[sd-optee] = "mx7ulp_evk_optee_config,sdcard"
35UBOOT_CONFIG[emmc] = "mx7ulp_evk_emmc_config,sdcard"
36UBOOT_CONFIG[mfgtool] = "mx7ulp_evk_config"
37
38OPTEE_BIN_EXT = "7ulp"
33 39
34# Set Serial console 40# Set Serial console
35SERIAL_CONSOLES = "115200;ttyLP0" 41SERIAL_CONSOLES = "115200;ttyLP0"