Merge tag 'drm-intel-next-2016-10-24' of git://anongit.freedesktop.org/drm-intel...
[sfrench/cifs-2.6.git] / drivers / gpu / drm / i915 / Makefile
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
5 subdir-ccflags-$(CONFIG_DRM_I915_WERROR) := -Werror
6 subdir-ccflags-y += \
7         $(call as-instr,movntdqa (%eax)$(comma)%xmm0,-DCONFIG_AS_MOVNTDQA)
8
9 # Please keep these build lists sorted!
10
11 # core driver code
12 i915-y := i915_drv.o \
13           i915_irq.o \
14           i915_memcpy.o \
15           i915_mm.o \
16           i915_params.o \
17           i915_pci.o \
18           i915_suspend.o \
19           i915_sw_fence.o \
20           i915_sysfs.o \
21           intel_csr.o \
22           intel_device_info.o \
23           intel_pm.o \
24           intel_runtime_pm.o
25
26 i915-$(CONFIG_COMPAT)   += i915_ioc32.o
27 i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o
28
29 # GEM code
30 i915-y += i915_cmd_parser.o \
31           i915_gem_batch_pool.o \
32           i915_gem_context.o \
33           i915_gem_dmabuf.o \
34           i915_gem_evict.o \
35           i915_gem_execbuffer.o \
36           i915_gem_fence.o \
37           i915_gem_gtt.o \
38           i915_gem.o \
39           i915_gem_render_state.o \
40           i915_gem_request.o \
41           i915_gem_shrinker.o \
42           i915_gem_stolen.o \
43           i915_gem_tiling.o \
44           i915_gem_userptr.o \
45           i915_trace_points.o \
46           intel_breadcrumbs.o \
47           intel_engine_cs.o \
48           intel_lrc.o \
49           intel_mocs.o \
50           intel_ringbuffer.o \
51           intel_uncore.o
52
53 # general-purpose microcontroller (GuC) support
54 i915-y += intel_guc_loader.o \
55           i915_guc_submission.o
56
57 # autogenerated null render state
58 i915-y += intel_renderstate_gen6.o \
59           intel_renderstate_gen7.o \
60           intel_renderstate_gen8.o \
61           intel_renderstate_gen9.o
62
63 # modesetting core code
64 i915-y += intel_audio.o \
65           intel_atomic.o \
66           intel_atomic_plane.o \
67           intel_bios.o \
68           intel_color.o \
69           intel_display.o \
70           intel_dpio_phy.o \
71           intel_dpll_mgr.o \
72           intel_fbc.o \
73           intel_fifo_underrun.o \
74           intel_frontbuffer.o \
75           intel_hotplug.o \
76           intel_modes.o \
77           intel_overlay.o \
78           intel_psr.o \
79           intel_sideband.o \
80           intel_sprite.o
81 i915-$(CONFIG_ACPI)             += intel_acpi.o intel_opregion.o
82 i915-$(CONFIG_DRM_FBDEV_EMULATION)      += intel_fbdev.o
83
84 # modesetting output/encoder code
85 i915-y += dvo_ch7017.o \
86           dvo_ch7xxx.o \
87           dvo_ivch.o \
88           dvo_ns2501.o \
89           dvo_sil164.o \
90           dvo_tfp410.o \
91           intel_crt.o \
92           intel_ddi.o \
93           intel_dp_aux_backlight.o \
94           intel_dp_link_training.o \
95           intel_dp_mst.o \
96           intel_dp.o \
97           intel_dsi.o \
98           intel_dsi_dcs_backlight.o \
99           intel_dsi_panel_vbt.o \
100           intel_dsi_pll.o \
101           intel_dvo.o \
102           intel_hdmi.o \
103           intel_i2c.o \
104           intel_lspcon.o \
105           intel_lvds.o \
106           intel_panel.o \
107           intel_sdvo.o \
108           intel_tv.o
109
110 # Post-mortem debug and GPU hang state capture
111 i915-$(CONFIG_DRM_I915_CAPTURE_ERROR) += i915_gpu_error.o
112
113 # virtual gpu code
114 i915-y += i915_vgpu.o
115
116 ifeq ($(CONFIG_DRM_I915_GVT),y)
117 i915-y += intel_gvt.o
118 include $(src)/gvt/Makefile
119 endif
120
121 obj-$(CONFIG_DRM_I915) += i915.o
122
123 CFLAGS_i915_trace_points.o := -I$(src)