summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2007-10-07 14:57:17 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2007-10-07 14:57:17 +0000
commiteacee2a399020294ebf22ae5dbb806477c8e6f51 (patch)
tree56949798c14a2d94c3c2b6b3da1f8bed1093820a /share
parent7d92b70afc5f7262e20f6e1eb0639d74d9c8c0a5 (diff)
Port of Nicolas Joly, Paul Goyette & Tobias Nygren's
spdmem(4) driver for Serial Presence Detect memory information.
Diffstat (limited to 'share')
-rw-r--r--share/man/man4/Makefile5
-rw-r--r--share/man/man4/iic.46
-rw-r--r--share/man/man4/spdmem.450
3 files changed, 57 insertions, 4 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index f1b7208a1f4..e823807b820 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.429 2007/09/15 06:50:04 mglocker Exp $
+# $OpenBSD: Makefile,v 1.430 2007/10/07 14:57:16 jsg Exp $
MAN= aac.4 ac97.4 acphy.4 \
acpi.4 acpiac.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \
@@ -42,7 +42,8 @@ MAN= aac.4 ac97.4 acphy.4 \
rtfps.4 rtii.4 rtw.4 safe.4 safte.4 san.4 sbt.4 sbus.4 scsi.4 sd.4 \
sdmmc.4 sdhc.4 ses.4 \
sequencer.4 sf.4 sf2r.4 sfr.4 sili.4 siop.4 sis.4 sk.4 sl.4 sli.4 \
- sm.4 softraid.4 speaker.4 sppp.4 sqphy.4 ss.4 st.4 ste.4 stge.4 sti.4 \
+ sm.4 softraid.4 spdmem.4 speaker.4 sppp.4 sqphy.4 \
+ ss.4 st.4 ste.4 stge.4 sti.4 \
stp.4 sv.4 systrace.4 tcic.4 tcp.4 termios.4 tht.4 ti.4 tl.4 \
tlphy.4 thmc.4 tqphy.4 trm.4 trunk.4 tsl.4 tty.4 tun.4 twe.4 txp.4 \
txphy.4 uaudio.4 uark.4 uath.4 uberry.4 ubsa.4 ubsec.4 ubt.4 \
diff --git a/share/man/man4/iic.4 b/share/man/man4/iic.4
index 9b13023fe1d..05b9dc2a7a4 100644
--- a/share/man/man4/iic.4
+++ b/share/man/man4/iic.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iic.4,v 1.62 2007/09/09 15:59:47 deraadt Exp $
+.\" $OpenBSD: iic.4,v 1.63 2007/10/07 14:57:16 jsg Exp $
.\"
.\" Copyright (c) 2004, 2006 Alexander Yurchenko <grange@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: September 9 2007 $
+.Dd $Mdocdate: October 7 2007 $
.Dt IIC 4
.Os
.Sh NAME
@@ -150,6 +150,8 @@ Philips PCA9532 LED dimmer
Philips PCF8591 temperature sensor
.It Xr ricohrtc 4
Ricoh RS5C372 Real Time Clock
+.It Xr spdmem 4
+Serial Presence Detect memory
.It Xr thmc 4
TI THMC50, Analog ADM1022/1028 temperature sensor
.It Xr tsl 4
diff --git a/share/man/man4/spdmem.4 b/share/man/man4/spdmem.4
new file mode 100644
index 00000000000..008506f97f9
--- /dev/null
+++ b/share/man/man4/spdmem.4
@@ -0,0 +1,50 @@
+.\" $OpenBSD: spdmem.4,v 1.1 2007/10/07 14:57:16 jsg Exp $
+.\"
+.\" Copyright (c) 2007 Jonathan Gray <jsg@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 7 2007 $
+.Dt SPDMEM 4
+.Os
+.Sh NAME
+.Nm spdmem
+.Nd Serial Presence Detect memory
+.Sh SYNOPSIS
+.Cd "spdmem* at iic?"
+.Sh DESCRIPTION
+The
+.Nm
+driver retrieves information about memory modules from an
+onboard EEPROM, standardised as JEDEC 21-C.
+.Sh SEE ALSO
+.Xr iic 4
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Ox 4.3 .
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Nicolas Joly ,
+.An Paul Goyette ,
+and
+.An Tobias Nygren
+and ported to
+.Ox
+by
+.An Jonathan Gray
+.Aq jsg@openbsd.org .