2020-10-27 02:20:16 +08:00
|
|
|
# ILI9XXX display driver configuration options
|
2017-10-06 14:34:43 +08:00
|
|
|
|
2017-10-10 03:19:12 +08:00
|
|
|
# Copyright (c) 2017 Jan Van Winkel <jan.van_winkel@dxplore.eu>
|
2020-10-27 03:01:42 +08:00
|
|
|
# Copyright (c) 2020 Teslabs Engineering S.L.
|
2021-06-23 17:34:41 +08:00
|
|
|
# Copyright (c) 2021 Krivorot Oleg <krivorot.oleg@gmail.com>
|
2017-10-06 14:34:43 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-10-27 02:20:16 +08:00
|
|
|
config ILI9XXX
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Hidden configuration entry for all ILI9XXX drivers.
|
|
|
|
|
2024-01-23 23:47:56 +08:00
|
|
|
config ILI9XXX_READ
|
|
|
|
bool "Allow display_read API with ILI9XXX"
|
|
|
|
help
|
|
|
|
Support display_read API with ILI9XXX controllers. This API is opt-in,
|
|
|
|
because it adds code overhead and is not very performant due to
|
|
|
|
the requirement to bitshift data read from the ILI9XXX. Note the
|
|
|
|
API only supports RGB565 mode.
|
|
|
|
|
|
|
|
|
2020-09-15 22:42:26 +08:00
|
|
|
config ILI9340
|
2017-10-06 14:34:43 +08:00
|
|
|
bool "ILI9340 display driver"
|
2022-08-08 23:18:55 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_ILITEK_ILI9340_ENABLED
|
2023-10-31 00:22:15 +08:00
|
|
|
select MIPI_DBI
|
2020-10-27 02:20:16 +08:00
|
|
|
select ILI9XXX
|
2017-10-06 14:34:43 +08:00
|
|
|
help
|
2019-11-01 17:24:07 +08:00
|
|
|
Enable driver for ILI9340 display driver.
|
2020-10-27 03:01:42 +08:00
|
|
|
|
2021-06-23 17:34:41 +08:00
|
|
|
config ILI9341
|
|
|
|
bool "ILI9341 display driver"
|
2022-08-08 23:18:55 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_ILITEK_ILI9341_ENABLED
|
2023-10-31 00:22:15 +08:00
|
|
|
select MIPI_DBI
|
2021-06-23 17:34:41 +08:00
|
|
|
select ILI9XXX
|
|
|
|
help
|
|
|
|
Enable driver for ILI9341 display driver.
|
|
|
|
|
2023-03-07 04:58:54 +08:00
|
|
|
config ILI9342C
|
|
|
|
bool "ILI9342C display driver"
|
|
|
|
default y
|
|
|
|
depends on DT_HAS_ILITEK_ILI9342C_ENABLED
|
2023-10-31 00:22:15 +08:00
|
|
|
select MIPI_DBI
|
2023-03-07 04:58:54 +08:00
|
|
|
select ILI9XXX
|
|
|
|
help
|
|
|
|
Enable driver for ILI9342C display driver.
|
|
|
|
|
2020-10-27 03:01:42 +08:00
|
|
|
config ILI9488
|
|
|
|
bool "ILI9488 display driver"
|
2022-08-08 23:18:55 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_ILITEK_ILI9488_ENABLED
|
2023-10-31 00:22:15 +08:00
|
|
|
select MIPI_DBI
|
2020-10-27 03:01:42 +08:00
|
|
|
select ILI9XXX
|
|
|
|
help
|
|
|
|
Enable driver for ILI9488 display driver.
|