ar71xx: add support for nanostation m xw
[openwrt/openwrt.git] / target / linux / ar71xx / base-files / lib / upgrade / platform.sh
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4
5 . /lib/ar71xx.sh
6
7 PART_NAME=firmware
8 RAMFS_COPY_DATA=/lib/ar71xx.sh
9
10 CI_BLKSZ=65536
11 CI_LDADR=0x80060000
12
13 platform_find_partitions() {
14 local first dev size erasesize name
15 while read dev size erasesize name; do
16 name=${name#'"'}; name=${name%'"'}
17 case "$name" in
18 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin|rootfs|filesystem)
19 if [ -z "$first" ]; then
20 first="$name"
21 else
22 echo "$erasesize:$first:$name"
23 break
24 fi
25 ;;
26 esac
27 done < /proc/mtd
28 }
29
30 platform_find_kernelpart() {
31 local part
32 for part in "${1%:*}" "${1#*:}"; do
33 case "$part" in
34 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin)
35 echo "$part"
36 break
37 ;;
38 esac
39 done
40 }
41
42 platform_do_upgrade_combined() {
43 local partitions=$(platform_find_partitions)
44 local kernelpart=$(platform_find_kernelpart "${partitions#*:}")
45 local erase_size=$((0x${partitions%%:*})); partitions="${partitions#*:}"
46 local kern_length=0x$(dd if="$1" bs=2 skip=1 count=4 2>/dev/null)
47 local kern_blocks=$(($kern_length / $CI_BLKSZ))
48 local root_blocks=$((0x$(dd if="$1" bs=2 skip=5 count=4 2>/dev/null) / $CI_BLKSZ))
49
50 if [ -n "$partitions" ] && [ -n "$kernelpart" ] && \
51 [ ${kern_blocks:-0} -gt 0 ] && \
52 [ ${root_blocks:-0} -gt 0 ] && \
53 [ ${erase_size:-0} -gt 0 ];
54 then
55 local append=""
56 [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append="-j $CONF_TAR"
57
58 ( dd if="$1" bs=$CI_BLKSZ skip=1 count=$kern_blocks 2>/dev/null; \
59 dd if="$1" bs=$CI_BLKSZ skip=$((1+$kern_blocks)) count=$root_blocks 2>/dev/null ) | \
60 mtd -r $append -F$kernelpart:$kern_length:$CI_LDADR,rootfs write - $partitions
61 fi
62 }
63
64 tplink_get_image_hwid() {
65 get_image "$@" | dd bs=4 count=1 skip=16 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
66 }
67
68 tplink_get_image_boot_size() {
69 get_image "$@" | dd bs=4 count=1 skip=37 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
70 }
71
72 seama_get_type_magic() {
73 get_image "$@" | dd bs=1 count=4 skip=53 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
74 }
75
76 cybertan_get_image_magic() {
77 get_image "$@" | dd bs=8 count=1 skip=0 2>/dev/null | hexdump -v -n 8 -e '1/1 "%02x"'
78 }
79
80 cybertan_check_image() {
81 local magic="$(cybertan_get_image_magic "$1")"
82 local fw_magic="$(cybertan_get_hw_magic)"
83
84 [ "$fw_magic" != "$magic" ] && {
85 echo "Invalid image, ID mismatch, got:$magic, but need:$fw_magic"
86 return 1
87 }
88
89 return 0
90 }
91
92 platform_do_upgrade_compex() {
93 local fw_file=$1
94 local fw_part=$PART_NAME
95 local fw_mtd=$(find_mtd_part $fw_part)
96 local fw_length=0x$(dd if="$fw_file" bs=2 skip=1 count=4 2>/dev/null)
97 local fw_blocks=$(($fw_length / 65536))
98
99 if [ -n "$fw_mtd" ] && [ ${fw_blocks:-0} -gt 0 ]; then
100 local append=""
101 [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append="-j $CONF_TAR"
102
103 sync
104 dd if="$fw_file" bs=64k skip=1 count=$fw_blocks 2>/dev/null | \
105 mtd $append write - "$fw_part"
106 fi
107 }
108
109 platform_check_image() {
110 local board=$(ar71xx_board_name)
111 local magic="$(get_magic_word "$1")"
112 local magic_long="$(get_magic_long "$1")"
113
114 [ "$#" -gt 1 ] && return 1
115
116 case "$board" in
117 all0315n | \
118 all0258n | \
119 cap4200ag)
120 platform_check_image_allnet "$1" && return 0
121 return 1
122 ;;
123 alfa-ap96 | \
124 alfa-nx | \
125 ap113 | \
126 ap121 | \
127 ap121-mini | \
128 ap136-010 | \
129 ap136-020 | \
130 ap135-020 | \
131 ap96 | \
132 db120 | \
133 hornet-ub | \
134 bxu2000n-2-a1 | \
135 zcn-1523h-2 | \
136 zcn-1523h-5)
137 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
138 echo "Invalid image type."
139 return 1
140 }
141 return 0
142 ;;
143 ap81 | \
144 ap83 | \
145 ap132 | \
146 dir-505-a1 | \
147 dir-600-a1 | \
148 dir-615-c1 | \
149 dir-615-e1 | \
150 dir-615-e4 | \
151 dir-825-c1 | \
152 dir-835-a1 | \
153 dragino2 | \
154 esr1750 | \
155 ew-dorin | \
156 ew-dorin-router | \
157 hiwifi-hc6361 | \
158 hornet-ub-x2 | \
159 mzk-w04nu | \
160 mzk-w300nh | \
161 tew-632brp | \
162 tew-712br | \
163 tew-732br | \
164 wrt400n | \
165 airrouter | \
166 bullet-m | \
167 nanostation-m | \
168 rocket-m | \
169 nanostation-m-xw | \
170 rw2458n | \
171 wndap360 | \
172 wzr-hp-g300nh2 | \
173 wzr-hp-g300nh | \
174 wzr-hp-g450h | \
175 wzr-hp-ag300h | \
176 whr-g301n | \
177 whr-hp-g300n | \
178 whr-hp-gn | \
179 wlae-ag300n | \
180 nbg460n_550n_550nh | \
181 unifi | \
182 unifi-outdoor | \
183 carambola2 )
184 [ "$magic" != "2705" ] && {
185 echo "Invalid image type."
186 return 1
187 }
188 return 0
189 ;;
190
191 dir-825-b1 | \
192 tew-673gru)
193 dir825b_check_image "$1" && return 0
194 ;;
195
196 mynet-rext|\
197 wrt160nl)
198 cybertan_check_image "$1" && return 0
199 return 1
200 ;;
201
202 mynet-n600 | \
203 mynet-n750)
204 [ "$magic_long" != "5ea3a417" ] && {
205 echo "Invalid image, bad magic: $magic_long"
206 return 1
207 }
208
209 local typemagic=$(seama_get_type_magic "$1")
210 [ "$typemagic" != "6669726d" ] && {
211 echo "Invalid image, bad type: $typemagic"
212 return 1
213 }
214
215 return 0;
216 ;;
217 mr600 | \
218 mr600v2 | \
219 om2p | \
220 om2pv2 | \
221 om2p-hs | \
222 om2p-hsv2 | \
223 om2p-lc)
224 platform_check_image_openmesh "$magic_long" "$1" && return 0
225 return 1
226 ;;
227
228 archer-c7 | \
229 el-m150 | \
230 el-mini | \
231 gl-inet | \
232 oolite | \
233 tl-mr10u | \
234 tl-mr11u | \
235 tl-mr13u | \
236 tl-mr3020 | \
237 tl-mr3040 | \
238 tl-mr3040-v2 | \
239 tl-mr3220 | \
240 tl-mr3220-v2 | \
241 tl-mr3420 | \
242 tl-mr3420-v2 | \
243 tl-wa7510n | \
244 tl-wa750re | \
245 tl-wa850re | \
246 tl-wa860re | \
247 tl-wa801nd-v2 | \
248 tl-wa901nd | \
249 tl-wa901nd-v2 | \
250 tl-wa901nd-v3 | \
251 tl-wdr3500 | \
252 tl-wdr4300 | \
253 tl-wdr4900-v2 | \
254 tl-wr703n | \
255 tl-wr710n | \
256 tl-wr720n-v3 | \
257 tl-wr741nd | \
258 tl-wr741nd-v4 | \
259 tl-wr841n-v1 | \
260 tl-wa830re-v2 | \
261 tl-wr841n-v7 | \
262 tl-wr841n-v8 | \
263 tl-wr841n-v9 | \
264 tl-wr842n-v2 | \
265 tl-wr941nd | \
266 tl-wr1041n-v2 | \
267 tl-wr1043nd | \
268 tl-wr1043nd-v2 | \
269 tl-wr2543n)
270 [ "$magic" != "0100" ] && {
271 echo "Invalid image type."
272 return 1
273 }
274
275 local hwid
276 local imageid
277
278 hwid=$(tplink_get_hwid)
279 imageid=$(tplink_get_image_hwid "$1")
280
281 [ "$hwid" != "$imageid" ] && {
282 echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
283 return 1
284 }
285
286 local boot_size
287
288 boot_size=$(tplink_get_image_boot_size "$1")
289 [ "$boot_size" != "00000000" ] && {
290 echo "Invalid image, it contains a bootloader."
291 return 1
292 }
293
294 return 0
295 ;;
296 uap-pro)
297 [ "$magic_long" != "19852003" ] && {
298 echo "Invalid image type."
299 return 1
300 }
301 return 0
302 ;;
303 wndr3700 | \
304 wnr2000-v3 | \
305 wnr612-v2)
306 local hw_magic
307
308 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
309 [ "$magic_long" != "$hw_magic" ] && {
310 echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
311 return 1
312 }
313 return 0
314 ;;
315 nbg6716 | \
316 wndr4300 )
317 nand_do_platform_check $board $1
318 return $?;
319 ;;
320 routerstation | \
321 routerstation-pro | \
322 ls-sr71 | \
323 pb42 | \
324 pb44 | \
325 all0305 | \
326 eap7660d | \
327 ja76pf | \
328 ja76pf2 | \
329 jwap003 | \
330 wp543 | \
331 wpe72)
332 [ "$magic" != "4349" ] && {
333 echo "Invalid image. Use *-sysupgrade.bin files on this board"
334 return 1
335 }
336
337 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
338 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
339
340 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
341 return 0
342 else
343 echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
344 return 1
345 fi
346 return 0
347 ;;
348 esac
349
350 echo "Sysupgrade is not yet supported on $board."
351 return 1
352 }
353
354 platform_do_upgrade() {
355 local board=$(ar71xx_board_name)
356
357 case "$board" in
358 routerstation | \
359 routerstation-pro | \
360 ls-sr71 | \
361 all0305 | \
362 eap7660d | \
363 pb42 | \
364 pb44 | \
365 ja76pf | \
366 ja76pf2 | \
367 jwap003)
368 platform_do_upgrade_combined "$ARGV"
369 ;;
370 wp543|\
371 wpe72)
372 platform_do_upgrade_compex "$ARGV"
373 ;;
374 all0258n )
375 platform_do_upgrade_allnet "0x9f050000" "$ARGV"
376 ;;
377 all0315n )
378 platform_do_upgrade_allnet "0x9f080000" "$ARGV"
379 ;;
380 cap4200ag)
381 platform_do_upgrade_allnet "0xbf0a0000" "$ARGV"
382 ;;
383 dir-825-b1 |\
384 tew-673gru)
385 platform_do_upgrade_dir825b "$ARGV"
386 ;;
387 mr600 | \
388 mr600v2 | \
389 om2p | \
390 om2pv2 | \
391 om2p-hs | \
392 om2p-hsv2 | \
393 om2p-lc)
394 platform_do_upgrade_openmesh "$ARGV"
395 ;;
396 uap-pro)
397 MTD_CONFIG_ARGS="-s 0x180000"
398 default_do_upgrade "$ARGV"
399 ;;
400 *)
401 default_do_upgrade "$ARGV"
402 ;;
403 esac
404 }
405
406 disable_watchdog() {
407 killall watchdog
408 ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
409 echo 'Could not disable watchdog'
410 return 1
411 }
412 }
413
414 append sysupgrade_pre_upgrade disable_watchdog