Skip to content
Snippets Groups Projects
Select Git revision
  • d835eb3a57de50d16dd4a6b53f95dbc2bfa8ef48
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

fault.c

Blame
  • Kconfig 11.83 KiB
    # SPDX-License-Identifier: GPL-2.0-only
    #
    # Drm device configuration
    #
    # This driver provides support for the
    # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
    #
    menuconfig DRM
    	tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)"
    	depends on (AGP || AGP=n) && !EMULATED_CMPXCHG && HAS_DMA
    	select DRM_PANEL_ORIENTATION_QUIRKS
    	select DRM_KMS_HELPER if DRM_FBDEV_EMULATION
    	select FB_CORE if DRM_FBDEV_EMULATION
    	select FB_SYSMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
    	select HDMI
    	select I2C
    	select DMA_SHARED_BUFFER
    	select SYNC_FILE
    # gallium uses SYS_kcmp for os_same_file_description() to de-duplicate
    # device and dmabuf fd. Let's make sure that is available for our userspace.
    	select KCMP
    	select VIDEO_CMDLINE
    	select VIDEO_NOMODESET
    	help
    	  Kernel-level support for the Direct Rendering Infrastructure (DRI)
    	  introduced in XFree86 4.0. If you say Y here, you need to select
    	  the module that's right for your graphics card from the list below.
    	  These modules provide support for synchronization, security, and
    	  DMA transfers. Please see <http://dri.sourceforge.net/> for more
    	  details.  You should also select and configure AGP
    	  (/dev/agpgart) support if it is available for your platform.
    
    config DRM_MIPI_DBI
    	tristate
    	depends on DRM
    	select DRM_KMS_HELPER
    
    config DRM_MIPI_DSI
    	bool
    	depends on DRM
    
    config DRM_DEBUG_MM
    	bool "Insert extra checks and debug info into the DRM range managers"
    	default n
    	depends on DRM=y
    	depends on STACKTRACE_SUPPORT
    	select STACKDEPOT
    	help
    	  Enable allocation tracking of memory manager and leak detection on
    	  shutdown.
    
    	  Recommended for driver developers only.
    
    	  If in doubt, say "N".
    
    config DRM_USE_DYNAMIC_DEBUG
    	bool "use dynamic debug to implement drm.debug"
    	default n
    	depends on BROKEN
    	depends on DRM
    	depends on DYNAMIC_DEBUG || DYNAMIC_DEBUG_CORE
    	depends on JUMP_LABEL
    	help
    	  Use dynamic-debug to avoid drm_debug_enabled() runtime overheads.
    	  Due to callsite counts in DRM drivers (~4k in amdgpu) and 56
    	  bytes per callsite, the .data costs can be substantial, and
    	  are therefore configurable.
    
    config DRM_KUNIT_TEST_HELPERS
    	tristate