diff options
author | fjoe <fjoe@FreeBSD.org> | 2003-04-13 06:13:47 +0000 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2003-04-13 06:13:47 +0000 |
commit | 171e2e781e808154dd25f6a560b293f3a4780a7d (patch) | |
tree | 012df225654485f4deb701970b5e0c33421463ee /share | |
parent | 227f7746c40cbcd9836592987094174c1cc11b90 (diff) | |
download | FreeBSD-src-171e2e781e808154dd25f6a560b293f3a4780a7d.zip FreeBSD-src-171e2e781e808154dd25f6a560b293f3a4780a7d.tar.gz |
manual page for Granch SBNI12-xx network interface driver
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/man4.i386/Makefile | 3 | ||||
-rw-r--r-- | share/man/man4/man4.i386/sbni.4 | 100 |
2 files changed, 102 insertions, 1 deletions
diff --git a/share/man/man4/man4.i386/Makefile b/share/man/man4/man4.i386/Makefile index 42ae6c9..9ac5fe7 100644 --- a/share/man/man4/man4.i386/Makefile +++ b/share/man/man4/man4.i386/Makefile @@ -6,12 +6,13 @@ MAN= aic.4 alpm.4 amdpm.4 apm.4 ar.4 asc.4 asr.4 \ ie.4 io.4 le.4 linux.4 lnc.4 longrun.4 mcd.4 \ meteor.4 mse.4 npx.4 \ pae.4 pcf.4 perfmon.4 pnp.4 pnpbios.4 \ - ray.4 rdp.4 smapi.4 scd.4 \ + ray.4 rdp.4 sbni.4 smapi.4 scd.4 \ spkr.4 sr.4 streams.4 svr4.4 tw.4 \ tx.4 viapm.4 vpd.4 vx.4 \ wd.4 wl.4 wt.4 MLINKS= spkr.4 speaker.4 +MLINKS+=sbni.4 if_sbni.4 MANSUBDIR=/i386 diff --git a/share/man/man4/man4.i386/sbni.4 b/share/man/man4/man4.i386/sbni.4 new file mode 100644 index 0000000..b7d4fa5 --- /dev/null +++ b/share/man/man4/man4.i386/sbni.4 @@ -0,0 +1,100 @@ +.\" Written by Denis I. Timofeev, 2002. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd January 8, 2002 +.Dt SBNI 4 i386 +.Os FreeBSD +.Sh NAME +.Nm sbni +.Nd Granch SBNI12 leased line modem driver +.Sh SYNOPSIS +.Cd "device sbni" +.Sh DESCRIPTION +The +.Nm sbni +driver provides support for leased line modems of following models: +.Pp +.Bl -tag -compact +.It Pa SBNI12-02, SBNI12D-02 +.It Pa SBNI12-04, SBNI12D-04 +.It Pa SBNI12-05, SBNI12D-05, ISA and PCI +.It Pa SBNI12-10, SBNI12D-10, ISA and PCI +.El +.Pp +and a kit for data link over a voice band +SBNI12-11, SBNI12D-11, ISA and PCI. +.Pp +In addition to the standard port and irq specifications, the +.Nm +driver also supports a number of +.Em flags +which can set baud rate, receive level, and low three bytes of Ethernet +MAC-address (high three always are 00:ff:01), because Granch modems is +presented to the system as Ethernet-like netcards. +.Pp +The high byte of the +.Em flags +is a bit field, it's used to specify SBNI adapter receive level/baud rate: +.Bd -literal + Bits 0-3: receive level (0x00..0x0f) + Bits 4-5: baud rate number: + 00 - 0 baud rate (2Mb in fast mode/500kb in slow) + 01 - 1 baud rate (1Mb/250kb) + 10 - 2 baud rate (500kb/125kb) + 11 - 3 baud rate (250kb/62.5kb) + Bit 6 : use fixed receive level + if bit 6 is set then receive level will be set according + to bits 0-3 value, otherwise receive level will be + autodetected + Bit 7 : use fixed baud rate + if bit 7 is set then baud rate will be set according to + bits 4-5 value, otherwise baud rate is set to 2Mb +.Sh FILES +The sources for the driver reside in: +.Pp +.Bl -tag -compact +.It Pa /sys/dev/sbni/if_sbni.c +.It Pa /sys/dev/sbni/if_sbnireg.h +.It Pa /sys/dev/sbni/if_sbnivar.h +.El +.Sh SEE ALSO +.Xr arp 4 , +.Xr netintro 4 , +.Xr ifconfig 8 +.Sh HISTORY +The +.Nm +device driver first appeared in +.Fx 4.6 . +.Sh AUTHORS +The +.Nm sbni +device driver for FreeBSD 4.x was written by Denis I. Timofeev, partially +based on David Greenman's +.Nm ed +driver. Earlier versions (available on ftp.granch.com) were written by +Alexey V. Zverev. +.Pp +SBNI12 hardware was designed by Alexey V. Chirkov. |