summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2006-03-24 10:31:23 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2006-03-24 10:31:23 +0000
commit99f5f5fd692ef56a3537876641d93cecefb342aa (patch)
treecbee8c73684b6549632138f24c07b95dff16d1be /share
parent2fc3deba3e2d08243b11715eeb6d8e850130aece (diff)
Driver for the serial interface to Qualcomm MSM EVDO modems.
Tested with Verizon Wireless by jolan@ ok dlg@
Diffstat (limited to 'share')
-rw-r--r--share/man/man4/Makefile4
-rw-r--r--share/man/man4/umsm.495
-rw-r--r--share/man/man4/usb.45
3 files changed, 101 insertions, 3 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index a204ee9c3f2..42d255f395c 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.346 2006/03/08 17:45:19 grange Exp $
+# $OpenBSD: Makefile,v 1.347 2006/03/24 10:31:21 jsg Exp $
MAN= aac.4 ac97.4 acphy.4 acpi.4 acpihpet.4 acpitimer.4 \
adc.4 addcom.4 admcts.4 admlc.4 admtemp.4 \
@@ -38,7 +38,7 @@ MAN= aac.4 ac97.4 acphy.4 acpi.4 acpihpet.4 acpitimer.4 \
tlphy.4 tqphy.4 trm.4 trunk.4 tsl.4 tty.4 tun.4 twe.4 txp.4 \
txphy.4 uaudio.4 ubsa.4 ubsec.4 ubt.4 ucom.4 udav.4 udp.4 udsbr.4 \
ueagle.4 uftdi.4 ugen.4 uhci.4 uhid.4 uhidev.4 uipaq.4 uk.4 ukbd.4 \
- ukphy.4 ulpt.4 umass.4 umct.4 umidi.4 umodem.4 ums.4 \
+ ukphy.4 ulpt.4 umass.4 umct.4 umidi.4 umodem.4 ums.4 umsm.4 \
unix.4 upl.4 uplcom.4 urio.4 url.4 urlphy.4 usb.4 \
uscanner.4 usscanner.4 uvisor.4 uvscom.4 uyap.4 vga.4 vgafb.4 vge.4 \
viaenv.4 viapm.4 viasio.4 vic.4 vlan.4 vnd.4 vr.4 watchdog.4 wb.4 \
diff --git a/share/man/man4/umsm.4 b/share/man/man4/umsm.4
new file mode 100644
index 00000000000..ded6c56e449
--- /dev/null
+++ b/share/man/man4/umsm.4
@@ -0,0 +1,95 @@
+.\" $OpenBSD: umsm.4,v 1.1 2006/03/24 10:31:21 jsg Exp $
+.\"
+.\" Copyright (c) 2006 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 March 24, 2006
+.Dt UMSM 4
+.Os
+.Sh NAME
+.Nm umsm
+.Nd Qualcomm MSM EVDO modem driver
+.Sh SYNOPSIS
+.Cd "umsm* at uhub?"
+.Cd "ucom* at uplcom?"
+.Sh DESCRIPTION
+The
+.Nm
+driver supports Qualcomm MSM based EVDO adapters. Typically
+these are actually CardBus cards that incorporate a USB controller
+with the actual device attached to it.
+.Pp
+The following devices known to work with the
+.Nm
+driver:
+.Bd -literal -offset indent
+Kyocera KPC650
+.Ed
+.Pp
+Devices suspected of being compatible are:
+.Bd -literal -offset indent
+Audiovox PC5740
+AirPrime PC5220
+Novatel Merlin V620
+Sierra Wireless AirCard 580
+.Ed
+.Sh EXAMPLES
+An example
+.Pa /etc/ppp/ppp.conf
+configuration for Verizon Wireless might look something like the below,
+see
+.Xr ppp 8
+for more information.
+.Bd -literal -offset indent
+default:
+ set device /dev/cuaU0
+ set speed 230400
+ set dial "ABORT BUSY ABORT NO\\\\sCARRIER TIMEOUT 5 \\
+ \\"\\" AT OK-AT-OK ATE1Q0s7=60 OK \\\\dATDT\\\\T TIMEOUT 40 CONNECT"
+ set phone "#777"
+ set login
+ set authname 4517654321@vzw3g.com
+ set authkey vzw
+ set timeout 120
+ set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
+ add default HISADDR
+ enable dns
+.Ed
+.Pp
+In this example the phone number is (451) 765-4321, replace this with
+the number issued for the card or your phone's number if a handset is being
+used.
+.Sh SEE ALSO
+.Xr ucom 4 ,
+.Xr uhub 4 ,
+.Xr usb 4 ,
+.Xr ppp 8
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Ox 4.0 .
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Jonathan Gray
+.Aq jsg@openbsd.org
+.Sh CAVEATS
+For Verizon Wireless and possibly other services cards require a
+one time activation before they will work,
+.Nm
+does not currently support this.
+.Pp
diff --git a/share/man/man4/usb.4 b/share/man/man4/usb.4
index 25379418f7f..8584f4d56aa 100644
--- a/share/man/man4/usb.4
+++ b/share/man/man4/usb.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: usb.4,v 1.53 2005/12/20 21:47:57 jmc Exp $
+.\" $OpenBSD: usb.4,v 1.54 2006/03/24 10:31:22 jsg Exp $
.\" $NetBSD: usb.4,v 1.15 1999/07/29 14:20:32 augustss Exp $
.\"
.\" Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -171,6 +171,8 @@ MCT USB-RS232 serial adapters.
Modems.
.It Xr uplcom 4
Prolific PL-2303 serial adapters.
+.It Xr umsm 4
+Qualcomm MSM EVDO modems
.It Xr uvscom 4
SUNTAC Slipper U VS-10U serial adapters.
.El
@@ -555,6 +557,7 @@ Human Interface Devices
.Xr umidi 4 ,
.Xr umodem 4 ,
.Xr ums 4 ,
+.Xr umsm 4 ,
.Xr upl 4 ,
.Xr uplcom 4 ,
.Xr ural 4 ,