1 1.1 riastrad # 2 1.1 riastrad # Makefile for the drm device driver. This driver provides support for the 3 1.1 riastrad # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. 4 1.1 riastrad 5 1.1 riastrad ccflags-y := -Iinclude/drm 6 1.1.1.1.6.1 tls 7 1.1.1.1.6.1 tls # Please keep these build lists sorted! 8 1.1.1.1.6.1 tls 9 1.1.1.1.6.1 tls # core driver code 10 1.1.1.1.6.1 tls i915-y := i915_drv.o \ 11 1.1.1.1.6.1 tls i915_params.o \ 12 1.1 riastrad i915_suspend.o \ 13 1.1.1.1.6.1 tls i915_sysfs.o \ 14 1.1.1.1.6.1 tls intel_pm.o 15 1.1.1.1.6.1 tls i915-$(CONFIG_COMPAT) += i915_ioc32.o 16 1.1.1.1.6.1 tls i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o 17 1.1.1.1.6.1 tls 18 1.1.1.1.6.1 tls # GEM code 19 1.1.1.1.6.1 tls i915-y += i915_cmd_parser.o \ 20 1.1 riastrad i915_gem_context.o \ 21 1.1 riastrad i915_gem_debug.o \ 22 1.1.1.1.6.1 tls i915_gem_dmabuf.o \ 23 1.1 riastrad i915_gem_evict.o \ 24 1.1 riastrad i915_gem_execbuffer.o \ 25 1.1 riastrad i915_gem_gtt.o \ 26 1.1.1.1.6.1 tls i915_gem.o \ 27 1.1 riastrad i915_gem_stolen.o \ 28 1.1 riastrad i915_gem_tiling.o \ 29 1.1.1.1.6.1 tls i915_gpu_error.o \ 30 1.1.1.1.6.1 tls i915_irq.o \ 31 1.1 riastrad i915_trace_points.o \ 32 1.1.1.1.6.1 tls intel_ringbuffer.o \ 33 1.1.1.1.6.1 tls intel_uncore.o 34 1.1.1.1.6.1 tls 35 1.1.1.1.6.1 tls # modesetting core code 36 1.1.1.1.6.1 tls i915-y += intel_bios.o \ 37 1.1 riastrad intel_display.o \ 38 1.1 riastrad intel_modes.o \ 39 1.1 riastrad intel_overlay.o \ 40 1.1.1.1.6.1 tls intel_sideband.o \ 41 1.1.1.1.6.1 tls intel_sprite.o 42 1.1.1.1.6.1 tls i915-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o 43 1.1.1.1.6.1 tls i915-$(CONFIG_DRM_I915_FBDEV) += intel_fbdev.o 44 1.1.1.1.6.1 tls 45 1.1.1.1.6.1 tls # modesetting output/encoder code 46 1.1.1.1.6.1 tls i915-y += dvo_ch7017.o \ 47 1.1 riastrad dvo_ch7xxx.o \ 48 1.1 riastrad dvo_ivch.o \ 49 1.1 riastrad dvo_ns2501.o \ 50 1.1.1.1.6.1 tls dvo_sil164.o \ 51 1.1.1.1.6.1 tls dvo_tfp410.o \ 52 1.1.1.1.6.1 tls intel_crt.o \ 53 1.1.1.1.6.1 tls intel_ddi.o \ 54 1.1.1.1.6.1 tls intel_dp.o \ 55 1.1.1.1.6.1 tls intel_dsi_cmd.o \ 56 1.1.1.1.6.1 tls intel_dsi.o \ 57 1.1.1.1.6.1 tls intel_dsi_pll.o \ 58 1.1.1.1.6.1 tls intel_dvo.o \ 59 1.1.1.1.6.1 tls intel_hdmi.o \ 60 1.1.1.1.6.1 tls intel_i2c.o \ 61 1.1.1.1.6.1 tls intel_lvds.o \ 62 1.1.1.1.6.1 tls intel_panel.o \ 63 1.1.1.1.6.1 tls intel_sdvo.o \ 64 1.1.1.1.6.1 tls intel_tv.o 65 1.1 riastrad 66 1.1.1.1.6.1 tls # legacy horrors 67 1.1.1.1.6.1 tls i915-y += i915_dma.o \ 68 1.1.1.1.6.1 tls i915_ums.o 69 1.1 riastrad 70 1.1 riastrad obj-$(CONFIG_DRM_I915) += i915.o 71 1.1 riastrad 72 1.1 riastrad CFLAGS_i915_trace_points.o := -I$(src) 73