73 lines
2.2 KiB
PHP
73 lines
2.2 KiB
PHP
#@TYPE: Machine
|
|
#@NAME: ConnectCore 8M family of SOMs.
|
|
#@DESCRIPTION: Machine configuration for Digi's ConnectCore 8M family of SOMs.
|
|
|
|
include conf/machine/include/imx-digi-base.inc
|
|
require conf/machine/include/arm/armv8a/tune-cortexa53.inc
|
|
|
|
DIGI_FAMILY = "ccimx8m"
|
|
|
|
# Platform u-boot settings
|
|
UBOOT_PREFIX = "imx-boot"
|
|
UBOOT_SUFFIX = "bin"
|
|
|
|
# The bootloader image that gets flashed consists of U-Boot and several fw binaries
|
|
EXTRA_IMAGEDEPENDS += "imx-boot"
|
|
BOOTLOADER_IMAGE_RECIPE = "imx-boot"
|
|
BOOTABLE_FILENAME = "${UBOOT_PREFIX}-${MACHINE}.bin"
|
|
SDIMG_BOOTLOADER = "${DEPLOY_DIR_IMAGE}/${BOOTABLE_FILENAME}"
|
|
|
|
# Set InitRAMDisk load address to U-boot initramfs_addr
|
|
UBOOT_RD_LOADADDRESS = "0x43800000"
|
|
|
|
# LPDDR4 firmware
|
|
DDR_FIRMWARE_NAME = " \
|
|
lpddr4_pmu_train_1d_imem.bin \
|
|
lpddr4_pmu_train_1d_dmem.bin \
|
|
lpddr4_pmu_train_2d_imem.bin \
|
|
lpddr4_pmu_train_2d_dmem.bin \
|
|
"
|
|
IMXBOOT_TARGETS = "flash_evk"
|
|
|
|
# Linux kernel configuration
|
|
KERNEL_DEFCONFIG ?= "arch/arm64/configs/ccimx8_defconfig"
|
|
|
|
STORAGE_MEDIA = "mmc"
|
|
|
|
# Wireless external module
|
|
WIRELESS_MODULE ?= ""
|
|
WIRELESS_MODULE:append = " ${@oe.utils.conditional('HAVE_WIFI', '1', 'kernel-module-qualcomm', '', d)}"
|
|
HAS_WIFI_VIRTWLANS = "true"
|
|
|
|
# Machine firmware
|
|
MACHINE_FIRMWARE:append = " ${@oe.utils.conditional('HAVE_BT', '1', 'firmware-qualcomm-qca6564-bt', '', d)}"
|
|
MACHINE_FIRMWARE:append = " ${@oe.utils.conditional('HAVE_WIFI', '1', 'firmware-qualcomm-qca6564-wifi', '', d)}"
|
|
|
|
MACHINE_EXTRA_RDEPENDS += " \
|
|
e2fsprogs-mke2fs \
|
|
e2fsprogs-resize2fs \
|
|
parted \
|
|
xbee-init \
|
|
"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += "${WIRELESS_MODULE}"
|
|
|
|
MACHINE_FEATURES += "accel-graphics wifi bluetooth cryptochip mca optee"
|
|
|
|
# For nativesdk packages that need to go to the toolchain depending on an
|
|
# specific machine feature.
|
|
SDK_MACHINE_FEATURES:append = " optee"
|
|
|
|
# TrustFence
|
|
TRUSTFENCE_SIGN_MODE = "HAB"
|
|
|
|
# SWUpdate sw-description configuration
|
|
BOOTFS_EXT ?= ".boot.vfat"
|
|
ROOTFS_EXT ?= '${@bb.utils.contains("IMAGE_FEATURES", "read-only-rootfs", ".squashfs", ".ext4.gz", d)}'
|
|
|
|
BOOT_DEV_NAME ?= "/dev/mmcblk0p1"
|
|
ROOTFS_DEV_NAME ?= "/dev/mmcblk0p3"
|
|
ROOTFS_ENC_DEV = "/dev/mapper/cryptrootfs"
|
|
ROOTFS_DEV_NAME_FINAL = "${@oe.utils.ifelse(d.getVar('TRUSTFENCE_ENCRYPT_ROOTFS') == '1', '${ROOTFS_ENC_DEV}', '${ROOTFS_DEV_NAME}')}"
|
|
|