• Home
Name Date Size #Lines LOC

..--

exynos/08-May-2024-10,9307,640

gma500/08-May-2024-28,34519,928

i2c/08-May-2024-1,8461,368

i810/08-May-2024-1,6331,186

i915/08-May-2024-51,45137,536

mga/08-May-2024-3,6592,534

nouveau/08-May-2024-68,76953,325

r128/08-May-2024-3,5972,555

radeon/08-May-2024-118,72297,024

savage/08-May-2024-2,9322,247

sis/08-May-2024-592378

tdfx/08-May-2024-14558

ttm/08-May-2024-7,5365,437

udl/08-May-2024-2,4261,697

via/08-May-2024-5,6664,257

vmwgfx/08-May-2024-17,59911,208

KconfigD08-May-20246.1 KiB189166

MakefileD08-May-20241.5 KiB4634

README.drmD08-May-20241.7 KiB4431

ati_pcigart.cD08-May-20245.6 KiB203141

drm_agpsupport.cD08-May-202412.1 KiB470250

drm_auth.cD08-May-20245.8 KiB19584

drm_buffer.cD08-May-20244.9 KiB18691

drm_bufs.cD08-May-202442.4 KiB1,6271,166

drm_cache.cD08-May-20242.8 KiB10158

drm_context.cD08-May-202411.3 KiB463205

drm_crtc.cD08-May-202486.4 KiB3,4722,445

drm_crtc_helper.cD08-May-202428.8 KiB1,059709

drm_debugfs.cD08-May-20246.3 KiB243135

drm_dma.cD08-May-20244 KiB16380

drm_dp_i2c_helper.cD08-May-20245.3 KiB209143

drm_drv.cD08-May-202417.1 KiB506336

drm_edid.cD08-May-202445.9 KiB1,8361,240

drm_edid_load.cD08-May-20247.8 KiB251205

drm_edid_modes.hD08-May-202428.4 KiB665499

drm_encoder_slave.cD08-May-20243.8 KiB12656

drm_fb_helper.cD08-May-202437 KiB1,4111,102

drm_fops.cD08-May-202417.3 KiB678444

drm_gem.cD08-May-202418.5 KiB723418

drm_global.cD08-May-20243 KiB11370

drm_hashtab.cD08-May-20245.2 KiB198140

drm_info.cD08-May-20248.9 KiB316226

drm_ioc32.cD08-May-202431.9 KiB1,086855

drm_ioctl.cD08-May-20248.6 KiB357201

drm_irq.cD08-May-202440 KiB1,353724

drm_lock.cD08-May-202410.4 KiB378215

drm_memory.cD08-May-20244.3 KiB14584

drm_mm.cD08-May-202418.8 KiB720494

drm_modes.cD08-May-202433.7 KiB1,183662

drm_pci.cD08-May-202411.6 KiB468296

drm_platform.cD08-May-20245.4 KiB207119

drm_prime.cD08-May-20248.5 KiB305192

drm_proc.cD08-May-20245.9 KiB222116

drm_scatter.cD08-May-20245.1 KiB214137

drm_stub.cD08-May-202412.1 KiB521362

drm_sysfs.cD08-May-202414.5 KiB567360

drm_trace.hD08-May-20241.7 KiB6758

drm_trace_points.cD08-May-202470 53

drm_usb.cD08-May-20242.4 KiB12194

drm_vm.cD08-May-202418.5 KiB693447

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