mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 08:52:41 +00:00
Add board support files for mimxrt1060_evk, the development board for i.MXRT1062 (CM7) SoC. - Add pinmux, dts, doc. - External QSPI flash hasn't been configured yet. So code can be loaded to SRAM for now. - Tested samples: hello_world, philosophers, synchronization, basic/blinky, and basic/button. Signed-off-by: Ryan QIAN <jianghao.qian@nxp.com>
39 lines
517 B
Plaintext
39 lines
517 B
Plaintext
# Kconfig - MIMXRT1060-EVK board
|
|
#
|
|
# Copyright (c) 2018, NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_MIMXRT1060_EVK
|
|
|
|
config BOARD
|
|
default "mimxrt1060_evk"
|
|
|
|
if GPIO_MCUX_IGPIO
|
|
|
|
config GPIO_MCUX_IGPIO_1
|
|
def_bool y
|
|
|
|
config GPIO_MCUX_IGPIO_5
|
|
def_bool y
|
|
|
|
endif # GPIO_MCUX_IGPIO
|
|
|
|
if UART_MCUX_LPUART
|
|
|
|
config UART_MCUX_LPUART_1
|
|
def_bool y
|
|
|
|
endif # UART_MCUX_LPUART
|
|
|
|
if CODE_HYPERFLASH || CODE_QSPI
|
|
|
|
# Reserve space for the IVT
|
|
config TEXT_SECTION_OFFSET
|
|
default 0x2000
|
|
|
|
endif
|
|
|
|
endif # BOARD_MIMXRT1060_EVK
|