summaryrefslogtreecommitdiff
path: root/src/soc/sifive/fu740/clint.c
blob: 818b62821d888a67a654d0e168154fd9888d0902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-only */

#include <mcall.h>
#include <stdint.h>
#include <device/mmio.h>
#include <soc/addressmap.h>

#define CLINT_MTIME 0xBFF8
#define CLINT_MTIMECMP 0x4000

void mtime_init(void)
{
	long hart_id = read_csr(mhartid);
	HLS()->time = (uint64_t *)(FU740_CLINT + CLINT_MTIME);
	HLS()->timecmp = (uint64_t *)(FU740_CLINT + CLINT_MTIMECMP + 8 * hart_id);
}

void set_msip(int hartid, int val)
{
	write32((void *)(FU740_CLINT + 4 * (uintptr_t)hartid), !!val);
}