@@ -4,6 +4,9 @@ offset=$((2*1024*1024))
filesize=0
prog_req=(mkimage file fdtput mktemp awk)
+padding_mask=`printf "0x%X\n" $(($offset - 1))`
+padding_mask_inv=`printf "0x%X\n" $((~$padding_mask))`
+
function cleanup_and_return_err()
{
rm -f $UBOOT_SOURCE $UBOOT_SCRIPT
@@ -91,10 +94,18 @@ function add_device_tree_kernel()
local size=$3
local bootargs=$4
- dt_mknode "$path" "module$addr"
- dt_set "$path/module$addr" "compatible" "str_a" "multiboot,kernel multiboot,module"
- dt_set "$path/module$addr" "reg" "hex" "0x0 $addr 0x0 $(printf "0x%x" $size)"
- dt_set "$path/module$addr" "bootargs" "str" "$bootargs"
+ if test "$dynamic_loading_opt"
+ then
+ dt_mknode "$path" "module\${"$addr"}"
+ dt_set "$path/module\${"$addr"}" "compatible" "str_a" "multiboot,kernel multiboot,module"
+ dt_set "$path/module\${"$addr"}" "reg" "hex" "0x0 0x\${"$addr"} 0x0 0x\${"$size"}"
+ dt_set "$path/module\${"$addr"}" "bootargs" "str" "$bootargs"
+ else
+ dt_mknode "$path" "module$addr"
+ dt_set "$path/module$addr" "compatible" "str_a" "multiboot,kernel multiboot,module"
+ dt_set "$path/module$addr" "reg" "hex" "0x0 $addr 0x0 $(printf "0x%x" $size)"
+ dt_set "$path/module$addr" "bootargs" "str" "$bootargs"
+ fi
}
@@ -104,9 +115,16 @@ function add_device_tree_ramdisk()
local addr=$2
local size=$3
- dt_mknode "$path" "module$addr"
- dt_set "$path/module$addr" "compatible" "str_a" "multiboot,ramdisk multiboot,module"
- dt_set "$path/module$addr" "reg" "hex" "0x0 $addr 0x0 $(printf "0x%x" $size)"
+ if test "$dynamic_loading_opt"
+ then
+ dt_mknode "$path" "module\${"$addr"}"
+ dt_set "$path/module\${"$addr"}" "compatible" "str_a" "multiboot,ramdisk multiboot,module"
+ dt_set "$path/module\${"$addr"}" "reg" "hex" "0x0 0x\${"$addr"} 0x0 0x\${"$size"}"
+ else
+ dt_mknode "$path" "module$addr"
+ dt_set "$path/module$addr" "compatible" "str_a" "multiboot,ramdisk multiboot,module"
+ dt_set "$path/module$addr" "reg" "hex" "0x0 $addr 0x0 $(printf "0x%x" $size)"
+ fi
}
@@ -116,9 +134,16 @@ function add_device_tree_passthrough()
local addr=$2
local size=$3
- dt_mknode "$path" "module$addr"
- dt_set "$path/module$addr" "compatible" "str_a" "multiboot,device-tree multiboot,module"
- dt_set "$path/module$addr" "reg" "hex" "0x0 $addr 0x0 $(printf "0x%x" $size)"
+ if test "$dynamic_loading_opt"
+ then
+ dt_mknode "$path" "module\${"$addr"}"
+ dt_set "$path/module\${"$addr"}" "compatible" "str_a" "multiboot,device-tree multiboot,module"
+ dt_set "$path/module\${"$addr"}" "reg" "hex" "0x0 0x\${"$addr"} 0x0 0x\${"$size"}"
+ else
+ dt_mknode "$path" "module$addr"
+ dt_set "$path/module$addr" "compatible" "str_a" "multiboot,device-tree multiboot,module"
+ dt_set "$path/module$addr" "reg" "hex" "0x0 $addr 0x0 $(printf "0x%x" $size)"
+ fi
}
function add_device_tree_mem()
@@ -186,7 +211,12 @@ function xen_device_tree_editing()
then
dt_mknode "/chosen" "dom0"
dt_set "/chosen/dom0" "compatible" "str_a" "xen,linux-zimage xen,multiboot-module multiboot,module"
- dt_set "/chosen/dom0" "reg" "hex" "0x0 $dom0_kernel_addr 0x0 $(printf "0x%x" $dom0_kernel_size)"
+ if test "$dynamic_loading_opt"
+ then
+ dt_set "/chosen/dom0" "reg" "hex" "0x0 0x\${dom0_linux_addr} 0x0 0x\${dom0_linux_size}"
+ else
+ dt_set "/chosen/dom0" "reg" "hex" "0x0 $dom0_kernel_addr 0x0 $(printf "0x%x" $dom0_kernel_size)"
+ fi
dt_set "/chosen" "xen,dom0-bootargs" "str" "$DOM0_CMD"
fi
@@ -194,7 +224,12 @@ function xen_device_tree_editing()
then
dt_mknode "/chosen" "dom0-ramdisk"
dt_set "/chosen/dom0-ramdisk" "compatible" "str_a" "xen,linux-initrd xen,multiboot-module multiboot,module"
- dt_set "/chosen/dom0-ramdisk" "reg" "hex" "0x0 $ramdisk_addr 0x0 $(printf "0x%x" $ramdisk_size)"
+ if test "$dynamic_loading_opt"
+ then
+ dt_set "/chosen/dom0-ramdisk" "reg" "hex" "0x0 0x\${dom0_ramdisk_addr} 0x0 0x\${dom0_ramdisk_size}"
+ else
+ dt_set "/chosen/dom0-ramdisk" "reg" "hex" "0x0 $ramdisk_addr 0x0 $(printf "0x%x" $ramdisk_size)"
+ fi
fi
i=0
@@ -241,14 +276,29 @@ function xen_device_tree_editing()
dt_set "/chosen/domU$i" "colors" "hex" "$(printf "0x%x" $bitcolors)"
fi
- add_device_tree_kernel "/chosen/domU$i" ${domU_kernel_addr[$i]} ${domU_kernel_size[$i]} "${DOMU_CMD[$i]}"
+ if test "$dynamic_loading_opt"
+ then
+ add_device_tree_kernel "/chosen/domU$i" "domU${i}_kernel_addr" "domU${i}_kernel_size" "${DOMU_CMD[$i]}"
+ else
+ add_device_tree_kernel "/chosen/domU$i" ${domU_kernel_addr[$i]} ${domU_kernel_size[$i]} "${DOMU_CMD[$i]}"
+ fi
if test "${domU_ramdisk_addr[$i]}"
then
- add_device_tree_ramdisk "/chosen/domU$i" ${domU_ramdisk_addr[$i]} ${domU_ramdisk_size[$i]}
+ if test "$dynamic_loading_opt"
+ then
+ add_device_tree_ramdisk "/chosen/domU$i" "domU${i}_ramdisk_addr" "domU${i}_ramdisk_size"
+ else
+ add_device_tree_ramdisk "/chosen/domU$i" ${domU_ramdisk_addr[$i]} ${domU_ramdisk_size[$i]}
+ fi
fi
if test "${domU_passthrough_dtb_addr[$i]}"
then
- add_device_tree_passthrough "/chosen/domU$i" ${domU_passthrough_dtb_addr[$i]} ${domU_passthrough_dtb_size[$i]}
+ if test "$dynamic_loading_opt"
+ then
+ add_device_tree_passthrough "/chosen/domU$i" "domU${i}_fdt_addr" "domU${i}_fdt_size"
+ else
+ add_device_tree_passthrough "/chosen/domU$i" ${domU_passthrough_dtb_addr[$i]} ${domU_passthrough_dtb_size[$i]}
+ fi
fi
i=$(( $i + 1 ))
done
@@ -271,7 +321,12 @@ function device_tree_editing()
if test $UBOOT_SOURCE
then
- echo "fdt addr $device_tree_addr" >> $UBOOT_SOURCE
+ if test $dynamic_loading_opt
+ then
+ echo "fdt addr \${host_fdt_addr}" >> $UBOOT_SOURCE
+ else
+ echo "fdt addr $device_tree_addr" >> $UBOOT_SOURCE
+ fi
echo "fdt resize 1024" >> $UBOOT_SOURCE
if test $NUM_DT_OVERLAY && test $NUM_DT_OVERLAY -gt 0
@@ -306,7 +361,7 @@ function add_size()
function load_file()
{
local filename=$1
- local fit_scr_name=$2
+ local binary_name=$2
local absolute_path="$(realpath --no-symlinks $filename)"
local base="$(realpath $PWD)"/
@@ -314,11 +369,30 @@ function load_file()
if test "$FIT"
then
- echo "imxtract \$fit_addr $fit_scr_name $memaddr" >> $UBOOT_SOURCE
+ echo "imxtract \$fit_addr $binary_name $memaddr" >> $UBOOT_SOURCE
else
- echo "$LOAD_CMD $memaddr ${prepend_path:+$prepend_path/}$relative_path" >> $UBOOT_SOURCE
+ if test "$dynamic_loading_opt"
+ then
+ echo "$LOAD_CMD \${curr_addr} ${prepend_path:+$prepend_path/}$relative_path" >> $UBOOT_SOURCE
+ else
+ echo "$LOAD_CMD $memaddr ${prepend_path:+$prepend_path/}$relative_path" >> $UBOOT_SOURCE
+ fi
fi
add_size $filename
+
+ if test "$dynamic_loading_opt" && test ! "$FIT"
+ then
+ # Store each binary's load addr and size
+ local binary_name_addr="${binary_name}_addr"
+ local binary_name_size="${binary_name}_size"
+ echo "setenv $binary_name_addr \${curr_addr}" >> $UBOOT_SOURCE
+ echo "setenv $binary_name_size \${filesize}" >> $UBOOT_SOURCE
+
+ # Compute load addr for next binary dynamically
+ echo "setexpr curr_addr \${curr_addr} \+ \${filesize}" >> $UBOOT_SOURCE
+ echo "setexpr curr_addr \${curr_addr} \+ \${padding_mask}" >> $UBOOT_SOURCE
+ echo "setexpr curr_addr \${curr_addr} \& \${padding_mask_inv}" >> $UBOOT_SOURCE
+ fi
}
function check_file_type()
@@ -536,6 +610,14 @@ generate_uboot_images()
xen_file_loading()
{
+ if test "$dynamic_loading_opt"
+ then
+ local curr_addr=`printf "%x\n" $memaddr`
+ echo "setenv curr_addr $curr_addr" >> $UBOOT_SOURCE
+ echo "setenv padding_mask $padding_mask" >> $UBOOT_SOURCE
+ echo "setenv padding_mask_inv $padding_mask_inv" >> $UBOOT_SOURCE
+ fi
+
if test "$DOM0_KERNEL"
then
check_compressed_file_type $DOM0_KERNEL "executable"
@@ -891,7 +973,7 @@ function print_help
{
script=`basename "$0"`
echo "usage:"
- echo " $script -c CONFIG_FILE -d DIRECTORY [-t LOAD_CMD] [-o FILE] [-k KEY_DIR/HINT [-u U-BOOT_DTB]] [-e] [-f] [-p PREPEND_PATH]"
+ echo " $script -c CONFIG_FILE -d DIRECTORY [-t LOAD_CMD] [-o FILE] [-k KEY_DIR/HINT [-u U-BOOT_DTB]] [-e] [-f] [-p PREPEND_PATH] [-s]"
echo " $script -h"
echo "where:"
echo " CONFIG_FILE - configuration file"
@@ -908,6 +990,7 @@ function print_help
echo " U-BOOT_DTB - u-boot control dtb so that the public key gets added to it"
echo " -f - enable generating a FIT image"
echo " PREPEND_PATH - path to be appended before file names to match deploy location within rootfs"
+ echo " -s - enable dynamic loading of binaries by storing their addresses and sizes u-boot env variables"
echo " -h - prints out the help message and exits "
echo "Defaults:"
echo " CONFIG_FILE=$cfg_file, UBOOT_TYPE=\"LOAD_CMD\" env var, DIRECTORY=$uboot_dir"
@@ -915,7 +998,7 @@ function print_help
echo " $script -c ../config -d ./build42 -t \"scsi load 1:1\""
}
-while getopts ":c:t:d:ho:k:u:fp:" opt; do
+while getopts ":c:t:d:ho:k:u:fp:s" opt; do
case ${opt} in
t )
case $OPTARG in
@@ -957,6 +1040,9 @@ while getopts ":c:t:d:ho:k:u:fp:" opt; do
p )
prepend_path="$OPTARG"
;;
+ s )
+ dynamic_loading_opt=y
+ ;;
h )
print_help
exit 0
@@ -1151,7 +1237,13 @@ device_tree_editing $device_tree_addr
# disable device tree reloation
echo "setenv fdt_high 0xffffffffffffffff" >> $UBOOT_SOURCE
-echo "$BOOT_CMD $kernel_addr - $device_tree_addr" >> $UBOOT_SOURCE
+
+if test "$dynamic_loading_opt"
+then
+ echo "$BOOT_CMD \${host_kernel_addr} - \${host_fdt_addr}" >> $UBOOT_SOURCE
+else
+ echo "$BOOT_CMD $kernel_addr - $device_tree_addr" >> $UBOOT_SOURCE
+fi
if test "$FIT"
then