2010-05-11 11:55:28 +08:00
|
|
|
############################################################################
|
|
|
|
# drivers/lcd/Make.defs
|
|
|
|
#
|
2024-11-05 20:02:24 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2010-05-11 11:55:28 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2010-05-11 11:55:28 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2010-05-11 11:55:28 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2017-09-18 00:39:23 +08:00
|
|
|
ifeq ($(CONFIG_LCD),y)
|
|
|
|
|
2020-02-23 16:50:23 +08:00
|
|
|
# Support for the generic LCD framebuffer front-end
|
2017-09-18 00:39:23 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_FRAMEBUFFER),y)
|
|
|
|
CSRCS += lcd_framebuffer.c
|
|
|
|
endif
|
2010-12-06 03:54:23 +08:00
|
|
|
|
2020-10-30 08:59:29 +08:00
|
|
|
ifeq ($(CONFIG_LCD_DEV),y)
|
|
|
|
CSRCS += lcd_dev.c
|
|
|
|
endif
|
|
|
|
|
2016-05-27 03:40:22 +08:00
|
|
|
# Include support for Graphics LCD drivers
|
2011-05-16 23:09:39 +08:00
|
|
|
|
2018-02-18 01:59:07 +08:00
|
|
|
ifeq ($(CONFIG_LCD_FT80X),y)
|
2018-02-18 08:30:24 +08:00
|
|
|
CSRCS += ft80x.c
|
2018-02-18 01:59:07 +08:00
|
|
|
ifeq ($(CONFIG_LCD_FT80X_SPI),y)
|
|
|
|
CSRCS += ft80x_spi.c
|
|
|
|
else ifeq ($(CONFIG_LCD_FT80X_I2C),y)
|
|
|
|
CSRCS += ft80x_i2c.c
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-07-03 20:24:13 +08:00
|
|
|
ifeq ($(CONFIG_LCD_LPM013M091A),y)
|
|
|
|
CSRCS += lpm013m091a.c
|
|
|
|
endif
|
|
|
|
|
2022-07-18 04:56:22 +08:00
|
|
|
ifeq ($(CONFIG_LCD_APA102),y)
|
|
|
|
CSRCS += apa102.c
|
|
|
|
endif
|
|
|
|
|
2010-12-06 00:16:50 +08:00
|
|
|
ifeq ($(CONFIG_LCD_P14201),y)
|
2011-05-16 23:09:39 +08:00
|
|
|
CSRCS += p14201.c
|
2010-12-06 03:54:23 +08:00
|
|
|
endif
|
|
|
|
|
2012-11-08 05:53:14 +08:00
|
|
|
ifeq ($(CONFIG_LCD_UG2864AMBAG01),y)
|
|
|
|
CSRCS += ug-2864ambag01.c
|
|
|
|
endif
|
|
|
|
|
2011-04-19 01:16:24 +08:00
|
|
|
ifeq ($(CONFIG_LCD_UG9664HSWAG01),y)
|
2011-05-16 23:09:39 +08:00
|
|
|
CSRCS += ug-9664hswag01.c
|
2011-04-18 07:48:01 +08:00
|
|
|
endif
|
|
|
|
|
2013-06-24 04:39:56 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1306),y)
|
2015-07-16 01:21:54 +08:00
|
|
|
CSRCS += ssd1306_base.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_SSD1306_SPI),y)
|
|
|
|
CSRCS += ssd1306_spi.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_SSD1306_I2C),y)
|
|
|
|
CSRCS += ssd1306_i2c.c
|
2013-06-24 04:39:56 +08:00
|
|
|
endif
|
|
|
|
|
2012-05-24 23:45:46 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1289),y)
|
|
|
|
CSRCS += ssd1289.c
|
|
|
|
endif
|
|
|
|
|
2022-06-10 20:03:19 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1680),y)
|
|
|
|
CSRCS += ssd1680.c
|
|
|
|
endif
|
|
|
|
|
2015-08-25 01:12:52 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1351),y)
|
|
|
|
CSRCS += ssd1351.c
|
|
|
|
endif
|
|
|
|
|
2012-06-05 02:45:48 +08:00
|
|
|
ifeq ($(CONFIG_LCD_MIO283QT2),y)
|
|
|
|
CSRCS += mio283qt2.c
|
|
|
|
endif
|
2017-11-04 21:54:48 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_MAX7219),y)
|
|
|
|
CSRCS += max7219.c
|
|
|
|
endif
|
2012-06-05 02:45:48 +08:00
|
|
|
|
2014-02-11 02:26:08 +08:00
|
|
|
ifeq ($(CONFIG_LCD_MIO283QT9A),y)
|
|
|
|
CSRCS += mio283qt9a.c
|
|
|
|
endif
|
|
|
|
|
2017-05-26 21:38:39 +08:00
|
|
|
ifeq ($(CONFIG_LCD_PCD8544),y)
|
|
|
|
CSRCS += pcd8544.c
|
|
|
|
endif
|
|
|
|
|
2014-11-14 20:55:16 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ST7565),y)
|
|
|
|
CSRCS += st7565.c
|
|
|
|
endif
|
|
|
|
|
2013-03-22 22:30:54 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ST7567),y)
|
|
|
|
CSRCS += st7567.c
|
|
|
|
endif
|
|
|
|
|
2013-12-24 06:03:54 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SHARP_MEMLCD),y)
|
|
|
|
CSRCS += memlcd.c
|
|
|
|
endif
|
|
|
|
|
2021-04-10 05:16:33 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ILI9225),y)
|
|
|
|
CSRCS += ili9225.c
|
|
|
|
endif
|
|
|
|
|
2019-07-03 20:24:13 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ILI9340),y)
|
|
|
|
CSRCS += ili9340.c
|
|
|
|
endif
|
|
|
|
|
2014-10-21 05:27:56 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ILI9341),y)
|
|
|
|
CSRCS += ili9341.c
|
|
|
|
endif
|
|
|
|
|
2020-01-28 22:30:34 +08:00
|
|
|
ifeq ($(CONFIG_LCD_LCDDRV_SPIIF),y)
|
|
|
|
CSRCS += lcddrv_spiif.c
|
|
|
|
endif
|
|
|
|
|
2015-04-24 21:46:03 +08:00
|
|
|
ifeq ($(CONFIG_LCD_RA8875),y)
|
|
|
|
CSRCS += ra8875.c
|
|
|
|
endif
|
2020-06-22 03:15:11 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_ST7735),y)
|
|
|
|
CSRCS += st7735.c
|
|
|
|
endif
|
|
|
|
|
2020-12-23 01:55:19 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ST7789),y)
|
|
|
|
CSRCS += st7789.c
|
|
|
|
endif
|
|
|
|
|
2021-09-16 11:55:39 +08:00
|
|
|
ifeq ($(CONFIG_LCD_GC9A01),y)
|
|
|
|
CSRCS += gc9a01.c
|
|
|
|
endif
|
|
|
|
|
2023-05-24 17:59:02 +08:00
|
|
|
ifeq ($(CONFIG_LCD_JD9851),y)
|
|
|
|
CSRCS += jd9851.c
|
|
|
|
endif
|
|
|
|
|
2017-11-26 03:13:30 +08:00
|
|
|
endif # CONFIG_LCD
|
2015-04-24 21:46:03 +08:00
|
|
|
|
2016-05-27 03:40:22 +08:00
|
|
|
ifeq ($(CONFIG_SLCD),y)
|
2011-05-16 23:09:39 +08:00
|
|
|
|
2016-05-27 03:40:22 +08:00
|
|
|
# Include support for Alphanumeric/Segment LCD drivers
|
2016-05-26 21:21:14 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_BACKPACK),y)
|
|
|
|
CSRCS += pcf8574_lcd_backpack.c
|
2010-05-11 11:55:28 +08:00
|
|
|
endif
|
2018-11-25 08:43:33 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_ST7032),y)
|
|
|
|
CSRCS += st7032.c
|
|
|
|
endif
|
2021-06-06 04:16:02 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_HT16K33),y)
|
|
|
|
CSRCS += ht16k33_14seg.c
|
|
|
|
endif
|
2016-05-27 03:40:22 +08:00
|
|
|
endif # CONFIG_SLCD
|
2010-05-11 11:55:28 +08:00
|
|
|
|
2019-01-15 22:55:53 +08:00
|
|
|
# Other LCD-related devices
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_TDA19988),y)
|
|
|
|
CSRCS += tda19988.c
|
|
|
|
endif
|
|
|
|
|
2016-05-27 03:40:22 +08:00
|
|
|
# Include LCD driver build support (the nested if-then-else implements an OR)
|
2016-05-26 21:21:14 +08:00
|
|
|
|
2017-09-18 00:39:23 +08:00
|
|
|
ifeq ($(CONFIG_LCD),y)
|
2016-05-27 03:40:22 +08:00
|
|
|
DEPPATH += --dep-path lcd
|
|
|
|
VPATH += :lcd
|
2022-11-01 21:47:53 +08:00
|
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)drivers$(DELIM)lcd
|
2016-05-27 03:40:22 +08:00
|
|
|
else ifeq ($(CONFIG_SLCD),y)
|
|
|
|
DEPPATH += --dep-path lcd
|
|
|
|
VPATH += :lcd
|
2022-11-01 21:47:53 +08:00
|
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)drivers$(DELIM)lcd
|
2019-01-15 22:55:53 +08:00
|
|
|
else ifeq ($(CONFIG_LCD_OTHER),y)
|
|
|
|
DEPPATH += --dep-path lcd
|
|
|
|
VPATH += :lcd
|
2022-11-01 21:47:53 +08:00
|
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)drivers$(DELIM)lcd
|
2016-05-26 21:21:14 +08:00
|
|
|
endif
|