xref: /dragonfly/share/man/man4/drm.4 (revision 73610d44)
1.\"	$NetBSD: drm.4,v 1.7 2009/05/12 08:16:46 wiz Exp $
2.\"
3.\" Copyright (c) 2007 Thomas Klausner
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\"
15.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25.\"
26.Dd October 27, 2015
27.Dt DRM 4
28.Os
29.Sh NAME
30.Nm drm
31.Nd Direct Rendering Manager (DRI kernel support)
32.Sh DESCRIPTION
33The
34.Tn Direct Rendering Manager
35is part of the
36.Tn Direct Rendering Infrastructure
37(see
38.Pa http://dri.freedesktop.org/ )
39for supporting video acceleration.
40.Pp
41The
42.Nm
43drivers provide support for the following chipsets:
44.Bl -column -offset indent ".Sy ModuleXXX" ".Sy Kernel option" ".Sy Chipset"
45.It Sy Module Ta Sy "Kernel option" Ta Sy Chipset
46.It Pa i915kms.ko Ta n/a Ta Intel i915, i945, i965, G3x, G4x
47.It Pa radeonkms.ko Ta n/a Ta AMD Radeon
48.El
49.Pp
50In most cases
51.Xr Xorg 1
52will take care of loading the appropriate modules and it is not necessary to
53modify
54.Xr loader.conf 5
55or the kernel configuration to enable
56.Nm
57support.
58.Pp
59Newer versions of
60.Xr Xorg 1 ,
61like the one from
62.Xr dports 7 ,
63do a pretty good job of figuring out the right configuration on their own,
64so having no
65.Xr xorg.conf 5
66file at all is usually the best advice.
67If for some reason an
68.Xr xorg.conf 5
69is preferred, DRI must be enabled:
70.Bd -literal
71Section "DRI"
72        Group "wheel"
73        Mode 0660
74EndSection
75.Ed
76.Pp
77With KMS, DRI is always enabled since the
78.Nm
79is always required.
80.\".Pp
81.\"In order to use two graphics cards (an on-board and another
82.\"AGP/PCI/PCIe card) with DRI, a
83.\".Pa /dev/dri/card1
84.\"link to
85.\".Pa /dev/dri/card0
86.\"has to be created using
87.\".Xr devfsctl 8 .
88.Pp
89If
90.Xr Xorg 1
91acceleration fails to initialize with a
92.Dq contigmalloc_map: failed size...
93error in dmesg, the reserve of memory for DMA ran out early and should
94be increased to a sufficiently high value by setting the
95.Va vm.dma_reserved
96loader tunable.
97A read only
98.Xr sysctl 8
99variable of the same name is provided for obtaining its current value.
100.Sh SYSCTL VARIABLES
101Debugging output can be enabled and disabled by setting the
102.Xr sysctl 8
103node
104.Va hw.dri.debug .
105.Pp
106The
107.Va hw.dri.vblank_offdelay
108variable specifies the delay (in milliseconds) until the vblank
109interrupt is disabled again when it's no longer needed.
110(0 = never disable, negative value = disable immediately)
111.Sh SEE ALSO
112.Xr Xorg 1 ,
113.Xr i915kms 4 ,
114.Xr radeonkms 4 ,
115.Xr xorg.conf 5
116.Sh HISTORY
117DRM was first available for Linux.
118Subsequently Eric Anholt ported the DRM kernel modules to
119.Fx .
120.Sh CAVEATS
121Disable AIGLX if necessary
122.Pq Pa xorg.conf :
123.Bd -literal -offset indent
124Section "ServerFlags"
125        Option  "AIGLX" "off"
126EndSection
127.\"
128.\"Section "Extensions"
129.\"        Option "Composite" "Disable"
130.\"EndSection
131.Ed
132.Pp
133.Cd options DRM_DEBUG
134can slow DRI down a lot, disable it once
135.Nm
136works.
137