• Home
Name
Date
Size
#Lines
LOC

..--

ast/08-May-2024-5,3284,337

cirrus/08-May-2024-2,1531,593

exynos/08-May-2024-21,97115,725

gma500/08-May-2024-32,06622,660

i2c/08-May-2024-2,7832,077

i810/08-May-2024-1,6371,187

i915/08-May-2024-65,67247,870

mga/08-May-2024-3,6512,526

mgag200/08-May-2024-3,9572,997

nouveau/08-May-2024-98,73777,001

omapdrm/08-May-2024-8,3925,382

qxl/08-May-2024-7,0835,345

r128/08-May-2024-3,5912,549

radeon/08-May-2024-133,353106,788

savage/08-May-2024-2,9402,256

shmobile/08-May-2024-2,1561,593

sis/08-May-2024-595377

tdfx/08-May-2024-14760

tilcdc/08-May-2024-2,8602,022

ttm/08-May-2024-7,5805,447

udl/08-May-2024-2,5841,827

via/08-May-2024-5,6654,252

vmwgfx/08-May-2024-19,50212,233

KconfigD08-May-20246.8 KiB223190

MakefileD08-May-20241.8 KiB5644

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 KiB1,6151,154

drm_cache.cD08-May-20243.8 KiB149100

drm_context.cD08-May-202411.1 KiB453195

drm_crtc.cD08-May-202499.3 KiB3,8912,749

drm_crtc_helper.cD08-May-202431.3 KiB1,111733

drm_debugfs.cD08-May-20246.3 KiB242134

drm_dma.cD08-May-20243.9 KiB15876

drm_dp_helper.cD08-May-20249 KiB349248

drm_drv.cD08-May-202417.1 KiB503333

drm_edid.cD08-May-202488.4 KiB3,0382,167

drm_edid_load.cD08-May-20248.7 KiB277230

drm_encoder_slave.cD08-May-20245.4 KiB185102

drm_fb_cma_helper.cD08-May-202411.9 KiB456312

drm_fb_helper.cD08-May-202443.8 KiB1,6001,128

drm_fops.cD08-May-202416.4 KiB641420

drm_gem.cD08-May-202418.4 KiB722420

drm_gem_cma_helper.cD08-May-20246.6 KiB273161

drm_global.cD08-May-20243 KiB11370

drm_hashtab.cD08-May-20245.4 KiB209150

drm_info.cD08-May-20247.8 KiB279195

drm_ioc32.cD08-May-202431.9 KiB1,086855

drm_ioctl.cD08-May-20248.9 KiB364208

drm_irq.cD08-May-202441.3 KiB1,415759

drm_lock.cD08-May-202410.4 KiB374212

drm_memory.cD08-May-20244.3 KiB14584

drm_mm.cD08-May-202420.7 KiB795562

drm_modes.cD08-May-202436.3 KiB1,270715

drm_pci.cD08-May-202412.7 KiB506326

drm_platform.cD08-May-20245.3 KiB206118

drm_prime.cD08-May-202414 KiB539350

drm_proc.cD08-May-20245.7 KiB210107

drm_scatter.cD08-May-20245.1 KiB214137

drm_stub.cD08-May-202412 KiB510345

drm_sysfs.cD08-May-202414.6 KiB571363

drm_trace.hD08-May-20241.7 KiB6758

drm_trace_points.cD08-May-202474 53

drm_usb.cD08-May-20242.4 KiB12194

drm_vm.cD08-May-202418 KiB677434

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