diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2006-10-26 08:37:15 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2006-10-26 08:37:15 +0000 |
commit | ab1eba7ede322f6bbea366ce24d7ea103d703d23 (patch) | |
tree | 4d2dfbf5921c9d2b22b9d657e94f5bf932cdbf49 /share/man/man4/man4.i386 | |
parent | 6cd44b05b739b43cf54f14cbd77d1b935a9157b1 (diff) |
Driver for the AMD Geode LX series processor security block.
Currently just uses the RNG; AES support to be added later.
ok deraadt@
Diffstat (limited to 'share/man/man4/man4.i386')
-rw-r--r-- | share/man/man4/man4.i386/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/man4.i386/glxsb.4 | 55 |
2 files changed, 57 insertions, 2 deletions
diff --git a/share/man/man4/man4.i386/Makefile b/share/man/man4/man4.i386/Makefile index 5b2c0d55829..e0488e57bc9 100644 --- a/share/man/man4/man4.i386/Makefile +++ b/share/man/man4/man4.i386/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.57 2006/09/21 14:13:37 jmc Exp $ +# $OpenBSD: Makefile,v 1.58 2006/10/26 08:37:14 tom Exp $ # from: @(#)Makefile 5.1 (Berkeley) 2/12/91 # Id: Makefile,v 1.4 1995/12/14 05:41:38 deraadt Exp $ MAN= apm.4 autoconf.4 bios.4 cpu.4 elansc.4 esm.4 \ - geodesc.4 gscpcib.4 gscpm.4 gus.4 ie.4 \ + geodesc.4 glxsb.4 gscpcib.4 gscpm.4 gus.4 ie.4 \ ichpcib.4 intro.4 \ joy.4 le.4 lms.4 mcd.4 mem.4 mms.4 mtrr.4 npx.4 nvram.4 pas.4 \ pcibios.4 pctr.4 pss.4 sb.4 \ diff --git a/share/man/man4/man4.i386/glxsb.4 b/share/man/man4/man4.i386/glxsb.4 new file mode 100644 index 00000000000..cb9cb59557e --- /dev/null +++ b/share/man/man4/man4.i386/glxsb.4 @@ -0,0 +1,55 @@ +.\" $OpenBSD: glxsb.4,v 1.1 2006/10/26 08:37:14 tom Exp $ +.\" +.\"Copyright (c) 2006 Tom Cosgrove <tom@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 October 25, 2006 +.Dt GLXSB 4 i386 +.Os +.Sh NAME +.Nm glxsb +.Nd Geode LX Security Block device +.Sh SYNOPSIS +.Cd "glxsb* at pci?" +.Sh DESCRIPTION +The +.Nm +driver supports the security block of the Geode LX series processors. +.Pp +The Geode LX is a member of the AMD Geode family +of integrated x86 system chips. +.Pp +Driven by periodic checks for available data from the generator, +.Nm +supplies entropy to the +.Xr random 4 +driver for common usage. +.Sh SEE ALSO +.Xr random 4 +.Sh HISTORY +Support for the +.Nm +was added in +.Ox 4.1 . +.Sh AUTHORS +The +.Nm +driver was written by +.An Tom Cosgrove . +.Sh BUGS +The +.Nm +driver does not yet use the AES acceleration provided by the security block; +it only uses the random number generator. |