blob: ac9e9a58b2b0587bfa1a9c5aaa4a0190fbdfc326 [file] [log] [blame]
Paul Mackerras2bf11812006-09-27 22:47:03 +10001#!/bin/sh
2
3# Copyright (C) 2006 Paul Mackerras, IBM Corporation <paulus@samba.org>
4# This program may be used under the terms of version 2 of the GNU
5# General Public License.
6
7# This script takes a kernel binary and optionally an initrd image
8# and/or a device-tree blob, and creates a bootable zImage for a
9# given platform.
10
11# Options:
12# -o zImage specify output file
13# -p platform specify platform (links in $platform.o)
14# -i initrd specify initrd file
15# -d devtree specify device-tree blob
16# -s tree.dts specify device-tree source file (needs dtc installed)
17# -c cache $kernel.strip.gz (use if present & newer, else make)
18# -C prefix specify command prefix for cross-building tools
19# (strip, objcopy, ld)
20# -D dir specify directory containing data files used by script
21# (default ./arch/powerpc/boot)
22# -W dir specify working directory for temporary files (default .)
23
Grant Likelyd4740372007-10-23 14:27:36 +100024# Stop execution if any command fails
25set -e
26
Grant Likely7f66c1f2007-10-23 14:27:31 +100027# Allow for verbose output
28if [ "$V" = 1 ]; then
29 set -x
30fi
31
Paul Mackerras2bf11812006-09-27 22:47:03 +100032# defaults
33kernel=
34ofile=zImage
35platform=of
36initrd=
37dtb=
38dts=
39cacheit=
Scott Wood11c146c2007-09-14 14:58:25 -050040binary=
Scott Wooda9903812007-03-16 12:27:59 -050041gzip=.gz
Paul Mackerras2bf11812006-09-27 22:47:03 +100042
43# cross-compilation prefix
44CROSS=
45
46# directory for object and other files used by this script
47object=arch/powerpc/boot
David Woodhouse5c539ee32007-12-03 13:52:05 +110048objbin=$object
Lucian Adrian Grijincuc79b2972009-07-23 00:13:37 +000049dtc=scripts/dtc/dtc
Paul Mackerras2bf11812006-09-27 22:47:03 +100050
51# directory for working files
52tmpdir=.
53
54usage() {
55 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
56 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
Scott Wooda9903812007-03-16 12:27:59 -050057 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
Paul Mackerras2bf11812006-09-27 22:47:03 +100058 exit 1
59}
60
61while [ "$#" -gt 0 ]; do
62 case "$1" in
63 -o)
64 shift
65 [ "$#" -gt 0 ] || usage
66 ofile="$1"
67 ;;
68 -p)
69 shift
70 [ "$#" -gt 0 ] || usage
71 platform="$1"
72 ;;
73 -i)
74 shift
75 [ "$#" -gt 0 ] || usage
76 initrd="$1"
77 ;;
78 -d)
79 shift
80 [ "$#" -gt 0 ] || usage
81 dtb="$1"
82 ;;
83 -s)
84 shift
85 [ "$#" -gt 0 ] || usage
86 dts="$1"
87 ;;
88 -c)
89 cacheit=y
90 ;;
91 -C)
92 shift
93 [ "$#" -gt 0 ] || usage
94 CROSS="$1"
95 ;;
96 -D)
97 shift
98 [ "$#" -gt 0 ] || usage
99 object="$1"
David Woodhouse5c539ee32007-12-03 13:52:05 +1100100 objbin="$1"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000101 ;;
102 -W)
103 shift
104 [ "$#" -gt 0 ] || usage
105 tmpdir="$1"
106 ;;
Scott Wooda9903812007-03-16 12:27:59 -0500107 --no-gzip)
108 gzip=
109 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000110 -?)
111 usage
112 ;;
113 *)
114 [ -z "$kernel" ] || usage
115 kernel="$1"
116 ;;
117 esac
118 shift
119done
120
121if [ -n "$dts" ]; then
David Woodhouse701172d12007-12-03 13:49:24 +1100122 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
123 dts="$object/dts/$dts"
124 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000125 if [ -z "$dtb" ]; then
126 dtb="$platform.dtb"
127 fi
Lucian Adrian Grijincuc79b2972009-07-23 00:13:37 +0000128 $dtc -O dtb -o "$dtb" -b 0 "$dts"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000129fi
130
131if [ -z "$kernel" ]; then
132 kernel=vmlinux
133fi
134
135platformo=$object/"$platform".o
136lds=$object/zImage.lds
137ext=strip
138objflags=-S
139tmp=$tmpdir/zImage.$$.o
140ksection=.kernel:vmlinux.strip
141isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000142link_address='0x400000'
Paul Mackerras2bf11812006-09-27 22:47:03 +1000143
144case "$platform" in
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000145pseries)
146 platformo=$object/of.o
147 link_address='0x4000000'
148 ;;
149pmac|chrp)
Paul Mackerras2bf11812006-09-27 22:47:03 +1000150 platformo=$object/of.o
151 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000152coff)
Paul Mackerras2bf11812006-09-27 22:47:03 +1000153 platformo=$object/of.o
154 lds=$object/zImage.coff.lds
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000155 link_address='0x500000'
Paul Mackerras2bf11812006-09-27 22:47:03 +1000156 ;;
157miboot|uboot)
158 # miboot and U-boot want just the bare bits, not an ELF binary
159 ext=bin
160 objflags="-O binary"
161 tmp="$ofile"
162 ksection=image
163 isection=initrd
164 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000165cuboot*)
Scott Wood11c146c2007-09-14 14:58:25 -0500166 binary=y
Scott Wood0fdd7172007-04-17 09:25:50 +1000167 gzip=
Grant Likely25431332008-02-07 05:18:34 +1100168 case "$platform" in
Scott Wood8dd217b2008-07-31 19:10:22 +0300169 *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc)
Grant Likely25431332008-02-07 05:18:34 +1100170 platformo=$object/cuboot-8xx.o
171 ;;
172 *5200*|*-motionpro)
173 platformo=$object/cuboot-52xx.o
174 ;;
175 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
176 platformo=$object/cuboot-pq2.o
177 ;;
178 *-mpc824*)
179 platformo=$object/cuboot-824x.o
180 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100181 *-mpc83*|*-asp834x*)
Grant Likely25431332008-02-07 05:18:34 +1100182 platformo=$object/cuboot-83xx.o
183 ;;
Alexandr Smirnovff880112008-03-04 19:34:26 +0300184 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
Grant Likely25431332008-02-07 05:18:34 +1100185 platformo=$object/cuboot-85xx-cpm2.o
186 ;;
Wolfgang Grandegger6dd1b642008-06-06 13:50:04 +0200187 *-mpc85*|*-tqm85*|*-sbc85*)
Grant Likely25431332008-02-07 05:18:34 +1100188 platformo=$object/cuboot-85xx.o
189 ;;
Gerhard Pircher8f237352009-02-10 12:26:11 +0000190 *-amigaone)
191 link_address='0x800000'
192 ;;
Grant Likely25431332008-02-07 05:18:34 +1100193 esac
Scott Wood0fdd7172007-04-17 09:25:50 +1000194 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000195ps3)
196 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
197 lds=$object/zImage.ps3.lds
198 gzip=
199 ext=bin
200 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
201 ksection=.kernel:vmlinux.bin
202 isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000203 link_address=''
Geoff Levandbafdb642007-07-04 09:07:18 +1000204 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600205ep88xc|ep405|ep8248e)
Scott Wood11c146c2007-09-14 14:58:25 -0500206 platformo="$object/fixed-head.o $object/$platform.o"
207 binary=y
208 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600209adder875-redboot)
210 platformo="$object/fixed-head.o $object/redboot-8xx.o"
211 binary=y
212 ;;
Grant Likelyd2477b52008-03-19 04:07:43 +1100213simpleboot-virtex405-*)
John Linnd58577d2008-07-02 15:11:28 -0700214 platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
215 binary=y
216 ;;
217simpleboot-virtex440-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600218 platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
Grant Likelyd2477b52008-03-19 04:07:43 +1100219 binary=y
220 ;;
Grant Likely1d46e372008-07-04 00:59:37 -0600221simpleboot-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600222 platformo="$object/fixed-head.o $object/simpleboot.o"
Grant Likely1d46e372008-07-04 00:59:37 -0600223 binary=y
224 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100225asp834x-redboot)
226 platformo="$object/fixed-head.o $object/redboot-83xx.o"
227 binary=y
228 ;;
Nate Case24760822009-06-11 14:43:01 -0500229xpedite52*)
230 link_address='0x1400000'
231 platformo=$object/cuboot-85xx.o
232 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000233esac
234
235vmz="$tmpdir/`basename \"$kernel\"`.$ext"
Milton Miller1383a342007-03-28 02:21:04 -0600236if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
Paul Mackerras2bf11812006-09-27 22:47:03 +1000237 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
Scott Wooda9903812007-03-16 12:27:59 -0500238
239 if [ -n "$gzip" ]; then
240 gzip -f -9 "$vmz.$$"
241 fi
242
Paul Mackerras2bf11812006-09-27 22:47:03 +1000243 if [ -n "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500244 mv -f "$vmz.$$$gzip" "$vmz$gzip"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000245 else
246 vmz="$vmz.$$"
247 fi
248fi
249
Scott Wooda9903812007-03-16 12:27:59 -0500250vmz="$vmz$gzip"
251
David Gibsona6afacb2007-05-01 10:20:20 +1000252# Extract kernel version information, some platforms want to include
253# it in the image header
254version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
255 cut -d' ' -f3`
256if [ -n "$version" ]; then
257 uboot_version="-n Linux-$version"
258fi
Scott Wood0fdd7172007-04-17 09:25:50 +1000259
Kumar Galab18796d2008-04-16 05:52:29 +1000260# physical offset of kernel image
261membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
262
Scott Wood0fdd7172007-04-17 09:25:50 +1000263case "$platform" in
264uboot)
265 rm -f "$ofile"
Kumar Galab18796d2008-04-16 05:52:29 +1000266 mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
David Gibsona6afacb2007-05-01 10:20:20 +1000267 $uboot_version -d "$vmz" "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000268 if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500269 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000270 fi
271 exit 0
272 ;;
273esac
274
275addsec() {
276 ${CROSS}objcopy $4 $1 \
277 --add-section=$3="$2" \
278 --set-section-flags=$3=contents,alloc,load,readonly,data
279}
280
Scott Wooda9903812007-03-16 12:27:59 -0500281addsec $tmp "$vmz" $ksection $object/empty.o
Paul Mackerras2bf11812006-09-27 22:47:03 +1000282if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500283 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000284fi
285
286if [ -n "$initrd" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700287 addsec $tmp "$initrd" $isection
Paul Mackerras2bf11812006-09-27 22:47:03 +1000288fi
289
290if [ -n "$dtb" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700291 addsec $tmp "$dtb" .kernel:dtb
Mark A. Greere9c4b4b2006-11-08 17:50:44 -0700292 if [ -n "$dts" ]; then
293 rm $dtb
294 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000295fi
296
297if [ "$platform" != "miboot" ]; then
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000298 if [ -n "$link_address" ] ; then
299 text_start="-Ttext $link_address --defsym _start=$link_address"
300 fi
301 ${CROSS}ld -m elf32ppc -T $lds $text_start -o "$ofile" \
David Gibsoncd197ff2007-03-05 14:24:52 +1100302 $platformo $tmp $object/wrapper.a
Paul Mackerras2bf11812006-09-27 22:47:03 +1000303 rm $tmp
304fi
305
David Gibsona6afacb2007-05-01 10:20:20 +1000306# Some platforms need the zImage's entry point and base address
307base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
308entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
309
Scott Wood11c146c2007-09-14 14:58:25 -0500310if [ -n "$binary" ]; then
311 mv "$ofile" "$ofile".elf
Scott Woodaeb45522007-10-25 02:56:28 +1000312 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
Scott Wood11c146c2007-09-14 14:58:25 -0500313fi
314
Paul Mackerras2bf11812006-09-27 22:47:03 +1000315# post-processing needed for some platforms
316case "$platform" in
Paul Mackerras5663a122008-10-31 22:27:17 +1100317pseries|chrp)
318 $objbin/addnote "$ofile"
Paul Mackerras0dcd4402008-10-20 17:42:42 +0000319 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000320coff)
David Gibsoncd197ff2007-03-05 14:24:52 +1100321 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
David Woodhouse5c539ee32007-12-03 13:52:05 +1100322 $objbin/hack-coff "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000323 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000324cuboot*)
Scott Woodaeb45522007-10-25 02:56:28 +1000325 gzip -f -9 "$ofile"
Scott Wood0fdd7172007-04-17 09:25:50 +1000326 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
Scott Woodaeb45522007-10-25 02:56:28 +1000327 $uboot_version -d "$ofile".gz "$ofile"
Scott Wood0fdd7172007-04-17 09:25:50 +1000328 ;;
David Gibsonf6dfc802007-05-08 14:10:01 +1000329treeboot*)
330 mv "$ofile" "$ofile.elf"
David Woodhouse5c539ee32007-12-03 13:52:05 +1100331 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
David Gibsonf6dfc802007-05-08 14:10:01 +1000332 if [ -z "$cacheit" ]; then
333 rm -f "$ofile.elf"
334 fi
335 exit 0
336 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000337ps3)
Geoff Levand5761eaa2008-03-28 07:41:45 +1100338 # The ps3's loader supports loading a gzipped binary image from flash
339 # rom to ram addr zero. The loader then enters the system reset
340 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
341 # a binary image of the kernel to be at addr zero, and yet have a
342 # suitable bootwrapper entry at 0x100. To construct the final rom
343 # image 512 bytes from offset 0x100 is copied to the bootwrapper
344 # place holder at symbol __system_reset_kernel. The 512 bytes of the
345 # bootwrapper entry code at symbol __system_reset_overlay is then
346 # copied to offset 0x100. At runtime the bootwrapper program copies
347 # the data at __system_reset_kernel back to addr 0x100.
Geoff Levandbafdb642007-07-04 09:07:18 +1000348
Scott Woodaeb45522007-10-25 02:56:28 +1000349 system_reset_overlay=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000350 | grep ' __system_reset_overlay$' \
351 | cut -d' ' -f1`
352 system_reset_overlay=`printf "%d" $system_reset_overlay`
Scott Woodaeb45522007-10-25 02:56:28 +1000353 system_reset_kernel=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000354 | grep ' __system_reset_kernel$' \
355 | cut -d' ' -f1`
356 system_reset_kernel=`printf "%d" $system_reset_kernel`
357 overlay_dest="256"
Geoff Levand5761eaa2008-03-28 07:41:45 +1100358 overlay_size="512"
Geoff Levandbafdb642007-07-04 09:07:18 +1000359
Scott Woodaeb45522007-10-25 02:56:28 +1000360 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
361
Grant Likelyd4740372007-10-23 14:27:36 +1000362 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
363 skip=$overlay_dest seek=$system_reset_kernel \
364 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000365
Grant Likelyd4740372007-10-23 14:27:36 +1000366 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
367 skip=$system_reset_overlay seek=$overlay_dest \
368 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000369
David Woodhouse928b9692007-12-03 13:48:03 +1100370 odir="$(dirname "$ofile.bin")"
371 rm -f "$odir/otheros.bld"
372 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"
Geoff Levandbafdb642007-07-04 09:07:18 +1000373 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000374esac