mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 20:26:38 +00:00
Adds a new clock control driver for Kinetis SoCs that have the system integration (SIM) module. This will allow mcux shim drivers, such as uart and i2c, to abstract the call to CLOCK_GetFreq() behind the clock_control interface and thus be reused for SoCs with different clock architectures. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
15 lines
249 B
Plaintext
15 lines
249 B
Plaintext
# Kconfig - MCUXpresso SDK SIM
|
|
#
|
|
# Copyright (c) 2017, NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig CLOCK_CONTROL_MCUX_SIM
|
|
bool
|
|
prompt "MCUX SIM driver"
|
|
depends on HAS_MCUX_SIM
|
|
default n
|
|
help
|
|
Enable support for mcux sim driver.
|