Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arm Reference Solutions
model-scripts
Commits
316f9305
Commit
316f9305
authored
Aug 16, 2021
by
Usama Arif
Browse files
Merge branch 'usaari01/TC1' into 'main'
Introduce TC1 platform See merge request
!4
parents
a70449ff
3f98d490
Changes
2
Hide whitespace changes
Inline
Side-by-side
tc0/run_model.sh
View file @
316f9305
...
...
@@ -139,7 +139,7 @@ case $DISTRO in
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
"tc
0
_nano"
check_substring_and_exit
$ANDROID_PRODUCT_OUT
"tc_nano"
check_android_images
DISTRO_MODEL_PARAMS
=
"-C board.mmc.p_mmc_file=
$ANDROID_PRODUCT_OUT
/android.img"
[
"
$AVB
"
==
true
]
||
DISTRO_MODEL_PARAMS
=
"
$DISTRO_MODEL_PARAMS
\
...
...
@@ -149,7 +149,7 @@ case $DISTRO in
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
"tc
0
_swr"
check_substring_and_exit
$ANDROID_PRODUCT_OUT
"tc_swr"
check_android_images
DISTRO_MODEL_PARAMS
=
"-C board.mmc.p_mmc_file=
$ANDROID_PRODUCT_OUT
/android.img"
[
"
$AVB
"
==
true
]
||
DISTRO_MODEL_PARAMS
=
"
$DISTRO_MODEL_PARAMS
\
...
...
@@ -175,8 +175,8 @@ mkdir -p $LOGS_DIR
"
$MODEL
"
\
-C
css.scp.ROMloader.fname
=
$YOCTO_OUTDIR
/scp_romfw.bin
\
-C
css.trustedBootROMloader.fname
=
$YOCTO_OUTDIR
/bl1-tc
0
.bin
\
-C
board.flashloader0.fname
=
$YOCTO_OUTDIR
/fip-tc
0
.bin
\
-C
css.trustedBootROMloader.fname
=
$YOCTO_OUTDIR
/bl1-tc.bin
\
-C
board.flashloader0.fname
=
$YOCTO_OUTDIR
/fip-tc.bin
\
-C
soc.pl011_uart0.out_file
=
$LOGS_DIR
/uart0_soc.log
\
-C
soc.pl011_uart0.unbuffered_output
=
1
\
-C
soc.pl011_uart1.out_file
=
$LOGS_DIR
/uart1_soc.log
\
...
...
tc1/run_model.sh
0 → 100755
View file @
316f9305
#!/bin/bash
# Copyright (c) 2021, 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
"-a, --avb [OPTIONAL] avb boot, values supported [true, false], DEFAULT: false"
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
[
"
$AVB
"
==
true
]
&&
check_file_exists_and_exit
$ANDROID_PRODUCT_OUT
/vbmeta.img
[
"
$AVB
"
==
true
]
&&
check_file_exists_and_exit
$ANDROID_PRODUCT_OUT
/boot.img
}
AVB
=
false
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
;;
-a
|
--avb
)
AVB
=
"
$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
"AVB=
$AVB
"
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/tc1/
check_dir_exists_and_exit
$YOCTO_OUTDIR
"firmware and kernel images"
case
$DISTRO
in
poky
)
DISTRO_MODEL_PARAMS
=
"--data board.dram=
$YOCTO_OUTDIR
/fitImage-core-image-minimal-tc1-tc1@0x20000000"
;;
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
"tc_nano"
check_android_images
DISTRO_MODEL_PARAMS
=
"-C board.mmc.p_mmc_file=
$ANDROID_PRODUCT_OUT
/android.img"
[
"
$AVB
"
==
true
]
||
DISTRO_MODEL_PARAMS
=
"
$DISTRO_MODEL_PARAMS
\
--data board.dram=
$ANDROID_PRODUCT_OUT
/ramdisk_uboot.img@0x8000000
\
--data board.dram=
$YOCTO_OUTDIR
/Image@0x80000 "
;;
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
"tc_swr"
check_android_images
DISTRO_MODEL_PARAMS
=
"-C board.mmc.p_mmc_file=
$ANDROID_PRODUCT_OUT
/android.img"
[
"
$AVB
"
==
true
]
||
DISTRO_MODEL_PARAMS
=
"
$DISTRO_MODEL_PARAMS
\
--data board.dram=
$ANDROID_PRODUCT_OUT
/ramdisk_uboot.img@0x8000000
\
--data board.dram=
$YOCTO_OUTDIR
/Image@0x80000 "
;;
*
)
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
"
\
-C
css.scp.ROMloader.fname
=
$YOCTO_OUTDIR
/scp_romfw.bin
\
-C
css.trustedBootROMloader.fname
=
$YOCTO_OUTDIR
/bl1-tc.bin
\
-C
board.flashloader0.fname
=
$YOCTO_OUTDIR
/fip-tc.bin
\
-C
soc.pl011_uart0.out_file
=
$LOGS_DIR
/uart0_soc.log
\
-C
soc.pl011_uart0.unbuffered_output
=
1
\
-C
soc.pl011_uart1.out_file
=
$LOGS_DIR
/uart1_soc.log
\
-C
soc.pl011_uart1.unbuffered_output
=
1
\
-C
css.pl011_uart_ap.out_file
=
$LOGS_DIR
/uart_ap.log
\
-C
css.pl011_uart_ap.unbuffered_output
=
1
\
-C
displayController
=
2
\
${
TAP_INTERFACE_MODEL_PARAMS
}
\
${
DISTRO_MODEL_PARAMS
}
\
${
EXTRA_MODEL_PARAMS
}
exit
$?
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment