2019-11-01 13:45:29 +01:00
|
|
|
# MIMXRT1064-EVK board
|
|
|
|
|
2023-07-26 22:25:18 +02:00
|
|
|
# Copyright 2018,2023 NXP
|
2018-10-09 04:14:40 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
if BOARD_MIMXRT1064_EVK
|
|
|
|
|
2023-07-26 22:25:18 +02:00
|
|
|
config DEVICE_CONFIGURATION_DATA
|
|
|
|
default y
|
|
|
|
|
2023-07-18 00:58:40 +02:00
|
|
|
config NXP_IMX_EXTERNAL_SDRAM
|
|
|
|
default y
|
|
|
|
|
2023-03-22 19:37:23 +01:00
|
|
|
config INPUT
|
2023-08-30 10:01:39 +02:00
|
|
|
default y if LVGL
|
2020-01-20 22:19:35 +01:00
|
|
|
|
2023-03-22 19:37:23 +01:00
|
|
|
if INPUT
|
|
|
|
|
|
|
|
config INPUT_FT5336_INTERRUPT
|
2020-04-29 03:27:22 +02:00
|
|
|
default y
|
|
|
|
|
2023-03-22 19:37:23 +01:00
|
|
|
endif # INPUT
|
2020-01-20 22:19:35 +01:00
|
|
|
|
2019-02-22 15:17:48 +01:00
|
|
|
if NETWORKING
|
|
|
|
|
|
|
|
config NET_L2_ETHERNET
|
kconfig: Use 'default' instead of 'def_bool' in Kconfig.defconfig files
Same deal as in commit 4638652214 ("Kconfig: Use 'default' instead of
'def_bool' in Kconfig.defconfig files"), fixing new stuff that got
introduced since then.
Some symbols, like ALTERA_AVALON_PIO, are only defined in
Kconfig.defconfig files, and so need the def_bool.
Motivation (from the note at the end of
guides/kconfig/index.html#common-shorthands):
For a symbol defined in multiple locations (e.g., in a Kconfig.defconfig
file in Zephyr), it is best to only give the symbol type for the "base"
definition of the symbol, and to use 'default' (instead of 'def_<type>'
value) for the remaining definitions. That way, if the base definition
of the symbol is removed, the symbol ends up without a type, which
generates a warning that points to the other definitions. That makes the
extra definitions easier to discover and remove.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-03-18 12:29:31 +01:00
|
|
|
default y
|
2019-02-22 15:17:48 +01:00
|
|
|
|
2023-09-19 23:25:54 +02:00
|
|
|
if ETH_MCUX
|
|
|
|
|
2022-03-23 05:56:15 +01:00
|
|
|
config ETH_MCUX_PHY_RESET
|
|
|
|
default y
|
|
|
|
|
2023-09-19 23:25:54 +02:00
|
|
|
endif # ETH_MCUX
|
|
|
|
|
2019-02-22 15:17:48 +01:00
|
|
|
endif # NETWORKING
|
|
|
|
|
2019-03-11 18:17:42 +01:00
|
|
|
if LVGL
|
|
|
|
|
2022-01-06 10:20:04 +01:00
|
|
|
config LV_Z_VDB_SIZE
|
2019-03-11 18:17:42 +01:00
|
|
|
default 16
|
|
|
|
|
2023-06-12 17:41:32 +02:00
|
|
|
config LV_DPI_DEF
|
2019-03-11 18:17:42 +01:00
|
|
|
default 128
|
|
|
|
|
2022-03-02 13:06:36 +01:00
|
|
|
choice LV_COLOR_DEPTH
|
2021-12-21 13:50:13 +01:00
|
|
|
default LV_COLOR_DEPTH_16
|
2019-03-11 18:17:42 +01:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
endif # LVGL
|
|
|
|
|
2018-10-09 04:14:40 +02:00
|
|
|
endif # BOARD_MIMXRT1064_EVK
|