summaryrefslogtreecommitdiff
path: root/source/hal/source/components/npu_ta/ethosu_ta_init.c
blob: fc2b90594c943f94190414c40151723a0040c9d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
 * SPDX-FileCopyrightText: Copyright 2022, 2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
 * SPDX-License-Identifier: Apache-2.0
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "ethosu_ta_init.h"

#include "log_macros.h"                 /* Logging functions */

#include "timing_adapter.h"             /* Arm Ethos-U timing adapter driver header */
#include "timing_adapter_settings.h"    /* Arm Ethos-U timing adapter settings */

static uint32_t init_ta(uintptr_t base_addr,
                        struct timing_adapter_settings * ta_s,
                        char * name,
                        uint8_t idx) {
    struct timing_adapter ta;

    if (0 != ta_init(&ta, base_addr)) {
        printf_err("TA_%s%" PRIx8 " initialisation failed\n", name, idx);
        return 1;
    }

    ta_set_all(&ta, ta_s);
    info("Configured TA_%s%" PRIx8 "\t@0x%" PRIx32 "\n", name, idx, base_addr);
    return 0;
}

static uint32_t init_sram_ta(uintptr_t base_addr, uint8_t idx) {
    struct timing_adapter_settings ta_s = {
        .maxr           = SRAM_MAXR,
        .maxw           = SRAM_MAXW,
        .maxrw          = SRAM_MAXRW,
        .rlatency       = SRAM_RLATENCY,
        .wlatency       = SRAM_WLATENCY,
        .pulse_on       = SRAM_PULSE_ON,
        .pulse_off      = SRAM_PULSE_OFF,
        .bwcap          = SRAM_BWCAP,
        .perfctrl       = SRAM_PERFCTRL,
        .perfcnt        = SRAM_PERFCNT,
        .mode           = SRAM_MODE,
        .maxpending     = 0, /* This is a read-only parameter */
        .histbin        = SRAM_HISTBIN,
        .histcnt        = SRAM_HISTCNT
    };

    return init_ta(base_addr, &ta_s, "SRAM", idx);
}


static uint32_t init_ext_ta(uintptr_t base_addr, uint8_t idx) {
    struct timing_adapter_settings ta_s = {
        .maxr           = EXT_MAXR,
        .maxw           = EXT_MAXW,
        .maxrw          = EXT_MAXRW,
        .rlatency       = EXT_RLATENCY,
        .wlatency       = EXT_WLATENCY,
        .pulse_on       = EXT_PULSE_ON,
        .pulse_off      = EXT_PULSE_OFF,
        .bwcap          = EXT_BWCAP,
        .perfctrl       = EXT_PERFCTRL,
        .perfcnt        = EXT_PERFCNT,
        .mode           = EXT_MODE,
        .maxpending     = 0, /* This is a read-only parameter */
        .histbin        = EXT_HISTBIN,
        .histcnt        = EXT_HISTCNT
    };

    return init_ta(base_addr, &ta_s, "EXT", idx);
}


int arm_ethosu_timing_adapter_init(void)
{
#if defined(TA_SRAM0_BASE)
    if (0 != init_sram_ta(TA_SRAM0_BASE, 0)) {
        return 1;
    }
#endif /* defined (TA_SRAM0_BASE) */

#if defined(TA_SRAM1_BASE)
    if (0 != init_sram_ta(TA_SRAM1_BASE, 1)) {
        return 1;
    }
#endif /* defined (TA_SRAM1_BASE) */

#if defined(TA_SRAM2_BASE)
    if (0 != init_sram_ta(TA_SRAM2_BASE, 2)) {
        return 1;
    }
#endif /* defined (TA_SRAM2_BASE) */

#if defined(TA_SRAM3_BASE)
    if (0 != init_sram_ta(TA_SRAM3_BASE, 3)) {
        return 1;
    }
#endif /* defined (TA_SRAM3_BASE) */

#if defined(TA_EXT0_BASE)
    if (0 != init_ext_ta(TA_EXT0_BASE, 0)) {
        return 1;
    }
#endif /* defined (TA_EXT0_BASE) */

#if defined(TA_EXT1_BASE)
    if (0 != init_ext_ta(TA_EXT1_BASE, 1)) {
        return 1;
    }
#endif /* defined (TA_EXT1_BASE) */

    return 0;
}