2020-04-08 14:02:11 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Henrik Brix Andersen <henrik@brixandersen.dk>
|
|
|
|
* Copyright 2020 NXP
|
|
|
|
*
|
|
|
|
* Heavily based on pwm_mcux_ftm.c, which is:
|
|
|
|
* Copyright (c) 2017, NXP
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DT_DRV_COMPAT nxp_kinetis_tpm
|
|
|
|
|
|
|
|
#include <drivers/clock_control.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <drivers/pwm.h>
|
|
|
|
#include <soc.h>
|
|
|
|
#include <fsl_tpm.h>
|
|
|
|
#include <fsl_clock.h>
|
|
|
|
|
|
|
|
#define LOG_LEVEL CONFIG_PWM_LOG_LEVEL
|
|
|
|
#include <logging/log.h>
|
|
|
|
LOG_MODULE_REGISTER(pwm_mcux_tpm);
|
|
|
|
|
|
|
|
#define MAX_CHANNELS ARRAY_SIZE(TPM0->CONTROLS)
|
|
|
|
|
|
|
|
struct mcux_tpm_config {
|
|
|
|
TPM_Type *base;
|
2021-02-12 09:23:45 +08:00
|
|
|
const struct device *clock_dev;
|
2020-04-08 14:02:11 +08:00
|
|
|
clock_control_subsys_t clock_subsys;
|
|
|
|
tpm_clock_source_t tpm_clock_source;
|
|
|
|
tpm_clock_prescale_t prescale;
|
2020-05-28 00:26:57 +08:00
|
|
|
uint8_t channel_count;
|
2020-04-08 14:02:11 +08:00
|
|
|
tpm_pwm_mode_t mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mcux_tpm_data {
|
2020-05-28 00:26:57 +08:00
|
|
|
uint32_t clock_freq;
|
|
|
|
uint32_t period_cycles;
|
2020-04-08 14:02:11 +08:00
|
|
|
tpm_chnl_pwm_signal_param_t channel[MAX_CHANNELS];
|
|
|
|
};
|
|
|
|
|
2020-05-01 02:33:38 +08:00
|
|
|
static int mcux_tpm_pin_set(const struct device *dev, uint32_t pwm,
|
2020-05-28 00:26:57 +08:00
|
|
|
uint32_t period_cycles, uint32_t pulse_cycles,
|
2020-04-08 14:02:11 +08:00
|
|
|
pwm_flags_t flags)
|
|
|
|
{
|
2020-05-29 02:44:16 +08:00
|
|
|
const struct mcux_tpm_config *config = dev->config;
|
2020-05-29 03:23:02 +08:00
|
|
|
struct mcux_tpm_data *data = dev->data;
|
2020-05-28 00:26:57 +08:00
|
|
|
uint8_t duty_cycle;
|
2020-04-08 14:02:11 +08:00
|
|
|
|
|
|
|
if ((period_cycles == 0U) || (pulse_cycles > period_cycles)) {
|
|
|
|
LOG_ERR("Invalid combination: period_cycles=%d, "
|
|
|
|
"pulse_cycles=%d", period_cycles, pulse_cycles);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pwm >= config->channel_count) {
|
|
|
|
LOG_ERR("Invalid channel");
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
duty_cycle = pulse_cycles * 100U / period_cycles;
|
|
|
|
data->channel[pwm].dutyCyclePercent = duty_cycle;
|
|
|
|
|
|
|
|
if ((flags & PWM_POLARITY_INVERTED) == 0) {
|
|
|
|
data->channel[pwm].level = kTPM_HighTrue;
|
|
|
|
} else {
|
|
|
|
data->channel[pwm].level = kTPM_LowTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DBG("pulse_cycles=%d, period_cycles=%d, duty_cycle=%d, flags=%d",
|
|
|
|
pulse_cycles, period_cycles, duty_cycle, flags);
|
|
|
|
|
|
|
|
if (period_cycles != data->period_cycles) {
|
2020-05-28 00:26:57 +08:00
|
|
|
uint32_t pwm_freq;
|
2020-04-08 14:02:11 +08:00
|
|
|
status_t status;
|
|
|
|
|
|
|
|
if (data->period_cycles != 0) {
|
|
|
|
/* Only warn when not changing from zero */
|
|
|
|
LOG_WRN("Changing period cycles from %d to %d"
|
|
|
|
" affects all %d channels in %s",
|
|
|
|
data->period_cycles, period_cycles,
|
2020-03-09 19:49:07 +08:00
|
|
|
config->channel_count, dev->name);
|
2020-04-08 14:02:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
data->period_cycles = period_cycles;
|
|
|
|
|
|
|
|
pwm_freq = (data->clock_freq >> config->prescale) /
|
|
|
|
period_cycles;
|
|
|
|
|
|
|
|
LOG_DBG("pwm_freq=%d, clock_freq=%d", pwm_freq,
|
|
|
|
data->clock_freq);
|
|
|
|
|
|
|
|
if (pwm_freq == 0U) {
|
|
|
|
LOG_ERR("Could not set up pwm_freq=%d", pwm_freq);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
TPM_StopTimer(config->base);
|
|
|
|
|
|
|
|
status = TPM_SetupPwm(config->base, data->channel,
|
|
|
|
config->channel_count, config->mode,
|
|
|
|
pwm_freq, data->clock_freq);
|
|
|
|
|
|
|
|
if (status != kStatus_Success) {
|
|
|
|
LOG_ERR("Could not set up pwm");
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
TPM_StartTimer(config->base, config->tpm_clock_source);
|
|
|
|
} else {
|
|
|
|
TPM_UpdateChnlEdgeLevelSelect(config->base, pwm,
|
|
|
|
data->channel[pwm].level);
|
|
|
|
TPM_UpdatePwmDutycycle(config->base, pwm, config->mode,
|
|
|
|
duty_cycle);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-05-01 02:33:38 +08:00
|
|
|
static int mcux_tpm_get_cycles_per_sec(const struct device *dev, uint32_t pwm,
|
2020-05-28 00:26:57 +08:00
|
|
|
uint64_t *cycles)
|
2020-04-08 14:02:11 +08:00
|
|
|
{
|
2020-05-29 02:44:16 +08:00
|
|
|
const struct mcux_tpm_config *config = dev->config;
|
2020-05-29 03:23:02 +08:00
|
|
|
struct mcux_tpm_data *data = dev->data;
|
2020-04-08 14:02:11 +08:00
|
|
|
|
|
|
|
*cycles = data->clock_freq >> config->prescale;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-05-01 02:33:38 +08:00
|
|
|
static int mcux_tpm_init(const struct device *dev)
|
2020-04-08 14:02:11 +08:00
|
|
|
{
|
2020-05-29 02:44:16 +08:00
|
|
|
const struct mcux_tpm_config *config = dev->config;
|
2020-05-29 03:23:02 +08:00
|
|
|
struct mcux_tpm_data *data = dev->data;
|
2020-04-08 14:02:11 +08:00
|
|
|
tpm_chnl_pwm_signal_param_t *channel = data->channel;
|
|
|
|
tpm_config_t tpm_config;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (config->channel_count > ARRAY_SIZE(data->channel)) {
|
|
|
|
LOG_ERR("Invalid channel count");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2021-02-12 09:23:45 +08:00
|
|
|
if (clock_control_on(config->clock_dev, config->clock_subsys)) {
|
2020-04-08 14:02:11 +08:00
|
|
|
LOG_ERR("Could not turn on clock");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2021-02-12 09:23:45 +08:00
|
|
|
if (clock_control_get_rate(config->clock_dev, config->clock_subsys,
|
2020-04-08 14:02:11 +08:00
|
|
|
&data->clock_freq)) {
|
|
|
|
LOG_ERR("Could not get clock frequency");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < config->channel_count; i++) {
|
|
|
|
channel->chnlNumber = i;
|
|
|
|
channel->level = kTPM_NoPwmSignal;
|
|
|
|
channel->dutyCyclePercent = 0;
|
|
|
|
channel->firstEdgeDelayPercent = 0;
|
|
|
|
channel++;
|
|
|
|
}
|
|
|
|
|
|
|
|
TPM_GetDefaultConfig(&tpm_config);
|
|
|
|
tpm_config.prescale = config->prescale;
|
|
|
|
|
|
|
|
TPM_Init(config->base, &tpm_config);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct pwm_driver_api mcux_tpm_driver_api = {
|
|
|
|
.pin_set = mcux_tpm_pin_set,
|
|
|
|
.get_cycles_per_sec = mcux_tpm_get_cycles_per_sec,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TPM_DEVICE(n) \
|
|
|
|
static const struct mcux_tpm_config mcux_tpm_config_##n = { \
|
|
|
|
.base = (TPM_Type *) \
|
|
|
|
DT_INST_REG_ADDR(n), \
|
2021-02-12 09:23:45 +08:00
|
|
|
.clock_dev = DEVICE_DT_GET(DT_INST_CLOCKS_CTLR(n)), \
|
2020-04-08 14:02:11 +08:00
|
|
|
.clock_subsys = (clock_control_subsys_t) \
|
|
|
|
DT_INST_CLOCKS_CELL(n, name), \
|
|
|
|
.tpm_clock_source = kTPM_SystemClock, \
|
|
|
|
.prescale = kTPM_Prescale_Divide_16, \
|
|
|
|
.channel_count = FSL_FEATURE_TPM_CHANNEL_COUNTn((TPM_Type *) \
|
|
|
|
DT_INST_REG_ADDR(n)), \
|
|
|
|
.mode = kTPM_EdgeAlignedPwm, \
|
|
|
|
}; \
|
|
|
|
static struct mcux_tpm_data mcux_tpm_data_##n; \
|
2021-04-28 17:36:44 +08:00
|
|
|
DEVICE_DT_INST_DEFINE(n, &mcux_tpm_init, NULL, \
|
2020-12-10 05:38:54 +08:00
|
|
|
&mcux_tpm_data_##n, \
|
2020-04-08 14:02:11 +08:00
|
|
|
&mcux_tpm_config_##n, \
|
|
|
|
POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, \
|
2020-05-08 03:09:05 +08:00
|
|
|
&mcux_tpm_driver_api);
|
2020-04-08 14:02:11 +08:00
|
|
|
|
2020-05-07 02:23:07 +08:00
|
|
|
DT_INST_FOREACH_STATUS_OKAY(TPM_DEVICE)
|