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 5subdir-ccflags-$(CONFIG_DRM_I915_WERROR) := -Werror 6subdir-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 12i915-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_syncmap.o \ 20 i915_sw_fence.o \ 21 i915_sysfs.o \ 22 intel_csr.o \ 23 intel_device_info.o \ 24 intel_pm.o \ 25 intel_runtime_pm.o 26 27i915-$(CONFIG_COMPAT) += i915_ioc32.o 28i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o intel_pipe_crc.o 29 30# GEM code 31i915-y += i915_cmd_parser.o \ 32 i915_gem_batch_pool.o \ 33 i915_gem_clflush.o \ 34 i915_gem_context.o \ 35 i915_gem_dmabuf.o \ 36 i915_gem_evict.o \ 37 i915_gem_execbuffer.o \ 38 i915_gem_fence_reg.o \ 39 i915_gem_gtt.o \ 40 i915_gem_internal.o \ 41 i915_gem.o \ 42 i915_gem_object.o \ 43 i915_gem_render_state.o \ 44 i915_gem_request.o \ 45 i915_gem_shrinker.o \ 46 i915_gem_stolen.o \ 47 i915_gem_tiling.o \ 48 i915_gem_timeline.o \ 49 i915_gem_userptr.o \ 50 i915_trace_points.o \ 51 i915_vma.o \ 52 intel_breadcrumbs.o \ 53 intel_engine_cs.o \ 54 intel_hangcheck.o \ 55 intel_lrc.o \ 56 intel_mocs.o \ 57 intel_ringbuffer.o \ 58 intel_uncore.o 59 60# general-purpose microcontroller (GuC) support 61i915-y += intel_uc.o \ 62 intel_guc_ct.o \ 63 intel_guc_log.o \ 64 intel_guc_loader.o \ 65 intel_huc.o \ 66 i915_guc_submission.o 67 68# autogenerated null render state 69i915-y += intel_renderstate_gen6.o \ 70 intel_renderstate_gen7.o \ 71 intel_renderstate_gen8.o \ 72 intel_renderstate_gen9.o 73 74# modesetting core code 75i915-y += intel_audio.o \ 76 intel_atomic.o \ 77 intel_atomic_plane.o \ 78 intel_bios.o \ 79 intel_cdclk.o \ 80 intel_color.o \ 81 intel_display.o \ 82 intel_dpio_phy.o \ 83 intel_dpll_mgr.o \ 84 intel_fbc.o \ 85 intel_fifo_underrun.o \ 86 intel_frontbuffer.o \ 87 intel_hotplug.o \ 88 intel_modes.o \ 89 intel_overlay.o \ 90 intel_psr.o \ 91 intel_sideband.o \ 92 intel_sprite.o 93i915-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o 94i915-$(CONFIG_DRM_FBDEV_EMULATION) += intel_fbdev.o 95 96# modesetting output/encoder code 97i915-y += dvo_ch7017.o \ 98 dvo_ch7xxx.o \ 99 dvo_ivch.o \ 100 dvo_ns2501.o \ 101 dvo_sil164.o \ 102 dvo_tfp410.o \ 103 intel_crt.o \ 104 intel_ddi.o \ 105 intel_dp_aux_backlight.o \ 106 intel_dp_link_training.o \ 107 intel_dp_mst.o \ 108 intel_dp.o \ 109 intel_dsi.o \ 110 intel_dsi_dcs_backlight.o \ 111 intel_dsi_pll.o \ 112 intel_dsi_vbt.o \ 113 intel_dvo.o \ 114 intel_hdmi.o \ 115 intel_i2c.o \ 116 intel_lspcon.o \ 117 intel_lvds.o \ 118 intel_panel.o \ 119 intel_sdvo.o \ 120 intel_tv.o 121 122# Post-mortem debug and GPU hang state capture 123i915-$(CONFIG_DRM_I915_CAPTURE_ERROR) += i915_gpu_error.o 124i915-$(CONFIG_DRM_I915_SELFTEST) += \ 125 selftests/i915_random.o \ 126 selftests/i915_selftest.o 127 128# virtual gpu code 129i915-y += i915_vgpu.o 130 131# perf code 132i915-y += i915_perf.o \ 133 i915_oa_hsw.o \ 134 i915_oa_bdw.o \ 135 i915_oa_chv.o \ 136 i915_oa_sklgt2.o \ 137 i915_oa_sklgt3.o \ 138 i915_oa_sklgt4.o \ 139 i915_oa_bxt.o \ 140 i915_oa_kblgt2.o \ 141 i915_oa_kblgt3.o \ 142 i915_oa_glk.o 143 144ifeq ($(CONFIG_DRM_I915_GVT),y) 145i915-y += intel_gvt.o 146include $(src)/gvt/Makefile 147endif 148 149# LPE Audio for VLV and CHT 150i915-y += intel_lpe_audio.o 151 152obj-$(CONFIG_DRM_I915) += i915.o 153 154CFLAGS_i915_trace_points.o := -I$(src) 155