blob: 8855c75b3349c52ccd8febf19da0ebaed38cdbbd (
plain)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: BSD-3-Clause */
#include <stdint.h>
#include <arch/clock.h>
void set_cntfrq(uint32_t freq)
{
__asm__ __volatile__("mcr p15, 0, %0, c14, c0, 0\n" :: "r"(freq));
}
|