2015-10-29 15:36:23 +07:00
|
|
|
|
2008-05-29 07:09:59 +07:00
|
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
|
|
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
|
|
|
|
|
2014-08-29 17:12:27 +07:00
|
|
|
drm-y := drm_auth.o drm_bufs.o drm_cache.o \
|
2010-08-24 03:53:31 +07:00
|
|
|
drm_context.o drm_dma.o \
|
2017-03-08 21:12:40 +07:00
|
|
|
drm_file.o drm_gem.o drm_ioctl.o drm_irq.o \
|
2017-01-04 16:12:56 +07:00
|
|
|
drm_lock.o drm_memory.o drm_drv.o \
|
2015-09-09 21:45:52 +07:00
|
|
|
drm_scatter.o drm_pci.o \
|
2016-12-14 02:24:34 +07:00
|
|
|
drm_sysfs.o drm_hashtab.o drm_mm.o \
|
2016-06-09 16:54:08 +07:00
|
|
|
drm_crtc.o drm_fourcc.o drm_modes.o drm_edid.o \
|
2016-10-06 22:21:06 +07:00
|
|
|
drm_info.o drm_encoder_slave.o \
|
2013-04-24 22:52:34 +07:00
|
|
|
drm_trace_points.o drm_global.o drm_prime.o \
|
2013-11-20 00:10:12 +07:00
|
|
|
drm_rect.o drm_vma_manager.o drm_flip_work.o \
|
2016-08-15 21:07:02 +07:00
|
|
|
drm_modeset_lock.o drm_atomic.o drm_bridge.o \
|
2016-08-29 15:27:49 +07:00
|
|
|
drm_framebuffer.o drm_connector.o drm_blend.o \
|
2016-09-21 15:59:24 +07:00
|
|
|
drm_encoder.o drm_mode_object.o drm_property.o \
|
2016-11-14 18:58:16 +07:00
|
|
|
drm_plane.o drm_color_mgmt.o drm_print.o \
|
2017-04-04 10:26:24 +07:00
|
|
|
drm_dumb_buffers.o drm_mode_config.o drm_vblank.o \
|
drm: Add drm_object lease infrastructure [v5]
This provides new data structures to hold "lease" information about
drm mode setting objects, and provides for creating new drm_masters
which have access to a subset of the available drm resources.
An 'owner' is a drm_master which is not leasing the objects from
another drm_master, and hence 'owns' them.
A 'lessee' is a drm_master which is leasing objects from some other
drm_master. Each lessee holds the set of objects which it is leasing
from the lessor.
A 'lessor' is a drm_master which is leasing objects to another
drm_master. This is the same as the owner in the current code.
The set of objects any drm_master 'controls' is limited to the set of
objects it leases (for lessees) or all objects (for owners).
Objects not controlled by a drm_master cannot be modified through the
various state manipulating ioctls, and any state reported back to user
space will be edited to make them appear idle and/or unusable. For
instance, connectors always report 'disconnected', while encoders
report no possible crtcs or clones.
The full list of lessees leasing objects from an owner (either
directly, or indirectly through another lessee), can be searched from
an idr in the drm_master of the owner.
Changes for v2 as suggested by Daniel Vetter <daniel.vetter@ffwll.ch>:
* Sub-leasing has been disabled.
* BUG_ON for lock checking replaced with lockdep_assert_held
* 'change' ioctl has been removed.
* Leased objects can always be controlled by the lessor; the
'mask_lease' flag has been removed
* Checking for leased status has been simplified, replacing
the drm_lease_check function with drm_lease_held.
Changes in v3, some suggested by Dave Airlie <airlied@gmail.com>
* Add revocation. This allows leases to be effectively revoked by
removing all of the objects they have access to. The lease itself
hangs around as it's hanging off a file.
* Free the leases IDR when the master is destroyed
* _drm_lease_held should look at lessees, not lessor
* Allow non-master files to check for lease status
Changes in v4, suggested by Dave Airlie <airlied@gmail.com>
* Formatting and whitespace changes
Changes in v5 (airlied)
* check DRIVER_MODESET before lease destroy call
* check DRIVER_MODESET for lease revoke (Chris)
* Use idr_mutex uniformly for all lease elements of struct drm_master. (Keith)
Signed-off-by: Keith Packard <keithp@keithp.com>
2017-03-15 12:26:41 +07:00
|
|
|
drm_syncobj.o drm_lease.o
|
2008-05-29 07:09:59 +07:00
|
|
|
|
2016-12-22 15:36:08 +07:00
|
|
|
drm-$(CONFIG_DRM_LIB_RANDOM) += lib/drm_random.o
|
2017-01-04 16:12:56 +07:00
|
|
|
drm-$(CONFIG_DRM_VM) += drm_vm.o
|
2008-05-29 07:09:59 +07:00
|
|
|
drm-$(CONFIG_COMPAT) += drm_ioc32.o
|
2012-06-27 20:30:18 +07:00
|
|
|
drm-$(CONFIG_DRM_GEM_CMA_HELPER) += drm_gem_cma_helper.o
|
2012-11-23 18:12:10 +07:00
|
|
|
drm-$(CONFIG_PCI) += ati_pcigart.o
|
2013-08-30 18:36:43 +07:00
|
|
|
drm-$(CONFIG_DRM_PANEL) += drm_panel.o
|
2014-06-15 17:07:12 +07:00
|
|
|
drm-$(CONFIG_OF) += drm_of.o
|
2015-09-09 21:45:52 +07:00
|
|
|
drm-$(CONFIG_AGP) += drm_agpsupport.o
|
2016-10-06 22:21:06 +07:00
|
|
|
drm-$(CONFIG_DEBUG_FS) += drm_debugfs.o drm_debugfs_crc.o
|
drm: handle override and firmware EDID at drm_do_get_edid() level
Handle debugfs override edid and firmware edid at the low level to
transparently and completely replace the real edid. Previously, we
practically only used the modes from the override EDID, and none of the
other data, such as audio parameters.
This change also prevents actual EDID reads when the EDID is to be
overridden, but retains the DDC probe. This is useful if the reason for
preferring override EDID are problems with reading the data, or
corruption of the data.
Move firmware EDID loading from helper to core, as the functionality
moves to lower level as well. This will result in a change of module
parameter from drm_kms_helper.edid_firmware to drm.edid_firmware, which
arguably makes more sense anyway.
Some future work remains related to override and firmware EDID
validation. Like before, no validation is done for override EDID. The
firmware EDID is validated separately in the loader. Some unification
and deduplication would be in order, to validate all of them at the
drm_do_get_edid() level, like "real" EDIDs.
v2: move firmware loading to core
v3: rebase, commit message refresh
Cc: Abdiel Janulgue <abdiel.janulgue@linux.intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Abdiel Janulgue <abdiel.janulgue@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Acked-by: Dave Airlie <airlied@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1e8a710bcac46e5136c1a7b430074893c81f364a.1505203831.git.jani.nikula@intel.com
2017-09-12 15:19:26 +07:00
|
|
|
drm-$(CONFIG_DRM_LOAD_EDID_FIRMWARE) += drm_edid_load.o
|
2008-05-29 07:09:59 +07:00
|
|
|
|
2014-06-04 00:30:45 +07:00
|
|
|
drm_kms_helper-y := drm_crtc_helper.o drm_dp_helper.o drm_probe_helper.o \
|
2016-01-22 06:10:18 +07:00
|
|
|
drm_plane_helper.o drm_dp_mst_topology.o drm_atomic_helper.o \
|
2016-06-10 21:55:59 +07:00
|
|
|
drm_kms_helper_common.o drm_dp_dual_mode_helper.o \
|
2017-03-13 18:23:59 +07:00
|
|
|
drm_simple_kms_helper.o drm_modeset_helper.o \
|
2017-08-13 20:31:44 +07:00
|
|
|
drm_scdc_helper.o drm_gem_framebuffer_helper.o
|
2016-01-22 06:10:18 +07:00
|
|
|
|
2017-06-06 21:31:50 +07:00
|
|
|
drm_kms_helper-$(CONFIG_DRM_PANEL_BRIDGE) += bridge/panel.o
|
2015-08-05 13:58:57 +07:00
|
|
|
drm_kms_helper-$(CONFIG_DRM_FBDEV_EMULATION) += drm_fb_helper.o
|
2012-07-02 21:37:47 +07:00
|
|
|
drm_kms_helper-$(CONFIG_DRM_KMS_CMA_HELPER) += drm_fb_cma_helper.o
|
2016-01-22 06:10:19 +07:00
|
|
|
drm_kms_helper-$(CONFIG_DRM_DP_AUX_CHARDEV) += drm_dp_aux_dev.o
|
2009-09-07 12:45:33 +07:00
|
|
|
|
2009-09-08 08:08:32 +07:00
|
|
|
obj-$(CONFIG_DRM_KMS_HELPER) += drm_kms_helper.o
|
2016-12-28 16:41:17 +07:00
|
|
|
obj-$(CONFIG_DRM_DEBUG_MM_SELFTEST) += selftests/
|
2009-09-07 12:45:33 +07:00
|
|
|
|
2008-05-29 07:09:59 +07:00
|
|
|
obj-$(CONFIG_DRM) += drm.o
|
2013-12-04 22:35:12 +07:00
|
|
|
obj-$(CONFIG_DRM_MIPI_DSI) += drm_mipi_dsi.o
|
2015-04-03 01:48:39 +07:00
|
|
|
obj-$(CONFIG_DRM_ARM) += arm/
|
2009-06-22 23:16:13 +07:00
|
|
|
obj-$(CONFIG_DRM_TTM) += ttm/
|
2008-05-29 07:09:59 +07:00
|
|
|
obj-$(CONFIG_DRM_TDFX) += tdfx/
|
|
|
|
obj-$(CONFIG_DRM_R128) += r128/
|
2017-08-25 06:22:32 +07:00
|
|
|
obj-y += amd/lib/
|
2014-12-21 20:21:41 +07:00
|
|
|
obj-$(CONFIG_HSA_AMD) += amd/amdkfd/
|
2008-05-29 07:09:59 +07:00
|
|
|
obj-$(CONFIG_DRM_RADEON)+= radeon/
|
2015-04-21 03:55:21 +07:00
|
|
|
obj-$(CONFIG_DRM_AMDGPU)+= amd/amdgpu/
|
2008-05-29 07:09:59 +07:00
|
|
|
obj-$(CONFIG_DRM_MGA) += mga/
|
|
|
|
obj-$(CONFIG_DRM_I810) += i810/
|
2016-08-19 22:54:28 +07:00
|
|
|
obj-$(CONFIG_DRM_I915) += i915/
|
2012-04-17 21:01:25 +07:00
|
|
|
obj-$(CONFIG_DRM_MGAG200) += mgag200/
|
2015-03-03 04:01:12 +07:00
|
|
|
obj-$(CONFIG_DRM_VC4) += vc4/
|
2012-04-17 20:12:29 +07:00
|
|
|
obj-$(CONFIG_DRM_CIRRUS_QEMU) += cirrus/
|
2008-05-29 07:09:59 +07:00
|
|
|
obj-$(CONFIG_DRM_SIS) += sis/
|
|
|
|
obj-$(CONFIG_DRM_SAVAGE)+= savage/
|
2009-12-10 07:19:58 +07:00
|
|
|
obj-$(CONFIG_DRM_VMWGFX)+= vmwgfx/
|
2008-05-29 07:09:59 +07:00
|
|
|
obj-$(CONFIG_DRM_VIA) +=via/
|
2015-03-05 07:33:41 +07:00
|
|
|
obj-$(CONFIG_DRM_VGEM) += vgem/
|
2009-12-11 16:24:15 +07:00
|
|
|
obj-$(CONFIG_DRM_NOUVEAU) +=nouveau/
|
2011-10-04 17:19:01 +07:00
|
|
|
obj-$(CONFIG_DRM_EXYNOS) +=exynos/
|
2014-08-22 17:36:26 +07:00
|
|
|
obj-$(CONFIG_DRM_ROCKCHIP) +=rockchip/
|
2011-11-04 01:22:48 +07:00
|
|
|
obj-$(CONFIG_DRM_GMA500) += gma500/
|
2010-12-15 04:14:24 +07: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 20:40:04 +07:00
|
|
|
obj-$(CONFIG_DRM_AST) += ast/
|
2012-08-15 19:59:49 +07:00
|
|
|
obj-$(CONFIG_DRM_ARMADA) += armada/
|
2015-01-06 17:13:28 +07:00
|
|
|
obj-$(CONFIG_DRM_ATMEL_HLCDC) += atmel-hlcdc/
|
2013-06-19 18:54:11 +07:00
|
|
|
obj-$(CONFIG_DRM_RCAR_DU) += rcar-du/
|
2012-04-26 18:53:59 +07:00
|
|
|
obj-$(CONFIG_DRM_SHMOBILE) +=shmobile/
|
2015-12-10 01:26:00 +07:00
|
|
|
obj-y += omapdrm/
|
2015-10-29 15:36:23 +07:00
|
|
|
obj-$(CONFIG_DRM_SUN4I) += sun4i/
|
2015-02-18 17:26:50 +07:00
|
|
|
obj-y += 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 11:47:55 +07:00
|
|
|
obj-$(CONFIG_DRM_QXL) += qxl/
|
2013-12-18 00:04:46 +07:00
|
|
|
obj-$(CONFIG_DRM_BOCHS) += bochs/
|
2013-09-09 07:02:56 +07:00
|
|
|
obj-$(CONFIG_DRM_VIRTIO_GPU) += virtio/
|
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 23:44:06 +07:00
|
|
|
obj-$(CONFIG_DRM_MSM) += msm/
|
2013-10-09 15:32:49 +07:00
|
|
|
obj-$(CONFIG_DRM_TEGRA) += tegra/
|
2017-04-14 17:13:34 +07:00
|
|
|
obj-$(CONFIG_DRM_STM) += stm/
|
2014-07-30 23:20:56 +07:00
|
|
|
obj-$(CONFIG_DRM_STI) += sti/
|
2014-11-24 22:33:34 +07:00
|
|
|
obj-$(CONFIG_DRM_IMX) += imx/
|
2016-01-05 00:36:34 +07:00
|
|
|
obj-$(CONFIG_DRM_MEDIATEK) += mediatek/
|
2016-11-10 21:29:37 +07:00
|
|
|
obj-$(CONFIG_DRM_MESON) += meson/
|
2009-12-11 16:24:15 +07:00
|
|
|
obj-y += i2c/
|
2013-08-30 20:10:14 +07:00
|
|
|
obj-y += panel/
|
2014-02-24 17:31:24 +07:00
|
|
|
obj-y += bridge/
|
2015-08-20 09:19:49 +07:00
|
|
|
obj-$(CONFIG_DRM_FSL_DCU) += fsl-dcu/
|
2015-12-04 00:21:29 +07:00
|
|
|
obj-$(CONFIG_DRM_ETNAVIV) += etnaviv/
|
2016-02-19 19:30:26 +07:00
|
|
|
obj-$(CONFIG_DRM_ARCPGU)+= arc/
|
2015-10-09 17:00:56 +07:00
|
|
|
obj-y += hisilicon/
|
2016-09-22 18:52:39 +07:00
|
|
|
obj-$(CONFIG_DRM_ZTE) += zte/
|
2016-08-19 01:23:01 +07:00
|
|
|
obj-$(CONFIG_DRM_MXSFB) += mxsfb/
|
2017-01-22 06:15:00 +07:00
|
|
|
obj-$(CONFIG_DRM_TINYDRM) += tinydrm/
|
drm/pl111: Initial drm/kms driver for pl111
This is a modesetting driver for the pl111 CLCD display controller
found on various ARM platforms such as the Versatile Express. The
driver has only been tested on the bcm911360_entphn platform so far,
with PRIME-based buffer sharing between vc4 and clcd.
It reuses the existing devicetree binding, while not using quite as
many of its properties as the fbdev driver does (those are left for
future work).
v2: Nearly complete rewrite by anholt, cutting 2/3 of the code thanks
to DRM core's excellent new helpers.
v3: Don't match pl110 any more, don't attach if we don't have a DRM
panel, use DRM_GEM_CMA_FOPS, update MAINTAINERS, use the simple
display helper, use drm_gem_cma_dumb_create (same as our wrapper).
v4: Change the driver's .name to not clash with fbdev in sysfs, drop
platform alias, drop redundant "drm" in DRM driver name, hook up
.prepare_fb to the CMA helper so that DMA fences should work.
v5: Move register definitions inside the driver directory, fix build
in COMPILE_TEST and !AMBA mode.
v6: Drop TIM2_CLKSEL for now to be consistent with existing DT
bindings, switch back to external register definitions.
Signed-off-by: Tom Cooksey <tom.cooksey@arm.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org> (v5)
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170413031746.12921-2-eric@anholt.net
2017-04-13 10:17:46 +07:00
|
|
|
obj-$(CONFIG_DRM_PL111) += pl111/
|
2017-08-20 17:05:55 +07:00
|
|
|
obj-$(CONFIG_DRM_TVE200) += tve200/
|