No description
Find a file
2015-02-14 15:03:09 +01:00
dts overlays: rpi: add tinylcd35 2015-02-14 15:03:09 +01:00
.gitignore first commit 2013-01-18 23:13:10 +01:00
fb_agm1264k-fl.c add support for AGM1264K-FL 2014-11-28 18:53:45 +01:00
fb_bd663474.c add device tree support 2014-08-16 14:32:14 +02:00
fb_hx8340bn.c add device tree support 2014-08-16 14:32:14 +02:00
fb_hx8347d.c add device tree support 2014-08-16 14:32:14 +02:00
fb_hx8353d.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ili9320.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ili9325.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ili9340.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ili9341.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ili9481.c fb_ili948{1,6}: regwidth was incorrect 2014-12-05 16:10:27 +01:00
fb_ili9486.c fb_ili948{1,6}: regwidth was incorrect 2014-12-05 16:10:27 +01:00
fb_pcd8544.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ra8875.c add device tree support 2014-08-16 14:32:14 +02:00
fb_s6d02a1.c add device tree support 2014-08-16 14:32:14 +02:00
fb_s6d1121.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ssd1289.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ssd1306.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ssd1331.c add device tree support 2014-08-16 14:32:14 +02:00
fb_ssd1351.c add device tree support 2014-08-16 14:32:14 +02:00
fb_st7735r.c add device tree support 2014-08-16 14:32:14 +02:00
fb_tinylcd.c add device tree support 2014-08-16 14:32:14 +02:00
fb_tls8204.c add device tree support 2014-08-16 14:32:14 +02:00
fb_uc1701.c uc1701: add support for UC1701 2014-11-28 18:38:06 +01:00
fb_upd161704.c add device tree support 2014-08-16 14:32:14 +02:00
fb_watterott.c add device tree support 2014-08-16 14:32:14 +02:00
fbtft-bus.c fbtft: change debug macro name 2013-08-31 10:50:16 +00:00
fbtft-core.c fbtft: make it possible to override regwidth 2014-12-05 16:07:50 +01:00
fbtft-io.c fbtft: experimental DMA support 2013-09-10 16:07:16 +00:00
fbtft-sysfs.c fbtft: change sysfs perm to build on 3.17 2014-11-02 19:54:04 +01:00
fbtft.h add device tree support 2014-08-16 14:32:14 +02:00
fbtft_device.c fbtft_device: added support for waveshare32b 2014-12-07 22:12:35 +01:00
flexfb.c use managed memory allocation 2014-08-09 19:45:14 +02:00
Kconfig add support for AGM1264K-FL 2014-11-28 18:53:45 +01:00
Makefile add support for AGM1264K-FL 2014-11-28 18:53:45 +01:00
README README: development have move to Linux staging 2015-01-19 17:35:12 +01:00

  FBTFT
=========

2015-01-19
The FBTFT drivers are now in the Linux kernel staging tree: https://git.kernel.org/cgit/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/fbtft?h=staging-testing
Development in this github repo has ceased.


Linux Framebuffer drivers for small TFT LCD display modules.
The module 'fbtft' makes writing drivers for some of these displays very easy.

Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.

INSTALLATION
  Download kernel sources

  From Linux 3.15  
    cd drivers/video/fbdev
    git clone https://github.com/notro/fbtft.git
    
    Add to drivers/video/fbdev/Kconfig:   source "drivers/video/fbdev/fbtft/Kconfig"
    Add to drivers/video/fbdev/Makefile:  obj-y += fbtft/
  
  Before Linux 3.15  
    cd drivers/video
    git clone https://github.com/notro/fbtft.git
    
    Add to drivers/video/Kconfig:   source "drivers/video/fbtft/Kconfig"
    Add to drivers/video/Makefile:  obj-y += fbtft/
  
  Enable driver(s) in menuconfig and build the kernel


See wiki for more information: https://github.com/notro/fbtft/wiki


Source: https://github.com/notro/fbtft/