2010-05-11 05:55:28 +02:00
|
|
|
############################################################################
|
|
|
|
# drivers/lcd/Make.defs
|
|
|
|
#
|
2021-03-04 07:10:42 +01: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 05:55:28 +02:00
|
|
|
#
|
2021-03-04 07:10:42 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2010-05-11 05:55:28 +02:00
|
|
|
#
|
2021-03-04 07:10:42 +01: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 05:55:28 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2017-09-17 18:39:23 +02:00
|
|
|
ifeq ($(CONFIG_LCD),y)
|
|
|
|
|
2020-02-23 09:50:23 +01:00
|
|
|
# Support for the generic LCD framebuffer front-end
|
2017-09-17 18:39:23 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_FRAMEBUFFER),y)
|
|
|
|
CSRCS += lcd_framebuffer.c
|
|
|
|
endif
|
2010-12-05 20:54:23 +01:00
|
|
|
|
2020-10-30 01:59:29 +01:00
|
|
|
ifeq ($(CONFIG_LCD_DEV),y)
|
|
|
|
CSRCS += lcd_dev.c
|
|
|
|
endif
|
|
|
|
|
2016-05-26 21:40:22 +02:00
|
|
|
# Include support for Graphics LCD drivers
|
2011-05-16 17:09:39 +02:00
|
|
|
|
2018-02-17 18:59:07 +01:00
|
|
|
ifeq ($(CONFIG_LCD_FT80X),y)
|
2018-02-18 01:30:24 +01:00
|
|
|
CSRCS += ft80x.c
|
2018-02-17 18:59:07 +01: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 14:24:13 +02:00
|
|
|
ifeq ($(CONFIG_LCD_LPM013M091A),y)
|
|
|
|
CSRCS += lpm013m091a.c
|
|
|
|
endif
|
|
|
|
|
2010-12-05 17:16:50 +01:00
|
|
|
ifeq ($(CONFIG_LCD_P14201),y)
|
2011-05-16 17:09:39 +02:00
|
|
|
CSRCS += p14201.c
|
2010-12-05 20:54:23 +01:00
|
|
|
endif
|
|
|
|
|
2012-11-07 22:53:14 +01:00
|
|
|
ifeq ($(CONFIG_LCD_UG2864AMBAG01),y)
|
|
|
|
CSRCS += ug-2864ambag01.c
|
|
|
|
endif
|
|
|
|
|
2011-04-18 19:16:24 +02:00
|
|
|
ifeq ($(CONFIG_LCD_UG9664HSWAG01),y)
|
2011-05-16 17:09:39 +02:00
|
|
|
CSRCS += ug-9664hswag01.c
|
2011-04-18 01:48:01 +02:00
|
|
|
endif
|
|
|
|
|
2013-06-23 22:39:56 +02:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1306),y)
|
2015-07-15 19:21:54 +02: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-23 22:39:56 +02:00
|
|
|
endif
|
|
|
|
|
2012-05-24 17:45:46 +02:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1289),y)
|
|
|
|
CSRCS += ssd1289.c
|
|
|
|
endif
|
|
|
|
|
2015-08-24 19:12:52 +02:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1351),y)
|
|
|
|
CSRCS += ssd1351.c
|
|
|
|
endif
|
|
|
|
|
2012-06-04 20:45:48 +02:00
|
|
|
ifeq ($(CONFIG_LCD_MIO283QT2),y)
|
|
|
|
CSRCS += mio283qt2.c
|
|
|
|
endif
|
2017-11-04 14:54:48 +01:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_MAX7219),y)
|
|
|
|
CSRCS += max7219.c
|
|
|
|
endif
|
2012-06-04 20:45:48 +02:00
|
|
|
|
2014-02-10 19:26:08 +01:00
|
|
|
ifeq ($(CONFIG_LCD_MIO283QT9A),y)
|
|
|
|
CSRCS += mio283qt9a.c
|
|
|
|
endif
|
|
|
|
|
2017-05-26 15:38:39 +02:00
|
|
|
ifeq ($(CONFIG_LCD_PCD8544),y)
|
|
|
|
CSRCS += pcd8544.c
|
|
|
|
endif
|
|
|
|
|
2014-11-14 13:55:16 +01:00
|
|
|
ifeq ($(CONFIG_LCD_ST7565),y)
|
|
|
|
CSRCS += st7565.c
|
|
|
|
endif
|
|
|
|
|
2013-03-22 15:30:54 +01:00
|
|
|
ifeq ($(CONFIG_LCD_ST7567),y)
|
|
|
|
CSRCS += st7567.c
|
|
|
|
endif
|
|
|
|
|
2013-12-23 23:03:54 +01:00
|
|
|
ifeq ($(CONFIG_LCD_SHARP_MEMLCD),y)
|
|
|
|
CSRCS += memlcd.c
|
|
|
|
endif
|
|
|
|
|
2021-04-09 23:16:33 +02:00
|
|
|
ifeq ($(CONFIG_LCD_ILI9225),y)
|
|
|
|
CSRCS += ili9225.c
|
|
|
|
endif
|
|
|
|
|
2019-07-03 14:24:13 +02:00
|
|
|
ifeq ($(CONFIG_LCD_ILI9340),y)
|
|
|
|
CSRCS += ili9340.c
|
|
|
|
endif
|
|
|
|
|
2014-10-20 23:27:56 +02:00
|
|
|
ifeq ($(CONFIG_LCD_ILI9341),y)
|
|
|
|
CSRCS += ili9341.c
|
|
|
|
endif
|
|
|
|
|
2020-01-28 15:30:34 +01:00
|
|
|
ifeq ($(CONFIG_LCD_LCDDRV_SPIIF),y)
|
|
|
|
CSRCS += lcddrv_spiif.c
|
|
|
|
endif
|
|
|
|
|
2015-04-24 15:46:03 +02:00
|
|
|
ifeq ($(CONFIG_LCD_RA8875),y)
|
|
|
|
CSRCS += ra8875.c
|
|
|
|
endif
|
2020-06-21 21:15:11 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_ST7735),y)
|
|
|
|
CSRCS += st7735.c
|
|
|
|
endif
|
|
|
|
|
2020-12-22 18:55:19 +01:00
|
|
|
ifeq ($(CONFIG_LCD_ST7789),y)
|
|
|
|
CSRCS += st7789.c
|
|
|
|
endif
|
|
|
|
|
2021-09-16 05:55:39 +02:00
|
|
|
ifeq ($(CONFIG_LCD_GC9A01),y)
|
|
|
|
CSRCS += gc9a01.c
|
|
|
|
endif
|
|
|
|
|
2017-11-25 20:13:30 +01:00
|
|
|
endif # CONFIG_LCD
|
2015-04-24 15:46:03 +02:00
|
|
|
|
2016-05-26 21:40:22 +02:00
|
|
|
ifeq ($(CONFIG_SLCD),y)
|
2011-05-16 17:09:39 +02:00
|
|
|
|
2016-05-26 21:40:22 +02:00
|
|
|
# Include support for Alphanumeric/Segment LCD drivers
|
2016-05-26 15:21:14 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_BACKPACK),y)
|
|
|
|
CSRCS += pcf8574_lcd_backpack.c
|
2010-05-11 05:55:28 +02:00
|
|
|
endif
|
2018-11-25 01:43:33 +01:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_ST7032),y)
|
|
|
|
CSRCS += st7032.c
|
|
|
|
endif
|
2021-06-05 22:16:02 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_HT16K33),y)
|
|
|
|
CSRCS += ht16k33_14seg.c
|
|
|
|
endif
|
2016-05-26 21:40:22 +02:00
|
|
|
endif # CONFIG_SLCD
|
2010-05-11 05:55:28 +02:00
|
|
|
|
2019-01-15 15:55:53 +01:00
|
|
|
# Other LCD-related devices
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_TDA19988),y)
|
|
|
|
CSRCS += tda19988.c
|
|
|
|
endif
|
|
|
|
|
2016-05-26 21:40:22 +02:00
|
|
|
# Include LCD driver build support (the nested if-then-else implements an OR)
|
2016-05-26 15:21:14 +02:00
|
|
|
|
2017-09-17 18:39:23 +02:00
|
|
|
ifeq ($(CONFIG_LCD),y)
|
2016-05-26 21:40:22 +02:00
|
|
|
DEPPATH += --dep-path lcd
|
|
|
|
VPATH += :lcd
|
2020-03-26 04:51:22 +01:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)lcd}
|
2016-05-26 21:40:22 +02:00
|
|
|
else ifeq ($(CONFIG_SLCD),y)
|
|
|
|
DEPPATH += --dep-path lcd
|
|
|
|
VPATH += :lcd
|
2020-03-26 04:51:22 +01:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)lcd}
|
2019-01-15 15:55:53 +01:00
|
|
|
else ifeq ($(CONFIG_LCD_OTHER),y)
|
|
|
|
DEPPATH += --dep-path lcd
|
|
|
|
VPATH += :lcd
|
2020-03-26 04:51:22 +01:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)lcd}
|
2016-05-26 15:21:14 +02:00
|
|
|
endif
|