Now that serial 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 sensor and not respect the devicetree state of the serial. Additionally we can get problems with prj.conf/defconfig getting incorrectly overridden. Signed-off-by: Kumar Gala <galak@kernel.org>
57 lines
831 B
Text
57 lines
831 B
Text
# MIMX8ML8 SoC defconfig
|
|
|
|
# Copyright (c) 2021, Laird Connectivity
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_MIMX8ML8
|
|
|
|
config SOC
|
|
string
|
|
default "mimx8ml8"
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
int
|
|
default 800000000
|
|
|
|
if CLOCK_CONTROL
|
|
|
|
config CLOCK_CONTROL_MCUX_CCM
|
|
default y if HAS_MCUX_CCM
|
|
|
|
endif # CLOCK_CONTROL
|
|
|
|
if PINMUX
|
|
|
|
config PINMUX_MCUX
|
|
default y
|
|
|
|
endif # PINMUX
|
|
|
|
config GPIO
|
|
default y
|
|
|
|
config IPM_IMX_REV2
|
|
default y
|
|
depends on IPM
|
|
|
|
if CODE_ITCM
|
|
|
|
config FLASH_SIZE
|
|
default $(dt_node_reg_size_int,/soc/itcm@0,0,K)
|
|
|
|
config FLASH_BASE_ADDRESS
|
|
default $(dt_node_reg_addr_hex,/soc/itcm@0)
|
|
|
|
endif # CODE_ITCM
|
|
|
|
if CODE_DDR
|
|
|
|
config FLASH_SIZE
|
|
default $(dt_node_reg_size_int,/soc/code@80000000,0,K)
|
|
|
|
config FLASH_BASE_ADDRESS
|
|
default $(dt_node_reg_addr_hex,/soc/code@80000000)
|
|
|
|
endif # CODE_DDR
|
|
|
|
endif # SOC_MIMX8ML8
|