NameDateSize

..13-Oct-20154 KiB

armada/13-Oct-20154 KiB

ast/13-Oct-20154 KiB

ati_pcigart.c13-Oct-20155.6 KiB

bochs/13-Oct-20154 KiB

bridge/13-Oct-20154 KiB

cirrus/13-Oct-20154 KiB

drm_agpsupport.c13-Oct-201513.1 KiB

drm_auth.c13-Oct-20155.9 KiB

drm_bufs.c13-Oct-201538.7 KiB

drm_cache.c13-Oct-20154 KiB

drm_context.c13-Oct-201511.7 KiB

drm_crtc.c13-Oct-2015137.8 KiB

drm_crtc_helper.c13-Oct-201526.1 KiB

drm_crtc_internal.h13-Oct-20151.7 KiB

drm_debugfs.c13-Oct-201510.1 KiB

drm_dma.c13-Oct-20154.2 KiB

drm_dp_helper.c13-Oct-201520.2 KiB

drm_dp_mst_topology.c13-Oct-201573.8 KiB

drm_drv.c13-Oct-201522.3 KiB

drm_edid.c13-Oct-2015113.6 KiB

drm_edid_load.c13-Oct-20159.5 KiB

drm_encoder_slave.c13-Oct-20155.4 KiB

drm_fb_cma_helper.c13-Oct-201511.8 KiB

drm_fb_helper.c13-Oct-201547.6 KiB

drm_flip_work.c13-Oct-20153.6 KiB

drm_fops.c13-Oct-201513.9 KiB

drm_gem.c13-Oct-201525.8 KiB

drm_gem_cma_helper.c13-Oct-20159 KiB

drm_global.c13-Oct-20153 KiB

drm_hashtab.c13-Oct-20155.4 KiB

drm_info.c13-Oct-20156.8 KiB

drm_internal.h13-Oct-20154.9 KiB

drm_ioc32.c13-Oct-201531.9 KiB

drm_ioctl.c13-Oct-201524.1 KiB

drm_irq.c13-Oct-201548.7 KiB

drm_legacy.h13-Oct-20154.2 KiB

drm_lock.c13-Oct-201510.4 KiB

drm_memory.c13-Oct-20154.4 KiB

drm_mipi_dsi.c13-Oct-20158.1 KiB

drm_mm.c13-Oct-201525.3 KiB

drm_modes.c13-Oct-201538.5 KiB

drm_modeset_lock.c13-Oct-201511.8 KiB

drm_of.c13-Oct-20151.6 KiB

drm_panel.c13-Oct-20152.6 KiB

drm_pci.c13-Oct-201511.8 KiB

drm_plane_helper.c13-Oct-201512.1 KiB

drm_platform.c13-Oct-20153.1 KiB

drm_prime.c13-Oct-201520.4 KiB

drm_probe_helper.c13-Oct-201515 KiB

drm_rect.c13-Oct-201511.1 KiB

drm_scatter.c13-Oct-20155.4 KiB

drm_sysfs.c13-Oct-201514.5 KiB

drm_trace.h13-Oct-20151.7 KiB

drm_trace_points.c13-Oct-201574

drm_vm.c13-Oct-201519.5 KiB

drm_vma_manager.c13-Oct-201513.7 KiB

exynos/13-Oct-20154 KiB

gma500/13-Oct-20154 KiB

i2c/13-Oct-20154 KiB

i810/13-Oct-20154 KiB

i915/13-Oct-20154 KiB

Kconfig13-Oct-20155.5 KiB

Makefile13-Oct-20152.3 KiB

mga/13-Oct-20154 KiB

mgag200/13-Oct-20154 KiB

msm/13-Oct-20154 KiB

nouveau/13-Oct-20154 KiB

omapdrm/13-Oct-20154 KiB

panel/13-Oct-20154 KiB

qxl/13-Oct-20154 KiB

r128/13-Oct-20154 KiB

radeon/13-Oct-201512 KiB

rcar-du/13-Oct-20154 KiB

README.drm13-Oct-20151.7 KiB

savage/13-Oct-20154 KiB

shmobile/13-Oct-20154 KiB

sis/13-Oct-20154 KiB

sti/13-Oct-20154 KiB

tdfx/13-Oct-20154 KiB

tegra/13-Oct-20154 KiB

tilcdc/13-Oct-20154 KiB

ttm/13-Oct-20154 KiB

udl/13-Oct-20154 KiB

via/13-Oct-20154 KiB

vmwgfx/13-Oct-20154 KiB

README.drm

1************************************************************
2* For the very latest on DRI development, please see:      *
3*     http://dri.freedesktop.org/                          *
4************************************************************
5
6The Direct Rendering Manager (drm) is a device-independent kernel-level
7device driver that provides support for the XFree86 Direct Rendering
8Infrastructure (DRI).
9
10The DRM supports the Direct Rendering Infrastructure (DRI) in four major
11ways:
12
13    1. The DRM provides synchronized access to the graphics hardware via
14       the use of an optimized two-tiered lock.
15
16    2. The DRM enforces the DRI security policy for access to the graphics
17       hardware by only allowing authenticated X11 clients access to
18       restricted regions of memory.
19
20    3. The DRM provides a generic DMA engine, complete with multiple
21       queues and the ability to detect the need for an OpenGL context
22       switch.
23
24    4. The DRM is extensible via the use of small device-specific modules
25       that rely extensively on the API exported by the DRM module.
26
27
28Documentation on the DRI is available from:
29    http://dri.freedesktop.org/wiki/Documentation
30    http://sourceforge.net/project/showfiles.php?group_id=387
31    http://dri.sourceforge.net/doc/
32
33For specific information about kernel-level support, see:
34
35    The Direct Rendering Manager, Kernel Support for the Direct Rendering
36    Infrastructure
37    http://dri.sourceforge.net/doc/drm_low_level.html
38
39    Hardware Locking for the Direct Rendering Infrastructure
40    http://dri.sourceforge.net/doc/hardware_locking_low_level.html
41
42    A Security Analysis of the Direct Rendering Infrastructure
43    http://dri.sourceforge.net/doc/security_low_level.html
44