ar71xx: Add support for Black Swift
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / base-files / lib / upgrade / platform.sh
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4
5 . /lib/functions/system.sh
6 . /lib/ar71xx.sh
7
8 PART_NAME=firmware
9 RAMFS_COPY_DATA=/lib/ar71xx.sh
10
11 CI_BLKSZ=65536
12 CI_LDADR=0x80060000
13
14 platform_find_partitions() {
15 local first dev size erasesize name
16 while read dev size erasesize name; do
17 name=${name#'"'}; name=${name%'"'}
18 case "$name" in
19 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin|rootfs|filesystem)
20 if [ -z "$first" ]; then
21 first="$name"
22 else
23 echo "$erasesize:$first:$name"
24 break
25 fi
26 ;;
27 esac
28 done < /proc/mtd
29 }
30
31 platform_find_kernelpart() {
32 local part
33 for part in "${1%:*}" "${1#*:}"; do
34 case "$part" in
35 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin)
36 echo "$part"
37 break
38 ;;
39 esac
40 done
41 }
42
43 platform_do_upgrade_combined() {
44 local partitions=$(platform_find_partitions)
45 local kernelpart=$(platform_find_kernelpart "${partitions#*:}")
46 local erase_size=$((0x${partitions%%:*})); partitions="${partitions#*:}"
47 local kern_length=0x$(dd if="$1" bs=2 skip=1 count=4 2>/dev/null)
48 local kern_blocks=$(($kern_length / $CI_BLKSZ))
49 local root_blocks=$((0x$(dd if="$1" bs=2 skip=5 count=4 2>/dev/null) / $CI_BLKSZ))
50
51 if [ -n "$partitions" ] && [ -n "$kernelpart" ] && \
52 [ ${kern_blocks:-0} -gt 0 ] && \
53 [ ${root_blocks:-0} -gt 0 ] && \
54 [ ${erase_size:-0} -gt 0 ];
55 then
56 local append=""
57 [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append="-j $CONF_TAR"
58
59 ( dd if="$1" bs=$CI_BLKSZ skip=1 count=$kern_blocks 2>/dev/null; \
60 dd if="$1" bs=$CI_BLKSZ skip=$((1+$kern_blocks)) count=$root_blocks 2>/dev/null ) | \
61 mtd -r $append -F$kernelpart:$kern_length:$CI_LDADR,rootfs write - $partitions
62 fi
63 }
64
65 tplink_get_image_hwid() {
66 get_image "$@" | dd bs=4 count=1 skip=16 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
67 }
68
69 tplink_get_image_boot_size() {
70 get_image "$@" | dd bs=4 count=1 skip=37 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
71 }
72
73 tplink_pharos_check_image() {
74 local magic_long="$(get_magic_long "$1")"
75 [ "$magic_long" != "7f454c46" ] && {
76 echo "Invalid image magic '$magic_long'"
77 return 1
78 }
79
80 local model_string="$(tplink_pharos_get_model_string)"
81 local line
82
83 # Here $1 is given to dd directly instead of get_image as otherwise the skip
84 # will take almost a second (as dd can't seek then)
85 #
86 # This will fail if the image isn't local, but that's fine: as the
87 # read loop won't be executed at all, it will return true, so the image
88 # is accepted (loading the first 1.5M of a remote image for this check seems
89 # a bit extreme)
90 dd if="$1" bs=1 skip=1511432 count=1024 2>/dev/null | while read line; do
91 [ "$line" == "$model_string" ] && break
92 done || {
93 echo "Unsupported image (model not in support-list)"
94 return 1
95 }
96
97 return 0
98 }
99
100 seama_get_type_magic() {
101 get_image "$@" | dd bs=1 count=4 skip=53 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
102 }
103
104 cybertan_get_image_magic() {
105 get_image "$@" | dd bs=8 count=1 skip=0 2>/dev/null | hexdump -v -n 8 -e '1/1 "%02x"'
106 }
107
108 cybertan_check_image() {
109 local magic="$(cybertan_get_image_magic "$1")"
110 local fw_magic="$(cybertan_get_hw_magic)"
111
112 [ "$fw_magic" != "$magic" ] && {
113 echo "Invalid image, ID mismatch, got:$magic, but need:$fw_magic"
114 return 1
115 }
116
117 return 0
118 }
119
120 platform_do_upgrade_compex() {
121 local fw_file=$1
122 local fw_part=$PART_NAME
123 local fw_mtd=$(find_mtd_part $fw_part)
124 local fw_length=0x$(dd if="$fw_file" bs=2 skip=1 count=4 2>/dev/null)
125 local fw_blocks=$(($fw_length / 65536))
126
127 if [ -n "$fw_mtd" ] && [ ${fw_blocks:-0} -gt 0 ]; then
128 local append=""
129 [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append="-j $CONF_TAR"
130
131 sync
132 dd if="$fw_file" bs=64k skip=1 count=$fw_blocks 2>/dev/null | \
133 mtd $append write - "$fw_part"
134 fi
135 }
136
137 alfa_check_image() {
138 local magic_long="$(get_magic_long "$1")"
139 local fw_part_size=$(mtd_get_part_size firmware)
140
141 case "$magic_long" in
142 "27051956")
143 [ "$fw_part_size" != "16318464" ] && {
144 echo "Invalid image magic \"$magic_long\" for $fw_part_size bytes"
145 return 1
146 }
147 ;;
148
149 "68737173")
150 [ "$fw_part_size" != "7929856" ] && {
151 echo "Invalid image magic \"$magic_long\" for $fw_part_size bytes"
152 return 1
153 }
154 ;;
155 esac
156
157 return 0
158 }
159
160 platform_check_image() {
161 local board=$(ar71xx_board_name)
162 local magic="$(get_magic_word "$1")"
163 local magic_long="$(get_magic_long "$1")"
164
165 [ "$#" -gt 1 ] && return 1
166
167 case "$board" in
168 all0315n | \
169 all0258n | \
170 cap4200ag)
171 platform_check_image_allnet "$1" && return 0
172 return 1
173 ;;
174 alfa-ap96 | \
175 alfa-nx | \
176 ap113 | \
177 ap121 | \
178 ap121-mini | \
179 ap136-010 | \
180 ap136-020 | \
181 ap135-020 | \
182 ap147-010 | \
183 ap96 | \
184 bxu2000n-2-a1 | \
185 db120 | \
186 f9k1115v2 |\
187 hornet-ub | \
188 mr12 | \
189 mr16 | \
190 wpj558 | \
191 zcn-1523h-2 | \
192 zcn-1523h-5)
193 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
194 echo "Invalid image type."
195 return 1
196 }
197 return 0
198 ;;
199 ap81 | \
200 ap83 | \
201 ap132 | \
202 dgl-5500-a1 |\
203 dhp-1565-a1 |\
204 dir-505-a1 | \
205 dir-600-a1 | \
206 dir-615-c1 | \
207 dir-615-e1 | \
208 dir-615-e4 | \
209 dir-615-i1 | \
210 dir-825-c1 | \
211 dir-835-a1 | \
212 dlan-pro-500-wp | \
213 dlan-pro-1200-ac | \
214 dragino2 | \
215 epg5000 | \
216 esr1750 | \
217 esr900 | \
218 ew-dorin | \
219 ew-dorin-router | \
220 hiwifi-hc6361 | \
221 hornet-ub-x2 | \
222 mzk-w04nu | \
223 mzk-w300nh | \
224 tew-632brp | \
225 tew-712br | \
226 tew-732br | \
227 wrt400n | \
228 airgateway | \
229 airrouter | \
230 bullet-m | \
231 loco-m-xw | \
232 nanostation-m | \
233 rocket-m | \
234 rocket-m-xw | \
235 rocket-m-ti | \
236 nanostation-m-xw | \
237 rw2458n | \
238 wpj531 | \
239 wndap360 | \
240 wpj344 | \
241 wzr-hp-g300nh2 | \
242 wzr-hp-g300nh | \
243 wzr-hp-g450h | \
244 wzr-hp-ag300h | \
245 wzr-450hp2 | \
246 whr-g301n | \
247 whr-hp-g300n | \
248 whr-hp-gn | \
249 wlae-ag300n | \
250 nbg460n_550n_550nh | \
251 unifi | \
252 unifi-outdoor | \
253 carambola2 )
254 [ "$magic" != "2705" ] && {
255 echo "Invalid image type."
256 return 1
257 }
258 return 0
259 ;;
260
261 cpe510)
262 tplink_pharos_check_image "$1" && return 0
263 return 1
264 ;;
265
266 bsb | \
267 dir-825-b1 | \
268 tew-673gru)
269 dir825b_check_image "$1" && return 0
270 ;;
271
272 mynet-rext|\
273 wrt160nl)
274 cybertan_check_image "$1" && return 0
275 return 1
276 ;;
277
278 qihoo-c301 | \
279 mynet-n600 | \
280 mynet-n750)
281 [ "$magic_long" != "5ea3a417" ] && {
282 echo "Invalid image, bad magic: $magic_long"
283 return 1
284 }
285
286 local typemagic=$(seama_get_type_magic "$1")
287 [ "$typemagic" != "6669726d" ] && {
288 echo "Invalid image, bad type: $typemagic"
289 return 1
290 }
291
292 return 0;
293 ;;
294 mr600 | \
295 mr600v2 | \
296 mr900 | \
297 mr900v2 | \
298 om2p | \
299 om2pv2 | \
300 om2p-hs | \
301 om2p-hsv2 | \
302 om2p-lc | \
303 om5p | \
304 om5p-an)
305 platform_check_image_openmesh "$magic_long" "$1" && return 0
306 return 1
307 ;;
308
309 antminer-s1 | \
310 antminer-s3 | \
311 archer-c5 | \
312 archer-c7 | \
313 el-m150 | \
314 el-mini | \
315 gl-inet | \
316 mc-mac1200r | \
317 onion-omega | \
318 oolite | \
319 smart-300 | \
320 tl-mr10u | \
321 tl-mr11u | \
322 tl-mr12u | \
323 tl-mr13u | \
324 tl-mr3020 | \
325 tl-mr3040 | \
326 tl-mr3040-v2 | \
327 tl-mr3220 | \
328 tl-mr3220-v2 | \
329 tl-mr3420 | \
330 tl-mr3420-v2 | \
331 tl-wa701nd-v2 | \
332 tl-wa7210n-v2 | \
333 tl-wa7510n | \
334 tl-wa750re | \
335 tl-wa850re | \
336 tl-wa860re | \
337 tl-wa801nd-v2 | \
338 tl-wa901nd | \
339 tl-wa901nd-v2 | \
340 tl-wa901nd-v3 | \
341 tl-wdr3500 | \
342 tl-wdr4300 | \
343 tl-wdr4900-v2 | \
344 tl-wr703n | \
345 tl-wr710n | \
346 tl-wr720n-v3 | \
347 tl-wr741nd | \
348 tl-wr741nd-v4 | \
349 tl-wr841n-v1 | \
350 tl-wa830re-v2 | \
351 tl-wr841n-v7 | \
352 tl-wr841n-v8 | \
353 tl-wr841n-v9 | \
354 tl-wr842n-v2 | \
355 tl-wr941nd | \
356 tl-wr941nd-v5 | \
357 tl-wr1041n-v2 | \
358 tl-wr1043nd | \
359 tl-wr1043nd-v2 | \
360 tl-wr2543n)
361 [ "$magic" != "0100" ] && {
362 echo "Invalid image type."
363 return 1
364 }
365
366 local hwid
367 local imageid
368
369 hwid=$(tplink_get_hwid)
370 imageid=$(tplink_get_image_hwid "$1")
371
372 [ "$hwid" != "$imageid" ] && {
373 echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
374 return 1
375 }
376
377 local boot_size
378
379 boot_size=$(tplink_get_image_boot_size "$1")
380 [ "$boot_size" != "00000000" ] && {
381 echo "Invalid image, it contains a bootloader."
382 return 1
383 }
384
385 return 0
386 ;;
387
388 tube2h)
389 alfa_check_image "$1" && return 0
390 return 1
391 ;;
392
393 unifi-outdoor-plus | \
394 uap-pro)
395 [ "$magic_long" != "19852003" ] && {
396 echo "Invalid image type."
397 return 1
398 }
399 return 0
400 ;;
401 wndr3700 | \
402 wnr2000-v3 | \
403 wnr612-v2 | \
404 wnr1000-v2)
405 local hw_magic
406
407 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
408 [ "$magic_long" != "$hw_magic" ] && {
409 echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
410 return 1
411 }
412 return 0
413 ;;
414 nbg6716 | \
415 r6100 | \
416 wndr3700v4 | \
417 wndr4300 )
418 nand_do_platform_check $board $1
419 return $?;
420 ;;
421 routerstation | \
422 routerstation-pro | \
423 ls-sr71 | \
424 pb42 | \
425 pb44 | \
426 all0305 | \
427 eap300v2 | \
428 eap7660d | \
429 ja76pf | \
430 ja76pf2 | \
431 jwap003 | \
432 wp543 | \
433 wpe72)
434 [ "$magic" != "4349" ] && {
435 echo "Invalid image. Use *-sysupgrade.bin files on this board"
436 return 1
437 }
438
439 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
440 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
441
442 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
443 return 0
444 else
445 echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
446 return 1
447 fi
448 return 0
449 ;;
450 wnr2000-v4)
451 [ "$magic_long" != "32303034" ] && {
452 echo "Invalid image type."
453 return 1
454 }
455 return 0
456 ;;
457
458 esac
459
460 echo "Sysupgrade is not yet supported on $board."
461 return 1
462 }
463
464 platform_pre_upgrade() {
465 local board=$(ar71xx_board_name)
466
467 case "$board" in
468 nbg6716 | \
469 r6100 | \
470 wndr3700v4 | \
471 wndr4300 )
472 nand_do_upgrade "$1"
473 ;;
474 esac
475 }
476
477 platform_do_upgrade() {
478 local board=$(ar71xx_board_name)
479
480 case "$board" in
481 routerstation | \
482 routerstation-pro | \
483 ls-sr71 | \
484 all0305 | \
485 eap7660d | \
486 pb42 | \
487 pb44 | \
488 ja76pf | \
489 ja76pf2 | \
490 jwap003)
491 platform_do_upgrade_combined "$ARGV"
492 ;;
493 wp543|\
494 wpe72)
495 platform_do_upgrade_compex "$ARGV"
496 ;;
497 all0258n )
498 platform_do_upgrade_allnet "0x9f050000" "$ARGV"
499 ;;
500 all0315n )
501 platform_do_upgrade_allnet "0x9f080000" "$ARGV"
502 ;;
503 eap300v2 |\
504 cap4200ag)
505 platform_do_upgrade_allnet "0xbf0a0000" "$ARGV"
506 ;;
507 dir-825-b1 |\
508 tew-673gru)
509 platform_do_upgrade_dir825b "$ARGV"
510 ;;
511 mr600 | \
512 mr600v2 | \
513 mr900 | \
514 mr900v2 | \
515 om2p | \
516 om2pv2 | \
517 om2p-hs | \
518 om2p-hsv2 | \
519 om2p-lc | \
520 om5p | \
521 om5p-an)
522 platform_do_upgrade_openmesh "$ARGV"
523 ;;
524 unifi-outdoor-plus | \
525 uap-pro)
526 MTD_CONFIG_ARGS="-s 0x180000"
527 default_do_upgrade "$ARGV"
528 ;;
529 *)
530 default_do_upgrade "$ARGV"
531 ;;
532 esac
533 }
534
535 disable_watchdog() {
536 killall watchdog
537 ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
538 echo 'Could not disable watchdog'
539 return 1
540 }
541 }
542
543 append sysupgrade_pre_upgrade disable_watchdog