Leonardo Sandoval | 9dfdd1b | 2020-08-06 17:08:11 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 2 | # |
Leonardo Sandoval | 579c737 | 2020-10-23 15:23:32 -0500 | [diff] [blame] | 3 | # Copyright (c) 2019-2020 Arm Limited. All rights reserved. |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | fetch_tf_resource() { |
| 9 | url="$sgi_prebuilts/mcp-rom.bin" fetch_file |
| 10 | url="$sgi_prebuilts/scp-ram.bin" fetch_file |
| 11 | url="$sgi_prebuilts/scp-rom.bin" fetch_file |
| 12 | |
| 13 | |
| 14 | archive_file "mcp-rom.bin" |
| 15 | archive_file "scp-ram.bin" |
| 16 | archive_file "scp-rom.bin" |
| 17 | } |
| 18 | |
| 19 | post_fetch_tf_resource() { |
Leonardo Sandoval | 00ced1f | 2020-12-07 12:55:08 -0600 | [diff] [blame] | 20 | local model="css-rde1edge" |
| 21 | |
Manish V Badarkhe | 8937056 | 2020-09-17 05:45:20 +0100 | [diff] [blame] | 22 | model="css-rde1edge" \ |
| 23 | model_version="11.9" \ |
| 24 | model_build="41" \ |
| 25 | gen_model_params |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 26 | set_run_env "ports_script" "$ci_root/model/css-sgi575-ports.awk" |
| 27 | set_run_env "num_uarts" "2" |
| 28 | uart="0" set_expect_variable "num_cpus" "32" |
Leonardo Sandoval | 00ced1f | 2020-12-07 12:55:08 -0600 | [diff] [blame] | 29 | model="$model" gen_fvp_yaml |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 30 | } |