mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
clocksource/timer-riscv: ACPI: Add timer_cannot_wakeup_cpu
The timer capability to wakeup the cpu irrespective of its idle state is provided by the flag in RHCT. Update the timer code to set this flag. Signed-off-by: Sunil V L <sunilvl@ventanamicro.com> Reviewed-by: Conor Dooley <conor.dooley@microchip.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Samuel Holland <samuel.holland@sifive.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20230927170015.295232-5-sunilvl@ventanamicro.com
This commit is contained in:
parent
fd73c011a1
commit
d7f546c751
1 changed files with 4 additions and 0 deletions
|
@ -212,6 +212,10 @@ TIMER_OF_DECLARE(riscv_timer, "riscv", riscv_timer_init_dt);
|
|||
#ifdef CONFIG_ACPI
|
||||
static int __init riscv_timer_acpi_init(struct acpi_table_header *table)
|
||||
{
|
||||
struct acpi_table_rhct *rhct = (struct acpi_table_rhct *)table;
|
||||
|
||||
riscv_timer_cannot_wake_cpu = rhct->flags & ACPI_RHCT_TIMER_CANNOT_WAKEUP_CPU;
|
||||
|
||||
return riscv_timer_init_common();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue