69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
#@TYPE: Machine
|
|
#@NAME: ConnectCore 9 family of SOMs
|
|
#@DESCRIPTION: Machine configuration for Digi's ConnectCore 9 family of SOMs
|
|
|
|
DIGI_FAMILY = "ccimx9"
|
|
|
|
require conf/machine/include/imx-digi-base.inc
|
|
require conf/machine/include/arm/armv8-2a/tune-cortexa55.inc
|
|
|
|
# Platform u-boot settings
|
|
UBOOT_DTB_LOADADDRESS = "0x83000000"
|
|
UBOOT_DTBO_LOADADDRESS = "0x83000000"
|
|
UBOOT_ENTRYPOINT = "0x80400000"
|
|
UBOOT_ENV = "boot"
|
|
UBOOT_PREFIX = "imx-boot"
|
|
UBOOT_SUFFIX = "bin"
|
|
|
|
# Set InitRAMDisk load address to U-boot initrd_addr
|
|
UBOOT_RD_LOADADDRESS = "0x83800000"
|
|
|
|
# Platform kernel settings (keep the override as otherwise KERNEL_IMAGETYPE
|
|
# from imx-digi-base.inc takes precedence)
|
|
KERNEL_CLASSES = "kernel-fitimage"
|
|
KERNEL_IMAGETYPE:ccimx9 = "${@oe.utils.vartrue('TRUSTFENCE_SIGN_ARTIFACTS', 'fitImage', 'Image.gz', d)}"
|
|
|
|
# The bootloader image that gets flashed consists of U-Boot and several fw binaries
|
|
EXTRA_IMAGEDEPENDS += "imx-boot"
|
|
|
|
MACHINE_FEATURES += "pci wifi bluetooth"
|
|
MACHINE_FEATURES:append:use-nxp-bsp = " optee jailhouse"
|
|
|
|
# For nativesdk packages that need to go to the toolchain depending on an
|
|
# specific machine feature.
|
|
SDK_MACHINE_FEATURES:append = " optee"
|
|
|
|
STORAGE_MEDIA = "mmc"
|
|
WLAN_P2P_INTERFACE = "wfd0"
|
|
|
|
# Linux kernel configuration
|
|
KERNEL_DEFCONFIG ?= "arch/arm64/configs/ccimx9_defconfig"
|
|
|
|
SPL_BINARY = "spl/u-boot-spl.bin"
|
|
|
|
MACHINE_EXTRA_RDEPENDS += " \
|
|
e2fsprogs-mke2fs \
|
|
e2fsprogs-resize2fs \
|
|
parted \
|
|
xbee-init \
|
|
"
|
|
|
|
# TrustFence
|
|
TRUSTFENCE_SIGN_MODE = "AHAB"
|
|
|
|
IMX_BOOT_SEEK = "32"
|
|
|
|
# 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}')}"
|
|
|
|
# Default overlayfs_etc mount point and type
|
|
OVERLAYFS_ETC_MOUNT_POINT ?= "/mnt/data"
|
|
OVERLAYFS_ETC_DEVICE ?= "/dev/mmcblk0p7"
|
|
OVERLAYFS_ETC_FSTYPE ?= "ext4"
|