summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2008-10-31 15:55:44 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2008-10-31 15:55:44 +0000
commit50f4c62bcad2994f324c1fc3d9ebdfb363713a8b (patch)
tree21888fd374fb23aed843f91aee8f888da3c04b32
parentd6e5cc0c828e18043ea403a102965c4dcbd32e6a (diff)
small but compact page for drm; oga can fill the rest in as he goes
ok oga
-rw-r--r--share/man/man4/Makefile4
-rw-r--r--share/man/man4/drm.457
2 files changed, 59 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index bf144fb388e..2620f1be31c 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.466 2008/10/23 17:21:24 deraadt Exp $
+# $OpenBSD: Makefile,v 1.467 2008/10/31 15:55:43 jmc Exp $
MAN= aac.4 ac97.4 acphy.4 \
acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \
@@ -16,7 +16,7 @@ MAN= aac.4 ac97.4 acphy.4 \
cac.4 cas.4 cardbus.4 carp.4 ccd.4 cd.4 cdce.4 cdcef.4 che.4 cfxga.4 \
ch.4 ciphy.4 ciss.4 clcs.4 clct.4 cmpci.4 cnw.4 \
com.4 crypto.4 cue.4 cy.4 cz.4 dc.4 dcphy.4 ddb.4 de.4 dpt.4 \
- drum.4 eap.4 ec.4 eephy.4 ef.4 eg.4 ehci.4 eisa.4 el.4 em.4 \
+ drm.4 drum.4 eap.4 ec.4 eephy.4 ef.4 eg.4 ehci.4 eisa.4 el.4 em.4 \
emu.4 enc.4 envy.4 ep.4 epic.4 esa.4 \
eso.4 ess.4 et.4 etphy.4 ex.4 exphy.4 \
faith.4 fd.4 fdc.4 fins.4 fintek.4 fms.4 fpa.4 fxp.4 gdt.4 \
diff --git a/share/man/man4/drm.4 b/share/man/man4/drm.4
new file mode 100644
index 00000000000..858457c09ce
--- /dev/null
+++ b/share/man/man4/drm.4
@@ -0,0 +1,57 @@
+.\" $OpenBSD: drm.4,v 1.1 2008/10/31 15:55:43 jmc Exp $
+.\"
+.\" Copyright (c) 2008 Jason McIntyre <jmc@openbsd.org>
+.\"
+.\" Permission to use, copy, modify, and distribute this software for any
+.\" purpose with or without fee is hereby granted, provided that the above
+.\" copyright notice and this permission notice appear in all copies.
+.\"
+.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+.Dd $Mdocdate: October 31 2008 $
+.Dt DRM 4
+.Os
+.Sh NAME
+.Nm drm
+.Nd Direct Rendering Manager device
+.Sh SYNOPSIS
+.Cd "inteldrm* at vga?"
+.Cd "radeondrm* at vga?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for hardware accelerated video
+using the Direct Rendering Infrastructure (DRI).
+.Nm
+provides kernel support for DRI,
+and is used in conjunction with the
+.Xr X 7
+DRI module.
+.Pp
+Support is currently available for the following graphics cards:
+.Pp
+.Bl -tag -width "radeon(4)XXX" -offset indent -compact
+.It Xr intel 4
+Intel integrated graphics chipsets
+.It Xr radeon 4
+ATI RADEON video driver
+.El
+.Sh FILES
+.Bl -tag -width "/usr/X11R6/lib/modules/extensions/libdri.soXXX" -compact
+.It /dev/drm0
+DRM device special file.
+.It /usr/X11R6/lib/modules/extensions/libdri.so
+X DRI module.
+.El
+.Sh SEE ALSO
+.Xr vga 4
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 4.3 .