summaryrefslogtreecommitdiff
path: root/source/application/hal/include/timer.h
blob: 2955b7fd46fbb5f0837c2c2d8a058fd9ac054933 (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
/*
 * Copyright (c) 2021 Arm Limited. All rights reserved.
 * 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.
 */
#ifndef HAL_TIMER_H
#define HAL_TIMER_H

#include "hal_config.h"

#if ((PLATFORM_HAL) == PLATFORM_CORTEX_M_BAREMETAL)
#include "baremetal_timer.h"
#elif ((PLATFORM_HAL) == PLATFORM_UNKNOWN_LINUX_OS)
#include "native_timer.h"
#else
#error "Platform does not support a timer API"
#endif /* PLATFORM_HAL */

/** Struct for describing the capabilities available for
 * the timer provided by HAL */
typedef struct _platform_timer_capability {
    uint32_t npu_cycles:    1;
    uint32_t cpu_cycles:    1;
    uint32_t duration_ms:   1;
    uint32_t duration_us:   1;
} timer_capability;

/* Structure to hold a platform specific timer implementation */
typedef struct _platform_timer {
    int inited;                 /**< initialised or not */
    timer_capability cap;       /**< capability of this timer */

    /* reset the timer */
    void (* reset)(void);

    /* Gets the current time counter. */
    time_counter (* get_time_counter)(void);

    /* Gets the duration in milliseconds. */
    time_t (* get_duration_ms)(time_counter *start, time_counter *end);

    /* Gets duration in microseconds. */
    time_t (* get_duration_us)(time_counter *start, time_counter *end);

    /* Gets difference in CPU cycle counts. */
    uint32_t (* get_cpu_cycle_diff)(time_counter *start, time_counter *end);

    /* Gets the difference in terms of total NPU cycle counts. */
    uint64_t (* get_npu_total_cycle_diff)(time_counter *start, time_counter *end);

    /* Gets the difference in terms of active NPU cycle counts. */
    uint64_t (* get_npu_active_cycle_diff)(time_counter *start, time_counter *end);

    /* Wraps get_time_counter function with additional profiling
     * initialisation, if required. */
    time_counter (* start_profiling)(void);

    /* Wraps get_time_counter function along with additional instructions when
     * profiling ends, if required. */
    time_counter (* stop_profiling)(void);

} platform_timer;

/**
 * @brief   Initialise the timer available for the platform.
 **/
void init_timer(platform_timer *timer);

#endif /* HAL_TIMER_H */