drm/i915: Make encoder cloning more flexible
[cascardo/linux.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 ccflags-y := -Iinclude/drm
6
7 # Please keep these build lists sorted!
8
9 # core driver code
10 i915-y := i915_drv.o \
11           i915_params.o \
12           i915_suspend.o \
13           i915_sysfs.o \
14           intel_pm.o
15 i915-$(CONFIG_COMPAT)   += i915_ioc32.o
16 i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o
17
18 # GEM code
19 i915-y += i915_cmd_parser.o \
20           i915_gem_context.o \
21           i915_gem_debug.o \
22           i915_gem_dmabuf.o \
23           i915_gem_evict.o \
24           i915_gem_execbuffer.o \
25           i915_gem_gtt.o \
26           i915_gem.o \
27           i915_gem_stolen.o \
28           i915_gem_tiling.o \
29           i915_gpu_error.o \
30           i915_irq.o \
31           i915_trace_points.o \
32           intel_ringbuffer.o \
33           intel_uncore.o
34
35 # modesetting core code
36 i915-y += intel_bios.o \
37           intel_display.o \
38           intel_modes.o \
39           intel_opregion.o \
40           intel_overlay.o \
41           intel_sideband.o \
42           intel_sprite.o
43 i915-$(CONFIG_ACPI)             += intel_acpi.o
44 i915-$(CONFIG_DRM_I915_FBDEV)   += intel_fbdev.o
45
46 # modesetting output/encoder code
47 i915-y += dvo_ch7017.o \
48           dvo_ch7xxx.o \
49           dvo_ivch.o \
50           dvo_ns2501.o \
51           dvo_sil164.o \
52           dvo_tfp410.o \
53           intel_crt.o \
54           intel_ddi.o \
55           intel_dp.o \
56           intel_dsi_cmd.o \
57           intel_dsi.o \
58           intel_dsi_pll.o \
59           intel_dvo.o \
60           intel_hdmi.o \
61           intel_i2c.o \
62           intel_lvds.o \
63           intel_panel.o \
64           intel_sdvo.o \
65           intel_tv.o
66
67 # legacy horrors
68 i915-y += i915_dma.o \
69           i915_ums.o
70
71 obj-$(CONFIG_DRM_I915)  += i915.o
72
73 CFLAGS_i915_trace_points.o := -I$(src)