|
| 1 | +config FB_FTLCDC100 |
| 2 | + tristate "Faraday FTLCDC100 driver" |
| 3 | + depends on FB |
| 4 | + select FB_CFB_FILLRECT |
| 5 | + select FB_CFB_COPYAREA |
| 6 | + select FB_CFB_IMAGEBLIT |
| 7 | + |
| 8 | + choice |
| 9 | + prompt "Default LCD Panel" |
| 10 | + depends on FB_FTLCDC100 |
| 11 | + default PANEL_AUA036QN01 |
| 12 | + help |
| 13 | + This option select a default panel setting for the LCD controller |
| 14 | + |
| 15 | + config PANEL_AUA036QN01 |
| 16 | + bool "AU 3.5 inch LCD Panel" |
| 17 | + |
| 18 | + config PANEL_CH7013A |
| 19 | + bool "Chrontel Digital PC to TV Encoder" |
| 20 | + select I2C |
| 21 | + select I2C_FARADAY |
| 22 | + select CH7013A |
| 23 | + |
| 24 | + config PANEL_AUA070VW04 |
| 25 | + bool "AU 7.0 inch LCD Panel" |
| 26 | + |
| 27 | + config PANEL_LW500AC9601 |
| 28 | + bool "CHIMEI 5.0 inch LCD panel" |
| 29 | + |
| 30 | + endchoice |
| 31 | + |
| 32 | + # config FTLCD_OSD |
| 33 | + # bool "Enable OSD (On Screen Display)" |
| 34 | + # depends on FB_FTLCDC100 |
| 35 | + # default n |
| 36 | + # ---help--- |
| 37 | + # This enables access to the OSD (On Screen Display) for Faraday |
| 38 | + # FTLCDC100 LCD control. Disabling OSD will reduce the size of |
| 39 | + # the kernel by approximately 6kb. |
| 40 | + # |
| 41 | + |
| 42 | + choice |
| 43 | + prompt "Default Color Mode" |
| 44 | + depends on FB_FTLCDC100 |
| 45 | + default FFB_MODE_RGB |
| 46 | + help |
| 47 | + This option select default color mode |
| 48 | + |
| 49 | + config FFB_MODE_RGB |
| 50 | + bool "RGB Mode" |
| 51 | + config FFB_MODE_YUV422 |
| 52 | + bool "YUV422 Mode" |
| 53 | + config FFB_MODE_YUV420 |
| 54 | + bool "YUV420 Mode" |
| 55 | + endchoice |
| 56 | + |
| 57 | + choice |
| 58 | + prompt "Default BPP" |
| 59 | + depends on FB_FTLCDC100 |
| 60 | + default FFB_MODE_16BPP |
| 61 | + help |
| 62 | + This option select default BPP (bits-per-pixel) |
| 63 | + |
| 64 | + config FFB_MODE_8BPP |
| 65 | + depends on FFB_MODE_RGB || FFB_MODE_YUV420 |
| 66 | + bool "8 bits-per-pixel" |
| 67 | + config FFB_MODE_16BPP |
| 68 | + depends on FFB_MODE_RGB || FFB_MODE_YUV422 |
| 69 | + bool "16 bits-per-pixel" |
| 70 | + config FFB_MODE_24BPP |
| 71 | + depends on FFB_MODE_RGB |
| 72 | + bool "24 bits-per-pixel" |
| 73 | + endchoice |
| 74 | + |
0 commit comments