ar71xx: TEW-712BR user space support
[15.05/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|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)
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 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 platform_check_image() {
69         local board=$(ar71xx_board_name)
70         local magic="$(get_magic_word "$1")"
71         local magic_long="$(get_magic_long "$1")"
72
73         [ "$ARGC" -gt 1 ] && return 1
74
75         case "$board" in
76         all0258n )
77                 platform_check_image_all0258n "$1" && return 0
78                 return 1
79                 ;;
80         alfa-ap96 | \
81         alfa-nx | \
82         ap113 | \
83         ap121 | \
84         ap121-mini | \
85         ap136 | \
86         ap96 | \
87         db120 | \
88         hornet-ub | \
89         zcn-1523h-2 | \
90         zcn-1523h-5)
91                 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
92                         echo "Invalid image type."
93                         return 1
94                 }
95                 return 0
96                 ;;
97         ap81 | \
98         ap83 | \
99         dir-600-a1 | \
100         dir-615-c1 | \
101         dir-615-e4 | \
102         dir-825-b1 | \
103         ew-dorin | \
104         ew-dorin-router | \
105         mzk-w04nu | \
106         mzk-w300nh | \
107         tew-632brp | \
108         tew-673gru | \
109         tew-712br | \
110         wrt400n | \
111         airrouter | \
112         bullet-m | \
113         nanostation-m | \
114         rocket-m | \
115         rw2458n | \
116         wzr-hp-g300nh2 | \
117         wzr-hp-g300nh | \
118         wzr-hp-g450h | \
119         wzr-hp-ag300h | \
120         whr-g301n | \
121         whr-hp-g300n | \
122         whr-hp-gn | \
123         wlae-ag300n | \
124         nbg460n_550n_550nh | \
125         unifi )
126                 [ "$magic" != "2705" ] && {
127                         echo "Invalid image type."
128                         return 1
129                 }
130                 return 0
131                 ;;
132         om2p | \
133         om2p-lc)
134                 platform_check_image_om2p "$magic_long" "$1" && return 0
135                 return 1
136                 ;;
137         tl-mr11u | \
138         tl-mr3020 | \
139         tl-mr3220 | \
140         tl-mr3420 | \
141         tl-wa901nd | \
142         tl-wa901nd-v2 | \
143         tl-wdr4300 | \
144         tl-wr703n | \
145         tl-wr741nd | \
146         tl-wr741nd-v4 | \
147         tl-wr841n-v1 | \
148         tl-wr841n-v7 | \
149         tl-wr941nd | \
150         tl-wr1041n-v2 | \
151         tl-wr1043nd | \
152         tl-wr2543n)
153                 [ "$magic" != "0100" ] && {
154                         echo "Invalid image type."
155                         return 1
156                 }
157
158                 local hwid
159                 local imageid
160
161                 hwid=$(tplink_get_hwid)
162                 imageid=$(tplink_get_image_hwid "$1")
163
164                 [ "$hwid" != "$imageid" ] && {
165                         echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
166                         return 1
167                 }
168
169                 return 0
170                 ;;
171         wndr3700)
172                 local hw_magic
173
174                 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
175                 [ "$magic_long" != "$hw_magic" ] && {
176                         echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
177                         return 1
178                 }
179                 return 0
180                 ;;
181         wrt160nl)
182                 [ "$magic" != "4e4c" ] && {
183                         echo "Invalid image type."
184                         return 1
185                 }
186                 return 0
187                 ;;
188         routerstation | \
189         routerstation-pro | \
190         ls-sr71 | \
191         pb42 | \
192         pb44 | \
193         all0305 | \
194         eap7660d | \
195         ja76pf | \
196         ja76pf2)
197                 [ "$magic" != "4349" ] && {
198                         echo "Invalid image. Use *-sysupgrade.bin files on this board"
199                         return 1
200                 }
201
202                 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
203                 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
204
205                 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
206                         return 0
207                 else
208                         echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
209                         return 1
210                 fi
211                 return 0
212                 ;;
213         esac
214
215         echo "Sysupgrade is not yet supported on $board."
216         return 1
217 }
218
219 platform_do_upgrade() {
220         local board=$(ar71xx_board_name)
221
222         case "$board" in
223         routerstation | \
224         routerstation-pro | \
225         ls-sr71 | \
226         all0305 | \
227         eap7660d | \
228         pb42 | \
229         pb44 | \
230         ja76pf | \
231         ja76pf2)
232                 platform_do_upgrade_combined "$ARGV"
233                 ;;
234         all0258n )
235                 platform_do_upgrade_all0258n "$ARGV"
236                 ;;
237         om2p | \
238         om2p-lc)
239                 platform_do_upgrade_om2p "$ARGV"
240                 ;;
241         *)
242                 default_do_upgrade "$ARGV"
243                 ;;
244         esac
245 }
246
247 disable_watchdog() {
248         killall watchdog
249         ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
250                 echo 'Could not disable watchdog'
251                 return 1
252         }
253 }
254
255 append sysupgrade_pre_upgrade disable_watchdog