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