2008-05-29 00:09:59 +00:00
|
|
|
#
|
|
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
|
|
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
|
|
|
|
|
|
|
|
ccflags-y := -Iinclude/drm
|
|
|
|
|
2010-02-01 17:11:15 +00:00
|
|
|
drm-y := drm_auth.o drm_buffer.o drm_bufs.o drm_cache.o \
|
2010-08-23 20:53:31 +00:00
|
|
|
drm_context.o drm_dma.o \
|
2008-07-30 19:06:12 +00:00
|
|
|
drm_drv.o drm_fops.o drm_gem.o drm_ioctl.o drm_irq.o \
|
2013-08-08 13:41:34 +00:00
|
|
|
drm_lock.o drm_memory.o drm_stub.o drm_vm.o \
|
2012-11-23 11:12:10 +00:00
|
|
|
drm_agpsupport.o drm_scatter.o drm_pci.o \
|
2011-10-25 21:19:27 +00:00
|
|
|
drm_platform.o drm_sysfs.o drm_hashtab.o drm_mm.o \
|
2009-09-07 05:45:33 +00:00
|
|
|
drm_crtc.o drm_modes.o drm_edid.o \
|
2010-07-01 23:47:31 +00:00
|
|
|
drm_info.o drm_debugfs.o drm_encoder_slave.o \
|
2013-04-24 15:52:34 +00:00
|
|
|
drm_trace_points.o drm_global.o drm_prime.o \
|
2013-11-19 17:10:12 +00:00
|
|
|
drm_rect.o drm_vma_manager.o drm_flip_work.o \
|
|
|
|
drm_modeset_lock.o
|
2008-05-29 00:09:59 +00:00
|
|
|
|
|
|
|
drm-$(CONFIG_COMPAT) += drm_ioc32.o
|
2012-06-27 13:30:18 +00:00
|
|
|
drm-$(CONFIG_DRM_GEM_CMA_HELPER) += drm_gem_cma_helper.o
|
2012-11-23 11:12:10 +00:00
|
|
|
drm-$(CONFIG_PCI) += ati_pcigart.o
|
2013-08-30 11:36:43 +00:00
|
|
|
drm-$(CONFIG_DRM_PANEL) += drm_panel.o
|
2014-06-15 10:07:12 +00:00
|
|
|
drm-$(CONFIG_OF) += drm_of.o
|
2008-05-29 00:09:59 +00:00
|
|
|
|
2012-03-20 06:59:29 +00:00
|
|
|
drm-usb-y := drm_usb.o
|
|
|
|
|
2014-06-03 17:30:45 +00:00
|
|
|
drm_kms_helper-y := drm_crtc_helper.o drm_dp_helper.o drm_probe_helper.o \
|
2014-06-05 04:01:32 +00:00
|
|
|
drm_plane_helper.o drm_dp_mst_topology.o
|
2012-03-18 21:37:33 +00:00
|
|
|
drm_kms_helper-$(CONFIG_DRM_LOAD_EDID_FIRMWARE) += drm_edid_load.o
|
2013-10-08 15:44:47 +00:00
|
|
|
drm_kms_helper-$(CONFIG_DRM_KMS_FB_HELPER) += drm_fb_helper.o
|
2012-07-02 14:37:47 +00:00
|
|
|
drm_kms_helper-$(CONFIG_DRM_KMS_CMA_HELPER) += drm_fb_cma_helper.o
|
2009-09-07 05:45:33 +00:00
|
|
|
|
2009-09-08 01:08:32 +00:00
|
|
|
obj-$(CONFIG_DRM_KMS_HELPER) += drm_kms_helper.o
|
2009-09-07 05:45:33 +00:00
|
|
|
|
2010-07-01 23:47:31 +00:00
|
|
|
CFLAGS_drm_trace_points.o := -I$(src)
|
|
|
|
|
2008-05-29 00:09:59 +00:00
|
|
|
obj-$(CONFIG_DRM) += drm.o
|
2013-12-04 15:35:12 +00:00
|
|
|
obj-$(CONFIG_DRM_MIPI_DSI) += drm_mipi_dsi.o
|
2012-03-20 06:59:29 +00:00
|
|
|
obj-$(CONFIG_DRM_USB) += drm_usb.o
|
2009-06-22 16:16:13 +00:00
|
|
|
obj-$(CONFIG_DRM_TTM) += ttm/
|
2008-05-29 00:09:59 +00:00
|
|
|
obj-$(CONFIG_DRM_TDFX) += tdfx/
|
|
|
|
obj-$(CONFIG_DRM_R128) += r128/
|
|
|
|
obj-$(CONFIG_DRM_RADEON)+= radeon/
|
|
|
|
obj-$(CONFIG_DRM_MGA) += mga/
|
|
|
|
obj-$(CONFIG_DRM_I810) += i810/
|
|
|
|
obj-$(CONFIG_DRM_I915) += i915/
|
2012-04-17 14:01:25 +00:00
|
|
|
obj-$(CONFIG_DRM_MGAG200) += mgag200/
|
2012-04-17 13:12:29 +00:00
|
|
|
obj-$(CONFIG_DRM_CIRRUS_QEMU) += cirrus/
|
2008-05-29 00:09:59 +00:00
|
|
|
obj-$(CONFIG_DRM_SIS) += sis/
|
|
|
|
obj-$(CONFIG_DRM_SAVAGE)+= savage/
|
2009-12-10 00:19:58 +00:00
|
|
|
obj-$(CONFIG_DRM_VMWGFX)+= vmwgfx/
|
2008-05-29 00:09:59 +00:00
|
|
|
obj-$(CONFIG_DRM_VIA) +=via/
|
2009-12-11 09:24:15 +00:00
|
|
|
obj-$(CONFIG_DRM_NOUVEAU) +=nouveau/
|
2011-10-04 10:19:01 +00:00
|
|
|
obj-$(CONFIG_DRM_EXYNOS) +=exynos/
|
2011-11-03 18:22:48 +00:00
|
|
|
obj-$(CONFIG_DRM_GMA500) += gma500/
|
2010-12-14 21:14:24 +00:00
|
|
|
obj-$(CONFIG_DRM_UDL) += udl/
|
drm: Initial KMS driver for AST (ASpeed Technologies) 2000 series (v2)
This is the initial driver for the Aspeed Technologies chips found in
servers. This driver supports the AST 2000, 2100, 2200, 2150 and 2300. It
doesn't support the AST11xx due to lack of hw to test it on, and them requiring
different codepaths.
This driver is intended to be used with xf86-video-modesetting in userspace.
This driver has a slightly different design than other KMS drivers, but
future server chips will probably share similiar setup. As these GPUs commonly
have low video RAM, it doesn't make sense to put the kms console in VRAM
always. This driver places the kms console into system RAM, and does dirty
updates to a copy in video RAM. When userspace sets a new scanout buffer,
it forcefully evicts the video RAM console, and X can create a framebuffer
that can use all of of video RAM.
This driver uses TTM but in a very simple fashion to control the eviction
to system RAM of the console, and multiple servers.
v2: add s/r support, fix Kconfig.
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-02-29 13:40:04 +00:00
|
|
|
obj-$(CONFIG_DRM_AST) += ast/
|
2012-08-15 12:59:49 +00:00
|
|
|
obj-$(CONFIG_DRM_ARMADA) += armada/
|
2013-06-19 11:54:11 +00:00
|
|
|
obj-$(CONFIG_DRM_RCAR_DU) += rcar-du/
|
2012-04-26 11:53:59 +00:00
|
|
|
obj-$(CONFIG_DRM_SHMOBILE) +=shmobile/
|
2013-02-11 17:43:09 +00:00
|
|
|
obj-$(CONFIG_DRM_OMAP) += omapdrm/
|
2013-01-08 21:04:28 +00:00
|
|
|
obj-$(CONFIG_DRM_TILCDC) += tilcdc/
|
drm: add new QXL driver. (v1.4)
QXL is a paravirtual graphics device used by the Spice virtual desktop
interface.
The drivers uses GEM and TTM to manage memory, the qxl hw fencing however
is quite different than normal TTM expects, we have to keep track of a number
of non-linear fence ids per bo that we need to have released by the hardware.
The releases are freed from a workqueue that wakes up and processes the
release ring.
releases are suballocated from a BO, there are 3 release categories, drawables,
surfaces and cursor cmds. The hw also has 3 rings for commands, cursor and release handling.
The hardware also have a surface id tracking mechnaism and the driver encapsulates it completely inside the kernel, userspace never sees the actual hw surface
ids.
This requires a newer version of the QXL userspace driver, so shouldn't be
enabled until that has been placed into your distro of choice.
Authors: Dave Airlie, Alon Levy
v1.1: fixup some issues in the ioctl interface with padding
v1.2: add module device table
v1.3: fix nomodeset, fbcon leak, dumb bo create, release ring irq,
don't try flush release ring (broken hw), fix -modesetting.
v1.4: fbcon cpu usage reduction + suitable accel flags.
Signed-off-by: Alon Levy <alevy@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2013-02-25 04:47:55 +00:00
|
|
|
obj-$(CONFIG_DRM_QXL) += qxl/
|
2013-12-17 17:04:46 +00:00
|
|
|
obj-$(CONFIG_DRM_BOCHS) += bochs/
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-26 16:44:06 +00:00
|
|
|
obj-$(CONFIG_DRM_MSM) += msm/
|
2013-10-09 08:32:49 +00:00
|
|
|
obj-$(CONFIG_DRM_TEGRA) += tegra/
|
2014-07-30 16:20:56 +00:00
|
|
|
obj-$(CONFIG_DRM_STI) += sti/
|
2009-12-11 09:24:15 +00:00
|
|
|
obj-y += i2c/
|
2013-08-30 13:10:14 +00:00
|
|
|
obj-y += panel/
|
2014-02-24 10:31:24 +00:00
|
|
|
obj-y += bridge/
|