[POWERPC] fsl: Add CS4270 i2c data to fsl_soc.c
[deliverable/linux.git] / arch / powerpc / boot / wrapper
CommitLineData
2bf11819
PM
1#!/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
d4740373
GL
24# Stop execution if any command fails
25set -e
26
7f66c1fd
GL
27# Allow for verbose output
28if [ "$V" = 1 ]; then
29 set -x
30fi
31
2bf11819
PM
32# defaults
33kernel=
34ofile=zImage
35platform=of
36initrd=
37dtb=
38dts=
39cacheit=
11c146cc 40binary=
a9903811 41gzip=.gz
2bf11819
PM
42
43# cross-compilation prefix
44CROSS=
45
46# directory for object and other files used by this script
47object=arch/powerpc/boot
5c539ee3 48objbin=$object
2bf11819
PM
49
50# directory for working files
51tmpdir=.
52
53usage() {
54 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
55 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
a9903811 56 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
2bf11819
PM
57 exit 1
58}
59
60while [ "$#" -gt 0 ]; do
61 case "$1" in
62 -o)
63 shift
64 [ "$#" -gt 0 ] || usage
65 ofile="$1"
66 ;;
67 -p)
68 shift
69 [ "$#" -gt 0 ] || usage
70 platform="$1"
71 ;;
72 -i)
73 shift
74 [ "$#" -gt 0 ] || usage
75 initrd="$1"
76 ;;
77 -d)
78 shift
79 [ "$#" -gt 0 ] || usage
80 dtb="$1"
81 ;;
82 -s)
83 shift
84 [ "$#" -gt 0 ] || usage
85 dts="$1"
86 ;;
87 -c)
88 cacheit=y
89 ;;
90 -C)
91 shift
92 [ "$#" -gt 0 ] || usage
93 CROSS="$1"
94 ;;
95 -D)
96 shift
97 [ "$#" -gt 0 ] || usage
98 object="$1"
5c539ee3 99 objbin="$1"
2bf11819
PM
100 ;;
101 -W)
102 shift
103 [ "$#" -gt 0 ] || usage
104 tmpdir="$1"
105 ;;
a9903811
SW
106 --no-gzip)
107 gzip=
108 ;;
2bf11819
PM
109 -?)
110 usage
111 ;;
112 *)
113 [ -z "$kernel" ] || usage
114 kernel="$1"
115 ;;
116 esac
117 shift
118done
119
120if [ -n "$dts" ]; then
701172d1
DW
121 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
122 dts="$object/dts/$dts"
123 fi
2bf11819
PM
124 if [ -z "$dtb" ]; then
125 dtb="$platform.dtb"
126 fi
e2dc87a1 127 $object/dtc -O dtb -o "$dtb" -b 0 "$dts"
2bf11819
PM
128fi
129
130if [ -z "$kernel" ]; then
131 kernel=vmlinux
132fi
133
134platformo=$object/"$platform".o
135lds=$object/zImage.lds
136ext=strip
137objflags=-S
138tmp=$tmpdir/zImage.$$.o
139ksection=.kernel:vmlinux.strip
140isection=.kernel:initrd
141
142case "$platform" in
143pmac|pseries|chrp)
144 platformo=$object/of.o
145 ;;
627aa944 146coff)
2bf11819
PM
147 platformo=$object/of.o
148 lds=$object/zImage.coff.lds
149 ;;
150miboot|uboot)
151 # miboot and U-boot want just the bare bits, not an ELF binary
152 ext=bin
153 objflags="-O binary"
154 tmp="$ofile"
155 ksection=image
156 isection=initrd
157 ;;
0fdd717e 158cuboot*)
11c146cc 159 binary=y
0fdd717e 160 gzip=
25431333
GL
161 case "$platform" in
162 *-mpc885ads|*-adder875*|*-ep88xc)
163 platformo=$object/cuboot-8xx.o
164 ;;
165 *5200*|*-motionpro)
166 platformo=$object/cuboot-52xx.o
167 ;;
168 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
169 platformo=$object/cuboot-pq2.o
170 ;;
171 *-mpc824*)
172 platformo=$object/cuboot-824x.o
173 ;;
174 *-mpc83*)
175 platformo=$object/cuboot-83xx.o
176 ;;
ff880112 177 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
25431333
GL
178 platformo=$object/cuboot-85xx-cpm2.o
179 ;;
a72a6f53 180 *-mpc85*|*-tqm8540|*-sbc85*)
25431333
GL
181 platformo=$object/cuboot-85xx.o
182 ;;
183 esac
0fdd717e 184 ;;
bafdb645
GL
185ps3)
186 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
187 lds=$object/zImage.ps3.lds
188 gzip=
189 ext=bin
190 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
191 ksection=.kernel:vmlinux.bin
192 isection=.kernel:initrd
193 ;;
a55387e5 194ep88xc|ep405|ep8248e)
11c146cc
SW
195 platformo="$object/fixed-head.o $object/$platform.o"
196 binary=y
197 ;;
a55387e5
SW
198adder875-redboot)
199 platformo="$object/fixed-head.o $object/redboot-8xx.o"
200 binary=y
201 ;;
d2477b5c
GL
202simpleboot-virtex405-*)
203 platformo="$object/virtex405-head.o $object/simpleboot.o"
204 binary=y
205 ;;
2bf11819
PM
206esac
207
208vmz="$tmpdir/`basename \"$kernel\"`.$ext"
1383a34f 209if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
2bf11819 210 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
a9903811
SW
211
212 if [ -n "$gzip" ]; then
213 gzip -f -9 "$vmz.$$"
214 fi
215
2bf11819 216 if [ -n "$cacheit" ]; then
a9903811 217 mv -f "$vmz.$$$gzip" "$vmz$gzip"
2bf11819
PM
218 else
219 vmz="$vmz.$$"
220 fi
221fi
222
a9903811
SW
223vmz="$vmz$gzip"
224
a6afacb6
DG
225# Extract kernel version information, some platforms want to include
226# it in the image header
227version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
228 cut -d' ' -f3`
229if [ -n "$version" ]; then
230 uboot_version="-n Linux-$version"
231fi
0fdd717e 232
b18796d3
KG
233# physical offset of kernel image
234membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
235
0fdd717e
SW
236case "$platform" in
237uboot)
238 rm -f "$ofile"
b18796d3 239 mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
a6afacb6 240 $uboot_version -d "$vmz" "$ofile"
2bf11819 241 if [ -z "$cacheit" ]; then
a9903811 242 rm -f "$vmz"
2bf11819
PM
243 fi
244 exit 0
245 ;;
246esac
247
248addsec() {
249 ${CROSS}objcopy $4 $1 \
250 --add-section=$3="$2" \
251 --set-section-flags=$3=contents,alloc,load,readonly,data
252}
253
a9903811 254addsec $tmp "$vmz" $ksection $object/empty.o
2bf11819 255if [ -z "$cacheit" ]; then
a9903811 256 rm -f "$vmz"
2bf11819
PM
257fi
258
259if [ -n "$initrd" ]; then
c888554b 260 addsec $tmp "$initrd" $isection
2bf11819
PM
261fi
262
263if [ -n "$dtb" ]; then
c888554b 264 addsec $tmp "$dtb" .kernel:dtb
e9c4b4bd
MG
265 if [ -n "$dts" ]; then
266 rm $dtb
267 fi
2bf11819
PM
268fi
269
270if [ "$platform" != "miboot" ]; then
271 ${CROSS}ld -m elf32ppc -T $lds -o "$ofile" \
cd197ffc 272 $platformo $tmp $object/wrapper.a
2bf11819
PM
273 rm $tmp
274fi
275
a6afacb6
DG
276# Some platforms need the zImage's entry point and base address
277base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
278entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
279
11c146cc
SW
280if [ -n "$binary" ]; then
281 mv "$ofile" "$ofile".elf
aeb4552f 282 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
11c146cc
SW
283fi
284
2bf11819
PM
285# post-processing needed for some platforms
286case "$platform" in
287pseries|chrp)
5c539ee3 288 $objbin/addnote "$ofile"
2bf11819 289 ;;
627aa944 290coff)
cd197ffc 291 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
5c539ee3 292 $objbin/hack-coff "$ofile"
2bf11819 293 ;;
0fdd717e 294cuboot*)
aeb4552f 295 gzip -f -9 "$ofile"
0fdd717e 296 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
aeb4552f 297 $uboot_version -d "$ofile".gz "$ofile"
0fdd717e 298 ;;
f6dfc805
DG
299treeboot*)
300 mv "$ofile" "$ofile.elf"
5c539ee3 301 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
f6dfc805
DG
302 if [ -z "$cacheit" ]; then
303 rm -f "$ofile.elf"
304 fi
305 exit 0
306 ;;
bafdb645 307ps3)
5761eaa3
GL
308 # The ps3's loader supports loading a gzipped binary image from flash
309 # rom to ram addr zero. The loader then enters the system reset
310 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
311 # a binary image of the kernel to be at addr zero, and yet have a
312 # suitable bootwrapper entry at 0x100. To construct the final rom
313 # image 512 bytes from offset 0x100 is copied to the bootwrapper
314 # place holder at symbol __system_reset_kernel. The 512 bytes of the
315 # bootwrapper entry code at symbol __system_reset_overlay is then
316 # copied to offset 0x100. At runtime the bootwrapper program copies
317 # the data at __system_reset_kernel back to addr 0x100.
bafdb645 318
aeb4552f 319 system_reset_overlay=0x`${CROSS}nm "$ofile" \
bafdb645
GL
320 | grep ' __system_reset_overlay$' \
321 | cut -d' ' -f1`
322 system_reset_overlay=`printf "%d" $system_reset_overlay`
aeb4552f 323 system_reset_kernel=0x`${CROSS}nm "$ofile" \
bafdb645
GL
324 | grep ' __system_reset_kernel$' \
325 | cut -d' ' -f1`
326 system_reset_kernel=`printf "%d" $system_reset_kernel`
327 overlay_dest="256"
5761eaa3 328 overlay_size="512"
bafdb645 329
aeb4552f
SW
330 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
331
d4740373
GL
332 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
333 skip=$overlay_dest seek=$system_reset_kernel \
334 count=$overlay_size bs=1
bafdb645 335
d4740373
GL
336 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
337 skip=$system_reset_overlay seek=$overlay_dest \
338 count=$overlay_size bs=1
bafdb645 339
928b9695
DW
340 odir="$(dirname "$ofile.bin")"
341 rm -f "$odir/otheros.bld"
342 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"
bafdb645 343 ;;
2bf11819 344esac
This page took 0.187277 seconds and 5 git commands to generate.