diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2020-12-03 15:38:06 -0600 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2021-01-21 08:37:58 -0300 |
commit | 879d59d68c834727e29edcd20949d2f60db7b14c (patch) | |
tree | 787d79096ea098b3befff89ae620cb212cd2cc42 /conf | |
parent | 59020031deadf07fe9c32dbf790da93d3b1a49ee (diff) | |
download | meta-freescale-879d59d68c834727e29edcd20949d2f60db7b14c.tar.gz |
imx6sllevk: 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 6SLL EVK.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/imx6sllevk.conf | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/conf/machine/imx6sllevk.conf b/conf/machine/imx6sllevk.conf index 7981a457..23724f5e 100644 --- a/conf/machine/imx6sllevk.conf +++ b/conf/machine/imx6sllevk.conf | |||
@@ -11,14 +11,20 @@ include conf/machine/include/tune-cortexa9.inc | |||
11 | 11 | ||
12 | KERNEL_DEVICETREE = "imx6sll-evk.dtb" | 12 | KERNEL_DEVICETREE = "imx6sll-evk.dtb" |
13 | 13 | ||
14 | UBOOT_CONFIG ??= "sd" | 14 | UBOOT_CONFIG ??= " \ |
15 | UBOOT_CONFIG[sd] = "mx6sllevk_config,sdcard" | 15 | sd \ |
16 | UBOOT_CONFIG[epdc] = "mx6sllevk_epdc_config" | 16 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \ |
17 | UBOOT_CONFIG[mfgtool] = "mx6sllevk_config" | 17 | " |
18 | UBOOT_CONFIG[sd] = "mx6sllevk_config,sdcard" | ||
19 | UBOOT_CONFIG[sd-optee] = "mx6sllevk_optee_config,sdcard" | ||
20 | UBOOT_CONFIG[epdc] = "mx6sllevk_epdc_config" | ||
21 | UBOOT_CONFIG[mfgtool] = "mx6sllevk_config" | ||
22 | |||
23 | OPTEE_BIN_EXT_imx6sllevk = "6sllevk" | ||
18 | 24 | ||
19 | SERIAL_CONSOLES = "115200;ttymxc0" | 25 | SERIAL_CONSOLES = "115200;ttymxc0" |
20 | 26 | ||
21 | MACHINE_FEATURES += " pci wifi bluetooth" | 27 | MACHINE_FEATURES += "wifi bluetooth bcm4339 bcm43455" |
22 | 28 | ||
23 | # MESA DRI library | 29 | # MESA DRI library |
24 | XSERVER += "mesa-driver-swrast" | 30 | XSERVER += "mesa-driver-swrast" |