summaryrefslogtreecommitdiffstats
path: root/conf/machine/imx6sllevk.conf
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2020-12-03 15:38:06 -0600
committerOtavio Salvador <otavio@ossystems.com.br>2021-01-21 08:37:58 -0300
commit879d59d68c834727e29edcd20949d2f60db7b14c (patch)
tree787d79096ea098b3befff89ae620cb212cd2cc42 /conf/machine/imx6sllevk.conf
parent59020031deadf07fe9c32dbf790da93d3b1a49ee (diff)
downloadmeta-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/machine/imx6sllevk.conf')
-rw-r--r--conf/machine/imx6sllevk.conf16
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
12KERNEL_DEVICETREE = "imx6sll-evk.dtb" 12KERNEL_DEVICETREE = "imx6sll-evk.dtb"
13 13
14UBOOT_CONFIG ??= "sd" 14UBOOT_CONFIG ??= " \
15UBOOT_CONFIG[sd] = "mx6sllevk_config,sdcard" 15 sd \
16UBOOT_CONFIG[epdc] = "mx6sllevk_epdc_config" 16 ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \
17UBOOT_CONFIG[mfgtool] = "mx6sllevk_config" 17"
18UBOOT_CONFIG[sd] = "mx6sllevk_config,sdcard"
19UBOOT_CONFIG[sd-optee] = "mx6sllevk_optee_config,sdcard"
20UBOOT_CONFIG[epdc] = "mx6sllevk_epdc_config"
21UBOOT_CONFIG[mfgtool] = "mx6sllevk_config"
22
23OPTEE_BIN_EXT_imx6sllevk = "6sllevk"
18 24
19SERIAL_CONSOLES = "115200;ttymxc0" 25SERIAL_CONSOLES = "115200;ttymxc0"
20 26
21MACHINE_FEATURES += " pci wifi bluetooth" 27MACHINE_FEATURES += "wifi bluetooth bcm4339 bcm43455"
22 28
23# MESA DRI library 29# MESA DRI library
24XSERVER += "mesa-driver-swrast" 30XSERVER += "mesa-driver-swrast"