#include <sbi_utils/timer/aclint_mtimer.h>
struct timer_mtimer_quirks {
- unsigned int mtime_offset;
+ bool is_clint;
+ unsigned int clint_mtime_offset;
+ bool clint_without_mtime;
bool has_64bit_mmio;
- bool without_mtime;
};
struct timer_mtimer_node {
unsigned long addr[2], size[2];
struct timer_mtimer_node *mtn, *n;
struct aclint_mtimer_data *mt;
+ const struct timer_mtimer_quirks *quirks = match->data;
mtn = sbi_zalloc(sizeof(*mtn));
if (!mtn)
return rc;
}
- if (match->data) { /* SiFive CLINT */
- const struct timer_mtimer_quirks *quirks = match->data;
-
+ if (quirks && quirks->is_clint) { /* SiFive CLINT */
/* Set CLINT addresses */
mt->mtimecmp_addr = addr[0] + ACLINT_DEFAULT_MTIMECMP_OFFSET;
mt->mtimecmp_size = ACLINT_DEFAULT_MTIMECMP_SIZE;
- if (!quirks->without_mtime) {
+ if (!quirks->clint_without_mtime) {
mt->mtime_addr = addr[0] + ACLINT_DEFAULT_MTIME_OFFSET;
mt->mtime_size = size[0] - mt->mtimecmp_size;
/* Adjust MTIMER address and size for CLINT device */
- mt->mtime_addr += quirks->mtime_offset;
- mt->mtime_size -= quirks->mtime_offset;
+ mt->mtime_addr += quirks->clint_mtime_offset;
+ mt->mtime_size -= quirks->clint_mtime_offset;
} else {
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;
+ mt->mtimecmp_addr += quirks->clint_mtime_offset;
} else { /* RISC-V ACLINT MTIMER */
/* Set ACLINT MTIMER addresses */
mt->mtime_addr = addr[0];
mt->mtimecmp_size = size[1];
}
+ /* Apply additional quirks */
+ if (quirks) {
+ 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;
}
static const struct timer_mtimer_quirks sifive_clint_quirks = {
- .mtime_offset = CLINT_MTIMER_OFFSET,
- .has_64bit_mmio = true,
+ .is_clint = true,
+ .clint_mtime_offset = CLINT_MTIMER_OFFSET,
+ .has_64bit_mmio = true,
};
static const struct timer_mtimer_quirks thead_clint_quirks = {
- .mtime_offset = CLINT_MTIMER_OFFSET,
- .without_mtime = true,
+ .is_clint = true,
+ .clint_mtime_offset = CLINT_MTIMER_OFFSET,
+ .clint_without_mtime = true,
};
static const struct fdt_match timer_mtimer_match[] = {