TI MSPM0 SoC series has General Purpose Timer and Advanced control timers with Counting module, Capture block (measure input signal period/time) and Compare block (to generate time expiry, output waveform like PWM). Add a support for counter driver with alarm and counter top functions. Signed-off-by: Saravanan Sekar <saravanan@linumiz.com>
11 lines
287 B
Plaintext
11 lines
287 B
Plaintext
# Copyright (c) 2025 Linumiz GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config COUNTER_MSPM0_TIMER
|
|
bool "TI MSPM0 MCU family counter driver"
|
|
default y
|
|
depends on DT_HAS_TI_MSPM0_TIMER_COUNTER_ENABLED
|
|
select USE_MSPM0_DL_TIMER
|
|
help
|
|
Enable the TI MSPM0 MCU family counter driver.
|