drm/i915/bxt: add support for HPD long/short pulse detection on HPD_PORT_A pin
[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
2fae6a86
DV
5# Please keep these build lists sorted!
6
7# core driver code
8i915-y := i915_drv.o \
9 i915_params.o \
673a394b 10 i915_suspend.o \
2fae6a86 11 i915_sysfs.o \
9c065a7d 12 intel_pm.o \
eb805623
DV
13 intel_runtime_pm.o \
14 intel_csr.o
9c065a7d 15
2fae6a86
DV
16i915-$(CONFIG_COMPAT) += i915_ioc32.o
17i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o
18
19# GEM code
20i915-y += i915_cmd_parser.o \
493018dc 21 i915_gem_batch_pool.o \
254f965c 22 i915_gem_context.o \
9d0a6fa6 23 i915_gem_render_state.o \
673a394b 24 i915_gem_debug.o \
2fae6a86 25 i915_gem_dmabuf.o \
b47eb4a2 26 i915_gem_evict.o \
54cf91dc
CW
27 i915_gem_execbuffer.o \
28 i915_gem_gtt.o \
2fae6a86 29 i915_gem.o \
be6a0376 30 i915_gem_shrinker.o \
9797fbfb 31 i915_gem_stolen.o \
79e53945 32 i915_gem_tiling.o \
5cc9ed4b 33 i915_gem_userptr.o \
2fae6a86
DV
34 i915_gpu_error.o \
35 i915_irq.o \
1c5d22f7 36 i915_trace_points.o \
77913b39 37 intel_hotplug.o \
b20385f1 38 intel_lrc.o \
3bbaba0c 39 intel_mocs.o \
2fae6a86
DV
40 intel_ringbuffer.o \
41 intel_uncore.o
42
9d0a6fa6
MK
43# autogenerated null render state
44i915-y += intel_renderstate_gen6.o \
45 intel_renderstate_gen7.o \
ff7a60f2
AR
46 intel_renderstate_gen8.o \
47 intel_renderstate_gen9.o
9d0a6fa6 48
2fae6a86 49# modesetting core code
7c10a2b5
JN
50i915-y += intel_audio.o \
51 intel_bios.o \
79e53945 52 intel_display.o \
7ff0ebcc 53 intel_fbc.o \
47339cd9 54 intel_fifo_underrun.o \
b680c37a 55 intel_frontbuffer.o \
79e53945 56 intel_modes.o \
2fae6a86 57 intel_overlay.o \
0bc12bcb 58 intel_psr.o \
59de0813 59 intel_sideband.o \
2fae6a86 60 intel_sprite.o
e19b9137 61i915-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o
2fae6a86
DV
62i915-$(CONFIG_DRM_I915_FBDEV) += intel_fbdev.o
63
64# modesetting output/encoder code
65i915-y += dvo_ch7017.o \
79e53945 66 dvo_ch7xxx.o \
79e53945 67 dvo_ivch.o \
7434a255 68 dvo_ns2501.o \
2fae6a86
DV
69 dvo_sil164.o \
70 dvo_tfp410.o \
5ee67f1c 71 intel_atomic.o \
ea2c67bb 72 intel_atomic_plane.o \
2fae6a86
DV
73 intel_crt.o \
74 intel_ddi.o \
75 intel_dp.o \
0e32b39c 76 intel_dp_mst.o \
2fae6a86
DV
77 intel_dsi.o \
78 intel_dsi_pll.o \
2ab8b458 79 intel_dsi_panel_vbt.o \
2fae6a86
DV
80 intel_dvo.o \
81 intel_hdmi.o \
82 intel_i2c.o \
83 intel_lvds.o \
84 intel_panel.o \
85 intel_sdvo.o \
86 intel_tv.o
4520f53a 87
cf9d2890
YZ
88# virtual gpu code
89i915-y += i915_vgpu.o
90
2fae6a86 91# legacy horrors
8634bd4a 92i915-y += i915_dma.o
a57750f2 93
c0e09200 94obj-$(CONFIG_DRM_I915) += i915.o
a7c54278
PC
95
96CFLAGS_i915_trace_points.o := -I$(src)
This page took 0.59782 seconds and 5 git commands to generate.