Now that watchdog drivers are enabled based on devicetree we need to remove any cases of them getting enabled by Kconfig.defconfig* files as this can lead to errors. Typically the Kconfig.defconfig* will blindly enable a watchdog and not respect the devicetree state of the watchdog. Additionally we can get problems with prj.conf/defconfig getting incorrectly overridden. Signed-off-by: Kumar Gala <galak@kernel.org>
37 lines
561 B
Text
37 lines
561 B
Text
# NXP MIMXRT5XX platform configuration options
|
|
|
|
# Copyright (c) 2022, NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_MIMXRT595S_CM33
|
|
|
|
config SOC
|
|
default "mimxrt595s_cm33"
|
|
|
|
config PINMUX_MCUX_LPC
|
|
default y
|
|
depends on PINMUX
|
|
|
|
config DMA_MCUX_LPC
|
|
default y
|
|
depends on DMA
|
|
|
|
config COUNTER_MCUX_CTIMER
|
|
default y
|
|
depends on COUNTER
|
|
|
|
if MCUX_OS_TIMER
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default 1000000
|
|
|
|
endif # MCUX_OS_TIMER
|
|
|
|
if CORTEX_M_SYSTICK
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default 250105263
|
|
|
|
endif # CORTEX_M_SYSTICK
|
|
|
|
endif # SOC_MIMXRT685S_CM33
|