ar71xx: enable sysupgrade for the OpenMesh MR1750
[15.05/openwrt.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         ap96 | \
183         bxu2000n-2-a1 | \
184         db120 | \
185         f9k1115v2 |\
186         hornet-ub | \
187         mr12 | \
188         mr16 | \
189         wpj558 | \
190         zcn-1523h-2 | \
191         zcn-1523h-5)
192                 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
193                         echo "Invalid image type."
194                         return 1
195                 }
196                 return 0
197                 ;;
198         ap81 | \
199         ap83 | \
200         ap132 | \
201         dgl-5500-a1 |\
202         dhp-1565-a1 |\
203         dir-505-a1 | \
204         dir-600-a1 | \
205         dir-615-c1 | \
206         dir-615-e1 | \
207         dir-615-e4 | \
208         dir-615-i1 | \
209         dir-825-c1 | \
210         dir-835-a1 | \
211         dlan-pro-500-wp | \
212         dlan-pro-1200-ac | \
213         dragino2 | \
214         epg5000 | \
215         esr1750 | \
216         esr900 | \
217         ew-dorin | \
218         ew-dorin-router | \
219         hiwifi-hc6361 | \
220         hornet-ub-x2 | \
221         mzk-w04nu | \
222         mzk-w300nh | \
223         tew-632brp | \
224         tew-712br | \
225         tew-732br | \
226         wrt400n | \
227         airgateway | \
228         airrouter | \
229         bullet-m | \
230         loco-m-xw | \
231         nanostation-m | \
232         rocket-m | \
233         rocket-m-xw | \
234         nanostation-m-xw | \
235         rw2458n | \
236         wpj531 | \
237         wndap360 | \
238         wpj344 | \
239         wzr-hp-g300nh2 | \
240         wzr-hp-g300nh | \
241         wzr-hp-g450h | \
242         wzr-hp-ag300h | \
243         wzr-450hp2 | \
244         whr-g301n | \
245         whr-hp-g300n | \
246         whr-hp-gn | \
247         wlae-ag300n | \
248         nbg460n_550n_550nh | \
249         unifi | \
250         unifi-outdoor | \
251         carambola2 | \
252         weio )
253                 [ "$magic" != "2705" ] && {
254                         echo "Invalid image type."
255                         return 1
256                 }
257                 return 0
258                 ;;
259
260         cpe510)
261                 tplink_pharos_check_image "$1" && return 0
262                 return 1
263                 ;;
264
265         bsb | \
266         dir-825-b1 | \
267         tew-673gru)
268                 dir825b_check_image "$1" && return 0
269                 ;;
270
271         mynet-rext|\
272         wrt160nl)
273                 cybertan_check_image "$1" && return 0
274                 return 1
275                 ;;
276
277         qihoo-c301 | \
278         mynet-n600 | \
279         mynet-n750)
280                 [ "$magic_long" != "5ea3a417" ] && {
281                         echo "Invalid image, bad magic: $magic_long"
282                         return 1
283                 }
284
285                 local typemagic=$(seama_get_type_magic "$1")
286                 [ "$typemagic" != "6669726d" ] && {
287                         echo "Invalid image, bad type: $typemagic"
288                         return 1
289                 }
290
291                 return 0;
292                 ;;
293         mr1750 | \
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         minibox-v1 |\
318         onion-omega | \
319         oolite | \
320         smart-300 | \
321         tl-mr10u | \
322         tl-mr11u | \
323         tl-mr12u | \
324         tl-mr13u | \
325         tl-mr3020 | \
326         tl-mr3040 | \
327         tl-mr3040-v2 | \
328         tl-mr3220 | \
329         tl-mr3220-v2 | \
330         tl-mr3420 | \
331         tl-mr3420-v2 | \
332         tl-wa701nd-v2 | \
333         tl-wa7210n-v2 | \
334         tl-wa7510n | \
335         tl-wa750re | \
336         tl-wa850re | \
337         tl-wa860re | \
338         tl-wa801nd-v2 | \
339         tl-wa901nd | \
340         tl-wa901nd-v2 | \
341         tl-wa901nd-v3 | \
342         tl-wa901nd-v4 | \
343         tl-wdr3500 | \
344         tl-wdr4300 | \
345         tl-wdr4900-v2 | \
346         tl-wr703n | \
347         tl-wr710n | \
348         tl-wr720n-v3 | \
349         tl-wr741nd | \
350         tl-wr741nd-v4 | \
351         tl-wr841n-v1 | \
352         tl-wa830re-v2 | \
353         tl-wr841n-v7 | \
354         tl-wr841n-v8 | \
355         tl-wr841n-v9 | \
356         tl-wr842n-v2 | \
357         tl-wr941nd | \
358         tl-wr941nd-v5 | \
359         tl-wr941nd-v6 | \
360         tl-wr1041n-v2 | \
361         tl-wr1043nd | \
362         tl-wr1043nd-v2 | \
363         tl-wr2543n)
364                 [ "$magic" != "0100" ] && {
365                         echo "Invalid image type."
366                         return 1
367                 }
368
369                 local hwid
370                 local imageid
371
372                 hwid=$(tplink_get_hwid)
373                 imageid=$(tplink_get_image_hwid "$1")
374
375                 [ "$hwid" != "$imageid" ] && {
376                         echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
377                         return 1
378                 }
379
380                 local boot_size
381
382                 boot_size=$(tplink_get_image_boot_size "$1")
383                 [ "$boot_size" != "00000000" ] && {
384                         echo "Invalid image, it contains a bootloader."
385                         return 1
386                 }
387
388                 return 0
389                 ;;
390
391         tube2h)
392                 alfa_check_image "$1" && return 0
393                 return 1
394                 ;;
395
396         unifi-outdoor-plus | \
397         uap-pro)
398                 [ "$magic_long" != "19852003" ] && {
399                         echo "Invalid image type."
400                         return 1
401                 }
402                 return 0
403                 ;;
404         wndr3700 | \
405         wnr2000-v3 | \
406         wnr612-v2 | \
407         wnr1000-v2 | \
408         wpn824n)
409                 local hw_magic
410
411                 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
412                 [ "$magic_long" != "$hw_magic" ] && {
413                         echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
414                         return 1
415                 }
416                 return 0
417                 ;;
418         nbg6716 | \
419         r6100 | \
420         wndr3700v4 | \
421         wndr4300 )
422                 nand_do_platform_check $board $1
423                 return $?;
424                 ;;
425         routerstation | \
426         routerstation-pro | \
427         ls-sr71 | \
428         pb42 | \
429         pb44 | \
430         all0305 | \
431         eap300v2 | \
432         eap7660d | \
433         ja76pf | \
434         ja76pf2 | \
435         jwap003 | \
436         wp543 | \
437         wpe72)
438                 [ "$magic" != "4349" ] && {
439                         echo "Invalid image. Use *-sysupgrade.bin files on this board"
440                         return 1
441                 }
442
443                 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
444                 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
445
446                 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
447                         return 0
448                 else
449                         echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
450                         return 1
451                 fi
452                 return 0
453                 ;;
454         wnr2000-v4)
455                 [ "$magic_long" != "32303034" ] && {
456                         echo "Invalid image type."
457                         return 1
458                 }
459                 return 0
460                 ;;
461         wnr2200)
462                 [ "$magic_long" != "32323030" ] && {
463                         echo "Invalid image type."
464                         return 1
465                 }
466                 return 0
467                 ;;
468
469         esac
470
471         echo "Sysupgrade is not yet supported on $board."
472         return 1
473 }
474
475 platform_pre_upgrade() {
476         local board=$(ar71xx_board_name)
477
478         case "$board" in
479         nbg6716 | \
480         r6100 | \
481         wndr3700v4 | \
482         wndr4300 )
483                 nand_do_upgrade "$1"
484                 ;;
485         esac
486 }
487
488 platform_do_upgrade() {
489         local board=$(ar71xx_board_name)
490
491         case "$board" in
492         routerstation | \
493         routerstation-pro | \
494         ls-sr71 | \
495         all0305 | \
496         eap7660d | \
497         pb42 | \
498         pb44 | \
499         ja76pf | \
500         ja76pf2 | \
501         jwap003)
502                 platform_do_upgrade_combined "$ARGV"
503                 ;;
504         wp543|\
505         wpe72)
506                 platform_do_upgrade_compex "$ARGV"
507                 ;;
508         all0258n )
509                 platform_do_upgrade_allnet "0x9f050000" "$ARGV"
510                 ;;
511         all0315n )
512                 platform_do_upgrade_allnet "0x9f080000" "$ARGV"
513                 ;;
514         eap300v2 |\
515         cap4200ag)
516                 platform_do_upgrade_allnet "0xbf0a0000" "$ARGV"
517                 ;;
518         dir-825-b1 |\
519         tew-673gru)
520                 platform_do_upgrade_dir825b "$ARGV"
521                 ;;
522         mr1750 | \
523         mr600 | \
524         mr600v2 | \
525         mr900 | \
526         mr900v2 | \
527         om2p | \
528         om2pv2 | \
529         om2p-hs | \
530         om2p-hsv2 | \
531         om2p-lc | \
532         om5p | \
533         om5p-an)
534                 platform_do_upgrade_openmesh "$ARGV"
535                 ;;
536         unifi-outdoor-plus | \
537         uap-pro)
538                 MTD_CONFIG_ARGS="-s 0x180000"
539                 default_do_upgrade "$ARGV"
540                 ;;
541         *)
542                 default_do_upgrade "$ARGV"
543                 ;;
544         esac
545 }
546
547 disable_watchdog() {
548         killall watchdog
549         ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
550                 echo 'Could not disable watchdog'
551                 return 1
552         }
553 }
554
555 append sysupgrade_pre_upgrade disable_watchdog