57 lines
1.6 KiB
Plaintext
57 lines
1.6 KiB
Plaintext
#@TYPE: Machine
|
|
#@NAME: ConnectCore 8M Plus Development Kit.
|
|
#@DESCRIPTION: Machine configuration for Digi's ConnectCore 8M Plus DVK.
|
|
|
|
# Include the machine configuration for Digi's ConnectCore 8M module.
|
|
include conf/machine/include/ccimx8m.inc
|
|
|
|
# Temporarily remove wifi and bluetooth machine features until
|
|
# we have proper support for the Murata module.
|
|
MACHINE_FEATURES:remove = "wifi bluetooth"
|
|
|
|
DIGI_FAMILY = "ccimx8mp"
|
|
MACHINEOVERRIDES =. "mx8:mx8m:mx8mp:ccimx8m:${DIGI_FAMILY}:"
|
|
|
|
BOOTLOADER_SEEK_USERDATA = "32"
|
|
BOOTLOADER_SEEK_BOOT = "0"
|
|
|
|
# U-Boot configurations
|
|
# Last one is the default (the one the symlinks point at)
|
|
UBOOT_CONFIG ??= "ccimx8mp_dvk"
|
|
UBOOT_CONFIG[ccimx8mp_dvk] = "ccimx8mp_dvk_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
|
|
|
# Set DDR FIRMWARE
|
|
DDR_FIRMWARE_VERSION = "202006"
|
|
DDR_FIRMWARE_NAME = " \
|
|
lpddr4_pmu_train_1d_dmem_${DDR_FIRMWARE_VERSION}.bin \
|
|
lpddr4_pmu_train_1d_imem_${DDR_FIRMWARE_VERSION}.bin \
|
|
lpddr4_pmu_train_2d_dmem_${DDR_FIRMWARE_VERSION}.bin \
|
|
lpddr4_pmu_train_2d_imem_${DDR_FIRMWARE_VERSION}.bin \
|
|
"
|
|
|
|
SPL_BINARY = "spl/u-boot-spl.bin"
|
|
|
|
# Set u-boot DTB
|
|
UBOOT_DTB_NAME = "ccimx8mp-dvk.dtb"
|
|
|
|
ATF_PLATFORM = "imx8mp"
|
|
|
|
KERNEL_DEVICETREE ?= " \
|
|
digi/ccimx8mp-dvk.dtb \
|
|
"
|
|
|
|
SERIAL_CONSOLES ?= "115200;ttymxc0"
|
|
|
|
# Bluetooth tty
|
|
BT_TTY ?= "ttymxc1"
|
|
|
|
# XBees
|
|
XBEE_RESET_N_GPIO ?= "mca-gpio@15,gpio1@8"
|
|
XBEE_SLEEP_RQ_GPIO ?= "mca-gpio@11,gpio1@7"
|
|
XBEE_TTY ?= "ttymxc3"
|
|
|
|
# Image FS types
|
|
IMAGE_FSTYPES ?= '${@bb.utils.contains("IMAGE_FEATURES", "read-only-rootfs", \
|
|
"boot.vfat tar.bz2 recovery.vfat squashfs", \
|
|
"boot.vfat ext4.gz sdcard.gz tar.bz2 recovery.vfat", d)}'
|