The i.MX RT1064 evk has one ethernet (10/100M) connector via KSZ8081RNB phy. Enable related dts nodes and config flags Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
40 lines
526 B
Text
40 lines
526 B
Text
# Kconfig - MIMXRT1064-EVK board
|
|
#
|
|
# Copyright (c) 2018, NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_MIMXRT1064_EVK
|
|
|
|
config BOARD
|
|
default "mimxrt1064_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 NETWORKING
|
|
|
|
config NET_L2_ETHERNET
|
|
def_bool y
|
|
|
|
config ETH_MCUX_0
|
|
def_bool y if NET_L2_ETHERNET
|
|
|
|
endif # NETWORKING
|
|
|
|
endif # BOARD_MIMXRT1064_EVK
|