7016dd48f1
ls1012afrdm was no longer supported in NXP Layerscape SDK. Instead a new board ls1012afrwy was introduced in LSDK. This patch is to drop ls1012afrdm and add ls1012afrwy support. Since only 2MB NOR flash could be used, we just put u-boot and firmware on NOR flash, and put kernel/dtb/rootfs on SD card. The Layerscape FRWY-LS1012A board is an ultra-low-cost development platform for LS1012A Series Communication Processors built on Arm Cortex-A53. This tool refines the FRDM-LS1012A with more features for a better hands-on experience for IoT, edge computing, and various advanced embedded applications. Features include easy access to processor I/O, low-power operation, micro SD card storage, an M2 connector, a small form factor, and expansion board options via mikroBUS Click Module. The MicroBUS Module provides easy expansion via hundreds of powerful modules supporting sensors, actuators, memories, and displays. Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
120 lines
2.6 KiB
Makefile
120 lines
2.6 KiB
Makefile
#
|
|
# Copyright (C) 2016 Jiang Yutang <jiangyutang1978@gmail.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uboot-layerscape
|
|
PKG_VERSION:=lsdk-1806
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://source.codeaurora.org/external/qoriq/qoriq-components/u-boot
|
|
PKG_SOURCE_VERSION:=b3f98d438eefd1b355efdec0b50af5813ff8d0e1
|
|
PKG_MIRROR_HASH:=59e35957055658e7fdefb16b92f954356985a8191942d93f254861c75c47b32b
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=layerscape
|
|
BUILD_SUBTARGET:=armv8_64b
|
|
BUILD_DEVICES:=$(1)
|
|
UBOOT_IMAGE:=u-boot-dtb.bin
|
|
ENV_SIZE:=0x2000
|
|
endef
|
|
|
|
define U-Boot/ls1012ardb
|
|
NAME:=NXP LS1012ARDB
|
|
UBOOT_CONFIG:=ls1012ardb_qspi
|
|
ENV_SIZE:=0x40000
|
|
endef
|
|
|
|
define U-Boot/ls1012afrwy
|
|
NAME:=NXP LS1012AFRWY
|
|
UBOOT_CONFIG:=ls1012afrwy_qspi
|
|
ENV_SIZE:=0x10000
|
|
endef
|
|
|
|
define U-Boot/ls1043ardb
|
|
NAME:=NXP LS1043ARDB
|
|
ENV_SIZE:=0x20000
|
|
endef
|
|
|
|
define U-Boot/ls1043ardb-sdboot
|
|
NAME:=NXP LS1043ARDB SD Card Boot
|
|
UBOOT_CONFIG:=ls1043ardb_sdcard
|
|
UBOOT_IMAGE:=u-boot-with-spl-pbl.bin
|
|
endef
|
|
|
|
define U-Boot/ls1046ardb
|
|
NAME:=NXP LS1046ARDB
|
|
UBOOT_CONFIG:=ls1046ardb_qspi
|
|
endef
|
|
|
|
define U-Boot/ls1046ardb-sdboot
|
|
NAME:=NXP LS1046ARDB SD Card Boot
|
|
UBOOT_CONFIG:=ls1046ardb_sdcard
|
|
UBOOT_IMAGE:=u-boot-with-spl-pbl.bin
|
|
endef
|
|
|
|
define U-Boot/ls1088ardb
|
|
NAME:=NXP LS1088ARDB
|
|
UBOOT_CONFIG:=ls1088ardb_qspi
|
|
endef
|
|
|
|
define U-Boot/ls1088ardb-sdboot
|
|
NAME:=NXP LS1088ARDB SD Card Boot
|
|
UBOOT_CONFIG:=ls1088ardb_sdcard_qspi
|
|
UBOOT_IMAGE:=u-boot-with-spl.bin
|
|
endef
|
|
|
|
define U-Boot/ls2088ardb
|
|
NAME:=NXP LS2088ARDB
|
|
UBOOT_CONFIG:=ls2080ardb
|
|
endef
|
|
|
|
define U-Boot/ls1021atwr
|
|
NAME:=NXP LS1021ATWR
|
|
BUILD_SUBTARGET:=armv7
|
|
UBOOT_CONFIG:=ls1021atwr_nor
|
|
ENV_SIZE:=0x20000
|
|
endef
|
|
|
|
define U-Boot/ls1021atwr-sdboot
|
|
NAME:=NXP LS1021ATWR SD Card Boot
|
|
BUILD_SUBTARGET:=armv7
|
|
UBOOT_CONFIG:=ls1021atwr_sdcard_ifc
|
|
UBOOT_IMAGE:=u-boot-with-spl-pbl.bin
|
|
ENV_SIZE:=0x20000
|
|
endef
|
|
|
|
UBOOT_TARGETS := \
|
|
ls1012ardb \
|
|
ls1012afrwy \
|
|
ls1043ardb \
|
|
ls1043ardb-sdboot \
|
|
ls1046ardb \
|
|
ls1046ardb-sdboot \
|
|
ls1088ardb \
|
|
ls1088ardb-sdboot \
|
|
ls2088ardb \
|
|
ls1021atwr \
|
|
ls1021atwr-sdboot
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) \
|
|
$(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-uboot.bin
|
|
$(PKG_BUILD_DIR)/tools/mkenvimage -s $(ENV_SIZE) \
|
|
-o $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-uboot-env.bin \
|
|
files/$(BUILD_VARIANT)-uEnv.txt
|
|
endef
|
|
|
|
define Package/u-boot/install/default
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|