2017-10-16 02:23:45 +00:00
|
|
|
#
|
|
|
|
# Copyright 2017 NXP
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2017-12-01 21:32:26 +00:00
|
|
|
PKG_NAME:=ls-mc
|
2021-10-11 10:52:10 +00:00
|
|
|
PKG_VERSION:=LSDK-21.08
|
layerscape: add LX2160ARDB (Rev2.0 silicon) board support
The QorIQ LX2160A reference design board provides a comprehensive platform
that enables design and evaluation of the LX2160A processor.
- Enables network intelligence with the next generation Datapath (DPPA2)
which provides differentiated offload and a rich set of IO, including
10GE, 25GE, 40GE, and PCIe Gen4
- Delivers unprecedented efficiency and new virtualized networks
- Supports designs in 5G packet processing, network function
virtualization, storage controller, white box switching, network
interface cards, and mobile edge computing
- Supports all three LX2 family members (16-core LX2160A; 12-core LX2120A;
and 8-core LX2080A)
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
[use AUTORELEASE, add dtb to firmware part]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-07-30 05:12:43 +00:00
|
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
2017-10-16 02:23:45 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2018-01-18 06:55:19 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/NXP/qoriq-mc-binary.git
|
2021-10-11 10:52:10 +00:00
|
|
|
PKG_SOURCE_VERSION:=LSDK-21.08
|
|
|
|
PKG_MIRROR_HASH:=a8b2398f7958bfc3d45b239d33e0ecd27bd46e8f34693d545590a870be22ca2b
|
2017-10-16 02:23:45 +00:00
|
|
|
|
2021-05-02 22:35:38 +00:00
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
|
2017-10-16 02:23:45 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2020-03-14 06:25:33 +00:00
|
|
|
define Package/layerscape-mc
|
2017-10-16 02:23:45 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2020-03-14 06:25:33 +00:00
|
|
|
TITLE:=NXP MC firmware
|
2018-07-02 06:58:30 +00:00
|
|
|
DEPENDS:=@TARGET_layerscape
|
2017-10-16 02:23:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2020-03-14 06:25:33 +00:00
|
|
|
define Build/InstallDev
|
2017-10-16 02:23:45 +00:00
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
2021-10-11 10:52:10 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/ls1088a/mc_ls1088a_10.28.1.itb \
|
2020-07-20 13:34:04 +00:00
|
|
|
$(STAGING_DIR_IMAGE)/fsl_ls1088a-rdb-mc.itb
|
2021-10-11 10:52:10 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/ls2088a/mc_ls2088a_10.28.1.itb \
|
2020-07-20 13:34:04 +00:00
|
|
|
$(STAGING_DIR_IMAGE)/fsl_ls2088a-rdb-mc.itb
|
2021-10-11 10:52:10 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/lx216xa/mc_lx2160a_10.28.1.itb \
|
layerscape: add LX2160ARDB (Rev2.0 silicon) board support
The QorIQ LX2160A reference design board provides a comprehensive platform
that enables design and evaluation of the LX2160A processor.
- Enables network intelligence with the next generation Datapath (DPPA2)
which provides differentiated offload and a rich set of IO, including
10GE, 25GE, 40GE, and PCIe Gen4
- Delivers unprecedented efficiency and new virtualized networks
- Supports designs in 5G packet processing, network function
virtualization, storage controller, white box switching, network
interface cards, and mobile edge computing
- Supports all three LX2 family members (16-core LX2160A; 12-core LX2120A;
and 8-core LX2080A)
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
[use AUTORELEASE, add dtb to firmware part]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-07-30 05:12:43 +00:00
|
|
|
$(STAGING_DIR_IMAGE)/fsl_lx2160a-rdb-mc.itb
|
2017-10-16 02:23:45 +00:00
|
|
|
endef
|
|
|
|
|
2020-03-14 06:25:33 +00:00
|
|
|
$(eval $(call BuildPackage,layerscape-mc))
|