Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / powerpc / boot / wrapper
blob4db487d1d2a84f1c7707cde516bc6fa9984078a2
1 #!/bin/sh
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.
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.
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 .)
24 # Stop execution if any command fails
25 set -e
27 # Allow for verbose output
28 if [ "$V" = 1 ]; then
29 set -x
32 # defaults
33 kernel=
34 ofile=zImage
35 platform=of
36 initrd=
37 dtb=
38 dts=
39 cacheit=
40 binary=
41 gzip=.gz
43 # cross-compilation prefix
44 CROSS=
46 # directory for object and other files used by this script
47 object=arch/powerpc/boot
48 objbin=$object
50 # directory for working files
51 tmpdir=.
53 usage() {
54 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
55 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
56 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
57 exit 1
60 while [ "$#" -gt 0 ]; do
61 case "$1" in
62 -o)
63 shift
64 [ "$#" -gt 0 ] || usage
65 ofile="$1"
67 -p)
68 shift
69 [ "$#" -gt 0 ] || usage
70 platform="$1"
72 -i)
73 shift
74 [ "$#" -gt 0 ] || usage
75 initrd="$1"
77 -d)
78 shift
79 [ "$#" -gt 0 ] || usage
80 dtb="$1"
82 -s)
83 shift
84 [ "$#" -gt 0 ] || usage
85 dts="$1"
87 -c)
88 cacheit=y
90 -C)
91 shift
92 [ "$#" -gt 0 ] || usage
93 CROSS="$1"
95 -D)
96 shift
97 [ "$#" -gt 0 ] || usage
98 object="$1"
99 objbin="$1"
102 shift
103 [ "$#" -gt 0 ] || usage
104 tmpdir="$1"
106 --no-gzip)
107 gzip=
110 usage
113 [ -z "$kernel" ] || usage
114 kernel="$1"
116 esac
117 shift
118 done
120 if [ -n "$dts" ]; then
121 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
122 dts="$object/dts/$dts"
124 if [ -z "$dtb" ]; then
125 dtb="$platform.dtb"
127 $object/dtc -O dtb -o "$dtb" -b 0 "$dts"
130 if [ -z "$kernel" ]; then
131 kernel=vmlinux
134 platformo=$object/"$platform".o
135 lds=$object/zImage.lds
136 ext=strip
137 objflags=-S
138 tmp=$tmpdir/zImage.$$.o
139 ksection=.kernel:vmlinux.strip
140 isection=.kernel:initrd
141 link_address='0x400000'
143 case "$platform" in
144 pseries)
145 platformo=$object/of.o
146 link_address='0x4000000'
148 pmac|chrp)
149 platformo=$object/of.o
151 coff)
152 platformo=$object/of.o
153 lds=$object/zImage.coff.lds
154 link_address='0x500000'
156 miboot|uboot)
157 # miboot and U-boot want just the bare bits, not an ELF binary
158 ext=bin
159 objflags="-O binary"
160 tmp="$ofile"
161 ksection=image
162 isection=initrd
164 cuboot*)
165 binary=y
166 gzip=
167 case "$platform" in
168 *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc)
169 platformo=$object/cuboot-8xx.o
171 *5200*|*-motionpro)
172 platformo=$object/cuboot-52xx.o
174 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
175 platformo=$object/cuboot-pq2.o
177 *-mpc824*)
178 platformo=$object/cuboot-824x.o
180 *-mpc83*|*-asp834x*)
181 platformo=$object/cuboot-83xx.o
183 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
184 platformo=$object/cuboot-85xx-cpm2.o
186 *-mpc85*|*-tqm85*|*-sbc85*)
187 platformo=$object/cuboot-85xx.o
189 *-amigaone)
190 link_address='0x800000'
192 esac
194 ps3)
195 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
196 lds=$object/zImage.ps3.lds
197 gzip=
198 ext=bin
199 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
200 ksection=.kernel:vmlinux.bin
201 isection=.kernel:initrd
202 link_address=''
204 ep88xc|ep405|ep8248e)
205 platformo="$object/fixed-head.o $object/$platform.o"
206 binary=y
208 adder875-redboot)
209 platformo="$object/fixed-head.o $object/redboot-8xx.o"
210 binary=y
212 simpleboot-virtex405-*)
213 platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
214 binary=y
216 simpleboot-virtex440-*)
217 platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
218 binary=y
220 simpleboot-*)
221 platformo="$object/fixed-head.o $object/simpleboot.o"
222 binary=y
224 asp834x-redboot)
225 platformo="$object/fixed-head.o $object/redboot-83xx.o"
226 binary=y
228 xpedite52*)
229 link_address='0x1400000'
230 platformo=$object/cuboot-85xx.o
232 esac
234 vmz="$tmpdir/`basename \"$kernel\"`.$ext"
235 if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
236 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
238 if [ -n "$gzip" ]; then
239 gzip -f -9 "$vmz.$$"
242 if [ -n "$cacheit" ]; then
243 mv -f "$vmz.$$$gzip" "$vmz$gzip"
244 else
245 vmz="$vmz.$$"
249 vmz="$vmz$gzip"
251 # Extract kernel version information, some platforms want to include
252 # it in the image header
253 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
254 cut -d' ' -f3`
255 if [ -n "$version" ]; then
256 uboot_version="-n Linux-$version"
259 # physical offset of kernel image
260 membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
262 case "$platform" in
263 uboot)
264 rm -f "$ofile"
265 mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
266 $uboot_version -d "$vmz" "$ofile"
267 if [ -z "$cacheit" ]; then
268 rm -f "$vmz"
270 exit 0
272 esac
274 addsec() {
275 ${CROSS}objcopy $4 $1 \
276 --add-section=$3="$2" \
277 --set-section-flags=$3=contents,alloc,load,readonly,data
280 addsec $tmp "$vmz" $ksection $object/empty.o
281 if [ -z "$cacheit" ]; then
282 rm -f "$vmz"
285 if [ -n "$initrd" ]; then
286 addsec $tmp "$initrd" $isection
289 if [ -n "$dtb" ]; then
290 addsec $tmp "$dtb" .kernel:dtb
291 if [ -n "$dts" ]; then
292 rm $dtb
296 if [ "$platform" != "miboot" ]; then
297 if [ -n "$link_address" ] ; then
298 text_start="-Ttext $link_address --defsym _start=$link_address"
300 ${CROSS}ld -m elf32ppc -T $lds $text_start -o "$ofile" \
301 $platformo $tmp $object/wrapper.a
302 rm $tmp
305 # Some platforms need the zImage's entry point and base address
306 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
307 entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
309 if [ -n "$binary" ]; then
310 mv "$ofile" "$ofile".elf
311 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
314 # post-processing needed for some platforms
315 case "$platform" in
316 pseries|chrp)
317 $objbin/addnote "$ofile"
319 coff)
320 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
321 $objbin/hack-coff "$ofile"
323 cuboot*)
324 gzip -f -9 "$ofile"
325 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
326 $uboot_version -d "$ofile".gz "$ofile"
328 treeboot*)
329 mv "$ofile" "$ofile.elf"
330 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
331 if [ -z "$cacheit" ]; then
332 rm -f "$ofile.elf"
334 exit 0
336 ps3)
337 # The ps3's loader supports loading a gzipped binary image from flash
338 # rom to ram addr zero. The loader then enters the system reset
339 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
340 # a binary image of the kernel to be at addr zero, and yet have a
341 # suitable bootwrapper entry at 0x100. To construct the final rom
342 # image 512 bytes from offset 0x100 is copied to the bootwrapper
343 # place holder at symbol __system_reset_kernel. The 512 bytes of the
344 # bootwrapper entry code at symbol __system_reset_overlay is then
345 # copied to offset 0x100. At runtime the bootwrapper program copies
346 # the data at __system_reset_kernel back to addr 0x100.
348 system_reset_overlay=0x`${CROSS}nm "$ofile" \
349 | grep ' __system_reset_overlay$' \
350 | cut -d' ' -f1`
351 system_reset_overlay=`printf "%d" $system_reset_overlay`
352 system_reset_kernel=0x`${CROSS}nm "$ofile" \
353 | grep ' __system_reset_kernel$' \
354 | cut -d' ' -f1`
355 system_reset_kernel=`printf "%d" $system_reset_kernel`
356 overlay_dest="256"
357 overlay_size="512"
359 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
361 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
362 skip=$overlay_dest seek=$system_reset_kernel \
363 count=$overlay_size bs=1
365 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
366 skip=$system_reset_overlay seek=$overlay_dest \
367 count=$overlay_size bs=1
369 odir="$(dirname "$ofile.bin")"
370 rm -f "$odir/otheros.bld"
371 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"
373 esac