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