blob: 918f4fa587e0b9f55a30503ce71307c7c2124bfa [file] [log] [blame]
Kshitij Sisodia1ec169b2022-06-01 09:06:21 +01001# Copyright (c) 2022 Arm Limited. All rights reserved.
2# SPDX-License-Identifier: Apache-2.0
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16FROM ubuntu:20.04
17ENV DEBIAN_FRONTEND noninteractive
18ENV EVAL_KIT_DIR "/home/ml-embedded-evaluation-kit"
19
20RUN apt-get update && \
21 apt-get install -y \
22 make \
23 git \
24 python3.8 \
25 python3-pip \
26 python3.8-dev \
27 python3.8-venv \
28 unzip \
29 curl \
30 wget \
31 gpg \
32 libsndfile1 \
33 sudo \
34 telnet
35
36# Download and install gcc 11.2
37RUN curl -L https://developer.arm.com/-/media/Files/downloads/gnu/11.2-2022.02/binrel/gcc-arm-11.2-2022.02-x86_64-arm-none-eabi.tar.xz -o gcc-arm-none-eabi.tar.xz && \
38 echo "8c5acd5ae567c0100245b0556941c237369f210bceb196edfe5a2e7532c60326 gcc-arm-none-eabi.tar.xz" | sha256sum -c && \
39 mkdir /opt/gcc-arm-none-eabi && \
40 tar -xf gcc-arm-none-eabi.tar.xz -C /opt/gcc-arm-none-eabi --strip-components 1 && \
41 rm gcc-arm-none-eabi.tar.xz
42
43# Download and install the Corstone_SSE-300 FVP
44RUN wget https://developer.arm.com/-/media/Arm%20Developer%20Community/Downloads/OSS/FVP/Corstone-300/FVP_Corstone_SSE-300_11.16_26.tgz 2>/dev/null && \
45 echo "e26139be756b5003a30d978c629de638aed1934d597dc24a17043d4708e934d7 FVP_Corstone_SSE-300_11.16_26.tgz" | sha256sum -c && \
46 mkdir -p /home/FVP_Corstone_SSE-300/ && \
47 tar -xf FVP_Corstone_SSE-300_11.16_26.tgz -C /home/FVP_Corstone_SSE-300/ && \
48 bash /home/FVP_Corstone_SSE-300/FVP_Corstone_SSE-300.sh --no-interactive --i-agree-to-the-contained-eula -d /home/FVP_Corstone_SSE-300 && \
49 rm FVP_Corstone_SSE-300_11.16_26.tgz
50
51# Clone the ml-embedded-evaluation-kit repository
52RUN git clone "https://review.mlplatform.org/ml/ethos-u/ml-embedded-evaluation-kit" ${EVAL_KIT_DIR}
53
54# Change working directory
55WORKDIR ${EVAL_KIT_DIR}
56
57# Initialize submodules
58RUN git submodule update --init
59
60# Download and install resources required for ml-embedded-evaluation-kit
61RUN python3 ./set_up_default_resources.py
62
63# Update PATH to make the required version of CMake and GNU embedded toolchain is available:
64ENV PATH="${EVAL_KIT_DIR}/resources_downloaded/env/bin:/opt/gcc-arm-none-eabi/bin:${PATH}"
65
66# FVP binary paths:
67ENV FVP_ETHOS_U55="/home/FVP_Corstone_SSE-300/models/Linux64_GCC-6.4/FVP_Corstone_SSE-300_Ethos-U55"
68ENV FVP_ETHOS_U65="/home/FVP_Corstone_SSE-300/models/Linux64_GCC-6.4/FVP_Corstone_SSE-300_Ethos-U65"
69
70# Default FVP arguments for no GUI and telnet pop ups:
71ENV FVP_ARGS="-C mps3_board.telnetterminal0.start_telnet=0 -C mps3_board.uart0.out_file='-' -C mps3_board.uart0.shutdown_on_eot=1 -C mps3_board.visualisation.disable-visualisation=1"