From 59392469ccaaa382b932b02cca7ab41f2f8af260 Mon Sep 17 00:00:00 2001 From: Devaraj Ranganna Date: Thu, 8 Feb 2024 12:22:51 +0000 Subject: [PATCH] docs: Update instructions to download Corstone-310 FVP The default target for FRI is Corstone-310. Update the `docs/prerequisites.md` instructions to download Corstone-310 FVP. Signed-off-by: Devaraj Ranganna --- docs/prerequisites.md | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/docs/prerequisites.md b/docs/prerequisites.md index 743ede1e..78cf27c6 100644 --- a/docs/prerequisites.md +++ b/docs/prerequisites.md @@ -4,25 +4,23 @@ This reference integration supports [Arm ecosystem FVPs](https://developer.arm.com/downloads/-/arm-ecosystem-fvps). -The Corstone-300 ecosystem FVP is aligned with the Arm MPS3 development -platform. It is based on the Cortex-M55 processor and offers a choice of the -Ethos-U55 and Ethos-U65 processors. This FVP is provided free of charge for the -limited development and validation of open-source software on the Corstone-300 -platform while Arm Virtual Hardware is recommended for commercial software. -Follow the [link](https://developer.arm.com/downloads/-/arm-ecosystem-fvps) for -more information. +The Corstone-310 model is a reference subsystem for a secure SSE-310 SoC +aligned with the Arm MPS3 development platform. It is based on a Cortex®-M85 +processor and an Ethos-U55 neural network processor and the DMA-350 +Direct Memory Access controller. Follow the [link](https://developer.arm.com/downloads/-/arm-ecosystem-fvps) +for more information. ### Setting up Arm ecosystem FVPs -* Download the Corstone-300 FVP from [here](https://developer.arm.com/downloads/-/arm-ecosystem-fvps) -* Run the following commands to install the Corstone-300 FVP and add FVP path +* Download the Corstone-310 FVP from [here](https://developer.arm.com/downloads/-/arm-ecosystem-fvps) +* Run the following commands to install the Corstone-310 FVP and add FVP path to `PATH` variable. ```bash - mkdir FVP_Corstone_SSE-300_11.22_20 - tar -xzf /FVP_Corstone_SSE-300_11.22_20_Linux64.tgz -C FVP_Corstone_SSE-300_11.22_20 - cd FVP_Corstone_SSE-300_11.22_20 - ./FVP_Corstone_SSE-300.sh - echo PATH=\"/FVP_Corstone_SSE-300/models/Linux64_GCC-9.3:\$PATH\" >> ~/.bashrc + mkdir FVP_Corstone_SSE-310_11.24_13 + tar -xzf /FVP_Corstone_SSE-310_11.24_13_Linux64.tgz -C FVP_Corstone_SSE-310_11.24_13 + cd FVP_Corstone_SSE-310_11.24_13 + ./FVP_Corstone_SSE-310.sh + echo PATH=\"/FVP_Corstone_SSE-310_11.24_13/models/Linux64_GCC-9.3:\$PATH\" >> ~/.bashrc source ~/.bashrc ```