zephyr/boards/arm/mimxrt1060_evk/Kconfig.defconfig
Ryan QIAN 6585fe45b1 boards: arm: Add board support for mimxrt1060_evk
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>
2018-09-26 18:14:22 -05:00

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