6307d8de78
This adds timer driver for Renesas SmartBond(tm) family. It uses TIMER2 block which is in PD_TIM power domain so it can work even if ARM core is disabled, thus can work as a sleep timer. Signed-off-by: Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl> Signed-off-by: Jerzy Kasenberg <jerzy.kasenberg@codecoup.pl>
14 lines
437 B
Plaintext
14 lines
437 B
Plaintext
# Copyright (c) 2023 Renesas Electronics Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SMARTBOND_TIMER
|
|
bool "Renesas SmartBond(tm) timer"
|
|
default y
|
|
depends on SOC_FAMILY_RENESAS_SMARTBOND
|
|
depends on CLOCK_CONTROL
|
|
depends on !$(dt_nodelabel_enabled,timer2)
|
|
select TICKLESS_CAPABLE
|
|
help
|
|
This module implements a kernel device driver for the TIMER2 timer
|
|
and provides the standard "system clock driver" interfaces.
|