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