summaryrefslogtreecommitdiff
path: root/ports/risc-v32/gnu/example_build/qemu_virt/hwtimer.c
blob: 33c49b63800a4a9cd2f39dafd440505739f26ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/***************************************************************************
 * Copyright (c) 2025 10xEngineers
 *
 * This program and the accompanying materials are made available under the
 * terms of the MIT License which is available at
 * https://opensource.org/licenses/MIT.
 *
 * SPDX-License-Identifier: MIT
 **************************************************************************/

#include "tx_port.h"
#include "csr.h"
#include "hwtimer.h"

#define CLINT		           (0x02000000L)
#define CLINT_TIME             (CLINT+0xBFF8)
#define CLINT_TIMECMP(hart_id) (CLINT+0x4000+8*(hart_id))


int hwtimer_init(void)
{
	int hart = riscv_get_core();
	uint64_t time = *((uint64_t*)CLINT_TIME);
    	*((uint64_t*)CLINT_TIMECMP(hart)) = time + TICKNUM_PER_TIMER;
	return 0;
}

int hwtimer_handler(void)
{
	int hart = riscv_get_core();
        uint64_t time = *((uint64_t*)CLINT_TIME);
        *((uint64_t*)CLINT_TIMECMP(hart)) = time + TICKNUM_PER_TIMER;
	return 0;
}