| /* |
| * Copyright (c) 2024 MASSDRIVER EI (massdriver.space) |
| * Copyright (c) 2018-2023 Intel Corporation |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| #include <limits.h> |
| |
| #include <zephyr/init.h> |
| #include <zephyr/devicetree.h> |
| #include <zephyr/drivers/timer/system_timer.h> |
| #include <zephyr/sys/clock.h> |
| #include <zephyr/irq.h> |
| |
| #define DT_DRV_COMPAT riscv_machine_timer |
| |
| #define MTIME_REG DT_INST_REG_ADDR_BY_NAME(0, mtime) |
| #define MTIMECMP_REG DT_INST_REG_ADDR_BY_NAME(0, mtimecmp) |
| #define TIMER_IRQN DT_INST_IRQN(0) |
| |
| #define CYC_PER_TICK (uint32_t)(sys_clock_hw_cycles_per_sec() / CONFIG_SYS_CLOCK_TICKS_PER_SEC) |
| |
| /* the unsigned long cast limits divisions to native CPU register width */ |
| #define cycle_diff_t unsigned long |
| #define CYCLE_DIFF_MAX (~(cycle_diff_t)0) |
| |
| /* |
| * Maximum number of cycles to wait between two sys_clock_announce() reports: |
| * the elapsed cycle count must fit in a cycle_diff_t before it is divided down |
| * to ticks. Reserve 1/4 of the range as headroom for the unavoidable IRQ |
| * servicing latency so a late report still fits, then add the LSB so the value |
| * clears a run of low set bits for a nicer literal in the generated assembly. |
| */ |
| #define CYCLES_MAX_1 ((uint64_t)CYCLE_DIFF_MAX) |
| #define CYCLES_MAX_2 (CYCLES_MAX_1 / 2 + CYCLES_MAX_1 / 4) |
| #define CYCLES_MAX (CYCLES_MAX_2 + LSB_GET(CYCLES_MAX_2)) |
| |
| static uint64_t last_count; |
| static uint64_t last_ticks; |
| static uint32_t last_elapsed; |
| |
| #if defined(CONFIG_TEST) |
| const int32_t z_sys_timer_irq_for_test = TIMER_IRQN; |
| #endif |
| |
| static uintptr_t get_hart_mtimecmp(void) |
| { |
| return MTIMECMP_REG + (arch_proc_id() * 8); |
| } |
| |
| static void set_mtimecmp(uint64_t time) |
| { |
| #ifdef CONFIG_64BIT |
| *(volatile uint64_t *)get_hart_mtimecmp() = time; |
| #else |
| volatile uint32_t *r = (uint32_t *)get_hart_mtimecmp(); |
| |
| /* Per spec, the RISC-V MTIME/MTIMECMP registers are 64 bit, |
| * but are NOT internally latched for multiword transfers. So |
| * we have to be careful about sequencing to avoid triggering |
| * spurious interrupts: always set the high word to a max |
| * value first. |
| */ |
| r[1] = 0xffffffff; |
| r[0] = (uint32_t)time; |
| r[1] = (uint32_t)(time >> 32); |
| #endif |
| } |
| |
| static uint64_t mtime(void) |
| { |
| #ifdef CONFIG_64BIT |
| return *(volatile uint64_t *)MTIME_REG; |
| #else |
| volatile uint32_t *r = (uint32_t *)MTIME_REG; |
| uint32_t lo, hi; |
| |
| /* Likewise, must guard against rollover when reading */ |
| do { |
| hi = r[1]; |
| lo = r[0]; |
| } while (r[1] != hi); |
| |
| return (((uint64_t)hi) << 32) | lo; |
| #endif |
| } |
| |
| static void timer_isr(const void *arg) |
| { |
| ARG_UNUSED(arg); |
| |
| k_spinlock_key_t key = sys_clock_lock(); |
| |
| uint64_t now = mtime(); |
| uint64_t dcycles = now - last_count; |
| uint32_t dticks = (cycle_diff_t)dcycles / CYC_PER_TICK; |
| |
| last_count += (cycle_diff_t)dticks * CYC_PER_TICK; |
| last_ticks += dticks; |
| last_elapsed = 0; |
| |
| if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) { |
| uint64_t next = last_count + CYC_PER_TICK; |
| |
| set_mtimecmp(next); |
| } |
| |
| sys_clock_announce_locked(dticks, key); |
| } |
| |
| void sys_clock_set_timeout(uint32_t ticks, bool idle) |
| { |
| ARG_UNUSED(idle); |
| |
| __ASSERT(sys_clock_is_locked(), "system clock lock not held"); |
| |
| if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) { |
| return; |
| } |
| |
| uint64_t cyc; |
| |
| cyc = (last_ticks + last_elapsed + ticks) * CYC_PER_TICK; |
| if ((cyc - last_count) > CYCLES_MAX) { |
| cyc = last_count + CYCLES_MAX; |
| } |
| set_mtimecmp(cyc); |
| } |
| |
| uint32_t sys_clock_elapsed(void) |
| { |
| __ASSERT(sys_clock_is_locked(), "system clock lock not held"); |
| |
| if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) { |
| return 0; |
| } |
| |
| uint64_t now = mtime(); |
| uint64_t dcycles = now - last_count; |
| uint32_t dticks = (cycle_diff_t)dcycles / CYC_PER_TICK; |
| |
| last_elapsed = dticks; |
| return dticks; |
| } |
| |
| uint32_t sys_clock_cycle_get_32(void) |
| { |
| return ((uint32_t)mtime()) << CONFIG_RISCV_MACHINE_TIMER_SYSTEM_CLOCK_DIVIDER; |
| } |
| |
| uint64_t sys_clock_cycle_get_64(void) |
| { |
| return mtime() << CONFIG_RISCV_MACHINE_TIMER_SYSTEM_CLOCK_DIVIDER; |
| } |
| |
| static int sys_clock_driver_init(void) |
| { |
| IRQ_CONNECT(TIMER_IRQN, 0, timer_isr, NULL, 0); |
| last_ticks = mtime() / CYC_PER_TICK; |
| last_count = last_ticks * CYC_PER_TICK; |
| set_mtimecmp(last_count + CYC_PER_TICK); |
| irq_enable(TIMER_IRQN); |
| return 0; |
| } |
| |
| #ifdef CONFIG_SMP |
| void smp_timer_init(void) |
| { |
| set_mtimecmp(last_count + CYC_PER_TICK); |
| irq_enable(TIMER_IRQN); |
| } |
| #endif |
| |
| SYS_INIT(sys_clock_driver_init, PRE_KERNEL_2, CONFIG_SYSTEM_CLOCK_INIT_PRIORITY); |