Merge tag 'v3.14' into drm-intel-next-queued
[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
5ccflags-y := -Iinclude/drm
2fae6a86
DV
6
7# Please keep these build lists sorted!
8
9# core driver code
10i915-y := i915_drv.o \
11 i915_params.o \
673a394b 12 i915_suspend.o \
2fae6a86
DV
13 i915_sysfs.o \
14 intel_pm.o
15i915-$(CONFIG_COMPAT) += i915_ioc32.o
16i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o
17
18# GEM code
19i915-y += i915_cmd_parser.o \
254f965c 20 i915_gem_context.o \
673a394b 21 i915_gem_debug.o \
2fae6a86 22 i915_gem_dmabuf.o \
b47eb4a2 23 i915_gem_evict.o \
54cf91dc
CW
24 i915_gem_execbuffer.o \
25 i915_gem_gtt.o \
2fae6a86 26 i915_gem.o \
9797fbfb 27 i915_gem_stolen.o \
79e53945 28 i915_gem_tiling.o \
2fae6a86
DV
29 i915_gpu_error.o \
30 i915_irq.o \
1c5d22f7 31 i915_trace_points.o \
2fae6a86
DV
32 intel_ringbuffer.o \
33 intel_uncore.o
34
35# modesetting core code
36i915-y += intel_bios.o \
79e53945 37 intel_display.o \
79e53945 38 intel_modes.o \
2fae6a86 39 intel_overlay.o \
59de0813 40 intel_sideband.o \
2fae6a86 41 intel_sprite.o
e8e6e601 42i915-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o
2fae6a86
DV
43i915-$(CONFIG_DRM_I915_FBDEV) += intel_fbdev.o
44
45# modesetting output/encoder code
46i915-y += dvo_ch7017.o \
79e53945 47 dvo_ch7xxx.o \
79e53945 48 dvo_ivch.o \
7434a255 49 dvo_ns2501.o \
2fae6a86
DV
50 dvo_sil164.o \
51 dvo_tfp410.o \
52 intel_crt.o \
53 intel_ddi.o \
54 intel_dp.o \
55 intel_dsi_cmd.o \
56 intel_dsi.o \
57 intel_dsi_pll.o \
58 intel_dvo.o \
59 intel_hdmi.o \
60 intel_i2c.o \
61 intel_lvds.o \
62 intel_panel.o \
63 intel_sdvo.o \
64 intel_tv.o
4520f53a 65
2fae6a86
DV
66# legacy horrors
67i915-y += i915_dma.o \
68 i915_ums.o
a57750f2 69
c0e09200 70obj-$(CONFIG_DRM_I915) += i915.o
a7c54278
PC
71
72CFLAGS_i915_trace_points.o := -I$(src)
This page took 0.425054 seconds and 5 git commands to generate.