[PATCH 1/3] lib: utils/timer: Allow ACLINT MTIMER driver to setup quirks
Guo Ren
guoren at kernel.org
Thu Oct 12 02:34:41 PDT 2023
On Thu, Oct 12, 2023 at 5:01 PM Inochi Amaoto <inochiama at outlook.com> wrote:
>
> The quirks checking will cause ACLINT step into a CLINT code path, this
> is not expected when ACLINT needs a quirks.
>
> Add more check to ensure the timer is CLINT before applying quirks.
> And now apply the general quirks after applying CLINT specific quirks.
>
> Signed-off-by: Inochi Amaoto <inochiama at outlook.com>
> ---
> lib/utils/timer/fdt_timer_mtimer.c | 17 ++++++++++++++---
> 1 file changed, 14 insertions(+), 3 deletions(-)
>
> diff --git a/lib/utils/timer/fdt_timer_mtimer.c b/lib/utils/timer/fdt_timer_mtimer.c
> index 9eaa11d..cd14f75 100644
> --- a/lib/utils/timer/fdt_timer_mtimer.c
> +++ b/lib/utils/timer/fdt_timer_mtimer.c
> @@ -29,6 +29,12 @@ static SBI_LIST_HEAD(mtn_list);
>
> static struct aclint_mtimer_data *mt_reference = NULL;
>
> +static int timer_is_clint(const void *data)
The timer is not clint, the timer is in the clint, right?
How about timer_in_clint?
> +{
> + const struct timer_mtimer_quirks *quirks = data;
> + return quirks && quirks->mtime_offset;
> +}
> +
> static int timer_mtimer_cold_init(void *fdt, int nodeoff,
> const struct fdt_match *match)
> {
> @@ -58,7 +64,7 @@ static int timer_mtimer_cold_init(void *fdt, int nodeoff,
> return rc;
> }
>
> - if (match->data) { /* SiFive CLINT */
> + if (timer_is_clint(match->data)) { /* SiFive CLINT */
The comment is confusing. So, how about deleting it:
if (timer_in_clint(match->data)) {
> const struct timer_mtimer_quirks *quirks = match->data;
>
> /* Set CLINT addresses */
> @@ -74,8 +80,6 @@ static int timer_mtimer_cold_init(void *fdt, int nodeoff,
> mt->mtime_addr = mt->mtime_size = 0;
> }
> mt->mtimecmp_addr += quirks->mtime_offset;
> - /* Apply additional CLINT quirks */
> - mt->has_64bit_mmio = quirks->has_64bit_mmio;
> } else { /* RISC-V ACLINT MTIMER */
> /* Set ACLINT MTIMER addresses */
> mt->mtime_addr = addr[0];
> @@ -84,6 +88,13 @@ static int timer_mtimer_cold_init(void *fdt, int nodeoff,
> mt->mtimecmp_size = size[1];
> }
>
> + /* Apply additional quirks for CLINT and ACLINT */
> + if (match->data) {
> + const struct timer_mtimer_quirks *quirks = match->data;
> +
> + mt->has_64bit_mmio = quirks->has_64bit_mmio;
> + }
> +
> /* Check if MTIMER device has shared MTIME address */
> if (mt->mtime_size) {
> mt->has_shared_mtime = false;
> --
> 2.42.0
>
--
Best Regards
Guo Ren
More information about the opensbi
mailing list