bd6e04411e
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
46 lines
1,007 B
Plaintext
46 lines
1,007 B
Plaintext
# Copyright (c) 2019, NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig DISPLAY_MCUX_ELCDIF
|
|
bool "MCUX eLCDIF driver"
|
|
depends on HAS_MCUX_ELCDIF
|
|
help
|
|
Enable support for mcux eLCDIF driver.
|
|
|
|
if DISPLAY_MCUX_ELCDIF
|
|
|
|
config MCUX_ELCDIF_POOL_BLOCK_NUM
|
|
int "Number of memory pool blocks"
|
|
default 2
|
|
help
|
|
Number of blocks in the frame buffer memory pool.
|
|
|
|
config MCUX_ELCDIF_POOL_BLOCK_MIN
|
|
hex "Minimum memory pool block size"
|
|
default 0x400
|
|
help
|
|
Minimum block size in the frame buffer memory pool.
|
|
|
|
config MCUX_ELCDIF_POOL_BLOCK_MAX
|
|
hex "Maximum memory pool block size"
|
|
default 0x40000
|
|
help
|
|
Maximum block size in the frame buffer memory pool.
|
|
|
|
config MCUX_ELCDIF_POOL_BLOCK_ALIGN
|
|
int "Alignment of memory pool blocks"
|
|
default 64
|
|
help
|
|
Byte alignment in the frame buffer memory pool.
|
|
|
|
choice MCUX_ELCDIF_PANEL
|
|
prompt "Panel selection"
|
|
default MCUX_ELCDIF_PANEL_RK043FN02H
|
|
|
|
config MCUX_ELCDIF_PANEL_RK043FN02H
|
|
bool "Rocktech rk043fn02h-ct"
|
|
|
|
endchoice
|
|
|
|
endif # DISPLAY_MCUX_ELCDIF
|