blob: 30e151623d6f20a4e59070cfcd233d8885877aa9 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001#----------------------------------------------------------------------------
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#----------------------------------------------------------------------------
17
18#----------------------------------------------------------------------------
19# CMake description file for the Ethos-U55 Timing Adapter settings (single
20# NPU core with two AXIs).
21#----------------------------------------------------------------------------
22
Cisco Cervelleraf085fa52021-08-02 09:32:07 +010023set(TA0_BASE "${SEC_ETHOS_U_NPU_TA0_BASE}" CACHE STRING "Timing adapter 0: base-address")
24set(TA1_BASE "${SEC_ETHOS_U_NPU_TA1_BASE}" CACHE STRING "Timing adapter 1: base-address")
alexander3c798932021-03-26 21:42:19 +000025
26message(STATUS "using TA0_BASE @ ${TA0_BASE}; TA1_BASE @ ${TA1_BASE}.")
27
28# Timing adapter settings for AXI0
29set(TA0_MAXR "8" CACHE STRING "6-bit field. Max no. of pending reads. 0=infinite")
30set(TA0_MAXW "8" CACHE STRING "6-bit field. Max no. of pending writes. 0=infinite")
31set(TA0_MAXRW "0" CACHE STRING "6-bit field. Max no. of pending reads+writes. 0=infinite")
32set(TA0_RLATENCY "32" CACHE STRING "12-bit field. Minimum latency (clock cycles) from AVALID to RVALID.")
33set(TA0_WLATENCY "32" CACHE STRING "12-bit field. Minimum latency (clock cycles) from WVALID&WLAST to BVALID.")
34set(TA0_PULSE_ON "3999" CACHE STRING "No. of cycles addresses let through (0-65535).")
35set(TA0_PULSE_OFF "1" CACHE STRING "No. of cycles addresses blocked (0-65535).")
36set(TA0_BWCAP "4000" CACHE STRING "16-bit field. Max no. of 64-bit words transfered per pulse cycle 0=infinite")
37set(TA0_PERFCTRL "0" CACHE STRING "6-bit field selecting an event for event counter 0=default")
38set(TA0_PERFCNT "0" CACHE STRING "32-bit event counter")
39set(TA0_MODE "1" CACHE STRING "Bit 0: 1=enable dynamic clocking to avoid underrun;
40 Bit 1: 1=enable random AR reordering (0=default);
41 Bit 2: 1=enable random R reordering (0=default);
42 Bit 3: 1=enable random B reordering (0=default);
43 Bit 11-4: Frequency scale 0=full speed, 255=(1/256) speed")
44set(TA0_HISTBIN "0" CACHE STRING "Controls which histogram bin (0-15) that should be accessed by HISTCNT.")
45set(TA0_HISTCNT "0" CACHE STRING "32-bit field. Read/write the selected histogram bin.")
46
47# Timing adapter settings for AXI1
48set(TA1_MAXR "2" CACHE STRING "6-bit field. Max no. of pending reads. 0=infinite")
49set(TA1_MAXW "0" CACHE STRING "6-bit field. Max no. of pending writes. 0=infinite")
50set(TA1_MAXRW "0" CACHE STRING "6-bit field. Max no. of pending reads+writes. 0=infinite")
51set(TA1_RLATENCY "64" CACHE STRING "12-bit field. Minimum latency (clock cycles) from AVALID to RVALID.")
52set(TA1_WLATENCY "0" CACHE STRING "12-bit field. Minimum latency (clock cycles) from WVALID&WLAST to BVALID.")
53set(TA1_PULSE_ON "320" CACHE STRING "No. of cycles addresses let through (0-65535).")
54set(TA1_PULSE_OFF "80" CACHE STRING "No. of cycles addresses blocked (0-65535).")
55set(TA1_BWCAP "50" CACHE STRING "16-bit field. Max no. of 64-bit words transfered per pulse cycle 0=infinite")
56set(TA1_PERFCTRL "0" CACHE STRING "6-bit field selecting an event for event counter 0=default")
57set(TA1_PERFCNT "0" CACHE STRING "32-bit event counter")
58set(TA1_MODE "1" CACHE STRING "Bit 0: 1=enable dynamic clocking to avoid underrun;
59 Bit 1: 1=enable random AR reordering (0=default);
60 Bit 2: 1=enable random R reordering (0=default);
61 Bit 3: 1=enable random B reordering (0=default);
62 Bit 11-4: Frequency scale 0=full speed, 255=(1/256) speed")
63set(TA1_HISTBIN "0" CACHE STRING "Controls which histogram bin (0-15) that should be accessed by HISTCNT.")
64set(TA1_HISTCNT "0" CACHE STRING "32-bit field. Read/write the selected histogram bin.")