Skip to content

Commit 8c9108d

Browse files
poeschelojeda
authored andcommitted
auxdisplay: add a driver for lcd2s character display
This driver allows to use a lcd2s 20x4 character display from Modtronix engineering as an auxdisplay charlcd device. Signed-off-by: Lars Poeschel <[email protected]> Signed-off-by: Miguel Ojeda <[email protected]>
1 parent 1741b01 commit 8c9108d

File tree

3 files changed

+414
-0
lines changed

3 files changed

+414
-0
lines changed

drivers/auxdisplay/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,16 @@ config HT16K33
173173
Say yes here to add support for Holtek HT16K33, RAM mapping 16*8
174174
LED controller driver with keyscan.
175175

176+
config LCD2S
177+
tristate "lcd2s 20x4 character display over I2C console"
178+
depends on I2C
179+
select CHARLCD
180+
help
181+
This is a driver that lets you use the lcd2s 20x4 character display
182+
from Modtronix engineering as a console output device. The display
183+
is a simple single color character display. You have to connect it
184+
to an I2C bus.
185+
176186
config ARM_CHARLCD
177187
bool "ARM Ltd. Character LCD Driver"
178188
depends on PLAT_VERSATILE

drivers/auxdisplay/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ obj-$(CONFIG_IMG_ASCII_LCD) += img-ascii-lcd.o
1212
obj-$(CONFIG_HD44780) += hd44780.o
1313
obj-$(CONFIG_HT16K33) += ht16k33.o
1414
obj-$(CONFIG_PARPORT_PANEL) += panel.o
15+
obj-$(CONFIG_LCD2S) += lcd2s.o

0 commit comments

Comments
 (0)