xref: /openbmc/linux/arch/powerpc/boot/wrapper (revision 9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e)
12bf11819SPaul Mackerras#!/bin/sh
200b46d22SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
32bf11819SPaul Mackerras
42bf11819SPaul Mackerras# Copyright (C) 2006 Paul Mackerras, IBM Corporation <paulus@samba.org>
52bf11819SPaul Mackerras
62bf11819SPaul Mackerras# This script takes a kernel binary and optionally an initrd image
72bf11819SPaul Mackerras# and/or a device-tree blob, and creates a bootable zImage for a
82bf11819SPaul Mackerras# given platform.
92bf11819SPaul Mackerras
102bf11819SPaul Mackerras# Options:
112bf11819SPaul Mackerras# -o zImage	specify output file
122bf11819SPaul Mackerras# -p platform	specify platform (links in $platform.o)
132bf11819SPaul Mackerras# -i initrd	specify initrd file
142bf11819SPaul Mackerras# -d devtree	specify device-tree blob
152bf11819SPaul Mackerras# -s tree.dts	specify device-tree source file (needs dtc installed)
16528229d2SBenjamin Herrenschmidt# -e esm_blob   specify ESM blob for secure images
172bf11819SPaul Mackerras# -c		cache $kernel.strip.gz (use if present & newer, else make)
182bf11819SPaul Mackerras# -C prefix	specify command prefix for cross-building tools
192bf11819SPaul Mackerras#		(strip, objcopy, ld)
202bf11819SPaul Mackerras# -D dir	specify directory containing data files used by script
212bf11819SPaul Mackerras#		(default ./arch/powerpc/boot)
222bf11819SPaul Mackerras# -W dir	specify working directory for temporary files (default .)
23f1e510bbSOliver O'Halloran# -z		use gzip (legacy)
24f1e510bbSOliver O'Halloran# -Z zsuffix    compression to use (gz, xz or none)
252bf11819SPaul Mackerras
26d4740373SGrant Likely# Stop execution if any command fails
27d4740373SGrant Likelyset -e
28d4740373SGrant Likely
29b949d009SChristophe Leroyexport LC_ALL=C
30b949d009SChristophe Leroy
317f66c1fdSGrant Likely# Allow for verbose output
327f66c1fdSGrant Likelyif [ "$V" = 1 ]; then
337f66c1fdSGrant Likely    set -x
34f61200d3SGeoff Levand    map="-Map wrapper.map"
357f66c1fdSGrant Likelyfi
367f66c1fdSGrant Likely
372bf11819SPaul Mackerras# defaults
382bf11819SPaul Mackerraskernel=
392bf11819SPaul Mackerrasofile=zImage
402bf11819SPaul Mackerrasplatform=of
412bf11819SPaul Mackerrasinitrd=
422bf11819SPaul Mackerrasdtb=
432bf11819SPaul Mackerrasdts=
44528229d2SBenjamin Herrenschmidtesm_blob=
452bf11819SPaul Mackerrascacheit=
4611c146ccSScott Woodbinary=
47f1e510bbSOliver O'Hallorancompression=.gz
48fbded57cSChristophe Leroyuboot_comp=gzip
496975a783SMichael Ellermanpie=
50147c0516SCédric Le Goaterformat=
514c078c86SBill Wendlingnotext=
5226ba9f96SBill Wendlingrodynamic=
532bf11819SPaul Mackerras
542bf11819SPaul Mackerras# cross-compilation prefix
552bf11819SPaul MackerrasCROSS=
562bf11819SPaul Mackerras
573f884bf5SPeter Tyser# mkimage wrapper script
583f884bf5SPeter TyserMKIMAGE=$srctree/scripts/mkuboot.sh
593f884bf5SPeter Tyser
602bf11819SPaul Mackerras# directory for object and other files used by this script
612bf11819SPaul Mackerrasobject=arch/powerpc/boot
625c539ee3SDavid Woodhouseobjbin=$object
63c79b2973SLucian Adrian Grijincudtc=scripts/dtc/dtc
642bf11819SPaul Mackerras
652bf11819SPaul Mackerras# directory for working files
662bf11819SPaul Mackerrastmpdir=.
672bf11819SPaul Mackerras
682bf11819SPaul Mackerrasusage() {
692bf11819SPaul Mackerras    echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
70528229d2SBenjamin Herrenschmidt    echo '       [-d devtree] [-s tree.dts] [-e esm_blob]' >&2
71528229d2SBenjamin Herrenschmidt    echo '       [-c] [-C cross-prefix] [-D datadir] [-W workingdir]' >&2
72528229d2SBenjamin Herrenschmidt    echo '       [-Z (gz|xz|none)] [--no-compression] [vmlinux]' >&2
732bf11819SPaul Mackerras    exit 1
742bf11819SPaul Mackerras}
752bf11819SPaul Mackerras
76879c26d4SGeoff Levandrun_cmd() {
77879c26d4SGeoff Levand    if [ "$V" = 1 ]; then
78879c26d4SGeoff Levand        $* 2>&1
79879c26d4SGeoff Levand    else
80879c26d4SGeoff Levand        local msg
81879c26d4SGeoff Levand
82879c26d4SGeoff Levand        set +e
83879c26d4SGeoff Levand        msg=$($* 2>&1)
84879c26d4SGeoff Levand
85879c26d4SGeoff Levand        if [ $? -ne "0" ]; then
86879c26d4SGeoff Levand                echo $msg
87879c26d4SGeoff Levand                exit 1
88879c26d4SGeoff Levand        fi
89879c26d4SGeoff Levand        set -e
90879c26d4SGeoff Levand    fi
91879c26d4SGeoff Levand}
92879c26d4SGeoff Levand
932bf11819SPaul Mackerraswhile [ "$#" -gt 0 ]; do
942bf11819SPaul Mackerras    case "$1" in
952bf11819SPaul Mackerras    -o)
962bf11819SPaul Mackerras	shift
972bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
982bf11819SPaul Mackerras	ofile="$1"
992bf11819SPaul Mackerras	;;
1002bf11819SPaul Mackerras    -p)
1012bf11819SPaul Mackerras	shift
1022bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
1032bf11819SPaul Mackerras	platform="$1"
1042bf11819SPaul Mackerras	;;
1052bf11819SPaul Mackerras    -i)
1062bf11819SPaul Mackerras	shift
1072bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
1082bf11819SPaul Mackerras	initrd="$1"
1092bf11819SPaul Mackerras	;;
1102bf11819SPaul Mackerras    -d)
1112bf11819SPaul Mackerras	shift
1122bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
1132bf11819SPaul Mackerras	dtb="$1"
1142bf11819SPaul Mackerras	;;
115528229d2SBenjamin Herrenschmidt    -e)
116528229d2SBenjamin Herrenschmidt	shift
117528229d2SBenjamin Herrenschmidt	[ "$#" -gt 0 ] || usage
118528229d2SBenjamin Herrenschmidt	esm_blob="$1"
119528229d2SBenjamin Herrenschmidt	;;
1202bf11819SPaul Mackerras    -s)
1212bf11819SPaul Mackerras	shift
1222bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
1232bf11819SPaul Mackerras	dts="$1"
1242bf11819SPaul Mackerras	;;
1252bf11819SPaul Mackerras    -c)
1262bf11819SPaul Mackerras	cacheit=y
1272bf11819SPaul Mackerras	;;
1282bf11819SPaul Mackerras    -C)
1292bf11819SPaul Mackerras	shift
1302bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
1312bf11819SPaul Mackerras	CROSS="$1"
1322bf11819SPaul Mackerras	;;
1332bf11819SPaul Mackerras    -D)
1342bf11819SPaul Mackerras	shift
1352bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
1362bf11819SPaul Mackerras	object="$1"
1375c539ee3SDavid Woodhouse	objbin="$1"
1382bf11819SPaul Mackerras	;;
1392bf11819SPaul Mackerras    -W)
1402bf11819SPaul Mackerras	shift
1412bf11819SPaul Mackerras	[ "$#" -gt 0 ] || usage
1422bf11819SPaul Mackerras	tmpdir="$1"
1432bf11819SPaul Mackerras	;;
144f1e510bbSOliver O'Halloran    -z)
145f1e510bbSOliver O'Halloran	compression=.gz
146fbded57cSChristophe Leroy	uboot_comp=gzip
147f1e510bbSOliver O'Halloran	;;
148f1e510bbSOliver O'Halloran    -Z)
149f1e510bbSOliver O'Halloran	shift
150f1e510bbSOliver O'Halloran	[ "$#" -gt 0 ] || usage
151264bffadSChristophe Leroy        [ "$1" != "gz" -o "$1" != "xz" -o "$1" != "lzma" -o "$1" != "lzo" -o "$1" != "none" ] || usage
152f1e510bbSOliver O'Halloran
153f1e510bbSOliver O'Halloran	compression=".$1"
154fbded57cSChristophe Leroy	uboot_comp=$1
155f1e510bbSOliver O'Halloran
156f1e510bbSOliver O'Halloran        if [ $compression = ".none" ]; then
157f1e510bbSOliver O'Halloran                compression=
158fbded57cSChristophe Leroy		uboot_comp=none
159fbded57cSChristophe Leroy        fi
160fbded57cSChristophe Leroy	if [ $uboot_comp = "gz" ]; then
161fbded57cSChristophe Leroy		uboot_comp=gzip
162f1e510bbSOliver O'Halloran	fi
163f1e510bbSOliver O'Halloran	;;
164a9903811SScott Wood    --no-gzip)
16587c78b61SMichael Ellerman        # a "feature" of the wrapper script is that it can be used outside
166f1e510bbSOliver O'Halloran        # the kernel tree. So keeping this around for backwards compatibility.
167f1e510bbSOliver O'Halloran        compression=
168fbded57cSChristophe Leroy	uboot_comp=none
169a9903811SScott Wood        ;;
1702bf11819SPaul Mackerras    -?)
1712bf11819SPaul Mackerras	usage
1722bf11819SPaul Mackerras	;;
1732bf11819SPaul Mackerras    *)
1742bf11819SPaul Mackerras	[ -z "$kernel" ] || usage
1752bf11819SPaul Mackerras	kernel="$1"
1762bf11819SPaul Mackerras	;;
1772bf11819SPaul Mackerras    esac
1782bf11819SPaul Mackerras    shift
1792bf11819SPaul Mackerrasdone
1802bf11819SPaul Mackerras
181f1e510bbSOliver O'Halloran
1822bf11819SPaul Mackerrasif [ -n "$dts" ]; then
183701172d1SDavid Woodhouse    if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
184701172d1SDavid Woodhouse	dts="$object/dts/$dts"
185701172d1SDavid Woodhouse    fi
1862bf11819SPaul Mackerras    if [ -z "$dtb" ]; then
1872bf11819SPaul Mackerras	dtb="$platform.dtb"
1882bf11819SPaul Mackerras    fi
189c79b2973SLucian Adrian Grijincu    $dtc -O dtb -o "$dtb" -b 0 "$dts"
1902bf11819SPaul Mackerrasfi
1912bf11819SPaul Mackerras
1922bf11819SPaul Mackerrasif [ -z "$kernel" ]; then
1932bf11819SPaul Mackerras    kernel=vmlinux
1942bf11819SPaul Mackerrasfi
1952bf11819SPaul Mackerras
19677a88274SMasahiro YamadaLC_ALL=C elfformat="`${CROSS}objdump -p "$kernel" | grep 'file format' | awk '{print $4}'`"
197147c0516SCédric Le Goatercase "$elfformat" in
198147c0516SCédric Le Goater    elf64-powerpcle)	format=elf64lppc	;;
199147c0516SCédric Le Goater    elf64-powerpc)	format=elf32ppc	;;
200147c0516SCédric Le Goater    elf32-powerpc)	format=elf32ppc	;;
201147c0516SCédric Le Goateresac
202147c0516SCédric Le Goater
203ff45000fSNicholas Pigginld_version()
204ff45000fSNicholas Piggin{
205ff45000fSNicholas Piggin    # Poached from scripts/ld-version.sh, but we don't want to call that because
206ff45000fSNicholas Piggin    # this script (wrapper) is distributed separately from the kernel source.
207ff45000fSNicholas Piggin    # Extract linker version number from stdin and turn into single number.
208ff45000fSNicholas Piggin    awk '{
209ff45000fSNicholas Piggin	gsub(".*\\)", "");
210ff45000fSNicholas Piggin	gsub(".*version ", "");
211ff45000fSNicholas Piggin	gsub("-.*", "");
212ff45000fSNicholas Piggin	split($1,a, ".");
213*3287ebd7SOjaswin Mujoo	if( length(a[3]) == "8" )
214*3287ebd7SOjaswin Mujoo		# a[3] is probably a date of format yyyymmdd used for release snapshots. We
215*3287ebd7SOjaswin Mujoo		# can assume it to be zero as it does not signify a new version as such.
216*3287ebd7SOjaswin Mujoo		a[3] = 0;
217ff45000fSNicholas Piggin	print a[1]*100000000 + a[2]*1000000 + a[3]*10000;
218ff45000fSNicholas Piggin	exit
219ff45000fSNicholas Piggin    }'
220ff45000fSNicholas Piggin}
221ff45000fSNicholas Piggin
222579aee9fSStephen Rothwellld_is_lld()
223579aee9fSStephen Rothwell{
224579aee9fSStephen Rothwell	${CROSS}ld -V 2>&1 | grep -q LLD
225579aee9fSStephen Rothwell}
226579aee9fSStephen Rothwell
227ff45000fSNicholas Piggin# Do not include PT_INTERP segment when linking pie. Non-pie linking
228ff45000fSNicholas Piggin# just ignores this option.
229ff45000fSNicholas PigginLD_VERSION=$(${CROSS}ld --version | ld_version)
230ff45000fSNicholas PigginLD_NO_DL_MIN_VERSION=$(echo 2.26 | ld_version)
231ff45000fSNicholas Pigginif [ "$LD_VERSION" -ge "$LD_NO_DL_MIN_VERSION" ] ; then
232ff45000fSNicholas Piggin	nodl="--no-dynamic-linker"
233ff45000fSNicholas Pigginfi
234147c0516SCédric Le Goater
235579aee9fSStephen Rothwell# suppress some warnings in recent ld versions
236579aee9fSStephen Rothwellnowarn="-z noexecstack"
237579aee9fSStephen Rothwellif ! ld_is_lld; then
238579aee9fSStephen Rothwell	if [ "$LD_VERSION" -ge "$(echo 2.39 | ld_version)" ]; then
239579aee9fSStephen Rothwell		nowarn="$nowarn --no-warn-rwx-segments"
240579aee9fSStephen Rothwell	fi
241579aee9fSStephen Rothwellfi
242579aee9fSStephen Rothwell
2432bf11819SPaul Mackerrasplatformo=$object/"$platform".o
2442bf11819SPaul Mackerraslds=$object/zImage.lds
2452bf11819SPaul Mackerrasext=strip
2462bf11819SPaul Mackerrasobjflags=-S
2472bf11819SPaul Mackerrastmp=$tmpdir/zImage.$$.o
2482bf11819SPaul Mackerrasksection=.kernel:vmlinux.strip
2492bf11819SPaul Mackerrasisection=.kernel:initrd
250528229d2SBenjamin Herrenschmidtesection=.kernel:esm_blob
2519b09c6d9STony Breedslink_address='0x400000'
252dfbc2d75SStephen Rothwellmake_space=y
2532bf11819SPaul Mackerras
254528229d2SBenjamin Herrenschmidt
255528229d2SBenjamin Herrenschmidtif [ -n "$esm_blob" -a "$platform" != "pseries" ]; then
256528229d2SBenjamin Herrenschmidt    echo "ESM blob not support on non-pseries platforms" >&2
257528229d2SBenjamin Herrenschmidt    exit 1
258528229d2SBenjamin Herrenschmidtfi
259528229d2SBenjamin Herrenschmidt
2602bf11819SPaul Mackerrascase "$platform" in
26144790a0bSBenjamin Herrenschmidtof)
26244790a0bSBenjamin Herrenschmidt    platformo="$object/of.o $object/epapr.o"
26344790a0bSBenjamin Herrenschmidt    make_space=n
26444790a0bSBenjamin Herrenschmidt    ;;
2659b09c6d9STony Breedspseries)
2662d9afb36SCédric Le Goater    platformo="$object/pseries-head.o $object/of.o $object/epapr.o"
2679b09c6d9STony Breeds    link_address='0x4000000'
268147c0516SCédric Le Goater    if [ "$format" != "elf32ppc" ]; then
269147c0516SCédric Le Goater	link_address=
270147c0516SCédric Le Goater	pie=-pie
271147c0516SCédric Le Goater    fi
272f5467e28SPaul Mackerras    make_space=n
2739b09c6d9STony Breeds    ;;
27458706ef9SCorey Minyardmaple)
2750c9fa291SBenjamin Herrenschmidt    platformo="$object/of.o $object/epapr.o"
27658706ef9SCorey Minyard    link_address='0x400000'
277f5467e28SPaul Mackerras    make_space=n
27858706ef9SCorey Minyard    ;;
2799b09c6d9STony Breedspmac|chrp)
2800c9fa291SBenjamin Herrenschmidt    platformo="$object/of.o $object/epapr.o"
281f5467e28SPaul Mackerras    make_space=n
2822bf11819SPaul Mackerras    ;;
283627aa944SMilton Millercoff)
2840c9fa291SBenjamin Herrenschmidt    platformo="$object/crt0.o $object/of.o $object/epapr.o"
2852bf11819SPaul Mackerras    lds=$object/zImage.coff.lds
2869b09c6d9STony Breeds    link_address='0x500000'
287f5467e28SPaul Mackerras    make_space=n
2886975a783SMichael Ellerman    pie=
2892bf11819SPaul Mackerras    ;;
29011eab297SBenjamin Herrenschmidtmiboot|uboot*)
2912bf11819SPaul Mackerras    # miboot and U-boot want just the bare bits, not an ELF binary
2922bf11819SPaul Mackerras    ext=bin
2932bf11819SPaul Mackerras    objflags="-O binary"
2942bf11819SPaul Mackerras    tmp="$ofile"
2952bf11819SPaul Mackerras    ksection=image
2962bf11819SPaul Mackerras    isection=initrd
2972bf11819SPaul Mackerras    ;;
2980fdd717eSScott Woodcuboot*)
29911c146ccSScott Wood    binary=y
300f1e510bbSOliver O'Halloran    compression=
30125431333SGrant Likely    case "$platform" in
3028dd217b2SScott Wood    *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc)
30325431333SGrant Likely        platformo=$object/cuboot-8xx.o
30425431333SGrant Likely        ;;
30525431333SGrant Likely    *5200*|*-motionpro)
30625431333SGrant Likely        platformo=$object/cuboot-52xx.o
30725431333SGrant Likely        ;;
30825431333SGrant Likely    *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
30925431333SGrant Likely        platformo=$object/cuboot-pq2.o
31025431333SGrant Likely        ;;
31125431333SGrant Likely    *-mpc824*)
31225431333SGrant Likely        platformo=$object/cuboot-824x.o
31325431333SGrant Likely        ;;
31459d13f9dSBryan O'Donoghue    *-mpc83*|*-asp834x*)
31525431333SGrant Likely        platformo=$object/cuboot-83xx.o
31625431333SGrant Likely        ;;
317ff880112SAlexandr Smirnov    *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
31825431333SGrant Likely        platformo=$object/cuboot-85xx-cpm2.o
31925431333SGrant Likely        ;;
320c12adb06SPaul Gortmaker    *-mpc85*|*-tqm85*)
32125431333SGrant Likely        platformo=$object/cuboot-85xx.o
32225431333SGrant Likely        ;;
3238f23735dSGerhard Pircher    *-amigaone)
3248f23735dSGerhard Pircher        link_address='0x800000'
3258f23735dSGerhard Pircher        ;;
32625431333SGrant Likely    esac
3270fdd717eSScott Wood    ;;
328bafdb645SGeoff Levandps3)
329bafdb645SGeoff Levand    platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
330bafdb645SGeoff Levand    lds=$object/zImage.ps3.lds
331f1e510bbSOliver O'Halloran    compression=
332bafdb645SGeoff Levand    ext=bin
333bafdb645SGeoff Levand    objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
334bafdb645SGeoff Levand    ksection=.kernel:vmlinux.bin
335bafdb645SGeoff Levand    isection=.kernel:initrd
3369b09c6d9STony Breeds    link_address=''
337dfbc2d75SStephen Rothwell    make_space=n
3386975a783SMichael Ellerman    pie=
339bafdb645SGeoff Levand    ;;
340a55387e5SScott Woodep88xc|ep405|ep8248e)
34111c146ccSScott Wood    platformo="$object/fixed-head.o $object/$platform.o"
34211c146ccSScott Wood    binary=y
34311c146ccSScott Wood    ;;
344a55387e5SScott Woodadder875-redboot)
345a55387e5SScott Wood    platformo="$object/fixed-head.o $object/redboot-8xx.o"
346a55387e5SScott Wood    binary=y
347a55387e5SScott Wood    ;;
3481d46e379SGrant Likelysimpleboot-*)
349a7e1cf0cSGrant Likely    platformo="$object/fixed-head.o $object/simpleboot.o"
3501d46e379SGrant Likely    binary=y
3511d46e379SGrant Likely    ;;
35259d13f9dSBryan O'Donoghueasp834x-redboot)
35359d13f9dSBryan O'Donoghue    platformo="$object/fixed-head.o $object/redboot-83xx.o"
35459d13f9dSBryan O'Donoghue    binary=y
35559d13f9dSBryan O'Donoghue    ;;
35624760823SNate Casexpedite52*)
35724760823SNate Case    link_address='0x1400000'
35824760823SNate Case    platformo=$object/cuboot-85xx.o
35924760823SNate Case    ;;
3606cdd2417SAlbert Herranzgamecube|wii)
361b68a24bcSAlbert Herranz    link_address='0x600000'
362b68a24bcSAlbert Herranz    platformo="$object/$platform-head.o $object/$platform.o"
363b68a24bcSAlbert Herranz    ;;
3644a21192eSJoel Stanleymicrowatt)
3654a21192eSJoel Stanley    link_address='0x500000'
3664a21192eSJoel Stanley    platformo="$object/fixed-head.o $object/$platform.o"
3674a21192eSJoel Stanley    binary=y
3684a21192eSJoel Stanley    ;;
369228d5505STony Breedstreeboot-currituck)
370228d5505STony Breeds    link_address='0x1000000'
371228d5505STony Breeds    ;;
3722a2c74b2SAlistair Poppletreeboot-akebono)
3732a2c74b2SAlistair Popple    link_address='0x1000000'
3742a2c74b2SAlistair Popple    ;;
375b4e8c8ddSTorez Smithtreeboot-iss4xx-mpic)
376b4e8c8ddSTorez Smith    platformo="$object/treeboot-iss4xx.o"
377b4e8c8ddSTorez Smith    ;;
3786c5b59b9SDavid Gibsonepapr)
37990d1d44eSJeremy Kerr    platformo="$object/pseries-head.o $object/epapr.o $object/epapr-wrapper.o"
3806c5b59b9SDavid Gibson    link_address='0x20000000'
3816c5b59b9SDavid Gibson    pie=-pie
3824c078c86SBill Wendling    notext='-z notext'
38326ba9f96SBill Wendling    rodynamic=$(if ${CROSS}ld -V 2>&1 | grep -q LLD ; then echo "-z rodynamic"; fi)
3846c5b59b9SDavid Gibson    ;;
385be201981SStephen Chiversmvme5100)
386be201981SStephen Chivers    platformo="$object/fixed-head.o $object/mvme5100.o"
387be201981SStephen Chivers    binary=y
388be201981SStephen Chivers    ;;
38997493e2eSAlessio Igor Boganimvme7100)
39097493e2eSAlessio Igor Bogani    platformo="$object/motload-head.o $object/mvme7100.o"
39197493e2eSAlessio Igor Bogani    link_address='0x4000000'
39297493e2eSAlessio Igor Bogani    binary=y
39397493e2eSAlessio Igor Bogani    ;;
3942bf11819SPaul Mackerrasesac
3952bf11819SPaul Mackerras
3962bf11819SPaul Mackerrasvmz="$tmpdir/`basename \"$kernel\"`.$ext"
397a9903811SScott Wood
398f1e510bbSOliver O'Halloran# Calculate the vmlinux.strip size
399f1e510bbSOliver O'Halloran${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
400a670b0b4SMichael Forneystrip_size=$(${CONFIG_SHELL} "${srctree}/scripts/file-size.sh" "$vmz.$$")
401c55aef0eSSuzuki Poulose
402f1e510bbSOliver O'Halloranif [ -z "$cacheit" -o ! -f "$vmz$compression" -o "$vmz$compression" -ot "$kernel" ]; then
403f1e510bbSOliver O'Halloran    # recompress the image if we need to
404f1e510bbSOliver O'Halloran    case $compression in
405f1e510bbSOliver O'Halloran    .xz)
406f1e510bbSOliver O'Halloran        xz --check=crc32 -f -6 "$vmz.$$"
407f1e510bbSOliver O'Halloran        ;;
408f1e510bbSOliver O'Halloran    .gz)
409c4f56af0SMichal Marek        gzip -n -f -9 "$vmz.$$"
410f1e510bbSOliver O'Halloran        ;;
4111cc9a21bSChristophe Leroy    .lzma)
4121cc9a21bSChristophe Leroy        xz --format=lzma -f -6 "$vmz.$$"
4131cc9a21bSChristophe Leroy	;;
414264bffadSChristophe Leroy    .lzo)
415264bffadSChristophe Leroy        lzop -f -9 "$vmz.$$"
416264bffadSChristophe Leroy	;;
417f1e510bbSOliver O'Halloran    *)
418f1e510bbSOliver O'Halloran        # drop the compression suffix so the stripped vmlinux is used
419f1e510bbSOliver O'Halloran        compression=
420fbded57cSChristophe Leroy	uboot_comp=none
421f1e510bbSOliver O'Halloran	;;
422f1e510bbSOliver O'Halloran    esac
423a9903811SScott Wood
4242bf11819SPaul Mackerras    if [ -n "$cacheit" ]; then
425f1e510bbSOliver O'Halloran	mv -f "$vmz.$$$compression" "$vmz$compression"
4262bf11819SPaul Mackerras    else
4272bf11819SPaul Mackerras	vmz="$vmz.$$"
4282bf11819SPaul Mackerras    fi
429c55aef0eSSuzuki Pouloseelse
430c55aef0eSSuzuki Poulose    rm -f $vmz.$$
431c55aef0eSSuzuki Poulosefi
432c55aef0eSSuzuki Poulose
433f1e510bbSOliver O'Halloranvmz="$vmz$compression"
434f1e510bbSOliver O'Halloran
435dfbc2d75SStephen Rothwellif [ "$make_space" = "y" ]; then
436c55aef0eSSuzuki Poulose	# Round the size to next higher MB limit
437c55aef0eSSuzuki Poulose	round_size=$(((strip_size + 0xfffff) & 0xfff00000))
438c55aef0eSSuzuki Poulose
439c55aef0eSSuzuki Poulose	round_size=0x$(printf "%x" $round_size)
440c55aef0eSSuzuki Poulose	link_addr=$(printf "%d" $link_address)
441c55aef0eSSuzuki Poulose
442c55aef0eSSuzuki Poulose	if [ $link_addr -lt $strip_size ]; then
443eba3d97dSSuzuki Poulose	    echo "INFO: Uncompressed kernel (size 0x$(printf "%x\n" $strip_size))" \
444c55aef0eSSuzuki Poulose			"overlaps the address of the wrapper($link_address)"
445eba3d97dSSuzuki Poulose	    echo "INFO: Fixing the link_address of wrapper to ($round_size)"
446c55aef0eSSuzuki Poulose	    link_address=$round_size
4472bf11819SPaul Mackerras	fi
448dfbc2d75SStephen Rothwellfi
4492bf11819SPaul Mackerras
450a6afacb6SDavid Gibson# Extract kernel version information, some platforms want to include
451a6afacb6SDavid Gibson# it in the image header
4522bf11819SPaul Mackerrasversion=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
4532df8220cSMasahiro Yamada    head -n1 | cut -d' ' -f3`
4542bf11819SPaul Mackerrasif [ -n "$version" ]; then
455a6afacb6SDavid Gibson    uboot_version="-n Linux-$version"
4562bf11819SPaul Mackerrasfi
4570fdd717eSScott Wood
458b18796d3SKumar Gala# physical offset of kernel image
459b18796d3SKumar Galamembase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
460b18796d3SKumar Gala
4610fdd717eSScott Woodcase "$platform" in
4620fdd717eSScott Wooduboot)
4630fdd717eSScott Wood    rm -f "$ofile"
464fbded57cSChristophe Leroy    ${MKIMAGE} -A ppc -O linux -T kernel -C $uboot_comp -a $membase -e $membase \
465a6afacb6SDavid Gibson	$uboot_version -d "$vmz" "$ofile"
4662bf11819SPaul Mackerras    if [ -z "$cacheit" ]; then
467a9903811SScott Wood	rm -f "$vmz"
4682bf11819SPaul Mackerras    fi
4692bf11819SPaul Mackerras    exit 0
4702bf11819SPaul Mackerras    ;;
47111eab297SBenjamin Herrenschmidtuboot-obs600)
47211eab297SBenjamin Herrenschmidt    rm -f "$ofile"
47311eab297SBenjamin Herrenschmidt    # obs600 wants a multi image with an initrd, so we need to put a fake
47411eab297SBenjamin Herrenschmidt    # one in even when building a "normal" image.
47511eab297SBenjamin Herrenschmidt    if [ -n "$initrd" ]; then
47611eab297SBenjamin Herrenschmidt	real_rd="$initrd"
47711eab297SBenjamin Herrenschmidt    else
47811eab297SBenjamin Herrenschmidt	real_rd=`mktemp`
47911eab297SBenjamin Herrenschmidt	echo "\0" >>"$real_rd"
48011eab297SBenjamin Herrenschmidt    fi
48111eab297SBenjamin Herrenschmidt    ${MKIMAGE} -A ppc -O linux -T multi -C gzip -a $membase -e $membase \
48211eab297SBenjamin Herrenschmidt	$uboot_version -d "$vmz":"$real_rd":"$dtb" "$ofile"
48311eab297SBenjamin Herrenschmidt    if [ -z "$initrd" ]; then
48411eab297SBenjamin Herrenschmidt	rm -f "$real_rd"
48511eab297SBenjamin Herrenschmidt    fi
48611eab297SBenjamin Herrenschmidt    if [ -z "$cacheit" ]; then
48711eab297SBenjamin Herrenschmidt	rm -f "$vmz"
48811eab297SBenjamin Herrenschmidt    fi
48911eab297SBenjamin Herrenschmidt    exit 0
49011eab297SBenjamin Herrenschmidt    ;;
4912bf11819SPaul Mackerrasesac
4922bf11819SPaul Mackerras
4932bf11819SPaul Mackerrasaddsec() {
4942bf11819SPaul Mackerras    ${CROSS}objcopy $4 $1 \
4952bf11819SPaul Mackerras	--add-section=$3="$2" \
4962bf11819SPaul Mackerras	--set-section-flags=$3=contents,alloc,load,readonly,data
4972bf11819SPaul Mackerras}
4982bf11819SPaul Mackerras
499a9903811SScott Woodaddsec $tmp "$vmz" $ksection $object/empty.o
5002bf11819SPaul Mackerrasif [ -z "$cacheit" ]; then
501a9903811SScott Wood    rm -f "$vmz"
5022bf11819SPaul Mackerrasfi
5032bf11819SPaul Mackerras
5042bf11819SPaul Mackerrasif [ -n "$initrd" ]; then
505c888554bSMark A. Greer    addsec $tmp "$initrd" $isection
5062bf11819SPaul Mackerrasfi
5072bf11819SPaul Mackerras
5082bf11819SPaul Mackerrasif [ -n "$dtb" ]; then
509c888554bSMark A. Greer    addsec $tmp "$dtb" .kernel:dtb
510e9c4b4bdSMark A. Greer    if [ -n "$dts" ]; then
511e9c4b4bdSMark A. Greer	rm $dtb
512e9c4b4bdSMark A. Greer    fi
5132bf11819SPaul Mackerrasfi
5142bf11819SPaul Mackerras
515528229d2SBenjamin Herrenschmidtif [ -n "$esm_blob" ]; then
516528229d2SBenjamin Herrenschmidt    addsec $tmp "$esm_blob" $esection
517528229d2SBenjamin Herrenschmidtfi
518528229d2SBenjamin Herrenschmidt
5192bf11819SPaul Mackerrasif [ "$platform" != "miboot" ]; then
5209b09c6d9STony Breeds    if [ -n "$link_address" ] ; then
5216975a783SMichael Ellerman        text_start="-Ttext $link_address"
5229b09c6d9STony Breeds    fi
523f1e510bbSOliver O'Halloran#link everything
524579aee9fSStephen Rothwell    ${CROSS}ld -m $format -T $lds $text_start $pie $nodl $nowarn $rodynamic $notext -o "$ofile" $map \
525cd197ffcSDavid Gibson	$platformo $tmp $object/wrapper.a
5262bf11819SPaul Mackerras    rm $tmp
5272bf11819SPaul Mackerrasfi
5282bf11819SPaul Mackerras
529a6afacb6SDavid Gibson# Some platforms need the zImage's entry point and base address
530a6afacb6SDavid Gibsonbase=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
531a6afacb6SDavid Gibsonentry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
532a6afacb6SDavid Gibson
53311c146ccSScott Woodif [ -n "$binary" ]; then
53411c146ccSScott Wood    mv "$ofile" "$ofile".elf
535aeb4552fSScott Wood    ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
53611c146ccSScott Woodfi
53711c146ccSScott Wood
5382bf11819SPaul Mackerras# post-processing needed for some platforms
5392bf11819SPaul Mackerrascase "$platform" in
54058706ef9SCorey Minyardpseries|chrp|maple)
5415663a123SPaul Mackerras    $objbin/addnote "$ofile"
5420dcd4401SPaul Mackerras    ;;
543627aa944SMilton Millercoff)
544cd197ffcSDavid Gibson    ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
5455c539ee3SDavid Woodhouse    $objbin/hack-coff "$ofile"
5462bf11819SPaul Mackerras    ;;
5470fdd717eSScott Woodcuboot*)
548c4f56af0SMichal Marek    gzip -n -f -9 "$ofile"
5493f884bf5SPeter Tyser    ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
550aeb4552fSScott Wood            $uboot_version -d "$ofile".gz "$ofile"
5510fdd717eSScott Wood    ;;
552f6dfc805SDavid Gibsontreeboot*)
553f6dfc805SDavid Gibson    mv "$ofile" "$ofile.elf"
5545c539ee3SDavid Woodhouse    $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
555f6dfc805SDavid Gibson    if [ -z "$cacheit" ]; then
556f6dfc805SDavid Gibson	rm -f "$ofile.elf"
557f6dfc805SDavid Gibson    fi
558f6dfc805SDavid Gibson    exit 0
559f6dfc805SDavid Gibson    ;;
560bafdb645SGeoff Levandps3)
5615761eaa3SGeoff Levand    # The ps3's loader supports loading a gzipped binary image from flash
5625761eaa3SGeoff Levand    # rom to ram addr zero. The loader then enters the system reset
5635761eaa3SGeoff Levand    # vector at addr 0x100.  A bootwrapper overlay is used to arrange for
5645761eaa3SGeoff Levand    # a binary image of the kernel to be at addr zero, and yet have a
5655761eaa3SGeoff Levand    # suitable bootwrapper entry at 0x100.  To construct the final rom
5665761eaa3SGeoff Levand    # image 512 bytes from offset 0x100 is copied to the bootwrapper
5675761eaa3SGeoff Levand    # place holder at symbol __system_reset_kernel.  The 512 bytes of the
5685761eaa3SGeoff Levand    # bootwrapper entry code at symbol __system_reset_overlay is then
5695761eaa3SGeoff Levand    # copied to offset 0x100.  At runtime the bootwrapper program copies
5705761eaa3SGeoff Levand    # the data at __system_reset_kernel back to addr 0x100.
571bafdb645SGeoff Levand
572aeb4552fSScott Wood    system_reset_overlay=0x`${CROSS}nm "$ofile" \
573bafdb645SGeoff Levand        | grep ' __system_reset_overlay$'       \
574bafdb645SGeoff Levand        | cut -d' ' -f1`
575bafdb645SGeoff Levand    system_reset_overlay=`printf "%d" $system_reset_overlay`
576aeb4552fSScott Wood    system_reset_kernel=0x`${CROSS}nm "$ofile" \
577bafdb645SGeoff Levand        | grep ' __system_reset_kernel$'       \
578bafdb645SGeoff Levand        | cut -d' ' -f1`
579bafdb645SGeoff Levand    system_reset_kernel=`printf "%d" $system_reset_kernel`
580bafdb645SGeoff Levand    overlay_dest="256"
5815761eaa3SGeoff Levand    overlay_size="512"
582bafdb645SGeoff Levand
583aeb4552fSScott Wood    ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
584aeb4552fSScott Wood
585879c26d4SGeoff Levand    run_cmd dd if="$ofile.bin" of="$ofile.bin" conv=notrunc   \
586bafdb645SGeoff Levand        skip=$overlay_dest seek=$system_reset_kernel          \
587d4740373SGrant Likely        count=$overlay_size bs=1
588bafdb645SGeoff Levand
589879c26d4SGeoff Levand    run_cmd dd if="$ofile.bin" of="$ofile.bin" conv=notrunc   \
590bafdb645SGeoff Levand        skip=$system_reset_overlay seek=$overlay_dest         \
591d4740373SGrant Likely        count=$overlay_size bs=1
592bafdb645SGeoff Levand
593928b9695SDavid Woodhouse    odir="$(dirname "$ofile.bin")"
594aa3bc365SGeoff Levand
595aa3bc365SGeoff Levand    # The ps3's flash loader has a size limit of 16 MiB for the uncompressed
596aa3bc365SGeoff Levand    # image.  If a compressed image that exceeded this limit is written to
597aa3bc365SGeoff Levand    # flash the loader will decompress that image until the 16 MiB limit is
598aa3bc365SGeoff Levand    # reached, then enter the system reset vector of the partially decompressed
599aa3bc365SGeoff Levand    # image.  No warning is issued.
600aa3bc365SGeoff Levand    rm -f "$odir"/{otheros,otheros-too-big}.bld
601a9ffb8eeSTiezhu Yang    size=$(${CROSS}nm --no-sort --radix=d "$ofile" | grep -E ' _end$' | cut -d' ' -f1)
602aa3bc365SGeoff Levand    bld="otheros.bld"
603aa3bc365SGeoff Levand    if [ $size -gt $((0x1000000)) ]; then
604aa3bc365SGeoff Levand        bld="otheros-too-big.bld"
605aa3bc365SGeoff Levand    fi
606aa3bc365SGeoff Levand    gzip -n --force -9 --stdout "$ofile.bin" > "$odir/$bld"
607bafdb645SGeoff Levand    ;;
6082bf11819SPaul Mackerrasesac
609