]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/Kconfig
Merge tag 'drm-intel-next-2019-04-17' of git://anongit.freedesktop.org/drm/drm-intel...
[linux.git] / drivers / gpu / drm / Kconfig
1 #
2 # Drm device configuration
3 #
4 # This driver provides support for the
5 # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
6 #
7 menuconfig DRM
8         tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)"
9         depends on (AGP || AGP=n) && !EMULATED_CMPXCHG && HAS_DMA
10         select DRM_PANEL_ORIENTATION_QUIRKS
11         select HDMI
12         select FB_CMDLINE
13         select I2C
14         select I2C_ALGOBIT
15         select DMA_SHARED_BUFFER
16         select SYNC_FILE
17         help
18           Kernel-level support for the Direct Rendering Infrastructure (DRI)
19           introduced in XFree86 4.0. If you say Y here, you need to select
20           the module that's right for your graphics card from the list below.
21           These modules provide support for synchronization, security, and
22           DMA transfers. Please see <http://dri.sourceforge.net/> for more
23           details.  You should also select and configure AGP
24           (/dev/agpgart) support if it is available for your platform.
25
26 config DRM_MIPI_DSI
27         bool
28         depends on DRM
29
30 config DRM_DP_AUX_CHARDEV
31         bool "DRM DP AUX Interface"
32         depends on DRM
33         help
34           Choose this option to enable a /dev/drm_dp_auxN node that allows to
35           read and write values to arbitrary DPCD registers on the DP aux
36           channel.
37
38 config DRM_DEBUG_MM
39         bool "Insert extra checks and debug info into the DRM range managers"
40         default n
41         depends on DRM=y
42         depends on STACKTRACE_SUPPORT
43         select STACKDEPOT
44         help
45           Enable allocation tracking of memory manager and leak detection on
46           shutdown.
47
48           Recommended for driver developers only.
49
50           If in doubt, say "N".
51
52 config DRM_DEBUG_SELFTEST
53         tristate "kselftests for DRM"
54         depends on DRM
55         depends on DEBUG_KERNEL
56         select PRIME_NUMBERS
57         select DRM_LIB_RANDOM
58         select DRM_KMS_HELPER
59         default n
60         help
61           This option provides kernel modules that can be used to run
62           various selftests on parts of the DRM api. This option is not
63           useful for distributions or general kernels, but only for kernel
64           developers working on DRM and associated drivers.
65
66           If in doubt, say "N".
67
68 config DRM_KMS_HELPER
69         tristate
70         depends on DRM
71         help
72           CRTC helpers for KMS drivers.
73
74 config DRM_KMS_FB_HELPER
75         bool
76         depends on DRM_KMS_HELPER
77         select FB
78         select FRAMEBUFFER_CONSOLE if !EXPERT
79         select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
80         select FB_SYS_FOPS
81         select FB_SYS_FILLRECT
82         select FB_SYS_COPYAREA
83         select FB_SYS_IMAGEBLIT
84         select FB_CFB_FILLRECT
85         select FB_CFB_COPYAREA
86         select FB_CFB_IMAGEBLIT
87         select FB_DEFERRED_IO
88         help
89           FBDEV helpers for KMS drivers.
90
91 config DRM_FBDEV_EMULATION
92         bool "Enable legacy fbdev support for your modesetting driver"
93         depends on DRM
94         select DRM_KMS_HELPER
95         select DRM_KMS_FB_HELPER
96         default y
97         help
98           Choose this option if you have a need for the legacy fbdev
99           support. Note that this support also provides the linux console
100           support on top of your modesetting driver.
101
102           If in doubt, say "Y".
103
104 config DRM_FBDEV_OVERALLOC
105         int "Overallocation of the fbdev buffer"
106         depends on DRM_FBDEV_EMULATION
107         default 100
108         help
109           Defines the fbdev buffer overallocation in percent. Default
110           is 100. Typical values for double buffering will be 200,
111           triple buffering 300.
112
113 config DRM_FBDEV_LEAK_PHYS_SMEM
114         bool "Shamelessly allow leaking of fbdev physical address (DANGEROUS)"
115         depends on DRM_FBDEV_EMULATION && EXPERT
116         default n
117         help
118           In order to keep user-space compatibility, we want in certain
119           use-cases to keep leaking the fbdev physical address to the
120           user-space program handling the fbdev buffer.
121           This affects, not only, Amlogic, Allwinner or Rockchip devices
122           with ARM Mali GPUs using an userspace Blob.
123           This option is not supported by upstream developers and should be
124           removed as soon as possible and be considered as a broken and
125           legacy behaviour from a modern fbdev device driver.
126
127           Please send any bug reports when using this to your proprietary
128           software vendor that requires this.
129
130           If in doubt, say "N" or spread the word to your closed source
131           library vendor.
132
133 config DRM_LOAD_EDID_FIRMWARE
134         bool "Allow to specify an EDID data set instead of probing for it"
135         depends on DRM
136         help
137           Say Y here, if you want to use EDID data to be loaded from the
138           /lib/firmware directory or one of the provided built-in
139           data sets. This may be necessary, if the graphics adapter or
140           monitor are unable to provide appropriate EDID data. Since this
141           feature is provided as a workaround for broken hardware, the
142           default case is N. Details and instructions how to build your own
143           EDID data are given in Documentation/EDID/HOWTO.txt.
144
145 config DRM_DP_CEC
146         bool "Enable DisplayPort CEC-Tunneling-over-AUX HDMI support"
147         select CEC_CORE
148         help
149           Choose this option if you want to enable HDMI CEC support for
150           DisplayPort/USB-C to HDMI adapters.
151
152           Note: not all adapters support this feature, and even for those
153           that do support this they often do not hook up the CEC pin.
154
155 config DRM_TTM
156         tristate
157         depends on DRM && MMU
158         help
159           GPU memory management subsystem for devices with multiple
160           GPU memory types. Will be enabled automatically if a device driver
161           uses it.
162
163 config DRM_GEM_CMA_HELPER
164         bool
165         depends on DRM
166         help
167           Choose this if you need the GEM CMA helper functions
168
169 config DRM_KMS_CMA_HELPER
170         bool
171         depends on DRM
172         select DRM_GEM_CMA_HELPER
173         help
174           Choose this if you need the KMS CMA helper functions
175
176 config DRM_GEM_SHMEM_HELPER
177         bool
178         depends on DRM
179         help
180           Choose this if you need the GEM shmem helper functions
181
182 config DRM_VM
183         bool
184         depends on DRM && MMU
185
186 config DRM_SCHED
187         tristate
188         depends on DRM
189
190 source "drivers/gpu/drm/i2c/Kconfig"
191
192 source "drivers/gpu/drm/arm/Kconfig"
193
194 config DRM_RADEON
195         tristate "ATI Radeon"
196         depends on DRM && PCI && MMU
197         select FW_LOADER
198         select DRM_KMS_HELPER
199         select DRM_TTM
200         select POWER_SUPPLY
201         select HWMON
202         select BACKLIGHT_CLASS_DEVICE
203         select BACKLIGHT_LCD_SUPPORT
204         select INTERVAL_TREE
205         help
206           Choose this option if you have an ATI Radeon graphics card.  There
207           are both PCI and AGP versions.  You don't need to choose this to
208           run the Radeon in plain VGA mode.
209
210           If M is selected, the module will be called radeon.
211
212 source "drivers/gpu/drm/radeon/Kconfig"
213
214 config DRM_AMDGPU
215         tristate "AMD GPU"
216         depends on DRM && PCI && MMU
217         select FW_LOADER
218         select DRM_KMS_HELPER
219         select DRM_SCHED
220         select DRM_TTM
221         select POWER_SUPPLY
222         select HWMON
223         select BACKLIGHT_CLASS_DEVICE
224         select BACKLIGHT_LCD_SUPPORT
225         select INTERVAL_TREE
226         select CHASH
227         help
228           Choose this option if you have a recent AMD Radeon graphics card.
229
230           If M is selected, the module will be called amdgpu.
231
232 source "drivers/gpu/drm/amd/amdgpu/Kconfig"
233
234 source "drivers/gpu/drm/nouveau/Kconfig"
235
236 source "drivers/gpu/drm/i915/Kconfig"
237
238 config DRM_VGEM
239         tristate "Virtual GEM provider"
240         depends on DRM
241         help
242           Choose this option to get a virtual graphics memory manager,
243           as used by Mesa's software renderer for enhanced performance.
244           If M is selected the module will be called vgem.
245
246 config DRM_VKMS
247         tristate "Virtual KMS (EXPERIMENTAL)"
248         depends on DRM
249         select DRM_KMS_HELPER
250         default n
251         help
252           Virtual Kernel Mode-Setting (VKMS) is used for testing or for
253           running GPU in a headless machines. Choose this option to get
254           a VKMS.
255
256           If M is selected the module will be called vkms.
257
258 source "drivers/gpu/drm/exynos/Kconfig"
259
260 source "drivers/gpu/drm/rockchip/Kconfig"
261
262 source "drivers/gpu/drm/vmwgfx/Kconfig"
263
264 source "drivers/gpu/drm/gma500/Kconfig"
265
266 source "drivers/gpu/drm/udl/Kconfig"
267
268 source "drivers/gpu/drm/ast/Kconfig"
269
270 source "drivers/gpu/drm/mgag200/Kconfig"
271
272 source "drivers/gpu/drm/cirrus/Kconfig"
273
274 source "drivers/gpu/drm/armada/Kconfig"
275
276 source "drivers/gpu/drm/atmel-hlcdc/Kconfig"
277
278 source "drivers/gpu/drm/rcar-du/Kconfig"
279
280 source "drivers/gpu/drm/shmobile/Kconfig"
281
282 source "drivers/gpu/drm/sun4i/Kconfig"
283
284 source "drivers/gpu/drm/omapdrm/Kconfig"
285
286 source "drivers/gpu/drm/tilcdc/Kconfig"
287
288 source "drivers/gpu/drm/qxl/Kconfig"
289
290 source "drivers/gpu/drm/bochs/Kconfig"
291
292 source "drivers/gpu/drm/virtio/Kconfig"
293
294 source "drivers/gpu/drm/msm/Kconfig"
295
296 source "drivers/gpu/drm/fsl-dcu/Kconfig"
297
298 source "drivers/gpu/drm/tegra/Kconfig"
299
300 source "drivers/gpu/drm/stm/Kconfig"
301
302 source "drivers/gpu/drm/panel/Kconfig"
303
304 source "drivers/gpu/drm/bridge/Kconfig"
305
306 source "drivers/gpu/drm/sti/Kconfig"
307
308 source "drivers/gpu/drm/imx/Kconfig"
309
310 source "drivers/gpu/drm/v3d/Kconfig"
311
312 source "drivers/gpu/drm/vc4/Kconfig"
313
314 source "drivers/gpu/drm/etnaviv/Kconfig"
315
316 source "drivers/gpu/drm/arc/Kconfig"
317
318 source "drivers/gpu/drm/hisilicon/Kconfig"
319
320 source "drivers/gpu/drm/mediatek/Kconfig"
321
322 source "drivers/gpu/drm/zte/Kconfig"
323
324 source "drivers/gpu/drm/mxsfb/Kconfig"
325
326 source "drivers/gpu/drm/meson/Kconfig"
327
328 source "drivers/gpu/drm/tinydrm/Kconfig"
329
330 source "drivers/gpu/drm/pl111/Kconfig"
331
332 source "drivers/gpu/drm/tve200/Kconfig"
333
334 source "drivers/gpu/drm/xen/Kconfig"
335
336 source "drivers/gpu/drm/vboxvideo/Kconfig"
337
338 source "drivers/gpu/drm/lima/Kconfig"
339
340 source "drivers/gpu/drm/aspeed/Kconfig"
341
342 # Keep legacy drivers last
343
344 menuconfig DRM_LEGACY
345         bool "Enable legacy drivers (DANGEROUS)"
346         depends on DRM && MMU
347         select DRM_VM
348         help
349           Enable legacy DRI1 drivers. Those drivers expose unsafe and dangerous
350           APIs to user-space, which can be used to circumvent access
351           restrictions and other security measures. For backwards compatibility
352           those drivers are still available, but their use is highly
353           inadvisable and might harm your system.
354
355           You are recommended to use the safe modeset-only drivers instead, and
356           perform 3D emulation in user-space.
357
358           Unless you have strong reasons to go rogue, say "N".
359
360 if DRM_LEGACY
361
362 config DRM_TDFX
363         tristate "3dfx Banshee/Voodoo3+"
364         depends on DRM && PCI
365         help
366           Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
367           graphics card.  If M is selected, the module will be called tdfx.
368
369 config DRM_R128
370         tristate "ATI Rage 128"
371         depends on DRM && PCI
372         select FW_LOADER
373         help
374           Choose this option if you have an ATI Rage 128 graphics card.  If M
375           is selected, the module will be called r128.  AGP support for
376           this card is strongly suggested (unless you have a PCI version).
377
378 config DRM_I810
379         tristate "Intel I810"
380         # !PREEMPT because of missing ioctl locking
381         depends on DRM && AGP && AGP_INTEL && (!PREEMPT || BROKEN)
382         help
383           Choose this option if you have an Intel I810 graphics card.  If M is
384           selected, the module will be called i810.  AGP support is required
385           for this driver to work.
386
387 config DRM_MGA
388         tristate "Matrox g200/g400"
389         depends on DRM && PCI
390         select FW_LOADER
391         help
392           Choose this option if you have a Matrox G200, G400 or G450 graphics
393           card.  If M is selected, the module will be called mga.  AGP
394           support is required for this driver to work.
395
396 config DRM_SIS
397         tristate "SiS video cards"
398         depends on DRM && AGP
399         depends on FB_SIS || FB_SIS=n
400         help
401           Choose this option if you have a SiS 630 or compatible video
402           chipset. If M is selected the module will be called sis. AGP
403           support is required for this driver to work.
404
405 config DRM_VIA
406         tristate "Via unichrome video cards"
407         depends on DRM && PCI
408         help
409           Choose this option if you have a Via unichrome or compatible video
410           chipset. If M is selected the module will be called via.
411
412 config DRM_SAVAGE
413         tristate "Savage video cards"
414         depends on DRM && PCI
415         help
416           Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
417           chipset. If M is selected the module will be called savage.
418
419 endif # DRM_LEGACY
420
421 # Separate option because drm_panel_orientation_quirks.c is shared with fbdev
422 config DRM_PANEL_ORIENTATION_QUIRKS
423         tristate
424
425 config DRM_LIB_RANDOM
426         bool
427         default n