blob: e84d81e03b0b471f9c5d4f06aaafdc7bf4ebc179 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001; Copyright (c) 2021 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
16; *************************************************************
17; *** Scatter-Loading Description File ***
18; *************************************************************
Isabella Gottardi118f73e2021-09-16 17:54:35 +010019; Please see docs/sections/appendix.md for memory mapping information.
20;
21; Note: Ethos-U NPU can access BRAM, internal SRAM and the DDR sections => activation buffers and
22; the model should only be placed in those regions.
alexander3c798932021-03-26 21:42:19 +000023;
24;---------------------------------------------------------
25; First load region (ITCM)
26;---------------------------------------------------------
27LOAD_REGION_0 0x00000000 0x00080000
28{
29 ;-----------------------------------------------------
30 ; First part of code mem - 512kiB
31 ;-----------------------------------------------------
32 itcm.bin 0x00000000 0x00080000
33 {
34 *.o (RESET, +First)
35 * (InRoot$$Sections)
36
37 ; Essentially only RO-CODE, RO-DATA is in a
38 ; different region.
39 .ANY (+RO)
40 }
41
42 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010043 ; 128kiB of 512kiB DTCM is used for any other RW or ZI
alexander3c798932021-03-26 21:42:19 +000044 ; data. Note: this region is internal to the Cortex-M
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010045 ; CPU.
alexander3c798932021-03-26 21:42:19 +000046 ;-----------------------------------------------------
47 dtcm.bin 0x20000000 0x00020000
48 {
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010049 ; Any R/W and/or zero initialised data
alexander3c798932021-03-26 21:42:19 +000050 .ANY(+RW +ZI)
51 }
52
53 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010054 ; 384kiB of stack space within the DTCM region. See
55 ; `dtcm.bin` for the first section. Note: by virtue of
56 ; being part of DTCM, this region is only accessible
57 ; from Cortex-M55.
alexander3c798932021-03-26 21:42:19 +000058 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010059 ARM_LIB_STACK 0x20020000 EMPTY ALIGN 8 0x00060000
alexander3c798932021-03-26 21:42:19 +000060 {}
61
62 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010063 ; SSE-300's internal SRAM of 4MiB - reserved for
64 ; activation buffers.
65 ; This region should have 3 cycle read latency from
Isabella Gottardif5907732021-08-06 15:39:41 +010066 ; both Cortex-M55 and Ethos-U NPU
alexander3c798932021-03-26 21:42:19 +000067 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010068 isram.bin 0x31000000 UNINIT ALIGN 16 0x00400000
69 {
Isabella Gottardi118f73e2021-09-16 17:54:35 +010070 ; Cache area (if used)
71 *.o (.bss.NoInit.ethos_u_cache)
72
73 ; activation buffers a.k.a tensor arena when memory mode sram only or shared sram
74 *.o (.bss.NoInit.activation_buf_sram)
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010075 }
alexander3c798932021-03-26 21:42:19 +000076}
77
78;---------------------------------------------------------
79; Second load region (DDR)
80;---------------------------------------------------------
81LOAD_REGION_1 0x70000000 0x02000000
82{
83 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010084 ; 32 MiB of DDR space for neural network model,
85 ; input vectors and labels. If the activation buffer
86 ; size required by the network is bigger than the
87 ; SRAM size available, it is accommodated here.
alexander3c798932021-03-26 21:42:19 +000088 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010089 ddr.bin 0x70000000 ALIGN 16 0x02000000
alexander3c798932021-03-26 21:42:19 +000090 {
91 ; nn model's baked in input matrices
92 *.o (ifm)
93
Isabella Gottardi118f73e2021-09-16 17:54:35 +010094 ; nn model's default space
alexander3c798932021-03-26 21:42:19 +000095 *.o (nn_model)
96
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010097 ; labels
98 *.o (labels)
99
Isabella Gottardi118f73e2021-09-16 17:54:35 +0100100 ; activation buffers a.k.a tensor arena when memory mode dedicated sram
101 *.o (activation_buf_dram)
alexander3c798932021-03-26 21:42:19 +0000102 }
103
104 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +0100105 ; First 256kiB of BRAM (FPGA SRAM) used for RO data.
106 ; Note: Total BRAM size available is 2MiB.
alexander3c798932021-03-26 21:42:19 +0000107 ;-----------------------------------------------------
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +0100108 bram.bin 0x11000000 ALIGN 8 0x00040000
alexander3c798932021-03-26 21:42:19 +0000109 {
110 ; RO data (incl. unwinding tables for debugging)
111 .ANY (+RO-DATA)
112 }
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +0100113
114 ;-----------------------------------------------------
115 ; 960 KiB of remaining part of the 2MiB BRAM used as
116 ; heap space. 0x000F0000 of 0x0x001C0000 available.
117 ;-----------------------------------------------------
118 ARM_LIB_HEAP 0x11040000 EMPTY ALIGN 8 0x000F0000
119 {}
alexander3c798932021-03-26 21:42:19 +0000120}