0f3c3a5fb2
OpenWrt lately has harmonized device (definition) names to the pattern vendor_model to improve overall consistency, also with other values like the DTS compatible. This patch applies that scheme to the layerscape target. Since this (intentionally) creates a bigger overlap between DTS names, compatible, and device definition name, it also moves DEVICE_DTS and SUPPORTED_DEVICES definitions to the Device/Default blocks. Apart from that, it also modifies several packages to use consistent naming in order to keep the $(1) file references working. While at it, remove one layer of complexity for the setup in tfa-layerscape package. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
152 lines
3.8 KiB
Makefile
152 lines
3.8 KiB
Makefile
#
|
|
# Copyright 2019 NXP
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tfa-layerscape
|
|
PKG_VERSION:=LSDK-20.04
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://source.codeaurora.org/external/qoriq/qoriq-components/atf
|
|
PKG_SOURCE_VERSION:=4a82c939a0211196e2b80a495f966383803753bb
|
|
PKG_MIRROR_HASH:=31c264551ce800b646d7dcc5baa62cfbb4c8fa3299a93931c7ef71dc3e88380d
|
|
PKG_BUILD_DEPENDS:=tfa-layerscape/host
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
HOST_CFLAGS += -Wall -Werror -pedantic -std=c99
|
|
define Host/Compile
|
|
$(MAKE) -C \
|
|
$(HOST_BUILD_DIR)/tools/fiptool \
|
|
CFLAGS="$(HOST_CFLAGS)" \
|
|
LDFLAGS="$(HOST_LDFLAGS)"
|
|
$(MAKE) -C \
|
|
$(HOST_BUILD_DIR)/plat/nxp/tools \
|
|
CFLAGS="$(HOST_CFLAGS)"
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/tools/fiptool/fiptool $(STAGING_DIR_HOST)/bin/tfa-fiptool
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/plat/nxp/tools/create_pbl $(STAGING_DIR_HOST)/bin/tfa-create-pbl
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/plat/nxp/tools/byte_swap $(STAGING_DIR_HOST)/bin/tfa-byte-swap
|
|
endef
|
|
|
|
define Package/tfa-generic
|
|
SECTION:=boot
|
|
CATEGORY:=Boot Loaders
|
|
DEPENDS:=@TARGET_layerscape_armv8_64b +layerscape-rcw +u-boot-fsl_$(subst tfa-,,$(1))
|
|
VARIANT:=$(subst tfa-,,$(1))
|
|
endef
|
|
|
|
define Package/tfa-ls1012a-frdm
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1012AFRDM Trusted Firmware
|
|
PLAT:=ls1012afrdm
|
|
BOOT_MODE:=qspi
|
|
endef
|
|
|
|
define Package/tfa-ls1012a-rdb
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1012ARDB Trusted Firmware
|
|
PLAT:=ls1012ardb
|
|
BOOT_MODE:=qspi
|
|
endef
|
|
|
|
define Package/tfa-ls1012a-frwy-sdboot
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1012AFRWY Trusted Firmware
|
|
PLAT:=ls1012afrwy
|
|
BOOT_MODE:=qspi
|
|
endef
|
|
|
|
define Package/tfa-ls1043a-rdb
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1043ARDB Trusted Firmware
|
|
PLAT:=ls1043ardb
|
|
BOOT_MODE:=nor
|
|
endef
|
|
|
|
define Package/tfa-ls1043a-rdb-sdboot
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1043ARDB SD Boot Trusted Firmware
|
|
PLAT:=ls1043ardb
|
|
BOOT_MODE:=sd
|
|
endef
|
|
|
|
define Package/tfa-ls1046a-rdb
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1046ARDB Trusted Firmware
|
|
PLAT:=ls1046ardb
|
|
BOOT_MODE:=qspi
|
|
endef
|
|
|
|
define Package/tfa-ls1046a-rdb-sdboot
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1046ARDB SD Boot Trusted Firmware
|
|
PLAT:=ls1046ardb
|
|
BOOT_MODE:=sd
|
|
endef
|
|
|
|
define Package/tfa-ls1088a-rdb
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1088ARDB Trusted Firmware
|
|
PLAT:=ls1088ardb
|
|
BOOT_MODE:=qspi
|
|
endef
|
|
|
|
define Package/tfa-ls1088a-rdb-sdboot
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS1088ARDB SD Boot Trusted Firmware
|
|
PLAT:=ls1088ardb
|
|
BOOT_MODE:=sd
|
|
endef
|
|
|
|
define Package/tfa-ls2088a-rdb
|
|
$(Package/tfa-generic)
|
|
TITLE:=NXP LS2088ARDB Trusted Firmware
|
|
PLAT:=ls2088ardb
|
|
BOOT_MODE:=nor
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(CP) $(PKG_BUILD_DIR)/build/$(PLAT)/release/bl2_$(BOOT_MODE).pbl \
|
|
$(STAGING_DIR_IMAGE)/fsl_$(BUILD_VARIANT)-bl2.pbl
|
|
$(CP) $(PKG_BUILD_DIR)/build/$(PLAT)/release/fip.bin \
|
|
$(STAGING_DIR_IMAGE)/fsl_$(BUILD_VARIANT)-fip.bin
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(eval $(Package/tfa-$(BUILD_VARIANT))) \
|
|
$(MAKE) -C $(PKG_BUILD_DIR) CROSS_COMPILE=$(TARGET_CROSS) \
|
|
fip pbl PLAT=$(PLAT) BOOT_MODE=$(BOOT_MODE) \
|
|
RCW=$(STAGING_DIR_IMAGE)/fsl_$(BUILD_VARIANT)-rcw.bin \
|
|
BL33=$(STAGING_DIR_IMAGE)/fsl_$(BUILD_VARIANT)-uboot.bin \
|
|
FIPTOOL=$(STAGING_DIR_HOST)/bin/tfa-fiptool \
|
|
CREATE_PBL=$(STAGING_DIR_HOST)/bin/tfa-create-pbl \
|
|
BYTE_SWAP=$(STAGING_DIR_HOST)/bin/tfa-byte-swap
|
|
endef
|
|
|
|
TFAS := \
|
|
ls1012a-frdm \
|
|
ls1012a-rdb \
|
|
ls1012a-frwy-sdboot \
|
|
ls1043a-rdb \
|
|
ls1043a-rdb-sdboot \
|
|
ls1046a-rdb \
|
|
ls1046a-rdb-sdboot \
|
|
ls1088a-rdb \
|
|
ls1088a-rdb-sdboot \
|
|
ls2088a-rdb
|
|
|
|
$(eval $(call HostBuild))
|
|
$(foreach tfa,$(TFAS), \
|
|
$(eval $(call BuildPackage,tfa-$(tfa))) \
|
|
)
|