/trusted-firmware-a/drivers/nxp/timer/ |
A D | nxp_timer.c | 24 cntpct = read_cntpct_el0(); in get_timer_val() 33 cntpct = read_cntpct_el0(); in timer_get_value() 40 temp = read_cntpct_el0(); in timer_get_value() 44 cntpct = read_cntpct_el0(); in timer_get_value() 46 temp = read_cntpct_el0(); in timer_get_value()
|
/trusted-firmware-a/plat/layerscape/common/ |
A D | ls_timer.c | 15 return read_cntpct_el0() * 1000 / read_cntfrq_el0() - start; in ls_get_timer() 26 return (uint32_t)(~read_cntpct_el0()); in ls_timeus_get_value()
|
/trusted-firmware-a/drivers/renesas/common/delay/ |
A D | micro_delay.c | 26 base_count = read_cntpct_el0(); in rcar_micro_delay() 28 get_count = read_cntpct_el0(); in rcar_micro_delay()
|
/trusted-firmware-a/include/drivers/ |
A D | delay_timer.h | 39 cnt += read_cntpct_el0(); in timeout_init_us() 46 return read_cntpct_el0() > expire_cnt; in timeout_elapsed()
|
/trusted-firmware-a/plat/layerscape/board/ls1043/ |
A D | ls1043_stack_protector.c | 21 return RANDOM_CANARY_VALUE ^ read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/arm/board/fvp/ |
A D | fvp_stack_protector.c | 22 return RANDOM_CANARY_VALUE ^ read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/arm/board/fvp_r/ |
A D | fvp_r_stack_protector.c | 22 return RANDOM_CANARY_VALUE ^ read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/rockchip/common/ |
A D | rockchip_stack_protector.c | 22 return RANDOM_CANARY_VALUE ^ read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/st/stm32mp1/ |
A D | stm32mp1_stack_protector.c | 20 return RANDOM_CANARY_VALUE ^ (u_register_t)read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/nxp/common/setup/ |
A D | ls_stack_protector.c | 21 return RANDOM_CANARY_VALUE ^ read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/qemu/common/ |
A D | qemu_stack_protector.c | 30 return RANDOM_CANARY_VALUE ^ read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/nvidia/tegra/common/ |
A D | tegra_stack_protector.c | 27 return seed ^ read_cntpct_el0(); in plat_get_stack_protector_canary()
|
/trusted-firmware-a/plat/mediatek/mt6795/ |
A D | plat_delay_timer.c | 19 return (uint32_t)(~read_cntpct_el0()); in plat_get_timer_value()
|
/trusted-firmware-a/plat/marvell/armada/common/ |
A D | plat_delay_timer.c | 22 return (uint32_t)(~read_cntpct_el0()); in plat_get_timer_value()
|
/trusted-firmware-a/plat/intel/soc/common/ |
A D | socfpga_delay_timer.c | 26 return (uint32_t)(~read_cntpct_el0()); in socfpga_get_timer_value()
|
/trusted-firmware-a/plat/arm/common/aarch64/ |
A D | arm_pauth.c | 21 uint64_t cntpct = read_cntpct_el0(); in plat_init_apkey()
|
/trusted-firmware-a/plat/mediatek/mt8173/drivers/timer/ |
A D | mt_cpuxgpt.c | 31 cval = read_cntpct_el0(); in generic_timer_backup()
|
/trusted-firmware-a/plat/mediatek/common/drivers/timer/ |
A D | mt_timer.c | 27 rel_base = read_cntpct_el0() - atf_time_base; in sched_clock()
|
/trusted-firmware-a/plat/arm/board/corstone700/common/ |
A D | corstone700_stack_protector.c | 16 uint64_t cntpct = read_cntpct_el0(); in plat_generate_random_number()
|
/trusted-firmware-a/plat/arm/board/diphda/common/ |
A D | diphda_stack_protector.c | 16 uint64_t cntpct = read_cntpct_el0(); in plat_generate_random_number()
|
/trusted-firmware-a/drivers/delay_timer/ |
A D | generic_delay_timer.c | 29 return (uint32_t)(~read_cntpct_el0()); in get_timer_value()
|
/trusted-firmware-a/plat/mediatek/mt6795/drivers/timer/ |
A D | mt_cpuxgpt.c | 33 cval = (((read_cntpct_el0() - atf_time_base)*1000)/ in sched_clock()
|
/trusted-firmware-a/bl32/tsp/ |
A D | tsp_timer.c | 34 cval = read_cntpct_el0() + (read_cntfrq_el0() >> 1); in tsp_generic_timer_start()
|
/trusted-firmware-a/plat/ti/k3/common/drivers/sec_proxy/ |
A D | sec_proxy.c | 156 uint32_t tick_start = (uint32_t)read_cntpct_el0(); in k3_sec_proxy_verify_thread() 161 if (((uint32_t)read_cntpct_el0() - tick_start) > in k3_sec_proxy_verify_thread()
|
/trusted-firmware-a/include/lib/pmf/ |
A D | pmf_helpers.h | 60 unsigned long long ts = read_cntpct_el0(); \ 69 (_tsval) = read_cntpct_el0(); \
|