mvebu: add support for the Linksys Caiman and Cobra
[openwrt/openwrt.git] / target / linux / mvebu / image / Makefile
1 #
2 # Copyright (C) 2012-2015 OpenWrt.org
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 LOADADDR:=0x00008000
11
12 JFFS2_BLOCKSIZE = 128k
13
14 KDIR_TMP:=$(KDIR)/tmp
15
16
17 define Image/Build/DTB
18 cp $(KDIR)/zImage$(2) $(KDIR)/zImage$(2)-$(1);
19 cat $(DTS_DIR)/$(1).dtb >> $(KDIR)/zImage$(2)-$(1);
20 $(call Image/BuildKernel/MkuImage, \
21 none, $(LOADADDR), $(LOADADDR), \
22 $(KDIR)/zImage$(2)-$(1), $(KDIR)/uImage$(2)-$(1))
23 endef
24
25 # $(1): Profile Name
26 # $(2): DTB Name
27 # $(3): Erase Block Size
28 # $(4): Page Size
29 # $(5): Sub-Page Size (optional)
30 # $(6): VID offset (optional)
31 define NANDProfile
32 define Image/BuildKernel/Profile/$(1)
33 $(call Image/Build/DTB,$(2))
34 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
35 $(call Image/Build/Profile,$(1)/Initramfs)
36 endif
37 endef
38
39 define Image/Build/Profile/$(1)/BuildSysupgrade
40 $(call Image/Build/SysupgradeNAND,$(2),$$(1),$(KDIR)/uImage-$(2))
41 endef
42
43 define Image/Build/Profile/$(1)/Initramfs
44 $(call Image/Build/DTB,$(2),-initramfs)
45 cp $(KDIR)/uImage-initramfs-$(2) $(BIN_DIR)/$(IMG_PREFIX)-$(2)-initramfs
46 endef
47
48 define Image/Build/Profile/$(1)/squashfs
49 $(call Image/Build/UbinizeImage,$(2),,squashfs, -p $(3) -m $(4) $(if $(5),-s $(5)) $(if $(6),-O $(6)))
50 endef
51
52 PROFILES_LIST += $(1)
53 endef
54
55 # $(1): Profile Name
56 # $(2): DTB Name
57 # $(3): Erase Block Size
58 define UBINORProfile
59 define Image/BuildKernel/Profile/$(1)
60 $(call Image/Build/DTB,$(2))
61 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
62 $(call Image/Build/Profile,$(1)/Initramfs)
63 endif
64 endef
65
66 define Image/Build/Profile/$(1)/Initramfs
67 $(call Image/Build/DTB,$(2),-initramfs)
68 endef
69
70 define Image/Build/Profile/$(1)/squashfs
71 $(call Image/Build/UbinizeImage,$(2),,squashfs, -p $(3) -m 1)
72 endef
73
74 PROFILES_LIST += $(1)
75 endef
76
77 # $(1): Profile Name
78 # $(2): DTB Name
79 # $(3): Erase Block Size
80 define NORProfile
81 define Image/BuildKernel/Profile/$(1)
82 $(call Image/Build/DTB,$(2))
83 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
84 $(call Image/Build/Profile,$(1)/Initramfs)
85 endif
86 endef
87
88 define Image/Build/Profile/$(1)/Initramfs
89 $(call Image/Build/DTB,$(2),-initramfs)
90 endef
91
92 define Image/Build/Profile/$(1)/squashfs
93 ( \
94 dd if=$(KDIR)/uImage-$(2) bs=$(3) conv=sync; \
95 dd if=$(KDIR)/root.squashfs bs=$(3) conv=sync; \
96 ) > $$(BIN_DIR)/$$(IMG_PREFIX)-$(2)-squashfs-firmware.bin
97 endef
98
99 PROFILES_LIST += $(1)
100 endef
101
102 # $(1): Profile Name
103 # $(2): Sub Profiles list
104 define MultiProfile
105 define Image/BuildKernel/Profile/$(1)
106 $(foreach profile, $(2),
107 $(call Image/BuildKernel/Profile/$(profile)))
108 endef
109
110 define Image/Build/Profile/$(1)/BuildSysupgrade
111 $(foreach profile, $(2),
112 $(call Image/Build/Profile/$(profile)/BuildSysupgrade,$$(1)))
113 endef
114
115 define Image/Build/Profile/$(1)/Initramfs
116 $(foreach profile, $(2),
117 $(call Image/Build/Profile/$(profile)/Initramfs))
118 endef
119
120 define Image/Build/Profile/$(1)/squashfs
121 $(foreach profile, $(2),
122 $(call Image/Build/Profile/$(profile)/squashfs))
123 endef
124 endef
125
126 # Boards with NAND, without subpages
127 $(eval $(call NANDProfile,370-DB,armada-370-db,512KiB,4096))
128 $(eval $(call NANDProfile,370-RD,armada-370-rd,512KiB,4096))
129 $(eval $(call NANDProfile,385-DB-AP,armada-385-db-ap,256KiB,4096))
130 $(eval $(call NANDProfile,Mirabox,armada-370-mirabox,512KiB,4096))
131 $(eval $(call NANDProfile,XP-DB,armada-xp-db,512KiB,4096))
132 $(eval $(call NANDProfile,XP-GP,armada-xp-gp,512KiB,4096))
133
134 # Boards with NAND, with subpages
135 $(eval $(call NANDProfile,Mamba,armada-xp-linksys-mamba,128KiB,2048,512,2048))
136 $(eval $(call NANDProfile,Caiman,armada-385-linksys-caiman,128KiB,2048,512,2048))
137 $(eval $(call NANDProfile,Cobra,armada-385-linksys-cobra,128KiB,2048,512,2048))
138
139 # Boards with large NOR, where we want to use UBI
140 $(eval $(call UBINORProfile,OpenBlocks-AX-3-4,armada-xp-openblocks-ax3-4,128KiB))
141
142 # Boards with small NOR, where UBI doesn't make sense
143 $(eval $(call NORProfile,385-RD,armada-385-rd,256KiB))
144
145 ###
146 ### Linksys
147 ###
148
149 # Caiman: Linksys WRT1200AC
150 define Image/Build/Profile/Caiman/squashfs
151 $(call Image/Build/UbinizeImage,armada-385-linksys-caiman,,squashfs, -p 128KiB -m 2048 -s 512 -O 2048)
152 ( \
153 dd if=$(KDIR)/uImage-armada-385-linksys-caiman bs=6M conv=sync; \
154 dd if=$(KDIR)/$(IMG_PREFIX)-armada-385-linksys-caiman-squashfs-ubinized.bin \
155 bs=2048 conv=sync; \
156 ) > $(BIN_DIR)/$(IMG_PREFIX)-armada-385-linksys-caiman-squashfs-factory.img
157 endef
158
159 # Cobra: Linksys WRT1900ACv2
160 define Image/Build/Profile/Cobra/squashfs
161 $(call Image/Build/UbinizeImage,armada-385-linksys-cobra,,squashfs, -p 128KiB -m 2048 -s 512 -O 2048)
162 ( \
163 dd if=$(KDIR)/uImage-armada-385-linksys-cobra bs=6M conv=sync; \
164 dd if=$(KDIR)/$(IMG_PREFIX)-armada-385-linksys-cobra-squashfs-ubinized.bin \
165 bs=2048 conv=sync; \
166 ) > $(BIN_DIR)/$(IMG_PREFIX)-armada-385-linksys-cobra-squashfs-factory.img
167 endef
168
169 # Mamba: Linksys WRT1900AC
170 define Image/Build/Profile/Mamba/squashfs
171 $(call Image/Build/UbinizeImage,armada-xp-linksys-mamba,,squashfs, -p 128KiB -m 2048 -s 512 -O 2048)
172 ( \
173 dd if=$(KDIR)/uImage-armada-xp-linksys-mamba bs=3072k conv=sync; \
174 dd if=$(KDIR)/$(IMG_PREFIX)-armada-xp-linksys-mamba-squashfs-ubinized.bin \
175 bs=2048 conv=sync; \
176 ) > $(BIN_DIR)/$(IMG_PREFIX)-armada-xp-linksys-mamba-squashfs-factory.img
177 endef
178
179 ###
180 ### Marvell
181 ###
182
183 # Marvell Armada 385 Access Point Development board (DB-88F6820-AP)
184 define Image/Build/Profile/385-DB-AP/squashfs
185 $(call Image/Build/UbinizeImage,armada-385-db-ap,,squashfs, -p 256KiB -m 4096)
186 ( \
187 dd if=$(KDIR)/uImage-armada-385-db-ap bs=8M conv=sync; \
188 dd if=$(KDIR)/$(IMG_PREFIX)-armada-385-db-ap-squashfs-ubinized.bin \
189 bs=4096 conv=sync; \
190 ) > $(BIN_DIR)/$(IMG_PREFIX)-armada-385-db-ap-squashfs-factory.img
191 endef
192
193
194 # The Default profile should build everything
195 $(eval $(call MultiProfile,Default,$(PROFILES_LIST)))
196
197 define Image/BuildKernel
198 $(call Image/BuildKernel/Profile/$(PROFILE))
199 endef
200
201 define Image/Build/squashfs
202 # Align the squashfs image size before calling the profiles,
203 # otherwise the size would keep growing
204 $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
205 $(call Image/Build/Profile/$(PROFILE)/squashfs)
206 endef
207
208 define Image/Build
209 $(call Image/Build/$(1))
210 $(call Image/Build/Profile/$(PROFILE)/BuildSysupgrade,$(1))
211 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
212 $(call Image/Build/Profile/$(PROFILE)/Initramfs)
213 endif
214 endef
215
216 $(eval $(call BuildImage))