blob: 5a1122b2ff14a3704e48211c19c48b9fcb6c83c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
#
# S3C Video configuration
#
config FB_S3C
tristate "S3C Framebuffer support"
select FB_CFB_FILLRECT
select FB_CFB_COPYAREA
select FB_CFB_IMAGEBLIT
select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if VT
depends on FB && ARCH_S5PV210
default n
---help---
This enables support for Samsung Display Controller (FIMD)
config FB_S3C_SPLASH_SCREEN
bool "SPLASH_SCREEN on LCD"
depends on FB_S3C
default n
config FB_S3C_LCD_INIT
bool "LCD init in kernel"
depends on FB_S3C
default y
config FB_S3C_DEBUG
bool "S3C Framebuffer debug messages"
depends on FB_S3C
config FB_S3C_TRACE_UNDERRUN
bool "S3C Framebuffer FIFO underrun trace"
depends on FB_S3C
config FB_S3C_DEFAULT_WINDOW
int "Default Window (0-4)"
range 0 4
depends on FB_S3C
default "2"
---help---
This indicates the default window number, and which is used as console framebuffer
config FB_S3C_NR_BUFFERS
int "Number of frame buffers (1-3)"
depends on FB_S3C
default "2"
---help---
This indicates the number of buffers for pan display,
1 means no pan display and
2 means the double size of video buffer will be allocated for default window
config FB_S3C_NUM_OVLY_WIN
int "Number of overlay window (0-3)"
range 0 3
depends on FB_S3C
default "1"
---help---
This indicates the number of overlay windows for video rendering
config FB_S3C_NUM_BUF_OVLY_WIN
int "Number of buffers for overlay window (2-3)"
range 2 3
depends on FB_S3C
default "3"
---help---
This indicates the number of buffers for overlay windows
config FB_S3C_VIRTUAL
bool "Virtual Screen"
depends on FB_S3C
default n
---help---
This uses 1920 x 1080 virtual screen.
config FB_S3C_X_VRES
int "xres_virtual"
depends on FB_S3C && FB_S3C_VIRTUAL
default "1920"
help
This indicates var.xres_virtual which has to be bigger than var.xres.
config FB_S3C_Y_VRES
int "yres_virtual"
depends on FB_S3C && FB_S3C_VIRTUAL
default "1080"
help
This indicates var.yres_virtual which has to be bigger than var.yres.
choice
depends on FB_S3C
prompt "Select LCD Type"
default FB_S3C_LTE480WV
config FB_S3C_LTE480WV
bool "LTE480WV"
depends on (MACH_SMDKV210 || MACH_SMDKC110)
---help---
This enables support for Samsung LTE480WV 4.8\" WVGA LCD panel
config FB_S3C_HT101HD1
bool "HT101HD1"
depends on MACH_SMDKV210
---help---
This enables support for HT101HD1 WXVGA(1366*768) LCD panel
endchoice
config FB_S3C_TL2796
bool "TL2796"
depends on FB_S3C
select SPI
select SPI_GPIO
select SPI_BITBANG
---help---
This enables support for Samsung TL2796 WVGA LCD panel
config FB_VOODOO
bool "Voodoo Color"
depends on FB_S3C_TL2796
default y
---help---
This enables support Voodoo color mods
config FB_VOODOO_DEBUG_LOG
bool "Verbose Super AMOLED driver logs"
depends on FB_VOODOO
default n
---help---
Logging for developers
Super AMOLED hardware command decoding and driver calculations
config FB_S3C_NT35580
bool "NT35580"
depends on FB_S3C
select SPI
select SPI_GPIO
select SPI_BITBANG
---help---
This enables support for SONY NT35580 WVGA LCD panel
config FB_S3C_LVDS
bool "LVDS"
depends on FB_S3C && (ARCH_S5PV210)
default y
---help---
This enables support for Samsung LVDS LCD panel
config FB_S3C_AMS701KA
bool "AMS701KA"
depends on FB_S3C && (ARCH_S5PV210)
select SPI
select SPI_GPIO
default n
---help---
This enables support for Samsung AMS701KA LCD panel
config FB_S3C_MDNIE
bool "Samsung MDNIE"
depends on FB_S3C
depends on FB_S3C && (ARCH_S5PV210)
default "0"
---help---
This enables support for Samsung MDNIE feature
config TL2796_CONVERT_COLORS_RES
bool "TL2796 6500K Colors"
depends on FB_S3C_TL2796
default y
---help---
This scales from 8500K colors to 6500K colors
config FB_S3C_CMC623
bool "Samsung CMC623"
depends on FB_S3C && (ARCH_S5PV210)
default "0"
---help---
This enables support for Samsung CMC623 feature
|