6a12fb20ab
This commit adds support for tickless operation on the MIPS CP0 timer. The code closely follows the Xtensa and RISCV timer drivers. All tests pass. Signed-off-by: Remy Luisant <remy@luisant.ca> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
11 lines
268 B
Plaintext
11 lines
268 B
Plaintext
# Copyright (c) 2021 Antony Pavlov <antonynpavlov@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MIPS_CP0_TIMER
|
|
bool "MIPS CP0 Timer"
|
|
depends on MIPS
|
|
select TICKLESS_CAPABLE
|
|
help
|
|
This module implements a kernel device driver for the MIPS CP0 timer.
|