No description
Find a file
2015-02-16 12:19:09 -05: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_hx8357d.c hx8357d: Initial support 2015-02-16 12:06:54 -05:00
fb_hx8357d.h hx8357d: Initial support 2015-02-16 12:06:54 -05:00
fb_ili9320.c fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05: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 fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05: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 fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05:00
fb_ssd1331.c fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05: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 fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05:00
fbtft-bus.c fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05:00
fbtft-core.c fbtft: make it possible to override regwidth 2014-12-05 16:07:50 +01:00
fbtft-io.c fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05:00
fbtft-sysfs.c fbtft: change sysfs perm to build on 3.17 2014-11-02 19:54:04 +01:00
fbtft.h fbtft: Support sending commands at 1 MHz 2015-02-16 12:06:55 -05:00
fbtft_device.c drop irq_base in fbtft_device 2015-02-16 12:06:55 -05:00
flexfb.c use managed memory allocation 2014-08-09 19:45:14 +02:00
Kconfig re-adds HX8353D to Kconfig 2015-02-16 12:19:09 -05:00
Makefile hx8357d: Initial support 2015-02-16 12:06:54 -05: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/