026abc3332
We need to merge this ahead of some of the cleanup because a lot of needed cleanup spans both new and old chips. If we try and clean up and the merge we end up fighting ourselves. Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> [With a load of the cleanup stuff folded in, register stuff reworked sanely] Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
50 lines
997 B
Makefile
50 lines
997 B
Makefile
#
|
|
# KMS driver for the GMA500
|
|
#
|
|
ccflags-y += -Iinclude/drm
|
|
|
|
gma500_gfx-y += gem_glue.o \
|
|
accel_2d.o \
|
|
backlight.o \
|
|
framebuffer.o \
|
|
gem.o \
|
|
gtt.o \
|
|
intel_bios.o \
|
|
intel_i2c.o \
|
|
intel_gmbus.o \
|
|
intel_opregion.o \
|
|
mmu.o \
|
|
power.o \
|
|
psb_drv.o \
|
|
psb_intel_display.o \
|
|
psb_intel_lvds.o \
|
|
psb_intel_modes.o \
|
|
psb_intel_sdvo.o \
|
|
psb_lid.o \
|
|
psb_irq.o \
|
|
psb_device.o \
|
|
mid_bios.o
|
|
|
|
gma500_gfx-$(CONFIG_DRM_GMA3600) += cdv_device.o \
|
|
cdv_intel_crt.o \
|
|
cdv_intel_display.o \
|
|
cdv_intel_hdmi.o \
|
|
cdv_intel_lvds.o
|
|
|
|
gma500_gfx-$(CONFIG_DRM_GMA600) += oaktrail_device.o \
|
|
oaktrail_crtc.o \
|
|
oaktrail_lvds.o \
|
|
oaktrail_hdmi.o \
|
|
oaktrail_hdmi_i2c.o
|
|
|
|
gma500_gfx-$(CONFIG_DRM_MEDFIELD) += mdfld_device.o \
|
|
mdfld_output.o \
|
|
mdfld_intel_display.o \
|
|
mdfld_dsi_output.o \
|
|
mdfld_dsi_dpi.o \
|
|
mdfld_dsi_pkg_sender.o \
|
|
mdfld_tpo_vid.o \
|
|
mdfld_tmd_vid.o \
|
|
tc35876x-dsi-lvds.o
|
|
|
|
obj-$(CONFIG_DRM_GMA500) += gma500_gfx.o
|