]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/gpu/drm/i915/Makefile
drm/i915: Move intel_display_set_init_power to intel_runtime_pm.c
[mirror_ubuntu-artful-kernel.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 intel_runtime_pm.o
16
17 i915-$(CONFIG_COMPAT) += i915_ioc32.o
18 i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o
19
20 # GEM code
21 i915-y += i915_cmd_parser.o \
22 i915_gem_context.o \
23 i915_gem_render_state.o \
24 i915_gem_debug.o \
25 i915_gem_dmabuf.o \
26 i915_gem_evict.o \
27 i915_gem_execbuffer.o \
28 i915_gem_gtt.o \
29 i915_gem.o \
30 i915_gem_stolen.o \
31 i915_gem_tiling.o \
32 i915_gem_userptr.o \
33 i915_gpu_error.o \
34 i915_irq.o \
35 i915_trace_points.o \
36 intel_lrc.o \
37 intel_ringbuffer.o \
38 intel_uncore.o
39
40 # autogenerated null render state
41 i915-y += intel_renderstate_gen6.o \
42 intel_renderstate_gen7.o \
43 intel_renderstate_gen8.o
44
45 # modesetting core code
46 i915-y += intel_bios.o \
47 intel_display.o \
48 intel_frontbuffer.o \
49 intel_modes.o \
50 intel_overlay.o \
51 intel_sideband.o \
52 intel_sprite.o
53 i915-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o
54 i915-$(CONFIG_DRM_I915_FBDEV) += intel_fbdev.o
55
56 # modesetting output/encoder code
57 i915-y += dvo_ch7017.o \
58 dvo_ch7xxx.o \
59 dvo_ivch.o \
60 dvo_ns2501.o \
61 dvo_sil164.o \
62 dvo_tfp410.o \
63 intel_crt.o \
64 intel_ddi.o \
65 intel_dp.o \
66 intel_dp_mst.o \
67 intel_dsi_cmd.o \
68 intel_dsi.o \
69 intel_dsi_pll.o \
70 intel_dsi_panel_vbt.o \
71 intel_dvo.o \
72 intel_hdmi.o \
73 intel_i2c.o \
74 intel_lvds.o \
75 intel_panel.o \
76 intel_sdvo.o \
77 intel_tv.o
78
79 # legacy horrors
80 i915-y += i915_dma.o \
81 i915_ums.o
82
83 obj-$(CONFIG_DRM_I915) += i915.o
84
85 CFLAGS_i915_trace_points.o := -I$(src)