aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/fbtft/Makefile
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2017-02-28 08:10:38 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-06 09:17:08 +0100
commit079306e979d7f8bb1081ce43c7fc1fa8c1d45d55 (patch)
tree95d4bb80d5f938aed0c84cf68de7671af2b75fb3 /drivers/staging/fbtft/Makefile
parentstaging: fbtft: Merged two identical conditionals into one. (diff)
downloadlinux-dev-079306e979d7f8bb1081ce43c7fc1fa8c1d45d55.tar.xz
linux-dev-079306e979d7f8bb1081ce43c7fc1fa8c1d45d55.zip
staging: fbtft: add adriver for SH1106
This patch adds support for the SH1106 OLED controller chip. It's similar to the SSD1306, however it supports only a subset of commands and the internal video memory has a different width. Major differences: - Internal video memory has a width of 132 pixels - Only a subset of commands is supported - Only page addressing mode is supported, no support for vertical and horizontal addressing - SPI frequency limited to 2 MHz according to the datasheet Successfully tested with a 1.3" OLED display with this chip and SPI interface. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fbtft/Makefile')
-rw-r--r--drivers/staging/fbtft/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/fbtft/Makefile b/drivers/staging/fbtft/Makefile
index 2725ea9a4afc..05ae9fbf906e 100644
--- a/drivers/staging/fbtft/Makefile
+++ b/drivers/staging/fbtft/Makefile
@@ -20,6 +20,7 @@ obj-$(CONFIG_FB_TFT_PCD8544) += fb_pcd8544.o
obj-$(CONFIG_FB_TFT_RA8875) += fb_ra8875.o
obj-$(CONFIG_FB_TFT_S6D02A1) += fb_s6d02a1.o
obj-$(CONFIG_FB_TFT_S6D1121) += fb_s6d1121.o
+obj-$(CONFIG_FB_TFT_SH1106) += fb_sh1106.o
obj-$(CONFIG_FB_TFT_SSD1289) += fb_ssd1289.o
obj-$(CONFIG_FB_TFT_SSD1305) += fb_ssd1305.o
obj-$(CONFIG_FB_TFT_SSD1306) += fb_ssd1306.o