ar71xx: add preliminary support for wzr-hp-g450h
[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|kernel|linux|rootfs)
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|kernel|linux)
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 ${kern_blocks:-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 platform_check_image() {
65         local board=$(ar71xx_board_name)
66         local magic="$(get_magic_word "$1")"
67         local magic_long="$(get_magic_long "$1")"
68
69         [ "$ARGC" -gt 1 ] && return 1
70
71         case "$board" in
72         all0258n )
73                 platform_check_image_all0258n "$1" && return 0
74                 return 1
75                 ;;
76         ap121 | \
77         ap121-mini | \
78         ap96 | \
79         db120 | \
80         zcn-1523h-2 | \
81         zcn-1523h-5)
82                 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
83                         echo "Invalid image type."
84                         return 1
85                 }
86                 return 0
87                 ;;
88         ap81 | \
89         ap83 | \
90         dir-600-a1 | \
91         dir-615-c1 | \
92         dir-825-b1 | \
93         mzk-w04nu | \
94         mzk-w300nh | \
95         tew-632brp | \
96         wrt400n | \
97         bullet-m | \
98         nanostation-m | \
99         rocket-m | \
100         wzr-hp-g300nh | \
101         wzr-hp-g450h | \
102         wzr-hp-ag300h | \
103         whr-g301n | \
104         whr-hp-g300n | \
105         whr-hp-gn | \
106         nbg460n_550n_550nh | \
107         unifi )
108                 [ "$magic" != "2705" ] && {
109                         echo "Invalid image type."
110                         return 1
111                 }
112                 return 0
113                 ;;
114         tl-mr3220 | \
115         tl-mr3420 | \
116         tl-wa901nd | \
117         tl-wa901nd-v2 | \
118         tl-wr703n | \
119         tl-wr741nd | \
120         tl-wr741nd-v4 | \
121         tl-wr841n-v1 | \
122         tl-wr941nd | \
123         tl-wr1043nd)
124                 [ "$magic" != "0100" ] && {
125                         echo "Invalid image type."
126                         return 1
127                 }
128                 return 0
129                 ;;
130         wndr3700)
131                 local hw_magic
132
133                 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
134                 [ "$magic_long" != "$hw_magic" ] && {
135                         echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
136                         return 1
137                 }
138                 return 0
139                 ;;
140         wrt160nl)
141                 [ "$magic" != "4e4c" ] && {
142                         echo "Invalid image type."
143                         return 1
144                 }
145                 return 0
146                 ;;
147         routerstation | \
148         routerstation-pro | \
149         ls-sr71 | \
150         pb42 | \
151         pb44 | \
152         eap7660d | \
153         ja76pf )
154                 [ "$magic" != "4349" ] && {
155                         echo "Invalid image. Use *-sysupgrade.bin files on this board"
156                         return 1
157                 }
158
159                 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
160                 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
161
162                 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
163                         return 0
164                 else
165                         echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
166                         return 1
167                 fi
168                 return 0
169                 ;;
170         esac
171
172         echo "Sysupgrade is not yet supported on $board."
173         return 1
174 }
175
176 platform_do_upgrade() {
177         local board=$(ar71xx_board_name)
178
179         case "$board" in
180         routerstation | \
181         routerstation-pro | \
182         ls-sr71 | \
183         eap7660d | \
184         ja76pf)
185                 platform_do_upgrade_combined "$ARGV"
186                 ;;
187         all0258n )
188                 platform_do_upgrade_all0258n "$ARGV"
189                 ;;
190         *)
191                 default_do_upgrade "$ARGV"
192                 ;;
193         esac
194 }
195
196 disable_watchdog() {
197         killall watchdog
198         ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
199                 echo 'Could not disable watchdog'
200                 return 1
201         }
202 }
203
204 append sysupgrade_pre_upgrade disable_watchdog