54 lines
849 B
Plaintext
54 lines
849 B
Plaintext
# MIMX8ML8 SoC defconfig
|
|
|
|
# Copyright (c) 2021, Laird Connectivity
|
|
# Copyright 2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_MIMX8ML8_M7
|
|
|
|
config SOC
|
|
string
|
|
default "mimx8ml8"
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
int
|
|
default 800000000
|
|
|
|
config GPIO
|
|
default y
|
|
|
|
config IPM_IMX
|
|
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
|
|
|
|
config NUM_IRQS
|
|
int
|
|
# must be >= the highest interrupt number used
|
|
default 159
|
|
|
|
config PINCTRL_IMX
|
|
default y if HAS_MCUX_IOMUXC
|
|
depends on PINCTRL
|
|
|
|
endif # SOC_MIMX8ML8_M7
|