layerscape: update memory layout according to LSDK
[openwrt/staging/wigyori.git] / target / linux / layerscape / image / 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 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 define Build/append-ls-rcw
11 rm -f $@
12 dd if=$(STAGING_DIR_IMAGE)/$(1)-rcw.bin >> $@
13 endef
14
15 define Build/append-ls-uboot
16 dd if=$(STAGING_DIR_IMAGE)/$(1)-$(SUBTARGET)-uboot.bin >> $@
17 endef
18
19 define Build/append-ls-fman
20 dd if=$(STAGING_DIR_IMAGE)/$(1)-fman.bin >> $@
21 endef
22
23 define Build/append-ls-dtb
24 $(call Image/BuildDTB,$(DTS_DIR)/$(1).dts,$(DTS_DIR)/$(1).dtb)
25 dd if=$(DTS_DIR)/$(1).dtb >> $@
26 endef
27
28 define Build/append-ls-rootfs-ext4
29 $(STAGING_DIR_HOST)/bin/make_ext4fs -l $(word 2,$(1)) -b 4096 -i 6000 -m 0 -J $(KDIR)/$(word 1,$(1))-$(word 2,$(1)).root.ext4 $(TARGET_DIR)
30 dd if=$(KDIR)/$(word 1,$(1))-$(word 2,$(1)).root.ext4 >> $@
31 endef
32
33 define Device/Default
34 PROFILES = Default
35 FILESYSTEMS := squashfs
36 KERNEL := kernel-bin | gzip | uImage gzip
37 DEVICE_DTS :=
38 IMAGES = firmware.bin
39
40 ifeq ($(SUBTARGET),armv8_64b)
41 KERNEL_LOADADDR = 0x80080000
42 KERNEL_ENTRY_POINT = 0x80080000
43 endif
44 ifeq ($(SUBTARGET),armv8_32b)
45 KERNEL_LOADADDR = 0x80008000
46 KERNEL_ENTRY_POINT = 0x80008000
47 endif
48 endef
49
50 define Device/ls1043ardb
51 DEVICE_TITLE := ls1043ardb-$(SUBTARGET)
52 DEVICE_PACKAGES += rcw-layerscape-ls1043ardb uboot-layerscape-$(SUBTARGET)-ls1043ardb fman-layerscape-ls1043ardb
53 DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1043a-rdb
54 IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | \
55 append-ls-uboot $(1) | pad-to 9M | \
56 append-ls-fman $(1) | pad-to 15M | \
57 append-ls-dtb $$(DEVICE_DTS) | pad-to 16M | \
58 append-kernel | pad-to 32M | \
59 append-rootfs | pad-rootfs | check-size 67108865
60 endef
61 TARGET_DEVICES += ls1043ardb
62
63 define Device/ls1046ardb
64 DEVICE_TITLE := ls1046ardb-$(SUBTARGET)
65 DEVICE_PACKAGES += rcw-layerscape-ls1046ardb uboot-layerscape-$(SUBTARGET)-ls1046ardb fman-layerscape-ls1046ardb
66 DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1046a-rdb
67 IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | \
68 append-ls-uboot $(1) | pad-to 9M | \
69 append-ls-fman $(1) | pad-to 15M | \
70 append-ls-dtb $$(DEVICE_DTS) | pad-to 16M | \
71 append-kernel | pad-to 32M | \
72 append-ls-rootfs-ext4 $(1) 22M | check-size 67108865
73 endef
74 TARGET_DEVICES += ls1046ardb
75
76 define Device/ls1012ardb
77 DEVICE_TITLE := ls1012ardb-$(SUBTARGET)
78 DEVICE_PACKAGES += rcw-layerscape-ls1012ardb uboot-layerscape-$(SUBTARGET)-ls1012ardb kmod-ppfe ppfe-ls1012ardb
79 DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1012a-rdb
80 IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | \
81 append-ls-uboot $(1) | pad-to 15M | \
82 append-ls-dtb $$(DEVICE_DTS) | pad-to 16M | \
83 append-kernel | pad-to 32M | \
84 append-ls-rootfs-ext4 $(1) 23M | check-size 67108865
85 endef
86 TARGET_DEVICES += ls1012ardb
87
88 define Device/ls1088ardb
89 DEVICE_TITLE := ls1088ardb-$(SUBTARGET)
90 DEVICE_PACKAGES += rcw-layerscape-ls1088ardb uboot-layerscape-$(SUBTARGET)-ls1088ardb mc-binary-ls1088ardb
91 DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1088a-rdb
92 IMAGE/firmware.bin = append-ls-dtb $$(DEVICE_DTS) | pad-to 1M | \
93 append-kernel | pad-to 17M | \
94 append-ls-rootfs-ext4 $(1) 17M | check-size 51380225
95 endef
96 TARGET_DEVICES += ls1088ardb
97
98 define Device/ls2088ardb
99 DEVICE_TITLE := ls2088ardb-$(SUBTARGET)
100 DEVICE_PACKAGES += rcw-layerscape-ls2088ardb uboot-layerscape-$(SUBTARGET)-ls2088ardb mc-binary-ls2088ardb
101 DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls2088a-rdb
102 IMAGE/firmware.bin = append-ls-dtb $$(DEVICE_DTS) | pad-to 1M | \
103 append-kernel | pad-to 17M | \
104 append-rootfs | pad-rootfs | check-size 51380225
105 endef
106 TARGET_DEVICES += ls2088ardb
107
108 $(eval $(call BuildImage))