diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2020-12-03 16:03:13 -0600 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2021-01-21 08:37:58 -0300 |
commit | 913ae7c2fdb8a8458898012c7ea081782de28033 (patch) | |
tree | 39acd02bd741fe7f49092c406712ab443a697617 /conf/machine | |
parent | 8d13ff6913b14dcda7e74872c513a3e3ff4f9e65 (diff) | |
download | meta-freescale-913ae7c2fdb8a8458898012c7ea081782de28033.tar.gz |
imx6ulevk: Add OP-TEE and Broadcom WiFi, remove pci
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 4339 and 43455 WiFi modules.
Remove pci which is not supported by 6UL EVK.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/imx6ulevk.conf | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/conf/machine/imx6ulevk.conf b/conf/machine/imx6ulevk.conf index 18b6b04b..a8acb43d 100644 --- a/conf/machine/imx6ulevk.conf +++ b/conf/machine/imx6ulevk.conf | |||
@@ -9,7 +9,7 @@ MACHINEOVERRIDES =. "mx6:mx6ul:" | |||
9 | include conf/machine/include/imx-base.inc | 9 | include conf/machine/include/imx-base.inc |
10 | include conf/machine/include/tune-cortexa7.inc | 10 | include conf/machine/include/tune-cortexa7.inc |
11 | 11 | ||
12 | MACHINE_FEATURES += " pci wifi bluetooth" | 12 | MACHINE_FEATURES += "wifi bluetooth bcm4339 bcm43455" |
13 | 13 | ||
14 | KERNEL_DEVICETREE = " \ | 14 | KERNEL_DEVICETREE = " \ |
15 | imx6ul-14x14-evk-btwifi.dtb \ | 15 | imx6ul-14x14-evk-btwifi.dtb \ |
@@ -29,8 +29,14 @@ UBOOT_SUFFIX = "img" | |||
29 | SPL_BINARY = "SPL" | 29 | SPL_BINARY = "SPL" |
30 | WKS_FILE = "imx-uboot-spl-bootpart.wks.in" | 30 | WKS_FILE = "imx-uboot-spl-bootpart.wks.in" |
31 | 31 | ||
32 | UBOOT_CONFIG ??= "sd" | 32 | UBOOT_CONFIG ??= " \ |
33 | UBOOT_CONFIG[sd] = "mx6ul_14x14_evk_config,sdcard" | 33 | sd \ |
34 | UBOOT_CONFIG[emmc] = "mx6ul_14x14_evk_emmc_config,sdcard" | 34 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \ |
35 | UBOOT_CONFIG[qspi1] = "mx6ul_14x14_evk_qspi1_config" | 35 | " |
36 | UBOOT_CONFIG[mfgtool] = "mx6ul_14x14_evk_config" | 36 | UBOOT_CONFIG[sd] = "mx6ul_14x14_evk_config,sdcard" |
37 | UBOOT_CONFIG[sd-optee] = "mx6ul_14x14_evk_optee_config,sdcard" | ||
38 | UBOOT_CONFIG[emmc] = "mx6ul_14x14_evk_emmc_config,sdcard" | ||
39 | UBOOT_CONFIG[qspi1] = "mx6ul_14x14_evk_qspi1_config" | ||
40 | UBOOT_CONFIG[mfgtool] = "mx6ul_14x14_evk_config" | ||
41 | |||
42 | OPTEE_BIN_EXT = "6ulevk" | ||