ar71xx: add model detection for UniFi AC-LR
[openwrt/openwrt.git] / target / linux / ar71xx / image / generic-ubnt.mk
1 DEVICE_VARS += UBNT_BOARD UBNT_CHIP UBNT_TYPE UBNT_VERSION UBNT_REVISION
2
3 # On M (XW) devices the U-Boot as of version 1.1.4-s1039 doesn't like
4 # VERSION_DIST being on the place of major(?) version number, so we need to
5 # use some number.
6 UBNT_REVISION := $(VERSION_DIST)-$(REVISION)
7
8 # mkubntimage is using the kernel image direct
9 # routerboard creates partitions out of the ubnt header
10 define Build/mkubntimage
11 -$(STAGING_DIR_HOST)/bin/mkfwimage \
12 -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-$(VERSION_DIST)-$(REVISION) \
13 -k $(IMAGE_KERNEL) \
14 -r $@ \
15 -o $@
16 endef
17
18 # all UBNT XM device expect the kernel image to have 1024k while flash, when
19 # booting the image, the size doesn't matter.
20 define Build/mkubntimage-split
21 -[ -f $@ ] && ( \
22 dd if=$@ of=$@.old1 bs=1024k count=1; \
23 dd if=$@ of=$@.old2 bs=1024k skip=1; \
24 $(STAGING_DIR_HOST)/bin/mkfwimage \
25 -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v$(UBNT_VERSION)-$(UBNT_REVISION) \
26 -k $@.old1 \
27 -r $@.old2 \
28 -o $@; \
29 rm $@.old1 $@.old2 )
30 endef
31
32 define Build/mkubntimage2
33 -$(STAGING_DIR_HOST)/bin/mkfwimage2 -f 0x9f000000 \
34 -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-$(VERSION_DIST)-$(REVISION) \
35 -p jffs2:0x50000:0xf60000:0:0:$@ \
36 -o $@.new
37 @mv $@.new $@
38 endef
39
40
41 # UBNT_BOARD e.g. one of (XS2, XS5, RS, XM)
42 # UBNT_TYPE e.g. one of (BZ, XM, XW)
43 # UBNT_CHIP e.g. one of (ar7240, ar933x, ar934x)
44 # UBNT_VERSION e.g. one of (6.0.0, 8.5.0)
45 define Device/ubnt
46 DEVICE_PACKAGES := kmod-usb2
47 DEVICE_PROFILE := UBNT
48 IMAGE_SIZE := 7552k
49 MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,7552k(firmware),256k(cfg)ro,64k(EEPROM)ro
50 UBNT_BOARD := XM
51 UBNT_VERSION := 6.0.0
52 IMAGES := sysupgrade.bin factory.bin
53 IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
54 IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | mkubntimage-split
55 endef
56
57 define Device/ubnt-xm
58 $(Device/ubnt)
59 DEVICE_PACKAGES += kmod-usb-ohci rssileds
60 UBNT_TYPE := XM
61 UBNT_CHIP := ar7240
62 KERNEL := kernel-bin | patch-cmdline | relocate-kernel | lzma | uImage lzma
63 endef
64
65 define Device/ubnt-xw
66 $(Device/ubnt)
67 DEVICE_PACKAGES += rssileds
68 UBNT_TYPE := XW
69 UBNT_CHIP := ar934x
70 UBNT_VERSION := 6.0.4
71 UBNT_REVISION := 42.$(UBNT_REVISION)
72 endef
73
74 define Device/ubnt-bz
75 $(Device/ubnt)
76 UBNT_TYPE := BZ
77 UBNT_CHIP := ar7240
78 endef
79
80 define Device/rw2458n
81 $(Device/ubnt-xm)
82 DEVICE_TITLE := Ubiquiti RW2458N
83 BOARDNAME := RW2458N
84 endef
85 TARGET_DEVICES += rw2458n
86
87 define Device/ubnt-airrouter
88 $(Device/ubnt-xm)
89 DEVICE_TITLE := Ubiquiti AirRouter
90 BOARDNAME := UBNT-AR
91 endef
92 TARGET_DEVICES += ubnt-airrouter
93
94 define Device/ubnt-bullet-m
95 $(Device/ubnt-xm)
96 DEVICE_TITLE := Ubiquiti Bullet-M
97 BOARDNAME := UBNT-BM
98 endef
99 TARGET_DEVICES += ubnt-bullet-m
100
101 define Device/ubnt-rocket-m
102 $(Device/ubnt-xm)
103 DEVICE_TITLE := Ubiquiti Rocket-M
104 BOARDNAME := UBNT-RM
105 endef
106 TARGET_DEVICES += ubnt-rocket-m
107
108 define Device/ubnt-nano-m
109 $(Device/ubnt-xm)
110 DEVICE_TITLE := Ubiquiti Nano-M
111 BOARDNAME := UBNT-NM
112 endef
113 TARGET_DEVICES += ubnt-nano-m
114
115 define Device/ubnt-unifi
116 $(Device/ubnt-bz)
117 DEVICE_TITLE := Ubiquiti UniFi
118 BOARDNAME := UBNT-UF
119 DEVICE_PROFILE += UBNTUNIFI
120 endef
121 TARGET_DEVICES += ubnt-unifi
122
123 define Device/ubnt-unifiac
124 DEVICE_PACKAGES := kmod-usb2
125 DEVICE_PROFILE := UBNT
126 IMAGE_SIZE := 7744k
127 MTDPARTS := spi0.0:384k(u-boot)ro,64k(u-boot-env)ro,7744k(firmware),7744k(ubnt-airos)ro,128k(bs),256k(cfg)ro,64k(EEPROM)ro
128 IMAGES := sysupgrade.bin
129 IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
130 endef
131
132 define Device/ubnt-unifiac-lite
133 $(Device/ubnt-unifiac)
134 DEVICE_TITLE := Ubiquiti UniFi AC-Lite
135 DEVICE_PACKAGES := kmod-ath10k-ct ath10k-firmware-qca988x-ct
136 DEVICE_PROFILE += UBNTUNIFIACLITE
137 BOARDNAME := UBNT-UF-AC-LITE
138 endef
139 TARGET_DEVICES += ubnt-unifiac-lite
140
141 define Device/ubnt-unifiac-lr
142 $(Device/ubnt-unifiac-lite)
143 DEVICE_TITLE := Ubiquiti UniFi AC-LR
144 endef
145 TARGET_DEVICES += ubnt-unifiac-lr
146
147 define Device/ubnt-unifiac-mesh
148 $(Device/ubnt-unifiac-lite)
149 DEVICE_TITLE := Ubiquiti UniFi AC-Mesh
150 endef
151 TARGET_DEVICES += ubnt-unifiac-mesh
152
153 define Device/ubnt-unifiac-pro
154 $(Device/ubnt-unifiac)
155 DEVICE_TITLE := Ubiquiti UniFi AC-Pro
156 DEVICE_PACKAGES += kmod-ath10k-ct ath10k-firmware-qca988x-ct
157 DEVICE_PROFILE += UBNTUNIFIACPRO
158 BOARDNAME := UBNT-UF-AC-PRO
159 endef
160 TARGET_DEVICES += ubnt-unifiac-pro
161
162 define Device/ubnt-unifiac-mesh-pro
163 $(Device/ubnt-unifiac-pro)
164 DEVICE_TITLE := Ubiquiti UniFi AC-Mesh-Pro
165 endef
166 TARGET_DEVICES += ubnt-unifiac-mesh-pro
167
168 define Device/ubnt-unifi-outdoor
169 $(Device/ubnt-bz)
170 DEVICE_TITLE := Ubiquiti UniFi Outdoor
171 BOARDNAME := UBNT-U20
172 DEVICE_PROFILE += UBNTUNIFIOUTDOOR
173 endef
174 TARGET_DEVICES += ubnt-unifi-outdoor
175
176 define Device/ubnt-nano-m-xw
177 $(Device/ubnt-xw)
178 DEVICE_TITLE := Ubiquiti Nano M XW
179 BOARDNAME := UBNT-NM-XW
180 endef
181 TARGET_DEVICES += ubnt-nano-m-xw
182
183 define Device/ubnt-lbe-m5
184 $(Device/ubnt-xw)
185 DEVICE_TITLE := Ubiquiti Litebeam M5
186 BOARDNAME := UBNT-LBE-M5
187 endef
188 TARGET_DEVICES += ubnt-lbe-m5
189
190 define Device/ubnt-loco-m-xw
191 $(Device/ubnt-xw)
192 DEVICE_TITLE := Ubiquiti Loco XW
193 BOARDNAME := UBNT-LOCO-XW
194 endef
195 TARGET_DEVICES += ubnt-loco-m-xw
196
197 define Device/ubnt-bullet-m-xw
198 $(Device/ubnt-xw)
199 DEVICE_TITLE := Ubiquiti Bullet-M XW
200 BOARDNAME := UBNT-BM-XW
201 endef
202 TARGET_DEVICES += ubnt-bullet-m-xw
203
204 define Device/ubnt-rocket-m-xw
205 $(Device/ubnt-xw)
206 DEVICE_TITLE := Ubiquiti Rocket M XW
207 BOARDNAME := UBNT-RM-XW
208 endef
209 TARGET_DEVICES += ubnt-rocket-m-xw
210
211 define Device/ubnt-rocket-m-ti
212 $(Device/ubnt-xw)
213 DEVICE_TITLE := Ubiquiti Rocket M TI
214 BOARDNAME := UBNT-RM-TI
215 UBNT_TYPE := TI
216 endef
217 TARGET_DEVICES += ubnt-rocket-m-ti
218
219 define Device/ubnt-air-gateway
220 $(Device/ubnt-xm)
221 DEVICE_TITLE := Ubiquiti Air Gateway
222 BOARDNAME := UBNT-AGW
223 UBNT_TYPE := AirGW
224 UBNT_CHIP := ar933x
225 CONSOLE := ttyATH0,115200
226 endef
227 TARGET_DEVICES += ubnt-air-gateway
228
229 define Device/ubnt-air-gateway-pro
230 $(Device/ubnt-xm)
231 DEVICE_TITLE := Ubiquiti Air Gateway Pro
232 BOARDNAME := UBNT-AGWP
233 UBNT_TYPE := AirGWP
234 UBNT_CHIP := ar934x
235 endef
236 TARGET_DEVICES += ubnt-air-gateway-pro
237
238 define Device/ubdev01
239 $(Device/ubnt-xm)
240 DEVICE_TITLE := Ubiquiti ubDEV01
241 MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,7488k(firmware),64k(certs),256k(cfg)ro,64k(EEPROM)ro
242 BOARDNAME := UBNT-UF
243 UBNT_BOARD := UBDEV01
244 endef
245 TARGET_DEVICES += ubdev01
246
247 define Device/ubnt-routerstation
248 DEVICE_PACKAGES := kmod-usb-ohci kmod-usb2
249 DEVICE_PROFILE := UBNT
250 IMAGE_SIZE := 16128k
251 IMAGES := sysupgrade.bin factory.bin
252 IMAGE/factory.bin := append-rootfs | pad-rootfs | mkubntimage
253 IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | combined-image | check-size $$$$(IMAGE_SIZE)
254 KERNEL := kernel-bin | patch-cmdline | lzma | pad-to $$(BLOCKSIZE)
255 endef
256
257 define Device/ubnt-rs
258 $(Device/ubnt-routerstation)
259 DEVICE_TITLE := Ubiquiti RouterStation
260 BOARDNAME := UBNT-RS
261 DEVICE_PROFILE += UBNTRS
262 UBNT_BOARD := RS
263 UBNT_TYPE := RSx
264 UBNT_CHIP := ar7100
265 endef
266 TARGET_DEVICES += ubnt-rs
267
268 define Device/ubnt-rspro
269 $(Device/ubnt-routerstation)
270 DEVICE_TITLE := Ubiquiti RouterStation Pro
271 BOARDNAME := UBNT-RSPRO
272 DEVICE_PROFILE += UBNTRSPRO
273 UBNT_BOARD := RSPRO
274 UBNT_TYPE := RSPRO
275 UBNT_CHIP := ar7100pro
276 endef
277 TARGET_DEVICES += ubnt-rspro
278
279 define Device/ubnt-ls-sr71
280 $(Device/ubnt-routerstation)
281 DEVICE_TITLE := Ubiquiti LS-SR71
282 BOARDNAME := UBNT-LS-SR71
283 UBNT_BOARD := LS-SR71
284 UBNT_TYPE := LS-SR71
285 UBNT_CHIP := ar7100
286 endef
287 TARGET_DEVICES += ubnt-ls-sr71
288
289 define Device/ubnt-uap-pro
290 DEVICE_TITLE := Ubiquiti UAP Pro
291 KERNEL_SIZE := 2048k
292 IMAGE_SIZE := 15744k
293 MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,2048k(kernel),13696k(rootfs),256k(cfg)ro,64k(EEPROM)ro,15744k@0x50000(firmware)
294 UBNT_TYPE := BZ
295 UBNT_CHIP := ar934x
296 BOARDNAME := UAP-PRO
297 DEVICE_PROFILE := UBNT UAPPRO
298 KERNEL := kernel-bin | patch-cmdline | lzma | uImage lzma | jffs2 kernel0
299 IMAGES := sysupgrade.bin factory.bin
300 IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
301 IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | mkubntimage2
302 endef
303 TARGET_DEVICES += ubnt-uap-pro
304
305 define Device/ubnt-unifi-outdoor-plus
306 $(Device/ubnt-uap-pro)
307 DEVICE_TITLE := Ubiquiti UniFi Outdoor Plus
308 UBNT_CHIP := ar7240
309 BOARDNAME := UBNT-UOP
310 DEVICE_PROFILE := UBNT
311 endef
312 TARGET_DEVICES += ubnt-unifi-outdoor-plus