zephyr/drivers/clock_control/clock_control_mcux_sim.c
Maureen Helm 39d63d316b clock_control: Add support for getting LPO frequency in mcux sim driver
The mcux sim clock control driver was originally designed to pass
through the clock subsystem value from dts to the mcux CLOCK_GetFreq()
function. This assumed that the values in
include/dt-bindings/clock/kinetis_sim.h matched the enumeration in
fsl_clock.h, which is true for the coresys, platform, and bus clocks.
However, the low-power oscillator (LPO) clock has a different values in
k64 vs. kw2xd, therefore we must update the clock_control driver to
parse the value from dts and convert it to the fsl_clock.h enumeration.

Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
2018-05-17 15:00:55 -05:00

61 lines
1.2 KiB
C

/*
* Copyright (c) 2017, NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <errno.h>
#include <soc.h>
#include <clock_control.h>
#include <dt-bindings/clock/kinetis_sim.h>
#include <fsl_clock.h>
#define SYS_LOG_LEVEL CONFIG_SYS_LOG_CLOCK_CONTROL_LEVEL
#include <logging/sys_log.h>
static int mcux_sim_on(struct device *dev, clock_control_subsys_t sub_system)
{
return 0;
}
static int mcux_sim_off(struct device *dev, clock_control_subsys_t sub_system)
{
return 0;
}
static int mcux_sim_get_subsys_rate(struct device *dev,
clock_control_subsys_t sub_system,
u32_t *rate)
{
clock_name_t clock_name;
switch ((u32_t) sub_system) {
case KINETIS_SIM_LPO_CLK:
clock_name = kCLOCK_LpoClk;
break;
default:
clock_name = (clock_name_t) sub_system;
break;
}
*rate = CLOCK_GetFreq(clock_name);
return 0;
}
static int mcux_sim_init(struct device *dev)
{
return 0;
}
static const struct clock_control_driver_api mcux_sim_driver_api = {
.on = mcux_sim_on,
.off = mcux_sim_off,
.get_rate = mcux_sim_get_subsys_rate,
};
DEVICE_AND_API_INIT(mcux_sim, CONFIG_SIM_NAME,
&mcux_sim_init,
NULL, NULL,
PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,
&mcux_sim_driver_api);