Stefan Wahren dd3afa57c5 staging: fbtft: replace master->setup() with spi_setup() 10 years ago
..
Kconfig 24b7d011a6 staging: fbtft: Allow compile test of GPIO consumers if !GPIOLIB 10 years ago
Makefile a1560f9bec Staging: fbtft: Add support for the Ultrachip UC1611 LCD controller 10 years ago
README b6935e2911 Staging: fbtft: remove trailing whitespace 10 years ago
fb_agm1264k-fl.c b38c760ab0 staging: fbtft: replace fbtft_dev_dbg with standard dev_dbg call 10 years ago
fb_bd663474.c 171c44fcbb staging: fbtft: fix spacing errors 10 years ago
fb_hx8340bn.c 92def781ee staging: fbtft: Fix typo in fbtft 10 years ago
fb_hx8347d.c 153fe94641 staging: fbtft: Do not use binary constants 10 years ago
fb_hx8353d.c 92def781ee staging: fbtft: Fix typo in fbtft 10 years ago
fb_hx8357d.c 9cd491e8c3 staging: fbtft: Add support for Himax HX8357D controller 10 years ago
fb_hx8357d.h 9cd491e8c3 staging: fbtft: Add support for Himax HX8357D controller 10 years ago
fb_ili9163.c 3b143b5503 staging: fbtft: Add support for ili9163 controller 10 years ago
fb_ili9320.c 38e127275f staging: fbtft: correct a typo in a comment 10 years ago
fb_ili9325.c 153fe94641 staging: fbtft: Do not use binary constants 10 years ago
fb_ili9340.c 92def781ee staging: fbtft: Fix typo in fbtft 10 years ago
fb_ili9341.c 92def781ee staging: fbtft: Fix typo in fbtft 10 years ago
fb_ili9481.c 92def781ee staging: fbtft: Fix typo in fbtft 10 years ago
fb_ili9486.c 92def781ee staging: fbtft: Fix typo in fbtft 10 years ago
fb_pcd8544.c 4178549e4c Staging: fbtft: fb_pcd8544: Fix comments style 10 years ago
fb_ra8875.c 3c588452c2 staging: fbtft: split long strings 10 years ago
fb_s6d02a1.c 92def781ee staging: fbtft: Fix typo in fbtft 10 years ago
fb_s6d1121.c 153fe94641 staging: fbtft: Do not use binary constants 10 years ago
fb_ssd1289.c 153fe94641 staging: fbtft: Do not use binary constants 10 years ago
fb_ssd1306.c aed1c72e44 Staging: fbtft: clean dev_err() logging 10 years ago
fb_ssd1331.c aed1c72e44 Staging: fbtft: clean dev_err() logging 10 years ago
fb_ssd1351.c 153fe94641 staging: fbtft: Do not use binary constants 10 years ago
fb_st7735r.c afe11f108a staging: fbtft: Replace spaces to tab 10 years ago
fb_tinylcd.c c26c5e739e staging: fbtft: replace spaces with tabs 10 years ago
fb_tls8204.c 3c588452c2 staging: fbtft: split long strings 10 years ago
fb_uc1611.c dd3afa57c5 staging: fbtft: replace master->setup() with spi_setup() 10 years ago
fb_uc1701.c aed1c72e44 Staging: fbtft: clean dev_err() logging 10 years ago
fb_upd161704.c 4643b70a08 Staging: fbtft: fix space errors 10 years ago
fb_watterott.c dd3afa57c5 staging: fbtft: replace master->setup() with spi_setup() 10 years ago
fbtft-bus.c 02eb884f4e drivers: staging: fbtft: fbtft-bus.c: Fix different address space warning on I/O mem 10 years ago
fbtft-core.c cabb5b2a28 staging: fbtft: fix 9-bit SPI support detection 10 years ago
fbtft-io.c 248d828514 staging: fbtft: fbtft-io.c: remove extra parentheses around function arguments 10 years ago
fbtft-sysfs.c 153fe94641 staging: fbtft: Do not use binary constants 10 years ago
fbtft.h cd951ddc2d staging: fbtft: Remove unnecessary externs 10 years ago
fbtft_device.c a1560f9bec Staging: fbtft: Add support for the Ultrachip UC1611 LCD controller 10 years ago
flexfb.c cabb5b2a28 staging: fbtft: fix 9-bit SPI support detection 10 years ago
internal.h 27cbc73aac Staging: fbtft: fix header guard typo 10 years ago

README

FBTFT
=========

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/fbtft
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/