mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 11:39:46 +08:00
f4c36b7beb
The TPM (Timer/PWM Module) is a 2- to 8-channel timer which supports input capture, output compare, and the generation of PWM signals to control electric motor and power management applications. This patch adds the driver and the binding necessary for instantiating the driver. The work is based on the RV32M1 driver for TPM done by Henrik Brix Andersen. A later patch will enable this driver to be used for the KW41Z SoC, if PWM support is requested. Signed-off-by: Alex Porosanu <alexandru.porosanu@nxp.com>
11 lines
207 B
Plaintext
11 lines
207 B
Plaintext
# Copyright 2020 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# MCUX TPM PWM
|
|
|
|
config PWM_MCUX_TPM
|
|
bool "MCUX TPM PWM driver"
|
|
depends on HAS_MCUX_TPM && CLOCK_CONTROL
|
|
help
|
|
Enable the MCUX TPM PWM driver.
|