• Home
Name Date Size #Lines LOC

..--

i810/08-May-2024-1,6341,189

i830/08-May-2024-2,1521,567

i915/08-May-2024-21,99715,191

mga/08-May-2024-15,37110,678

r128/08-May-2024-3,6062,582

radeon/08-May-2024-12,6299,579

savage/08-May-2024-2,9352,251

sis/08-May-2024-537340

tdfx/08-May-2024-14257

via/08-May-2024-5,6264,234

KconfigD08-May-20244.1 KiB125110

MakefileD08-May-2024937 2920

README.drmD08-May-20241.7 KiB4431

ati_pcigart.cD08-May-20244.9 KiB182122

drm_agpsupport.cD08-May-202413 KiB507278

drm_auth.cD08-May-20245.6 KiB19285

drm_bufs.cD08-May-202443.2 KiB1,6191,190

drm_cache.cD08-May-20242.1 KiB7031

drm_context.cD08-May-202411.6 KiB470212

drm_crtc.cD08-May-202462.3 KiB2,4501,669

drm_crtc_helper.cD08-May-202425.5 KiB983633

drm_dma.cD08-May-20244.6 KiB18196

drm_drawable.cD08-May-20245.4 KiB202125

drm_drv.cD08-May-202417.1 KiB546342

drm_edid.cD08-May-202421.5 KiB733463

drm_fops.cD08-May-202414.3 KiB556351

drm_gem.cD08-May-202414.8 KiB564323

drm_hashtab.cD08-May-20245.3 KiB205147

drm_ioc32.cD08-May-202432.7 KiB1,108877

drm_ioctl.cD08-May-20249.2 KiB360199

drm_irq.cD08-May-202417.1 KiB637358

drm_lock.cD08-May-202410.8 KiB393224

drm_memory.cD08-May-20245.3 KiB194110

drm_mm.cD08-May-20247.3 KiB300199

drm_modes.cD08-May-202414.4 KiB577301

drm_pci.cD08-May-20244.9 KiB184102

drm_proc.cD08-May-202419.6 KiB734502

drm_scatter.cD08-May-20245.8 KiB228149

drm_sman.cD08-May-20248.9 KiB354249

drm_stub.cD08-May-202411.2 KiB462308

drm_sysfs.cD08-May-202413.8 KiB532335

drm_vm.cD08-May-202418.3 KiB677433

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