commit c4cece99a9829ea466f722441812746ca006a10d parent 699640fe909e325a508405c48bd8ea24b5b21b20 Author: Dimitris Papastamos <dimitris.papastamos@arm.com> Date: Wed, 21 Nov 2018 10:01:39 +0000 Update README with new model script Change-Id: Iaefe04017b634ba86e4171c9f1d40a3bc5c49ac3 Signed-off-by: Dimitris Papastamos <dimitris.papastamos@arm.com> Diffstat:
| M | README | | | 15 | +++++++++++---- |
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/README b/README @@ -16,18 +16,25 @@ options: bl1_path=<path-to-bl1.bin> fip_path=<path-to-fip.bin> romfw_path=<path-to-rcode-romfw.bin> +uart0_path=<path-to-uart0.out> +uart3_path=<path-to-uart3.out> isim_system \ -p -S -R \ + -C bp.terminal_0.quiet=1 \ + -C bp.terminal_1.quiet=1 \ + -C bp.terminal_2.quiet=1 \ + -C bp.terminal_3.quiet=1 \ -C bp.pl011_uart0.uart_enable=1 \ - -C bp.pl011_uart0.out_file=uart0.out \ + -C bp.pl011_uart0.out_file="$uart0_path" \ + -C bp.pl011_uart3.uart_enable=1 \ + -C bp.pl011_uart3.out_file="$uart3_path" \ -C cluster0.NUM_CORES=1 \ -C cluster0.has_bowmore=1 \ - -C cluster0.cpu0.RVBAR_R=0x2e000000 \ + -C cluster0.RVBAR_R=0x2e000000 \ -C cluster0.cpu0.RVBAR=0 \ - -C cluster0.granule_ownership_table_address=0x803f80000 \ -C cluster0.max_32bit_el=0 \ -C cluster0.has_rmode=1 \ -C bp.secureflashloader.fname="$bl1_path" \ -C bp.flashloader0.fname="$fip_path" \ - --data cluster0.cpu0="$romfw_path"@0x2e000000 + --data cluster0.cpu0="$romfw_path"@0x2e000000 \