gtimer.c 4.2 KB
Newer Older
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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
/*
 * Copyright (c) 2006-2022, RT-Thread Development Team
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2021-03-30     huijie.feng  first version
 */

#include "cp15.h"
#include <rtdef.h>

/** Set CNTFRQ
 *  This function assigns the given value to PL1 Physical Timer Counter Frequency Register (CNTFRQ).
 *  @param value: CNTFRQ Register value to set
 */
static inline void __set_cntfrq(rt_uint32_t value)
{
    __set_cp(15, 0, value, 14, 0, 0);
}

/** Get CNTFRQ
 *  This function returns the value of the PL1 Physical Timer Counter Frequency Register (CNTFRQ).
 *  return CNTFRQ Register value
 */
static inline rt_uint32_t __get_cntfrq(void)
{
    rt_uint32_t result;
    __get_cp(15, 0, result, 14, 0, 0);
    return result;
}

/** Set CNTP_TVAL
 *  This function assigns the given value to PL1 Physical Timer Value Register (CNTP_TVAL).
 *  param value: CNTP_TVAL Register value to set
 */
static inline void __set_cntp_tval(rt_uint32_t value)
{
    __set_cp(15, 0, value, 14, 2, 0);
}

/** Get CNTP_TVAL
 *  This function returns the value of the PL1 Physical Timer Value Register (CNTP_TVAL).
 *  return CNTP_TVAL Register value
 */
static inline rt_uint32_t __get_cntp_tval(void)
{
    rt_uint32_t result;
    __get_cp(15, 0, result, 14, 2, 0);
    return result;
}

/** Get CNTPCT
 *  This function returns the value of the 64 bits PL1 Physical Count Register (CNTPCT).
 *  return CNTPCT Register value
 */
static inline rt_uint64_t __get_cntpct(void)
{
    rt_uint64_t result;
    __get_cp64(15, 0, result, 14);
    return result;
}

/** Set CNTP_CVAL
 *  This function assigns the given value to 64bits PL1 Physical Timer CompareValue Register (CNTP_CVAL).
 *  param value: CNTP_CVAL Register value to set
*/
static inline void __set_cntp_cval(rt_uint64_t value)
{
    __set_cp64(15, 2, value, 14);
}

/** Get CNTP_CVAL
 *  This function returns the value of the 64 bits PL1 Physical Timer CompareValue Register (CNTP_CVAL).
 *  return CNTP_CVAL Register value
 */
static inline rt_uint64_t __get_cntp_cval(void)
{
    rt_uint64_t result;
    __get_cp64(15, 2, result, 14);
    return result;
}

/** Set CNTP_CTL
 *  This function assigns the given value to PL1 Physical Timer Control Register (CNTP_CTL).
 *  param value: CNTP_CTL Register value to set
 */
static inline void __set_cntp_ctl(rt_uint32_t value)
{
    __set_cp(15, 0, value, 14, 2, 1);
}

/** Get CNTP_CTL register
 *  return CNTP_CTL Register value
 */
static inline rt_uint32_t __get_cntp_ctl(void)
{
    rt_uint32_t result;
    __get_cp(15, 0, result, 14, 2, 1);
    return result;
}

/** Configures the frequency the timer shall run at.
 *  param value The timer frequency in Hz.
 */
void gtimer_set_counter_frequency(rt_uint32_t value)
{
    __set_cntfrq(value);
    __asm__ volatile("isb 0xF":::"memory");
}

/** Get the frequency the timer shall run at.
 *  return timer frequency in Hz.
 */
rt_uint32_t gtimer_get_counter_frequency(void)
{
    return (__get_cntfrq());
}

/** Sets the reset value of the timer.
 *  param value: The value the timer is loaded with.
 */
void gtimer_set_load_value(rt_uint32_t value)
{
    __set_cntp_tval(value);
    __asm__ volatile("isb 0xF":::"memory");
}

/** Get the current counter value.
 *  return Current counter value.
 */
rt_uint32_t gtimer_get_current_value(void)
{
    return (__get_cntp_tval());
}

/** Get the current physical counter value.
 *  return Current physical counter value.
 */
rt_uint64_t gtimer_get_current_physical_value(void)
{
    return (__get_cntpct());
}

/** Set the physical compare value.
 *  param value: New physical timer compare value.
 */
void gtimer_set_physical_compare_value(rt_uint64_t value)
{
    __set_cntp_cval(value);
    __asm__ volatile("isb 0xF":::"memory");
}

/** Get the physical compare value.
 *  return Physical compare value.
 */
rt_uint64_t gtimer_get_physical_compare_value(void)
{
    return (__get_cntp_cval());
}

/** Configure the timer by setting the control value.
 *  param value: New timer control value.
 */
void gtimer_set_control(rt_uint32_t value)
{
    __set_cntp_ctl(value);
    __asm__ volatile("isb 0xF":::"memory");
}

/** Get the control value.
 *  return Control value.
 */
rt_uint32_t gtimer_get_control(void)
{
    return (__get_cntp_ctl());
}