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

..--

Config.inD01-Feb-2010490 1412

MakefileD01-Feb-20101.6 KiB6140

README.drmD01-Feb-20101.8 KiB4733

agpsupport.cD01-Feb-201010.8 KiB348274

auth.cD01-Feb-20104.4 KiB163112

bufs.cD01-Feb-201014.2 KiB544446

context.cD01-Feb-20108.7 KiB322219

ctxbitmap.cD01-Feb-20102.5 KiB8646

dma.cD01-Feb-201013.7 KiB547427

drawable.cD01-Feb-20101.9 KiB5217

drm.hD01-Feb-201015.5 KiB415303

drmP.hD01-Feb-201029.1 KiB837660

ffb_context.cD01-Feb-201017.1 KiB541388

ffb_drv.cD01-Feb-201024.2 KiB952748

ffb_drv.hD01-Feb-201010.6 KiB277208

fops.cD01-Feb-20107.6 KiB254166

gamma_dma.cD01-Feb-201021 KiB837658

gamma_drv.cD01-Feb-201015.3 KiB573437

gamma_drv.hD01-Feb-20102.5 KiB5922

i810_bufs.cD01-Feb-20109 KiB340263

i810_context.cD01-Feb-20106.1 KiB213145

i810_dma.cD01-Feb-201037 KiB1,4341,107

i810_drm.hD01-Feb-20106.3 KiB195122

i810_drv.cD01-Feb-201018.4 KiB650511

i810_drv.hD01-Feb-20108.2 KiB226156

init.cD01-Feb-20103.6 KiB11447

ioctl.cD01-Feb-20103.2 KiB10057

lists.cD01-Feb-20105.6 KiB219158

lock.cD01-Feb-20106.6 KiB253172

memory.cD01-Feb-201011.7 KiB449359

mga_bufs.cD01-Feb-201016.6 KiB630508

mga_context.cD01-Feb-20106 KiB210142

mga_dma.cD01-Feb-201029 KiB1,052837

mga_drm.hD01-Feb-20108.5 KiB275168

mga_drv.cD01-Feb-201018.6 KiB667527

mga_drv.hD01-Feb-201019 KiB521437

mga_state.cD01-Feb-201028.1 KiB1,018769

proc.cD01-Feb-201016.7 KiB579479

r128_bufs.cD01-Feb-20108.6 KiB320240

r128_cce.cD01-Feb-201033.6 KiB1,254887

r128_context.cD01-Feb-20106.1 KiB218147

r128_drm.hD01-Feb-20107 KiB273168

r128_drv.cD01-Feb-201020.2 KiB701545

r128_drv.hD01-Feb-201015.4 KiB470345

r128_state.cD01-Feb-201038.1 KiB1,6181,220

radeon_bufs.cD01-Feb-20108.7 KiB313235

radeon_context.cD01-Feb-20106.1 KiB216145

radeon_cp.cD01-Feb-201034.7 KiB1,315990

radeon_drm.hD01-Feb-20108.5 KiB326211

radeon_drv.cD01-Feb-201020.4 KiB704546

radeon_drv.hD01-Feb-201024.2 KiB710559

radeon_state.cD01-Feb-201037.6 KiB1,4481,046

tdfx_context.cD01-Feb-20106.2 KiB220147

tdfx_drv.cD01-Feb-201019.8 KiB694538

tdfx_drv.hD01-Feb-20103 KiB6829

vm.cD01-Feb-201010.6 KiB373279

README.drm

1************************************************************
2* For the very latest on DRI development, please see:      *
3*     http://dri.sourceforge.net/                          *
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://precisioninsight.com/piinsights.html
30
31For specific information about kernel-level support, see:
32
33    The Direct Rendering Manager, Kernel Support for the Direct Rendering
34    Infrastructure
35    http://precisioninsight.com/dr/drm.html
36
37    Hardware Locking for the Direct Rendering Infrastructure
38    http://precisioninsight.com/dr/locking.html
39
40    A Security Analysis of the Direct Rendering Infrastructure
41    http://precisioninsight.com/dr/security.html
42
43************************************************************
44* For the very latest on DRI development, please see:      *
45*     http://dri.sourceforge.net/                          *
46************************************************************
47