1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2% Copyright (c) 2016, ETH Zurich.
3% All rights reserved.
4%
5% This file is distributed under the terms in the attached LICENSE file.
6% If you do not find this file, copies can be found by writing to:
7% ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
8%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9
10% Statically-initialised hardware facts for the big.LITTLE Fixed Virtual
11% Platform with 4 A15 cores and 4 A7
12
13cpu_driver(cortexA15, "/armv7/sbin/cpu_a15ve").
14% The A7 runs fine with the A15 CPU driver.
15cpu_driver(cortexA7, "/armv7/sbin/cpu_a15ve").
16
17monitor(cortexA15, "/armv7/sbin/monitor").
18monitor(cortexA7, "/armv7/sbin/monitor").
19
20% One cluster of four Cortex A15s
21arm_core(16'000000,cortexA15).
22arm_core(16'000001,cortexA15).
23arm_core(16'000002,cortexA15).
24arm_core(16'000003,cortexA15).
25
26% A second cluster of four Cortex A5s
27arm_core(16'000100,cortexA7).
28arm_core(16'000101,cortexA7).
29arm_core(16'000102,cortexA7).
30arm_core(16'000103,cortexA7).
31