2019-11-01 20:45:29 +08:00
|
|
|
# i.MX 6SoloX
|
|
|
|
|
2018-04-18 23:53:39 +08:00
|
|
|
# Copyright (c) 2018, NXP
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
if SOC_MCIMX6X_M4
|
|
|
|
|
|
|
|
config SOC
|
|
|
|
default "mcimx6x"
|
|
|
|
|
2019-04-16 23:20:45 +08:00
|
|
|
config FLOAT
|
|
|
|
default y
|
|
|
|
|
2018-04-18 23:53:39 +08:00
|
|
|
if CLOCK_CONTROL
|
|
|
|
|
|
|
|
config CLOCK_CONTROL_IMX_CCM
|
|
|
|
def_bool y
|
|
|
|
|
|
|
|
endif # CLOCK_CONTROL
|
|
|
|
|
|
|
|
if GPIO
|
|
|
|
|
|
|
|
config GPIO_IMX
|
2018-11-14 00:15:49 +08:00
|
|
|
default y
|
2018-04-18 23:53:39 +08:00
|
|
|
|
|
|
|
endif # GPIO
|
|
|
|
|
|
|
|
if SERIAL
|
|
|
|
|
|
|
|
config UART_IMX
|
2018-11-14 00:15:49 +08:00
|
|
|
default y
|
2018-04-18 23:53:39 +08:00
|
|
|
|
|
|
|
endif # SERIAL
|
|
|
|
|
2018-06-22 17:21:22 +08:00
|
|
|
if IPM
|
|
|
|
|
|
|
|
config IPM_IMX
|
kconfig: Use 'default' instead of 'def_bool' in Kconfig.defconfig files
Same deal as in commit 4638652214 ("Kconfig: Use 'default' instead of
'def_bool' in Kconfig.defconfig files"), fixing new stuff that got
introduced since then.
Some symbols, like ALTERA_AVALON_PIO, are only defined in
Kconfig.defconfig files, and so need the def_bool.
Motivation (from the note at the end of
guides/kconfig/index.html#common-shorthands):
For a symbol defined in multiple locations (e.g., in a Kconfig.defconfig
file in Zephyr), it is best to only give the symbol type for the "base"
definition of the symbol, and to use 'default' (instead of 'def_<type>'
value) for the remaining definitions. That way, if the base definition
of the symbol is removed, the symbol ends up without a type, which
generates a warning that points to the other definitions. That makes the
extra definitions easier to discover and remove.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-03-18 19:29:31 +08:00
|
|
|
default y
|
2018-06-22 17:21:22 +08:00
|
|
|
|
|
|
|
endif # IPM
|
|
|
|
|
2018-11-16 23:40:00 +08:00
|
|
|
if COUNTER
|
|
|
|
|
|
|
|
config COUNTER_IMX_EPIT
|
|
|
|
default y
|
|
|
|
|
|
|
|
endif # COUNTER
|
|
|
|
|
2018-04-18 23:53:39 +08:00
|
|
|
endif # SOC_MCIMX6X_M4
|