Linus Torvalds 6b702462cb Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6 16 лет назад
..
i810 f77d390c97 drm: Split drm_map and drm_local_map 17 лет назад
i830 f77d390c97 drm: Split drm_map and drm_local_map 17 лет назад
i915 6b702462cb Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6 16 лет назад
mga 41c2e75e60 drm: Make drm_local_map use a resource_size_t offset 17 лет назад
r128 42beefc009 drm/r128: fix r128 ioremaps to use ioremap_wc. 16 лет назад
radeon 6b702462cb Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6 16 лет назад
savage d883f7f1b7 drm: Use resource_size_t for drm_get_resource_{start, len} 17 лет назад
sis 48f185d0e0 SiS DRM: fix a pointer cast warning 17 лет назад
tdfx c0e09200dc drm: reorganise drm tree to be more future proof. 17 лет назад
via c5c07550d4 drm/via: vfree() no need checking before calling it 16 лет назад
Kconfig 31db5645bd ACPI, i915: build fix (v2) 16 лет назад
Makefile 28a62277e0 drm: Convert proc files to seq_file and introduce debugfs 17 лет назад
README.drm c0e09200dc drm: reorganise drm tree to be more future proof. 17 лет назад
ati_pcigart.c 6abf66018f drm/ati_pcigart: use memset_io to reset the memory 17 лет назад
drm_agpsupport.c 1bb88edb7a drm: stash AGP include under the do-we-have-AGP ifdef 17 лет назад
drm_auth.c 7c1c2871a6 drm: move to kref per-master structures. 17 лет назад
drm_bufs.c 2ff2e8a3e1 drm: don't associate _DRM_DRIVER maps with a master 16 лет назад
drm_cache.c e0f0754ff6 drm: wbinvd is cache coherent. 17 лет назад
drm_context.c f77d390c97 drm: Split drm_map and drm_local_map 17 лет назад
drm_crtc.c c9fb15f60e drm: Hook up DPMS property handling in drm_crtc.c. Add drm_helper_connector_dpms. 16 лет назад
drm_crtc_helper.c c9fb15f60e drm: Hook up DPMS property handling in drm_crtc.c. Add drm_helper_connector_dpms. 16 лет назад
drm_debugfs.c 28a62277e0 drm: Convert proc files to seq_file and introduce debugfs 17 лет назад
drm_dma.c c0e09200dc drm: reorganise drm tree to be more future proof. 17 лет назад
drm_drawable.c 7e78f72524 drm: Avoid oops in DRM_IOCTL_RM_DRAW if a bad handle is supplied. 17 лет назад
drm_drv.c 9b6fe313bf drm: Copy back ioctl data to userspace regardless of return code. 16 лет назад
drm_edid.c 6b702462cb Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6 16 лет назад
drm_fops.c dba5ed0cd1 drm: drm_fops.c unlock missing on error path 16 лет назад
drm_gem.c b798b1fe3b drm: simplify kcalloc() call to kzalloc(). 16 лет назад
drm_hashtab.c f2cb5d86e1 drm: Export hash table functionality. 16 лет назад
drm_info.c 90f959bcb3 drm: merge Linux master into HEAD 16 лет назад
drm_ioc32.c 09e40d65d0 drm: Only use DRM_IOCTL_UPDATE_DRAW compat wrapper for compat X86. 17 лет назад
drm_ioctl.c 1147c9cdd0 drm: fix leak of uninitialized data to userspace 17 лет назад
drm_irq.c b8da7de56c drm: fix irq naming for kms drivers. 16 лет назад
drm_lock.c fda714c29c drm: Avoid client deadlocks when the master disappears. 17 лет назад
drm_memory.c f77d390c97 drm: Split drm_map and drm_local_map 17 лет назад
drm_mm.c 249d6048ca drm: Split out the mm declarations in a separate header. Add atomic operations. 16 лет назад
drm_modes.c f053185948 drm: Replace DRM_DEBUG with DRM_DEBUG_MODE in drm_mode 16 лет назад
drm_pci.c c0e09200dc drm: reorganise drm tree to be more future proof. 17 лет назад
drm_proc.c 955b12def4 drm: Convert proc files to seq_file and introduce debugfs 17 лет назад
drm_scatter.c c0e09200dc drm: reorganise drm tree to be more future proof. 17 лет назад
drm_sman.c c0e09200dc drm: reorganise drm tree to be more future proof. 17 лет назад
drm_stub.c 4fefcb2705 drm: add separate drm debugging levels 16 лет назад
drm_sysfs.c e36ebaf492 drm: set permissions on edid file to 0444 16 лет назад
drm_vm.c 41c2e75e60 drm: Make drm_local_map use a resource_size_t offset 17 лет назад

README.drm

************************************************************
* For the very latest on DRI development, please see: *
* http://dri.freedesktop.org/ *
************************************************************

The Direct Rendering Manager (drm) is a device-independent kernel-level
device driver that provides support for the XFree86 Direct Rendering
Infrastructure (DRI).

The DRM supports the Direct Rendering Infrastructure (DRI) in four major
ways:

1. The DRM provides synchronized access to the graphics hardware via
the use of an optimized two-tiered lock.

2. The DRM enforces the DRI security policy for access to the graphics
hardware by only allowing authenticated X11 clients access to
restricted regions of memory.

3. The DRM provides a generic DMA engine, complete with multiple
queues and the ability to detect the need for an OpenGL context
switch.

4. The DRM is extensible via the use of small device-specific modules
that rely extensively on the API exported by the DRM module.


Documentation on the DRI is available from:
http://dri.freedesktop.org/wiki/Documentation
http://sourceforge.net/project/showfiles.php?group_id=387
http://dri.sourceforge.net/doc/

For specific information about kernel-level support, see:

The Direct Rendering Manager, Kernel Support for the Direct Rendering
Infrastructure
http://dri.sourceforge.net/doc/drm_low_level.html

Hardware Locking for the Direct Rendering Infrastructure
http://dri.sourceforge.net/doc/hardware_locking_low_level.html

A Security Analysis of the Direct Rendering Infrastructure
http://dri.sourceforge.net/doc/security_low_level.html