Linux Audio

Check our new training course

Loading...
v6.9.4
 1# SPDX-License-Identifier: MIT
 2
 3config DRM_AMDGPU
 4	tristate "AMD GPU"
 5	depends on DRM && PCI && MMU
 6	depends on !UML
 7	select FW_LOADER
 
 
 8	select DRM_DISPLAY_DP_HELPER
 
 9	select DRM_DISPLAY_HDMI_HELPER
10	select DRM_DISPLAY_HDCP_HELPER
11	select DRM_DISPLAY_HELPER
12	select DRM_KMS_HELPER
13	select DRM_SCHED
14	select DRM_TTM
15	select DRM_TTM_HELPER
16	select POWER_SUPPLY
17	select HWMON
18	select I2C
19	select I2C_ALGOBIT
 
20	select BACKLIGHT_CLASS_DEVICE
21	select INTERVAL_TREE
22	select DRM_BUDDY
23	select DRM_SUBALLOC_HELPER
24	select DRM_EXEC
 
25	# amdgpu depends on ACPI_VIDEO when ACPI is enabled, for select to work
26	# ACPI_VIDEO's dependencies must also be selected.
27	select INPUT if ACPI
28	select ACPI_VIDEO if ACPI
29	# On x86 ACPI_VIDEO also needs ACPI_WMI
30	select X86_PLATFORM_DEVICES if ACPI && X86
31	select ACPI_WMI if ACPI && X86
32	help
33	  Choose this option if you have a recent AMD Radeon graphics card.
34
35	  If M is selected, the module will be called amdgpu.
36
37config DRM_AMDGPU_SI
38	bool "Enable amdgpu support for SI parts"
39	depends on DRM_AMDGPU
40	help
41	  Choose this option if you want to enable experimental support
42	  for SI (Southern Islands) asics.
43
44	  SI is already supported in radeon. Experimental support for SI
45	  in amdgpu will be disabled by default and is still provided by
46	  radeon. Use module options to override this:
47
48	  radeon.si_support=0 amdgpu.si_support=1
49
50config DRM_AMDGPU_CIK
51	bool "Enable amdgpu support for CIK parts"
52	depends on DRM_AMDGPU
53	help
54	  Choose this option if you want to enable support for CIK (Sea
55	  Islands) asics.
56
57	  CIK is already supported in radeon. Support for CIK in amdgpu
58	  will be disabled by default and is still provided by radeon.
59	  Use module options to override this:
60
61	  radeon.cik_support=0 amdgpu.cik_support=1
62
63config DRM_AMDGPU_USERPTR
64	bool "Always enable userptr write support"
65	depends on DRM_AMDGPU
66	depends on MMU
67	select HMM_MIRROR
68	select MMU_NOTIFIER
69	help
70	  This option selects CONFIG_HMM and CONFIG_HMM_MIRROR if it
71	  isn't already selected to enabled full userptr support.
 
 
 
 
 
 
 
 
 
 
 
72
73config DRM_AMDGPU_WERROR
74	bool "Force the compiler to throw an error instead of a warning when compiling"
75	depends on DRM_AMDGPU
76	depends on EXPERT
77	depends on !COMPILE_TEST
78	default n
79	help
80	  Add -Werror to the build flags for amdgpu.ko.
81	  Only enable this if you are warning code for amdgpu.ko.
82
83source "drivers/gpu/drm/amd/acp/Kconfig"
84source "drivers/gpu/drm/amd/display/Kconfig"
85source "drivers/gpu/drm/amd/amdkfd/Kconfig"
v6.13.7
  1# SPDX-License-Identifier: MIT
  2
  3config DRM_AMDGPU
  4	tristate "AMD GPU"
  5	depends on DRM && PCI && MMU
  6	depends on !UML
  7	select FW_LOADER
  8	select DRM_CLIENT
  9	select DRM_CLIENT_SELECTION
 10	select DRM_DISPLAY_DP_HELPER
 11	select DRM_DISPLAY_DSC_HELPER
 12	select DRM_DISPLAY_HDMI_HELPER
 13	select DRM_DISPLAY_HDCP_HELPER
 14	select DRM_DISPLAY_HELPER
 15	select DRM_KMS_HELPER
 16	select DRM_SCHED
 17	select DRM_TTM
 18	select DRM_TTM_HELPER
 19	select POWER_SUPPLY
 20	select HWMON
 21	select I2C
 22	select I2C_ALGOBIT
 23	select CRC16
 24	select BACKLIGHT_CLASS_DEVICE
 25	select INTERVAL_TREE
 26	select DRM_BUDDY
 27	select DRM_SUBALLOC_HELPER
 28	select DRM_EXEC
 29	select DRM_PANEL_BACKLIGHT_QUIRKS
 30	# amdgpu depends on ACPI_VIDEO when ACPI is enabled, for select to work
 31	# ACPI_VIDEO's dependencies must also be selected.
 32	select INPUT if ACPI
 33	select ACPI_VIDEO if ACPI
 34	# On x86 ACPI_VIDEO also needs ACPI_WMI
 35	select X86_PLATFORM_DEVICES if ACPI && X86
 36	select ACPI_WMI if ACPI && X86
 37	help
 38	  Choose this option if you have a recent AMD Radeon graphics card.
 39
 40	  If M is selected, the module will be called amdgpu.
 41
 42config DRM_AMDGPU_SI
 43	bool "Enable amdgpu support for SI parts"
 44	depends on DRM_AMDGPU
 45	help
 46	  Choose this option if you want to enable experimental support
 47	  for SI (Southern Islands) asics.
 48
 49	  SI is already supported in radeon. Experimental support for SI
 50	  in amdgpu will be disabled by default and is still provided by
 51	  radeon. Use module options to override this:
 52
 53	  radeon.si_support=0 amdgpu.si_support=1
 54
 55config DRM_AMDGPU_CIK
 56	bool "Enable amdgpu support for CIK parts"
 57	depends on DRM_AMDGPU
 58	help
 59	  Choose this option if you want to enable support for CIK (Sea
 60	  Islands) asics.
 61
 62	  CIK is already supported in radeon. Support for CIK in amdgpu
 63	  will be disabled by default and is still provided by radeon.
 64	  Use module options to override this:
 65
 66	  radeon.cik_support=0 amdgpu.cik_support=1
 67
 68config DRM_AMDGPU_USERPTR
 69	bool "Always enable userptr write support"
 70	depends on DRM_AMDGPU
 71	depends on MMU
 72	select HMM_MIRROR
 73	select MMU_NOTIFIER
 74	help
 75	  This option selects CONFIG_HMM and CONFIG_HMM_MIRROR if it
 76	  isn't already selected to enabled full userptr support.
 77
 78config DRM_AMD_ISP
 79	bool "Enable AMD Image Signal Processor IP support"
 80	depends on DRM_AMDGPU
 81	select MFD_CORE
 82	select PM_GENERIC_DOMAINS if PM
 83	help
 84	Choose this option to enable ISP IP support for AMD SOCs.
 85	This adds the ISP (Image Signal Processor) IP driver and wires
 86	it up into the amdgpu driver.  It is required for cameras
 87	on APUs which utilize mipi cameras.
 88
 89config DRM_AMDGPU_WERROR
 90	bool "Force the compiler to throw an error instead of a warning when compiling"
 91	depends on DRM_AMDGPU
 92	depends on EXPERT
 93	depends on !COMPILE_TEST
 94	default n
 95	help
 96	  Add -Werror to the build flags for amdgpu.ko.
 97	  Only enable this if you are warning code for amdgpu.ko.
 98
 99source "drivers/gpu/drm/amd/acp/Kconfig"
100source "drivers/gpu/drm/amd/display/Kconfig"
101source "drivers/gpu/drm/amd/amdkfd/Kconfig"