bcm53xx: remove BROKEN flag from Asus RT-AC88U
[openwrt/openwrt.git] / target / linux / bcm53xx / image / Makefile
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # Copyright (C) 2013 OpenWrt.org
4
5 include $(TOPDIR)/rules.mk
6 include $(INCLUDE_DIR)/image.mk
7
8 define Image/Prepare
9 rm -f $(KDIR)/fs_mark
10 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/fs_mark
11 $(call prepare_generic_squashfs,$(KDIR)/fs_mark)
12
13 # For UBI we want only one extra block
14 rm -f $(KDIR)/ubi_mark
15 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/ubi_mark
16 endef
17
18 define Build/lzma-d16
19 $(STAGING_DIR_HOST)/bin/lzma e $@ -d16 $(1) $@.new
20 mv $@.new $@
21 endef
22
23 # Similar to Build/tplink-safeloader but uses TRX instead of clean kernel
24 define Build/bcm53xx-tplink-safeloader
25 $(STAGING_DIR_HOST)/bin/trx \
26 -o $@.trx \
27 -m 33554432 \
28 -f $(IMAGE_KERNEL) -a 1024
29 $(STAGING_DIR_HOST)/bin/tplink-safeloader \
30 -B $(TPLINK_BOARD) \
31 -k $@.trx \
32 -r $@ \
33 -j \
34 -o $@.new
35 mv $@.new $@
36 rm $@.trx
37 endef
38
39 define Build/buffalo-wzr-header
40 $(eval product=$(word 1,$(1)))
41 $(eval region=$(word 2,$(1)))
42 ( \
43 echo $(product)_$(BUFFALO_TAG_VERSION)_$(BUFFALO_TAG_MINOR)_$(region)_$(BUFFALO_TAG_PLATFORM); \
44 echo filelen=$$(stat -c%s $@); \
45 cat $@ \
46 ) > $@.new
47 mv $@.new $@
48 endef
49
50 # TRX with only one (kernel) partition
51 define Build/trx
52 $(STAGING_DIR_HOST)/bin/trx \
53 -o $@.new \
54 -m 33554432 \
55 -f $@
56 mv $@.new $@
57 endef
58
59 define Build/trx-serial
60 $(STAGING_DIR_HOST)/bin/otrx create $@.new \
61 -f $(IMAGE_KERNEL) -a 1024 \
62 -f $@ -a 0x10000 -A $(KDIR)/fs_mark
63 mv $@.new $@
64 endef
65
66 define Build/trx-nand
67 # kernel: always use 4 MiB (-28 B or TRX header) to allow upgrades even
68 # if it grows up between releases
69 # root: UBI with one extra block containing UBI mark to trigger erasing
70 # rest of partition
71 $(STAGING_DIR_HOST)/bin/otrx create $@.new \
72 -f $(IMAGE_KERNEL) -a 0x20000 -b 0x400000 \
73 -f $@ \
74 -A $(KDIR)/ubi_mark -a 0x20000
75 mv $@.new $@
76 endef
77
78 define Build/asus-trx
79 $(STAGING_DIR_HOST)/bin/asustrx \
80 -p $(ASUS_PRODUCTID) -i $@ -o $@.new
81 mv $@.new $@
82 endef
83
84 define Build/luxul-lxl
85 $(STAGING_DIR_HOST)/bin/lxlfw create $@.new \
86 -i $@ \
87 -b $(LUXUL_BOARD)
88 mv $@.new $@
89 endef
90
91 define Build/seama-nand
92 # Seama entity
93 $(STAGING_DIR_HOST)/bin/oseama \
94 entity $@.entity \
95 -m "dev=/dev/mtdblock/7" \
96 -m "type=firmware" \
97 -f $(IMAGE_KERNEL) \
98 -b 0x400000 \
99 -f $@ \
100 -f $(KDIR)/ubi_mark
101 # Seama container
102 $(STAGING_DIR_HOST)/bin/seama \
103 -s $@ \
104 -m "signature=$(SIGNATURE)" \
105 -i $@.entity
106 endef
107
108 DEVICE_VARS += ASUS_PRODUCTID
109 DEVICE_VARS += BUFFALO_TAG_PLATFORM BUFFALO_TAG_VERSION BUFFALO_TAG_MINOR
110 DEVICE_VARS += SIGNATURE
111 DEVICE_VARS += NETGEAR_BOARD_ID NETGEAR_REGION TPLINK_BOARD
112 DEVICE_VARS += LUXUL_BOARD
113
114 IEEE8021X := wpad-basic-wolfssl
115 B43 := $(IEEE8021X) kmod-b43
116 BRCMFMAC_43602A1 := $(IEEE8021X) kmod-brcmfmac brcmfmac-firmware-43602a1-pcie
117 BRCMFMAC_4366B1 := $(IEEE8021X) kmod-brcmfmac brcmfmac-firmware-4366b1-pcie
118 BRCMFMAC_4366C0 := $(IEEE8021X) kmod-brcmfmac brcmfmac-firmware-4366c0-pcie
119 USB2_PACKAGES := kmod-usb-ohci kmod-usb2 kmod-phy-bcm-ns-usb2
120 USB2_PACKAGES += kmod-usb-ledtrig-usbport
121 USB3_PACKAGES := $(USB2_PACKAGES) kmod-usb3 kmod-phy-bcm-ns-usb3
122
123 define Device/Default
124 # .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names
125 # extract the full dtb name based on the device info
126 DEVICE_DTS := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(subst _,-,$(1)).dtb)))
127 KERNEL := kernel-bin | append-dtb | lzma-d16
128 KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
129 KERNEL_INITRAMFS_SUFFIX := .trx
130 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma-d16 | trx
131 FILESYSTEMS := squashfs
132 KERNEL_NAME := zImage
133 DEVICE_IMG_NAME = $$(DEVICE_IMG_PREFIX)-$$(1).$$(2)
134 IMAGES := trx
135 BLOCKSIZE := 128k
136 PAGESIZE := 2048
137 IMAGE/trx := append-ubi | trx-nand
138 endef
139
140 define Device/asus
141 DEVICE_VENDOR := ASUS
142 IMAGES := trx
143 IMAGE/trx := append-ubi | trx-nand | asus-trx
144 endef
145
146 define Device/asus_rt-ac56u
147 $(call Device/asus)
148 DEVICE_MODEL := RT-AC56U
149 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
150 ASUS_PRODUCTID := RT-AC56U
151 endef
152 TARGET_DEVICES += asus_rt-ac56u
153
154 define Device/asus_rt-ac68u
155 $(call Device/asus)
156 DEVICE_MODEL := RT-AC68U
157 DEVICE_PACKAGES := $(USB3_PACKAGES)
158 ASUS_PRODUCTID := RT-AC68U
159 endef
160 TARGET_DEVICES += asus_rt-ac68u
161
162 define Device/asus_rt-ac87u
163 $(call Device/asus)
164 DEVICE_MODEL := RT-AC87U
165 DEVICE_PACKAGES := $(USB3_PACKAGES)
166 ASUS_PRODUCTID := RT-AC87U
167 endef
168 TARGET_DEVICES += asus_rt-ac87u
169
170 define Device/asus_rt-ac88u
171 $(call Device/asus)
172 DEVICE_MODEL := RT-AC88U
173 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
174 ASUS_PRODUCTID := RT-AC88U
175 endef
176 TARGET_DEVICES += asus_rt-ac88u
177
178 define Device/asus_rt-n18u
179 $(call Device/asus)
180 DEVICE_MODEL := RT-N18U
181 DEVICE_PACKAGES := $(USB3_PACKAGES)
182 ASUS_PRODUCTID := RT-N18U
183 endef
184 TARGET_DEVICES += asus_rt-n18u
185
186 # Buffalo devices have TFTP recovery mode which can work nicely with initramfs
187 # kernels.
188 # We should have two initramfs images for Buffalo: plain initramfs kernel and
189 # TRX with initramfs kernel. It's not possible right now so let's just build
190 # plain initramfs kernel as it may be more useful.
191 define Device/buffalo/Default
192 DEVICE_VENDOR := Buffalo
193 KERNEL_INITRAMFS_SUFFIX = $$(KERNEL_SUFFIX)
194 KERNEL_INITRAMFS = $$(KERNEL)
195 endef
196
197 define Device/buffalo_wxr-1900dhp
198 $(call Device/buffalo/Default)
199 DEVICE_MODEL := WXR-1900DHP
200 DEVICE_PACKAGES := $(USB3_PACKAGES)
201 endef
202 TARGET_DEVICES += buffalo_wxr-1900dhp
203
204 define Device/buffalo_wzr-600dhp2
205 $(call Device/buffalo/Default)
206 DEVICE_MODEL := WZR-600DHP2
207 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
208 endef
209 TARGET_DEVICES += buffalo_wzr-600dhp2
210
211 define Device/buffalo_wzr-900dhp
212 $(call Device/buffalo/Default)
213 DEVICE_MODEL := WZR-900DHP
214 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
215 BUFFALO_TAG_PLATFORM := bcm
216 BUFFALO_TAG_VERSION := 9.99
217 BUFFALO_TAG_MINOR := 9.99
218 IMAGES += factory-DHP-EU.bin factory-DHP2-JP.bin
219 IMAGE/factory-DHP-EU.bin := \
220 append-ubi | trx-nand | buffalo-wzr-header WZR-900DHP EU | \
221 buffalo-enc WZR-900DHP $$(BUFFALO_TAG_VERSION) | \
222 buffalo-tag-dhp WZR-900DHP EU mlang20 | buffalo-enc-tag | \
223 buffalo-dhp-image
224 IMAGE/factory-DHP2-JP.bin := \
225 append-ubi | trx-nand | buffalo-wzr-header WZR-900DHP2 JP | \
226 buffalo-enc WZR-900DHP2 $$(BUFFALO_TAG_VERSION) | \
227 buffalo-tag-dhp WZR-900DHP2 JP jp | buffalo-enc-tag | \
228 buffalo-dhp-image
229 BROKEN := y
230 endef
231 TARGET_DEVICES += buffalo_wzr-900dhp
232
233 define Device/buffalo_wzr-1750dhp
234 $(call Device/buffalo/Default)
235 DEVICE_MODEL := WZR-1750DHP
236 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
237 endef
238 TARGET_DEVICES += buffalo_wzr-1750dhp
239
240 define Device/dlink
241 DEVICE_VENDOR := D-Link
242 IMAGES := bin
243 IMAGE/bin := append-ubi | seama-nand
244 endef
245
246 define Device/dlink_dir-885l
247 DEVICE_MODEL := DIR-885L
248 DEVICE_PACKAGES := $(BRCMFMAC_4366B1) $(USB3_PACKAGES)
249 $(Device/dlink)
250 SIGNATURE := wrgac42_dlink.2015_dir885l
251 endef
252 TARGET_DEVICES += dlink_dir-885l
253
254 define Device/linksys_ea6300-v1
255 DEVICE_VENDOR := Linksys
256 DEVICE_MODEL := EA6300
257 DEVICE_VARIANT := v1
258 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
259 endef
260 TARGET_DEVICES += linksys_ea6300-v1
261
262 define Device/linksys_ea6500-v2
263 DEVICE_VENDOR := Linksys
264 DEVICE_MODEL := EA6500
265 DEVICE_VARIANT := v2
266 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
267 endef
268 TARGET_DEVICES += linksys_ea6500-v2
269
270 define Device/linksys_ea9200
271 DEVICE_VENDOR := Linksys
272 DEVICE_MODEL := EA9200
273 DEVICE_VARIANT := v1
274 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
275 endef
276 TARGET_DEVICES += linksys_ea9200
277
278 define Device/linksys_ea9500
279 DEVICE_VENDOR := Linksys
280 DEVICE_MODEL := EA9500
281 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
282 DEVICE_DTS := bcm47094-linksys-panamera
283 endef
284 TARGET_DEVICES += linksys_ea9500
285
286 define Device/luxul
287 DEVICE_VENDOR := Luxul
288 IMAGES := lxl
289 IMAGE/lxl := append-ubi | trx-nand | luxul-lxl
290 endef
291
292 define Device/luxul_abr-4500
293 $(Device/luxul)
294 DEVICE_MODEL := ABR-4500
295 DEVICE_PACKAGES := $(USB3_PACKAGES)
296 LUXUL_BOARD := ABR-4500
297 endef
298 TARGET_DEVICES += luxul_abr-4500
299
300 define Device/luxul_xap-1610
301 $(Device/luxul)
302 DEVICE_MODEL := XAP-1610
303 DEVICE_PACKAGES := $(BRCMFMAC_4366C0)
304 IMAGE/lxl := append-rootfs | trx-serial | luxul-lxl
305 LUXUL_BOARD := XAP-1610
306 endef
307 TARGET_DEVICES += luxul_xap-1610
308
309 define Device/luxul_xbr-4500
310 $(Device/luxul)
311 DEVICE_MODEL := XBR-4500
312 DEVICE_PACKAGES := $(USB3_PACKAGES)
313 LUXUL_BOARD := XBR-4500
314 endef
315 TARGET_DEVICES += luxul_xbr-4500
316
317 define Device/luxul_xwr-3150
318 $(Device/luxul)
319 DEVICE_MODEL := XWR-3150
320 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
321 DEVICE_DTS := bcm47094-luxul-xwr-3150-v1
322 LUXUL_BOARD := XWR-3150
323 endef
324 TARGET_DEVICES += luxul_xwr-3150
325
326 define Device/meraki_mr32
327 DEVICE_VENDOR := Meraki
328 DEVICE_MODEL := MR32
329 DEVICE_PACKAGES := $(B43) kmod-i2c-bcm-iproc kmod-eeprom-at24 \
330 kmod-leds-pwm kmod-hwmon-ina2xx kmod-bluetooth
331 DEVICE_DTS := bcm53016-meraki-mr32
332 # Meraki FW r23 tries to resize the part.safe partition before it will
333 # flash the image. This is a bit of a problem, since resizing will fail
334 # if the partition is smaller than the old one.
335 KERNEL_LOADADDR := 0x00008000
336 KERNEL_INITRAMFS_SUFFIX := .bin
337 DEVICE_DTS_DELIMITER := @
338 DEVICE_DTS_CONFIG := config@1
339 KERNEL_INITRAMFS := kernel-bin | fit none $$(DTS_DIR)/$$(DEVICE_DTS).dtb | \
340 pad-to 10362880
341 KERNEL := kernel-bin | fit none $$(DTS_DIR)/$$(DEVICE_DTS).dtb
342 IMAGES += sysupgrade.bin
343 # Currently the only device that uses the new image check
344 IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
345
346 # The loader is specifically looking for fdt@2:
347 # [ 3.190000] find_itb_subimage: error finding fdt@2: FDT_ERR_NOTFOUND
348 # The image won't boot, if it isn't found. :(
349 DEVICE_FDT_NUM := 2
350 endef
351 TARGET_DEVICES += meraki_mr32
352
353 define Device/netgear
354 DEVICE_VENDOR := NETGEAR
355 IMAGES := chk
356 IMAGE/chk := append-ubi | trx-nand | netgear-chk
357 NETGEAR_REGION := 1
358 endef
359
360 define Device/netgear_r6250
361 DEVICE_MODEL := R6250
362 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
363 $(Device/netgear)
364 NETGEAR_BOARD_ID := U12H245T00_NETGEAR
365 endef
366 TARGET_DEVICES += netgear_r6250
367
368 define Device/netgear_r6300-v2
369 DEVICE_MODEL := R6300
370 DEVICE_VARIANT := v2
371 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
372 $(Device/netgear)
373 NETGEAR_BOARD_ID := U12H240T00_NETGEAR
374 endef
375 TARGET_DEVICES += netgear_r6300-v2
376
377 define Device/netgear_r7000
378 DEVICE_MODEL := R7000
379 DEVICE_PACKAGES := $(USB3_PACKAGES)
380 $(Device/netgear)
381 NETGEAR_BOARD_ID := U12H270T00_NETGEAR
382 endef
383 TARGET_DEVICES += netgear_r7000
384
385 define Device/netgear_r7900
386 DEVICE_MODEL := R7900
387 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
388 $(Device/netgear)
389 NETGEAR_BOARD_ID := U12H315T30_NETGEAR
390 endef
391 TARGET_DEVICES += netgear_r7900
392
393 define Device/netgear_r8000
394 DEVICE_MODEL := R8000
395 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
396 $(Device/netgear)
397 NETGEAR_BOARD_ID := U12H315T00_NETGEAR
398 endef
399 TARGET_DEVICES += netgear_r8000
400
401 define Device/netgear_r8500
402 DEVICE_MODEL := R8500
403 DEVICE_PACKAGES := $(BRCMFMAC_4366B1) $(USB3_PACKAGES)
404 $(Device/netgear)
405 NETGEAR_BOARD_ID := U12H334T00_NETGEAR
406 DEFAULT := n
407 endef
408 TARGET_DEVICES += netgear_r8500
409
410 define Device/smartrg_sr400ac
411 DEVICE_VENDOR := SmartRG
412 DEVICE_MODEL := SR400ac
413 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
414 IMAGES := trx
415 IMAGE/trx := append-rootfs | trx-serial
416 KERNEL_INITRAMFS_SUFFIX := .bin
417 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma-d16
418 endef
419 TARGET_DEVICES += smartrg_sr400ac
420
421 define Device/phicomm_k3
422 DEVICE_VENDOR := PHICOMM
423 DEVICE_MODEL := K3
424 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
425 IMAGES := trx
426 endef
427 TARGET_DEVICES += phicomm_k3
428
429 define Device/tenda_ac9
430 DEVICE_VENDOR := Tenda
431 DEVICE_MODEL := AC9
432 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
433 IMAGES := trx
434 IMAGE/trx := append-rootfs | trx-serial
435 endef
436 TARGET_DEVICES += tenda_ac9
437
438 define Device/tplink_archer-c5-v2
439 DEVICE_VENDOR := TP-Link
440 DEVICE_MODEL := Archer C5
441 DEVICE_VARIANT := v2
442 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
443 IMAGES := bin
444 IMAGE/bin := append-rootfs | bcm53xx-tplink-safeloader
445 TPLINK_BOARD := ARCHER-C5-V2
446 BROKEN := y
447 endef
448 #TARGET_DEVICES += tplink_archer-c5-v2
449
450 define Device/tplink_archer-c9-v1
451 DEVICE_VENDOR := TP-Link
452 DEVICE_MODEL := Archer C9
453 DEVICE_VARIANT := v1
454 DEVICE_PACKAGES := $(USB3_PACKAGES)
455 IMAGES := bin
456 IMAGE/bin := append-rootfs | bcm53xx-tplink-safeloader
457 TPLINK_BOARD := ARCHERC9
458 BROKEN := y
459 endef
460 #TARGET_DEVICES += tplink_archer-c9-v1
461
462 $(eval $(call BuildImage))