summaryrefslogtreecommitdiff
path: root/tc0/run_model.sh
blob: 99a2539b35dd74ac6274c4ba8eeda7f842ec97a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/bin/bash

# Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# Neither the name of ARM nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

RUN_SCRIPTS_DIR=$(dirname "$0")

#NOTE: The OPTIONS below are misaligned on purpose so that they appear aligned when the script is called.
incorrect_script_use () {
	echo "Incorrect script use, call script as:"
	echo "<path_to_run_model.sh> [OPTIONS]"
	echo "OPTIONS:"
	echo "-m, --model				path to model"
	echo "-d, --distro				distro version, values supported [poky, android-nano, android-swr]"
	echo "-g, --generate-android-image		[OPTIONAL] generate android image and ramdisk, values supported [true, false], DEFAULT: true"
	echo "-t, --tap-interface			[OPTIONAL] tap interface"
	echo "-e, --extra-model-params		[OPTIONAL] extra model parameters"
	echo "If using an android distro, export ANDROID_PRODUCT_OUT variable to point to android out directory"
	exit 1
}

# check if directory exits and exit if it doesnt
check_dir_exists_and_exit () {
	if [ ! -d $1 ]
	then
		echo "directory for $2: $1 doesnt exist"
		exit 1
	fi
}

# check if first argument is a substring of 2nd argument and exit if thats not
# the case
check_substring_and_exit () {

	if [[ ! "$1" =~ "$2" ]]
	then
		echo "$1 does not contain $2"
		exit 1
	fi
}

# check if file exits and exit if it doesnt
check_file_exists_and_exit () {
	if [ ! -f $1 ]
	then
		echo "$1 does not exist"
		exit 1
	fi
}
check_android_images () {
	check_file_exists_and_exit $ANDROID_PRODUCT_OUT/system.img
	check_file_exists_and_exit $ANDROID_PRODUCT_OUT/userdata.img
}

make_ramdisk_android_image () {
	./"$RUN_SCRIPTS_DIR"/add-uboot-header.sh
	./"$RUN_SCRIPTS_DIR"/create_android_image.sh
}

GENERATE_ANDROID_IMAGE=true

while [[ $# -gt 0 ]]
do
	key="$1"

	case $key in
	    -m|--model)
		    MODEL="$2"
		    shift
		    shift
		    ;;
	    -d|--distro)
		    DISTRO="$2"
		    shift
		    shift
		    ;;
	    -t|--tap-interface)
		    TAP_INTERFACE="$2"
		    shift
		    shift
		    ;;
	    -e|--extra-model-params)
		    EXTRA_MODEL_PARAMS="$2"
		    shift
		    shift
		    ;;
	    -g|--generate-android-image)
		    GENERATE_ANDROID_IMAGE="$2"
		    shift
		    shift
		    ;;
		*)
			incorrect_script_use
	esac
done

[ -z "$MODEL" ] && incorrect_script_use || echo "MODEL=$MODEL"
[ -z "$DISTRO" ] && incorrect_script_use || echo "DISTRO=$DISTRO"
echo "TAP_INTERFACE=$TAP_INTERFACE"
echo "EXTRA_MODEL_PARAMS=$EXTRA_MODEL_PARAMS"
echo "GENERATE_ANDROID_IMAGE=$GENERATE_ANDROID_IMAGE"

YOCTO_DIR="$RUN_SCRIPTS_DIR/../../"

if [ ! -f "$MODEL" ]; then
    echo "Path provided for model :$1 does not exist"
    exit 1
fi

YOCTO_OUTDIR="${YOCTO_DIR}"/build-poky/tmp-poky/deploy/images/tc0/

check_dir_exists_and_exit $YOCTO_OUTDIR "firmware and kernel images"

case $DISTRO in
    poky)
		DISTRO_MODEL_PARAMS="--data board.cpu=$YOCTO_OUTDIR/core-image-minimal-tc0.cpio.gz.u-boot@0x8000000"
        ;;
    android-nano)
		[ -z "$ANDROID_PRODUCT_OUT" ] && echo "var ANDROID_PRODUCT_OUT is empty" && exit 1
		check_dir_exists_and_exit $ANDROID_PRODUCT_OUT "android build images"
		check_substring_and_exit $ANDROID_PRODUCT_OUT "tc0_nano"
		check_android_images
		[ "$GENERATE_ANDROID_IMAGE" == true ] && make_ramdisk_android_image
		DISTRO_MODEL_PARAMS="--data board.cpu=$ANDROID_PRODUCT_OUT/ramdisk_uboot.img@0x8000000 \
		-C board.virtioblockdevice.image_path=$ANDROID_PRODUCT_OUT/android.img \
		"
		;;
    android-swr)
		[ -z "$ANDROID_PRODUCT_OUT" ] && echo "var ANDROID_PRODUCT_OUT is empty" && exit 1
		check_dir_exists_and_exit $ANDROID_PRODUCT_OUT "android build images"
		check_substring_and_exit $ANDROID_PRODUCT_OUT "tc0_swr"
		check_android_images
		[ "$GENERATE_ANDROID_IMAGE" == true ] && make_ramdisk_android_image
		DISTRO_MODEL_PARAMS="--data board.cpu=$ANDROID_PRODUCT_OUT/ramdisk_uboot.img@0x8000000 \
		-C board.virtioblockdevice.image_path=$ANDROID_PRODUCT_OUT/android.img \
		"
		;;
    *) echo "bad option for distro $3"; incorrect_script_use
        ;;
esac

echo "DISTRO_MODEL_PARAMS=$DISTRO_MODEL_PARAMS"

if [ "$TAP_INTERFACE" ]
then
	echo "Enabling networking with interface $TAP_INTERFACE"
	TAP_INTERFACE_MODEL_PARAMS="-C board.hostbridge.interfaceName="$TAP_INTERFACE" \
	-C board.smsc_91c111.enabled=1 \
	"
fi

LOGS_DIR="$RUN_SCRIPTS_DIR"/logs
mkdir -p $LOGS_DIR

"$MODEL" \
--data board.cpu=$YOCTO_OUTDIR/Image@0x80000 \
-C css.scp.ROMloader.fname=$YOCTO_OUTDIR/scp_romfw.bin \
-C css.trustedBootROMloader.fname=$YOCTO_OUTDIR/bl1-tc0.bin \
-C board.flashloader0.fname=$YOCTO_OUTDIR/fip-tc0.bin \
-C soc.pl011_uart0.out_file=$LOGS_DIR/uart0_soc.log \
-C soc.pl011_uart1.out_file=$LOGS_DIR/uart1_soc.log \
-C css.pl011_uart_ap.out_file=$LOGS_DIR/uart_ap.log \
-C css.scp.pl011_uart_scp.out_file=$LOGS_DIR/uart_scp.log \
${TAP_INTERFACE_MODEL_PARAMS} \
${DISTRO_MODEL_PARAMS} \
${EXTRA_MODEL_PARAMS} \