blob: da8b6e4f1cf4554c6f7f4f9558204bd1ac583e2c [file] [log] [blame]
Antonio Nino Diazc326c342019-01-11 11:20:10 +00001/*
2 * Copyright (c) 2019, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef ARCH_FEATURES_H
8#define ARCH_FEATURES_H
9
10#include <stdbool.h>
11
12#include <arch_helpers.h>
13
Antonio Nino Diazd29d21e2019-02-06 09:23:04 +000014static inline bool is_armv7_gentimer_present(void)
15{
16 /* The Generic Timer is always present in an ARMv8-A implementation */
17 return true;
18}
19
Antonio Nino Diazc326c342019-01-11 11:20:10 +000020static inline bool is_armv8_2_ttcnp_present(void)
21{
22 return ((read_id_aa64mmfr2_el1() >> ID_AA64MMFR2_EL1_CNP_SHIFT) &
23 ID_AA64MMFR2_EL1_CNP_MASK) != 0U;
24}
25
Sathees Balya74155972019-01-25 11:36:01 +000026static inline bool is_armv8_4_ttst_present(void)
27{
28 return ((read_id_aa64mmfr2_el1() >> ID_AA64MMFR2_EL1_ST_SHIFT) &
29 ID_AA64MMFR2_EL1_ST_MASK) == 1U;
30}
31
Antonio Nino Diazc326c342019-01-11 11:20:10 +000032#endif /* ARCH_FEATURES_H */