Merge remote-tracking branch 'mkp-scsi/4.8/scsi-fixes' into fixes
[deliverable/linux.git] / drivers / gpu / drm / i915 / Makefile
CommitLineData
c0e09200
DA
1#
2# Makefile for the drm device driver. This driver provides support for the
3# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
4
0a793ad3
CW
5subdir-ccflags-$(CONFIG_DRM_I915_WERROR) := -Werror
6
2fae6a86
DV
7# Please keep these build lists sorted!
8
9# core driver code
10i915-y := i915_drv.o \
042794b1 11 i915_irq.o \
2fae6a86 12 i915_params.o \
42f5551d 13 i915_pci.o \
673a394b 14 i915_suspend.o \
2fae6a86 15 i915_sysfs.o \
042794b1 16 intel_csr.o \
94b4f3ba 17 intel_device_info.o \
9c065a7d 18 intel_pm.o \
042794b1 19 intel_runtime_pm.o
9c065a7d 20
2fae6a86
DV
21i915-$(CONFIG_COMPAT) += i915_ioc32.o
22i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o
23
24# GEM code
25i915-y += i915_cmd_parser.o \
493018dc 26 i915_gem_batch_pool.o \
254f965c 27 i915_gem_context.o \
673a394b 28 i915_gem_debug.o \
2fae6a86 29 i915_gem_dmabuf.o \
b47eb4a2 30 i915_gem_evict.o \
54cf91dc 31 i915_gem_execbuffer.o \
41a36b73 32 i915_gem_fence.o \
54cf91dc 33 i915_gem_gtt.o \
2fae6a86 34 i915_gem.o \
042794b1 35 i915_gem_render_state.o \
be6a0376 36 i915_gem_shrinker.o \
9797fbfb 37 i915_gem_stolen.o \
79e53945 38 i915_gem_tiling.o \
5cc9ed4b 39 i915_gem_userptr.o \
2fae6a86 40 i915_gpu_error.o \
1c5d22f7 41 i915_trace_points.o \
688e6c72 42 intel_breadcrumbs.o \
b20385f1 43 intel_lrc.o \
3bbaba0c 44 intel_mocs.o \
2fae6a86
DV
45 intel_ringbuffer.o \
46 intel_uncore.o
47
33a732f4 48# general-purpose microcontroller (GuC) support
bac427f8
AD
49i915-y += intel_guc_loader.o \
50 i915_guc_submission.o
33a732f4 51
9d0a6fa6
MK
52# autogenerated null render state
53i915-y += intel_renderstate_gen6.o \
54 intel_renderstate_gen7.o \
ff7a60f2
AR
55 intel_renderstate_gen8.o \
56 intel_renderstate_gen9.o
9d0a6fa6 57
2fae6a86 58# modesetting core code
7c10a2b5 59i915-y += intel_audio.o \
042794b1
DV
60 intel_atomic.o \
61 intel_atomic_plane.o \
7c10a2b5 62 intel_bios.o \
8563b1e8 63 intel_color.o \
79e53945 64 intel_display.o \
b7fa22d8 65 intel_dpio_phy.o \
7abd4b35 66 intel_dpll_mgr.o \
7ff0ebcc 67 intel_fbc.o \
47339cd9 68 intel_fifo_underrun.o \
b680c37a 69 intel_frontbuffer.o \
042794b1 70 intel_hotplug.o \
79e53945 71 intel_modes.o \
2fae6a86 72 intel_overlay.o \
0bc12bcb 73 intel_psr.o \
59de0813 74 intel_sideband.o \
2fae6a86 75 intel_sprite.o
e19b9137 76i915-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o
0695726e 77i915-$(CONFIG_DRM_FBDEV_EMULATION) += intel_fbdev.o
2fae6a86
DV
78
79# modesetting output/encoder code
80i915-y += dvo_ch7017.o \
79e53945 81 dvo_ch7xxx.o \
79e53945 82 dvo_ivch.o \
7434a255 83 dvo_ns2501.o \
2fae6a86
DV
84 dvo_sil164.o \
85 dvo_tfp410.o \
86 intel_crt.o \
87 intel_ddi.o \
e7156c83 88 intel_dp_aux_backlight.o \
94223d04 89 intel_dp_link_training.o \
0e32b39c 90 intel_dp_mst.o \
042794b1 91 intel_dp.o \
2fae6a86 92 intel_dsi.o \
90198355 93 intel_dsi_dcs_backlight.o \
2ab8b458 94 intel_dsi_panel_vbt.o \
042794b1 95 intel_dsi_pll.o \
2fae6a86
DV
96 intel_dvo.o \
97 intel_hdmi.o \
98 intel_i2c.o \
99 intel_lvds.o \
100 intel_panel.o \
101 intel_sdvo.o \
102 intel_tv.o
4520f53a 103
cf9d2890
YZ
104# virtual gpu code
105i915-y += i915_vgpu.o
106
0ad35fed
ZW
107ifeq ($(CONFIG_DRM_I915_GVT),y)
108i915-y += intel_gvt.o
109include $(src)/gvt/Makefile
110endif
111
c0e09200 112obj-$(CONFIG_DRM_I915) += i915.o
a7c54278
PC
113
114CFLAGS_i915_trace_points.o := -I$(src)
This page took 0.541231 seconds and 5 git commands to generate.