uboot-layerscape: fix LS1012A-FRDM fdt_high value
[openwrt/openwrt.git] / package / boot / uboot-layerscape / Makefile
1 #
2 # Copyright (C) 2016 Jiang Yutang <jiangyutang1978@gmail.com>
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=uboot-layerscape
11 PKG_VERSION:=LSDK-20.04
12 PKG_RELEASE:=3
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=https://source.codeaurora.org/external/qoriq/qoriq-components/u-boot
16 PKG_SOURCE_VERSION:=b0833bd0e26c059277f0673c9887b967f1ea5837
17 PKG_MIRROR_HASH:=3cc01d4853ba56d9bcfe5366eddb5f664ae110741146d04f03434d38b4b5b0a0
18
19 include $(INCLUDE_DIR)/u-boot.mk
20 include $(INCLUDE_DIR)/package.mk
21
22 define U-Boot/Default
23 BUILD_TARGET:=layerscape
24 BUILD_SUBTARGET:=armv8_64b
25 BUILD_DEVICES:=$(1)
26 UBOOT_IMAGE:=u-boot-dtb.bin
27 ENV_SIZE:=0x2000
28 endef
29
30 define U-Boot/fsl_ls1012a-frdm
31 NAME:=NXP LS1012AFRDM
32 UBOOT_CONFIG:=ls1012afrdm_tfa
33 ENV_SIZE:=0x40000
34 endef
35
36 define U-Boot/fsl_ls1012a-rdb
37 NAME:=NXP LS1012ARDB
38 UBOOT_CONFIG:=ls1012ardb_tfa
39 ENV_SIZE:=0x40000
40 endef
41
42 define U-Boot/fsl_ls1012a-frwy-sdboot
43 NAME:=NXP LS1012AFRWY
44 UBOOT_CONFIG:=ls1012afrwy_tfa
45 ENV_SIZE:=0x10000
46 endef
47
48 define U-Boot/fsl_ls1043a-rdb
49 NAME:=NXP LS1043ARDB
50 UBOOT_CONFIG:=ls1043ardb_tfa
51 endef
52
53 define U-Boot/fsl_ls1043a-rdb-sdboot
54 NAME:=NXP LS1043ARDB SD Card Boot
55 UBOOT_CONFIG:=ls1043ardb_tfa
56 endef
57
58 define U-Boot/fsl_ls1046a-rdb
59 NAME:=NXP LS1046ARDB
60 UBOOT_CONFIG:=ls1046ardb_tfa
61 endef
62
63 define U-Boot/fsl_ls1046a-rdb-sdboot
64 NAME:=NXP LS1046ARDB SD Card Boot
65 UBOOT_CONFIG:=ls1046ardb_tfa
66 endef
67
68 define U-Boot/fsl_ls1088a-rdb
69 NAME:=NXP LS1088ARDB
70 UBOOT_CONFIG:=ls1088ardb_tfa
71 endef
72
73 define U-Boot/fsl_ls1088a-rdb-sdboot
74 NAME:=NXP LS1088ARDB SD Card Boot
75 UBOOT_CONFIG:=ls1088ardb_tfa
76 endef
77
78 define U-Boot/fsl_ls2088a-rdb
79 NAME:=NXP LS2088ARDB
80 UBOOT_CONFIG:=ls2088ardb_tfa
81 endef
82
83 define U-Boot/fsl_ls1021a-twr
84 NAME:=NXP LS1021ATWR
85 BUILD_SUBTARGET:=armv7
86 UBOOT_CONFIG:=ls1021atwr_nor
87 ENV_SIZE:=0x20000
88 endef
89
90 define U-Boot/fsl_ls1021a-twr-sdboot
91 NAME:=NXP LS1021ATWR SD Card Boot
92 BUILD_SUBTARGET:=armv7
93 UBOOT_CONFIG:=ls1021atwr_sdcard_ifc
94 UBOOT_IMAGE:=u-boot-with-spl-pbl.bin
95 ENV_SIZE:=0x20000
96 endef
97
98 define U-Boot/fsl_ls1021a-iot-sdboot
99 NAME:=NXP LS1021AIOT SD Card Boot
100 BUILD_SUBTARGET:=armv7
101 UBOOT_CONFIG:=ls1021aiot_sdcard
102 UBOOT_IMAGE:=u-boot-with-spl-pbl.bin
103 ENV_SIZE:=0x2000
104 endef
105
106 UBOOT_TARGETS := \
107 fsl_ls1012a-frdm \
108 fsl_ls1012a-rdb \
109 fsl_ls1012a-frwy-sdboot \
110 fsl_ls1043a-rdb \
111 fsl_ls1043a-rdb-sdboot \
112 fsl_ls1046a-rdb \
113 fsl_ls1046a-rdb-sdboot \
114 fsl_ls1088a-rdb \
115 fsl_ls1088a-rdb-sdboot \
116 fsl_ls2088a-rdb \
117 fsl_ls1021a-twr \
118 fsl_ls1021a-twr-sdboot \
119 fsl_ls1021a-iot-sdboot
120
121 define Build/InstallDev
122 $(INSTALL_DIR) $(STAGING_DIR_IMAGE)
123 $(INSTALL_DATA) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) \
124 $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-uboot.bin
125 $(PKG_BUILD_DIR)/tools/mkenvimage -s $(ENV_SIZE) \
126 -o $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-uboot-env.bin \
127 files/$(BUILD_VARIANT)-uEnv.txt
128 endef
129
130 define Package/u-boot/install/default
131 endef
132
133 $(eval $(call BuildPackage/U-Boot))