-
Notifications
You must be signed in to change notification settings - Fork 10
Update Timer HAL to use new autogen interface #385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,152 +4,119 @@ | |||||
|
|
||||||
| #include "hal/timer.h" | ||||||
| #include "hal/mmio.h" | ||||||
| #include "hal/mocha.h" | ||||||
| #include <stdbool.h> | ||||||
| #include <stddef.h> | ||||||
| #include <stdint.h> | ||||||
|
|
||||||
| void timer_disable(timer_t timer) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_CTRL_REG, 0x0); | ||||||
| } | ||||||
|
|
||||||
| void timer_enable(timer_t timer) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_CTRL_REG, 0x1); | ||||||
| } | ||||||
|
|
||||||
| bool timer_get_enable(timer_t timer) | ||||||
| { | ||||||
| return ((DEV_READ(timer + TIMER_CTRL_REG) & 0x1) == 0x1); | ||||||
| } | ||||||
|
|
||||||
| void timer_set_prescale_step(timer_t timer, uint16_t prescale, uint8_t step) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_CFG0_REG, | ||||||
| (step << TIMER_STEP) | ((prescale & TIMER_PRESCALE_MASK) << TIMER_PRESCALE)); | ||||||
| } | ||||||
|
|
||||||
| uint16_t timer_get_prescale(timer_t timer) | ||||||
| { | ||||||
| return (uint16_t)(DEV_READ(timer + TIMER_CFG0_REG) & TIMER_PRESCALE_MASK); | ||||||
| } | ||||||
|
|
||||||
| uint8_t timer_get_step(timer_t timer) | ||||||
| { | ||||||
| return (uint8_t)(DEV_READ(timer + TIMER_CFG0_REG) >> TIMER_STEP); | ||||||
| } | ||||||
|
|
||||||
| void timer_set_compare_lower(timer_t timer, uint32_t compare_lower) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_COMPARE_LOWER0_0_REG, compare_lower); | ||||||
| } | ||||||
| static void timer_compare_write(timer_t timer, uint64_t compare); | ||||||
|
|
||||||
| void timer_set_compare_upper(timer_t timer, uint32_t compare_upper) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_COMPARE_UPPER0_0_REG, compare_upper); | ||||||
| } | ||||||
|
|
||||||
| void timer_set_compare(timer_t timer, uint64_t compare) | ||||||
| { | ||||||
| timer_set_compare_lower(timer, (uint32_t)(compare & 0xFFFFFFFF)); | ||||||
| timer_set_compare_upper(timer, (uint32_t)(compare >> 32)); | ||||||
| } | ||||||
|
|
||||||
| uint32_t timer_get_compare_lower(timer_t timer) | ||||||
| { | ||||||
| return DEV_READ(timer + TIMER_COMPARE_LOWER0_0_REG); | ||||||
| } | ||||||
|
|
||||||
| uint32_t timer_get_compare_upper(timer_t timer) | ||||||
| { | ||||||
| return DEV_READ(timer + TIMER_COMPARE_UPPER0_0_REG); | ||||||
| } | ||||||
|
|
||||||
| uint64_t timer_get_compare(timer_t timer) | ||||||
| void timer_init(timer_t timer) | ||||||
| { | ||||||
| return (((uint64_t)timer_get_compare_upper(timer)) << 32) | | ||||||
| ((uint64_t)timer_get_compare_lower(timer)); | ||||||
| timer_disable(timer); | ||||||
| timer_interrupt_enable_write(timer, false); | ||||||
| timer_interrupt_clear(timer); | ||||||
| uint64_t cycles = us_to_cycles(1u); | ||||||
| /* configure the timer to tick by one every us */ | ||||||
| timer_cfg0 cfg = { | ||||||
| .prescale = cycles - 1u, | ||||||
| .step = 1u, | ||||||
| }; | ||||||
| VOLATILE_WRITE(timer->cfg0, cfg); | ||||||
| } | ||||||
|
|
||||||
| void timer_set_value_lower(timer_t timer, uint32_t value_lower) | ||||||
| bool timer_interrupt_enable_read(timer_t timer) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_V_LOWER0_REG, value_lower); | ||||||
| timer_intr_enable0 intr_enable = VOLATILE_READ(timer->intr_enable0); | ||||||
| return intr_enable.ie; | ||||||
| } | ||||||
|
|
||||||
| void timer_set_value_upper(timer_t timer, uint32_t value_upper) | ||||||
| void timer_interrupt_enable_write(timer_t timer, bool enable) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_V_UPPER0_REG, value_upper); | ||||||
| timer_intr_enable0 intr_enable = { .ie = enable }; | ||||||
| VOLATILE_WRITE(timer->intr_enable0, intr_enable); | ||||||
| } | ||||||
|
|
||||||
| void timer_set_value(timer_t timer, uint64_t value) | ||||||
| void timer_interrupt_force(timer_t timer) | ||||||
| { | ||||||
| timer_set_value_lower(timer, (uint32_t)(value & 0xFFFFFFFF)); | ||||||
| timer_set_value_upper(timer, (uint32_t)(value >> 32)); | ||||||
| timer_intr_test0 intr_test = { .t = true }; | ||||||
| VOLATILE_WRITE(timer->intr_test0, intr_test); | ||||||
| } | ||||||
|
|
||||||
| uint32_t timer_get_value_lower(timer_t timer) | ||||||
| void timer_interrupt_clear(timer_t timer) | ||||||
| { | ||||||
| return DEV_READ(timer + TIMER_V_LOWER0_REG); | ||||||
| /* the rv_timer is effectively a level-triggered interrupt, so to | ||||||
| * clear it we can schedule an interrupt infinitely far away... */ | ||||||
| timer_compare_write(timer, UINT64_MAX); | ||||||
| /* ...then clear the latched interrupt bit */ | ||||||
| timer_intr_state0 intr_state = { .is = true }; | ||||||
| VOLATILE_WRITE(timer->intr_state0, intr_state); | ||||||
| } | ||||||
|
|
||||||
| uint32_t timer_get_value_upper(timer_t timer) | ||||||
| bool timer_interrupt_pending(timer_t timer) | ||||||
| { | ||||||
| return DEV_READ(timer + TIMER_V_UPPER0_REG); | ||||||
| timer_intr_state0 intr_state = VOLATILE_READ(timer->intr_state0); | ||||||
| return intr_state.is; | ||||||
| } | ||||||
|
|
||||||
| uint64_t timer_get_value(timer_t timer) | ||||||
| void timer_enable(timer_t timer) | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit. I would prefer |
||||||
| { | ||||||
| return (((uint64_t)timer_get_value_upper(timer)) << 32) | | ||||||
| ((uint64_t)timer_get_value_lower(timer)); | ||||||
| timer_ctrl ctrl = { .active = true }; | ||||||
| VOLATILE_WRITE(timer->ctrl, ctrl); | ||||||
| } | ||||||
|
|
||||||
| void timer_disable_interrupt(timer_t timer) | ||||||
| void timer_disable(timer_t timer) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_INTR_ENABLE0_REG, 0x0); | ||||||
| timer_ctrl ctrl = { .active = false }; | ||||||
| VOLATILE_WRITE(timer->ctrl, ctrl); | ||||||
| } | ||||||
|
|
||||||
| void timer_enable_interrupt(timer_t timer) | ||||||
| uint64_t timer_value_read_us(timer_t timer) | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This function can't garantee the value unit. If a test change the cfg0 reg, this function name would be inconsistent.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is true, but in practice I think we should have convenience functionality like this in the library instead of relying on everyone to calculate times themselves which could be much more error prone. All usages of the timer so far have used one us per tick so this was meant to simplify that for future tests. I could add documentation to those functions in particular to notify users that if they are initialising the timer outside of
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In Opentitan this higher level functions live in a library called testutils, I'm not against having these utilities in the hal, but there should also have functions to read the raw timer value, because tests would want to use it. |
||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_INTR_ENABLE0_REG, 0x1); | ||||||
| } | ||||||
| uint32_t timer_lower, timer_upper, timer_upper_again; | ||||||
| do { | ||||||
| /* make sure the lower half of the timer value does | ||||||
| * not overflow while reading the two halves, see | ||||||
| * Unprivileged Spec Chapter 7.1 */ | ||||||
| timer_upper = VOLATILE_READ(timer->timer_v_upper0); | ||||||
| timer_lower = VOLATILE_READ(timer->timer_v_lower0); | ||||||
| timer_upper_again = VOLATILE_READ(timer->timer_v_upper0); | ||||||
| } while (timer_upper != timer_upper_again); | ||||||
|
|
||||||
| bool timer_get_interrupt_enable(timer_t timer) | ||||||
| { | ||||||
| return ((DEV_READ(timer + TIMER_INTR_ENABLE0_REG) & 0x1) == 0x1); | ||||||
| return (((uint64_t)timer_upper) << 32u) | timer_lower; | ||||||
| } | ||||||
|
|
||||||
| bool timer_has_interrupt(timer_t timer) | ||||||
| static void timer_compare_write(timer_t timer, uint64_t compare) | ||||||
| { | ||||||
| return ((DEV_READ(timer + TIMER_INTR_STATE0_REG) & 0x1) == 0x1); | ||||||
| } | ||||||
| uint32_t compare_lower = (uint32_t)compare; | ||||||
| uint32_t compare_upper = (uint32_t)(compare >> 32u); | ||||||
|
|
||||||
| void timer_clear_interrupt(timer_t timer) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_INTR_STATE0_REG, 0x1); | ||||||
| /* write all 1s to the bottom half first, then the top and | ||||||
| * bottom to not cause a spurious interrupt from writing an | ||||||
| * intermediate value, see Privileged Spec Chapter 3.2.1 */ | ||||||
| VOLATILE_WRITE(timer->compare_lower0_0, UINT32_MAX); | ||||||
| VOLATILE_WRITE(timer->compare_upper0_0, compare_upper); | ||||||
| VOLATILE_WRITE(timer->compare_lower0_0, compare_lower); | ||||||
| } | ||||||
|
|
||||||
| void timer_trigger_alert(timer_t timer) | ||||||
| void timer_schedule_in_us(timer_t timer, uint64_t us) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_ALERT_TEST_REG, 0x1); | ||||||
| timer_compare_write(timer, timer_value_read_us(timer) + us); | ||||||
| } | ||||||
|
|
||||||
| void timer_trigger_interrupt(timer_t timer) | ||||||
| void timer_schedule_in_ms(timer_t timer, uint64_t ms) | ||||||
| { | ||||||
| DEV_WRITE(timer + TIMER_INTR_TEST0_REG, 0x1); | ||||||
| timer_schedule_in_us(timer, ms * 1000u); | ||||||
| } | ||||||
|
|
||||||
| void timer_init(timer_t timer) | ||||||
| void timer_busy_sleep_us(timer_t timer, uint64_t us) | ||||||
| { | ||||||
| timer_disable(timer); | ||||||
| timer_disable_interrupt(timer); | ||||||
| timer_schedule_in_us(timer, us); | ||||||
| while (!timer_interrupt_pending(timer)) { | ||||||
| } | ||||||
| } | ||||||
|
|
||||||
| void timer_busy_sleep(timer_t timer, uint64_t duration_steps) | ||||||
| void timer_busy_sleep_ms(timer_t timer, uint64_t ms) | ||||||
| { | ||||||
| timer_set_compare(timer, timer_get_value(timer) + duration_steps); | ||||||
| timer_clear_interrupt(timer); | ||||||
|
|
||||||
| // Poll for interrupt | ||||||
| while (!timer_has_interrupt(timer)) { | ||||||
| } | ||||||
| timer_busy_sleep_us(timer, ms * 1000u); | ||||||
| } | ||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,55 +4,25 @@ | |
|
|
||
| #pragma once | ||
|
|
||
| #include "autogen/timer.h" | ||
| #include <stdbool.h> | ||
| #include <stddef.h> | ||
| #include <stdint.h> | ||
|
|
||
| #define TIMER_ALERT_TEST_REG (0x0) | ||
|
|
||
| #define TIMER_CTRL_REG (0x4) | ||
|
|
||
| #define TIMER_INTR_ENABLE0_REG (0x100) | ||
| #define TIMER_INTR_STATE0_REG (0x104) | ||
| #define TIMER_INTR_TEST0_REG (0x108) | ||
|
|
||
| #define TIMER_CFG0_REG (0x10c) | ||
| #define TIMER_PRESCALE (0) | ||
| #define TIMER_PRESCALE_MASK (0xFFF) | ||
| #define TIMER_STEP (16) | ||
|
|
||
| #define TIMER_V_LOWER0_REG (0x110) | ||
| #define TIMER_V_UPPER0_REG (0x114) | ||
| #define TIMER_COMPARE_LOWER0_0_REG (0x118) | ||
| #define TIMER_COMPARE_UPPER0_0_REG (0x11c) | ||
| /* initialisation */ | ||
| void timer_init(timer_t timer); | ||
|
|
||
| typedef void *timer_t; | ||
| /* interrupts */ | ||
| bool timer_interrupt_enable_read(timer_t timer); | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need to change in this PR, just a heads up, in OT these functions are auto generated, because all IPs follow the same spec. |
||
| void timer_interrupt_enable_write(timer_t timer, bool enable); | ||
| void timer_interrupt_force(timer_t timer); | ||
| void timer_interrupt_clear(timer_t timer); | ||
| bool timer_interrupt_pending(timer_t timer); | ||
|
|
||
| void timer_disable(timer_t timer); | ||
| void timer_enable(timer_t timer); | ||
| bool timer_get_enable(timer_t timer); | ||
| void timer_set_prescale_step(timer_t timer, uint16_t prescale, uint8_t step); | ||
| uint16_t timer_get_prescale(timer_t timer); | ||
| uint8_t timer_get_step(timer_t timer); | ||
| void timer_set_compare_lower(timer_t timer, uint32_t compare_lower); | ||
| void timer_set_compare_upper(timer_t timer, uint32_t compare_upper); | ||
| void timer_set_compare(timer_t timer, uint64_t compare); | ||
| uint32_t timer_get_compare_lower(timer_t timer); | ||
| uint32_t timer_get_compare_upper(timer_t timer); | ||
| uint64_t timer_get_compare(timer_t timer); | ||
| void timer_set_value_lower(timer_t timer, uint32_t value_lower); | ||
| void timer_set_value_upper(timer_t timer, uint32_t value_upper); | ||
| void timer_set_value(timer_t timer, uint64_t value); | ||
| uint32_t timer_get_value_lower(timer_t timer); | ||
| uint32_t timer_get_value_upper(timer_t timer); | ||
| uint64_t timer_get_value(timer_t timer); | ||
| void timer_disable_interrupt(timer_t timer); | ||
| void timer_enable_interrupt(timer_t timer); | ||
| bool timer_get_interrupt_enable(timer_t timer); | ||
| bool timer_has_interrupt(timer_t timer); | ||
| void timer_clear_interrupt(timer_t timer); | ||
| void timer_trigger_alert(timer_t timer); | ||
| void timer_trigger_interrupt(timer_t timer); | ||
|
|
||
| void timer_init(timer_t timer); | ||
| void timer_busy_sleep(timer_t timer, uint64_t duration_steps); | ||
| void timer_disable(timer_t timer); | ||
| uint64_t timer_value_read_us(timer_t timer); | ||
| void timer_schedule_in_us(timer_t timer, uint64_t us); | ||
| void timer_schedule_in_ms(timer_t timer, uint64_t ms); | ||
| void timer_busy_sleep_us(timer_t timer, uint64_t us); | ||
| void timer_busy_sleep_ms(timer_t timer, uint64_t ms); | ||
Uh oh!
There was an error while loading. Please reload this page.