blob: 683a2079211c39f1f8e843b59b5d7c6e0a071a43 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +00002 * Copyright (c) 2021-2022 Arm Limited. All rights reserved.
alexander3c798932021-03-26 21:42:19 +00003 * 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 */
Kshitij Sisodia659fcd92021-05-19 10:30:06 +010017#ifndef TIMER_SIMPLE_PLATFORM_H
18#define TIMER_SIMPLE_PLATFORM_H
alexander31ae9f02022-02-10 16:15:54 +000019#include <stdint.h>
alexander3c798932021-03-26 21:42:19 +000020
Kshitij Sisodia6a2ac462022-03-01 17:36:06 +000021#include "RTE_Components.h"
Kshitij Sisodiafb93fa72022-02-24 09:51:02 +000022
Kshitij Sisodia659fcd92021-05-19 10:30:06 +010023/* Container for timestamp for simple platform. */
24typedef struct _generic_time_counter {
alexander3c798932021-03-26 21:42:19 +000025 uint64_t counter_systick;
alexander31ae9f02022-02-10 16:15:54 +000026} base_time_counter;
alexander3c798932021-03-26 21:42:19 +000027
28/**
29 * @brief Resets the counters.
30 */
31void timer_reset(void);
32
33/**
34 * @brief Gets the current counter values.
35 * @returns counter struct.
36 **/
alexander31ae9f02022-02-10 16:15:54 +000037base_time_counter get_time_counter(void);
alexander3c798932021-03-26 21:42:19 +000038
39/**
40 * @brief Gets the cycle counts elapsed between start and end.
41 * @return difference in counter values as 32 bit unsigned integer.
42 */
alexander31ae9f02022-02-10 16:15:54 +000043uint64_t get_cycle_count_diff(base_time_counter *start, base_time_counter *end);
alexander3c798932021-03-26 21:42:19 +000044
45/**
46 * @brief Enables or triggers cycle counting mechanism, if required
47 * by the platform.
48 */
49void start_cycle_counter(void);
50
51/**
52 * @brief Stops cycle counting mechanism, if required by the platform.
53 */
54void stop_cycle_counter(void);
55
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000056/**
57 * @brief System tick interrupt handler.
58 **/
59void SysTick_Handler(void);
60
Kshitij Sisodia659fcd92021-05-19 10:30:06 +010061#endif /* TIMER_SIMPLE_PLATFORM_H */