layerscape: support LSDK ppfe
This patch is to use ppfe git tree on LSDK github instead of private git tree, and support the latest ppfe on ls1012ardb. Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
This commit is contained in:
parent
669c02d46d
commit
82fbca8aaa
3 changed files with 36 additions and 64 deletions
|
@ -8,80 +8,45 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=ppfe
|
PKG_NAME:=ppfe
|
||||||
PKG_VERSION:=v1.0
|
PKG_VERSION:=2017.09
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_MIRROR_HASH:=645d9aaaaa39ac1fa50cf805f1866feb5f717b34cb110c80e3f45303ea6d7259
|
PKG_SOURCE_URL:=https://github.com/qoriq-open-source/engine-pfe-bin.git
|
||||||
PKG_SOURCE_URL:=https://github.com/fsl-jyt/ppfe.git
|
PKG_SOURCE_VERSION:=97cd13d3070d7199e62881bc495b332194b67edd
|
||||||
PKG_SOURCE_VERSION:=b9bb5cc690c0aab2592eb9d443ef55cc9dff8557
|
PKG_MIRROR_HASH:=1ef60cdac49dd57c76ec9ef01d00f6eeb025ba62f0d75f54adeeb3362f5edad2
|
||||||
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0 GPL-2.0+
|
|
||||||
PKG_LICENSE_FILES:=Licenses/README
|
|
||||||
|
|
||||||
PKG_FLAGS:=nonshared
|
PKG_FLAGS:=nonshared
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define ppfe/Default
|
RSTRIP:=:
|
||||||
TITLE:=
|
STRIP:=:
|
||||||
CONFIG:=
|
|
||||||
endef
|
|
||||||
|
|
||||||
define ppfe/ls1012ardb
|
define Package/layerscape-ppfe
|
||||||
TITLE:=PPFE firmware $(PKG_NAME)-$(PKG_VERSION) for NXP ls1012a Dev Board\
|
SECTION:=firmware
|
||||||
(must enable CONFIG_NO_STRIP=y for avoid firmware be broke)
|
CATEGORY:=Firmware
|
||||||
CONFIG:=ls1012a/Freescale-Binary-EULA ls1012a/ppfe_class_ls1012a.elf ls1012a/ppfe_tmu_ls1012a.elf
|
DEPENDS:=@TARGET_layerscape
|
||||||
|
TITLE:=NXP Layerscape PPFE firmware
|
||||||
|
CONFIG_FW:=ls1012a/u-boot/pfe_fw_sbl.itb
|
||||||
|
CONFIG_BIN1:=ls1012a/slow_path/ppfe_class_ls1012a.elf
|
||||||
|
CONFIG_BIN2:=ls1012a/slow_path/ppfe_tmu_ls1012a.elf
|
||||||
|
CONFIG_LIC:=Freescale-Binary-EULA
|
||||||
endef
|
endef
|
||||||
|
|
||||||
PPFES := \
|
|
||||||
ls1012ardb
|
|
||||||
|
|
||||||
define Package/ppfe/template
|
|
||||||
define Package/ppfe-$(1)
|
|
||||||
SECTION:=firmware
|
|
||||||
CATEGORY:=Firmware
|
|
||||||
DEPENDS:=@TARGET_layerscape
|
|
||||||
TITLE:=$(2)
|
|
||||||
URL:=https://github.com/fsl-jyt/ppfe.git
|
|
||||||
VARIANT:=$(1)
|
|
||||||
MAINTAINER:=Jiang Yutang <jiangyutang1978@gmail.com>
|
|
||||||
endef
|
|
||||||
endef
|
|
||||||
|
|
||||||
define BuildPPFEPackage
|
|
||||||
$(eval $(ppfe/Default))
|
|
||||||
$(eval $(ppfe/$(1)))
|
|
||||||
$(call Package/ppfe/template,$(1),$(TITLE))
|
|
||||||
endef
|
|
||||||
|
|
||||||
ifdef BUILD_VARIANT
|
|
||||||
$(eval $(call ppfe/$(BUILD_VARIANT)))
|
|
||||||
PPFE_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
|
|
||||||
endif
|
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ppfe/install/default
|
define Package/layerscape-ppfe/install
|
||||||
$(INSTALL_DIR) $(1)/lib/firmware
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
||||||
$(foreach i,$(PPFE_CONFIG), \
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$(CONFIG_FW) \
|
||||||
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$(i) $(1)/lib/firmware/ ;\
|
$(STAGING_DIR_IMAGE)/pfe.itb
|
||||||
)
|
$(INSTALL_DIR) $(1)/lib/firmware/
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_BUILD_DIR)/$(CONFIG_BIN1) \
|
||||||
|
$(PKG_BUILD_DIR)/$(CONFIG_BIN2) \
|
||||||
|
$(PKG_BUILD_DIR)/$(CONFIG_LIC) \
|
||||||
|
$(1)/lib/firmware/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ppfe/install/template
|
$(eval $(call BuildPackage,layerscape-ppfe))
|
||||||
define Package/ppfe-$(1)/install
|
|
||||||
$(call Package/ppfe/install/default,$$(1),$(2))
|
|
||||||
endef
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(foreach p,$(PPFES), \
|
|
||||||
$(eval $(call Package/ppfe/install/template,$(p),$(p))) \
|
|
||||||
)
|
|
||||||
|
|
||||||
$(foreach p,$(PPFES), \
|
|
||||||
$(eval $(call BuildPPFEPackage,$(p))) \
|
|
||||||
$(eval $(call BuildPackage,ppfe-$(p))) \
|
|
||||||
)
|
|
||||||
|
|
|
@ -24,6 +24,10 @@ define Build/append-ls-mc
|
||||||
dd if=$(STAGING_DIR_IMAGE)/$(1)-mc.itb >> $@
|
dd if=$(STAGING_DIR_IMAGE)/$(1)-mc.itb >> $@
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/append-ls-ppfe
|
||||||
|
dd if=$(STAGING_DIR_IMAGE)/pfe.itb >> $@
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/append-ls-dpl
|
define Build/append-ls-dpl
|
||||||
dd if=$(STAGING_DIR_IMAGE)/$(1)-dpl.dtb >> $@
|
dd if=$(STAGING_DIR_IMAGE)/$(1)-dpl.dtb >> $@
|
||||||
endef
|
endef
|
||||||
|
@ -89,10 +93,12 @@ TARGET_DEVICES += ls1046ardb
|
||||||
|
|
||||||
define Device/ls1012ardb
|
define Device/ls1012ardb
|
||||||
DEVICE_TITLE := ls1012ardb-$(SUBTARGET)
|
DEVICE_TITLE := ls1012ardb-$(SUBTARGET)
|
||||||
DEVICE_PACKAGES += rcw-layerscape-ls1012ardb uboot-layerscape-$(SUBTARGET)-ls1012ardb kmod-ppfe ppfe-ls1012ardb
|
DEVICE_PACKAGES += rcw-layerscape-ls1012ardb uboot-layerscape-$(SUBTARGET)-ls1012ardb \
|
||||||
|
kmod-ppfe layerscape-ppfe
|
||||||
DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1012a-rdb
|
DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1012a-rdb
|
||||||
IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | \
|
IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | \
|
||||||
append-ls-uboot $(1) | pad-to 15M | \
|
append-ls-uboot $(1) | pad-to 10M | \
|
||||||
|
append-ls-ppfe | pad-to 15M | \
|
||||||
append-ls-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
append-ls-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
||||||
append-kernel | pad-to 32M | \
|
append-kernel | pad-to 32M | \
|
||||||
append-ls-rootfs-ext4 $(1) 23M | check-size 67108865
|
append-ls-rootfs-ext4 $(1) 23M | check-size 67108865
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
define KernelPackage/ppfe
|
define KernelPackage/ppfe
|
||||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||||
TITLE:=Freescale PPFE Driver support
|
TITLE:=Freescale PPFE Driver support
|
||||||
KCONFIG:=CONFIG_FSL_PPFE
|
DEPENDS:=@TARGET_layerscape
|
||||||
|
KCONFIG:=CONFIG_FSL_PPFE CONFIG_FSL_PPFE_UTIL_DISABLED
|
||||||
FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
|
FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,35,ppfe)
|
AUTOLOAD:=$(call AutoLoad,35,ppfe)
|
||||||
endef
|
endef
|
||||||
|
|
Loading…
Reference in a new issue