blob: 6b9c5e01fda562a3082678c7b748683c88c9ab04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <mcall.h>
#include <device/mmio.h>
#include <mainboard/addressmap.h>
/* This function is used to initialize HLS()->time/HLS()->timecmp */
void mtime_init(void)
{
long hart_id = read_csr(mhartid);
HLS()->time = (uint64_t *)(QEMU_VIRT_CLINT + 0xbff8);
HLS()->timecmp = (uint64_t *)(QEMU_VIRT_CLINT + 0x4000 + 8 * hart_id);
}
void set_msip(int hartid, int val)
{
write32((void *)(QEMU_VIRT_CLINT + 4 * (uintptr_t)hartid), !!val);
}
|