• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

exynos/18-Mar-2012-8,3245,513

gma500/18-Mar-2012-22,40115,683

i2c/18-Mar-2012-1,8491,371

i810/18-Mar-2012-1,6341,189

i915/18-Mar-2012-50,38436,743

mga/18-Mar-2012-3,6572,533

nouveau/18-Mar-2012-67,29652,193

r128/18-Mar-2012-3,5962,554

radeon/18-Mar-2012-108,43288,450

savage/18-Mar-2012-2,9292,245

sis/18-Mar-2012-590377

tdfx/18-Mar-2012-14558

ttm/18-Mar-2012-7,5685,476

via/18-Mar-2012-5,6654,256

vmwgfx/18-Mar-2012-17,27910,974

KconfigD18-Mar-20125.4 KiB168148

MakefileD18-Mar-20121.3 KiB4130

README.drmD18-Mar-20121.7 KiB4431

ati_pcigart.cD18-Mar-20125.6 KiB203141

drm_agpsupport.cD18-Mar-201212.1 KiB470250

drm_auth.cD18-Mar-20125.8 KiB19584

drm_buffer.cD18-Mar-20124.9 KiB18691

drm_bufs.cD18-Mar-201242.6 KiB1,6311,170

drm_cache.cD18-Mar-20122.8 KiB10158

drm_context.cD18-Mar-201211.3 KiB463205

drm_crtc.cD18-Mar-201285.1 KiB3,3412,374

drm_crtc_helper.cD18-Mar-201228.7 KiB1,051702

drm_debugfs.cD18-Mar-20126.3 KiB243135

drm_dma.cD18-Mar-20124 KiB16380

drm_dp_i2c_helper.cD18-Mar-20125.3 KiB209143

drm_drv.cD18-Mar-201216.9 KiB498332

drm_edid.cD18-Mar-201245.2 KiB1,8131,224

drm_edid_modes.hD18-Mar-201228.4 KiB665499

drm_encoder_slave.cD18-Mar-20123.8 KiB12656

drm_fb_helper.cD18-Mar-201238.6 KiB1,4651,142

drm_fops.cD18-Mar-201216.9 KiB660431

drm_gem.cD18-Mar-201218.2 KiB712410

drm_global.cD18-Mar-20123 KiB11370

drm_hashtab.cD18-Mar-20125.2 KiB198140

drm_info.cD18-Mar-20128.9 KiB316226

drm_ioc32.cD18-Mar-201231.9 KiB1,086855

drm_ioctl.cD18-Mar-20128.4 KiB349193

drm_irq.cD18-Mar-201239.9 KiB1,349722

drm_lock.cD18-Mar-201210.4 KiB378215

drm_memory.cD18-Mar-20124.7 KiB16489

drm_mm.cD18-Mar-201218.9 KiB718495

drm_modes.cD18-Mar-201233.3 KiB1,167659

drm_pci.cD18-Mar-201211.7 KiB470297

drm_platform.cD18-Mar-20125.2 KiB199116

drm_proc.cD18-Mar-20125.9 KiB222116

drm_scatter.cD18-Mar-20125.1 KiB214137

drm_stub.cD18-Mar-201211.6 KiB495342

drm_sysfs.cD18-Mar-201214.4 KiB562355

drm_trace.hD18-Mar-20121.7 KiB6758

drm_trace_points.cD18-Mar-201270 53

drm_usb.cD18-Mar-20122.3 KiB11993

drm_vm.cD18-Mar-201218.6 KiB692447

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