blob: 08124d3cbded861811b5cc9c4a02704a16dc84fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <mcall.h>
#include <stdint.h>
#include <device/mmio.h>
#include <soc/addressmap.h>
void mtime_init(void)
{
long hart_id = read_csr(mhartid);
HLS()->time = (uint64_t *)(FU540_CLINT + 0xbff8);
HLS()->timecmp = (uint64_t *)(FU540_CLINT + 0x4000 + 8 * hart_id);
}
void set_msip(int hartid, int val)
{
write32((void *)(FU540_CLINT + 4 * (uintptr_t)hartid), !!val);
}
|