| 1 | --- a/drivers/video/display/Kconfig |
| 2 | +++ b/drivers/video/display/Kconfig |
| 3 | @@ -21,4 +21,15 @@ config DISPLAY_SUPPORT |
| 4 | comment "Display hardware drivers" |
| 5 | depends on DISPLAY_SUPPORT |
| 6 | |
| 7 | +config DISPLAY_JBT6K74 |
| 8 | + tristate "TPO JBT6K74-AS TFT display ASIC control interface" |
| 9 | + depends on SPI_MASTER && SYSFS && LCD_CLASS_DEVICE |
| 10 | + help |
| 11 | + SPI driver for the control interface of TFT panels containing |
| 12 | + the TPO JBT6K74-AS controller ASIC, such as the TPO TD028TTEC1 |
| 13 | + TFT diplay module used in the Openmoko Freerunner GSM phone. |
| 14 | + |
| 15 | + The control interface is required for display operation, as it |
| 16 | + controls power management, display timing and gamma calibration. |
| 17 | + |
| 18 | endmenu |
| 19 | --- a/drivers/video/display/Makefile |
| 20 | +++ b/drivers/video/display/Makefile |
| 21 | @@ -3,4 +3,5 @@ |
| 22 | display-objs := display-sysfs.o |
| 23 | |
| 24 | obj-$(CONFIG_DISPLAY_SUPPORT) += display.o |
| 25 | +obj-$(CONFIG_DISPLAY_JBT6K74) += jbt6k74.o |
| 26 | |
| 27 | |