blob: 03d8245317fe878984e9068225b3ce5aa5dd85a3 [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 */
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 Sisodia659fcd92021-05-19 10:30:06 +010021/* Container for timestamp for simple platform. */
22typedef struct _generic_time_counter {
alexander3c798932021-03-26 21:42:19 +000023 uint64_t counter_systick;
alexander31ae9f02022-02-10 16:15:54 +000024} base_time_counter;
alexander3c798932021-03-26 21:42:19 +000025
26/**
27 * @brief Resets the counters.
28 */
29void timer_reset(void);
30
31/**
32 * @brief Gets the current counter values.
33 * @returns counter struct.
34 **/
alexander31ae9f02022-02-10 16:15:54 +000035base_time_counter get_time_counter(void);
alexander3c798932021-03-26 21:42:19 +000036
37/**
38 * @brief Gets the cycle counts elapsed between start and end.
39 * @return difference in counter values as 32 bit unsigned integer.
40 */
alexander31ae9f02022-02-10 16:15:54 +000041uint64_t get_cycle_count_diff(base_time_counter *start, base_time_counter *end);
alexander3c798932021-03-26 21:42:19 +000042
43/**
44 * @brief Enables or triggers cycle counting mechanism, if required
45 * by the platform.
46 */
47void start_cycle_counter(void);
48
49/**
50 * @brief Stops cycle counting mechanism, if required by the platform.
51 */
52void stop_cycle_counter(void);
53
Kshitij Sisodia659fcd92021-05-19 10:30:06 +010054#endif /* TIMER_SIMPLE_PLATFORM_H */