diff options
| author | Benoît Monin <benoit.monin@bootlin.com> | 2025-11-07 11:46:58 +0100 |
|---|---|---|
| committer | Anup Patel <anup@brainfault.org> | 2025-11-10 13:41:53 +0530 |
| commit | 2e9dc3b430eed4bc7077b4452b603f2e7b33553d (patch) | |
| tree | 5c3031c5ea741122c5b4a5e02a2f8eb2ee308beb /lib/utils/timer | |
| parent | 5de1d3240f9163de95bc6803fb4100a77d65ab6b (diff) | |
| download | opensbi-2e9dc3b430eed4bc7077b4452b603f2e7b33553d.tar.gz opensbi-2e9dc3b430eed4bc7077b4452b603f2e7b33553d.tar.bz2 opensbi-2e9dc3b430eed4bc7077b4452b603f2e7b33553d.zip | |
lib: utils/timer: mtimer: add MIPS P8700 compatible
The MTIMER of the MIPS P8700 is compliant with the ACLINT specification,
so add a compatible string for it.
Signed-off-by: Benoît Monin <benoit.monin@bootlin.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Link: https://lore.kernel.org/r/20251107-p8700-aclint-v3-2-93eabb17d54e@bootlin.com
Signed-off-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'lib/utils/timer')
| -rw-r--r-- | lib/utils/timer/fdt_timer_mtimer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/utils/timer/fdt_timer_mtimer.c b/lib/utils/timer/fdt_timer_mtimer.c index 1f29f3a2..d5520fad 100644 --- a/lib/utils/timer/fdt_timer_mtimer.c +++ b/lib/utils/timer/fdt_timer_mtimer.c @@ -157,6 +157,7 @@ static const struct timer_mtimer_quirks thead_aclint_quirks = { }; static const struct fdt_match timer_mtimer_match[] = { + { .compatible = "mips,p8700-aclint-mtimer" }, { .compatible = "riscv,clint0", .data = &sifive_clint_quirks }, { .compatible = "sifive,clint0", .data = &sifive_clint_quirks }, { .compatible = "sifive,clint2", .data = &sifive_clint_quirks }, |
