summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorKevin Lo <kevlo@cvs.openbsd.org>2009-08-08 09:31:14 +0000
committerKevin Lo <kevlo@cvs.openbsd.org>2009-08-08 09:31:14 +0000
commit83ab7e56bf952618cc4b6be261bd55f336429363 (patch)
treeee25e9ca975e09679d964f3f317057bef06e66da /share
parent780d388b8551164040e67bbe4eb39012923fea4e (diff)
alc(4) is a driver for the Atheros AR8131/AR8132 ethernet chip.
this driver was written by Pyun YongHyeon from FreeBSD. "go ahead" deraadt@
Diffstat (limited to 'share')
-rw-r--r--share/man/man4/Makefile4
-rw-r--r--share/man/man4/alc.485
-rw-r--r--share/man/man4/pci.46
3 files changed, 91 insertions, 4 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index 8098ef94381..0f2867ec33a 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.486 2009/07/23 21:20:05 jmc Exp $
+# $OpenBSD: Makefile,v 1.487 2009/08/08 09:31:13 kevlo Exp $
MAN= aac.4 ac97.4 acphy.4 \
acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \
acpiec.4 acpihpet.4 acpimadt.4 acpiprt.4 acpipwrres.4 \
acpithinkpad.4 acpitimer.4 acpivideo.4 acpivout.4 \
acpitz.4 acx.4 adc.4 addcom.4 adl.4 admcts.4 admlc.4 admtemp.4 \
- admtm.4 admtmp.4 admtt.4 adt.4 adtfsm.4 adv.4 age.4 ale.4 agp.4 \
+ admtm.4 admtmp.4 admtt.4 adt.4 adtfsm.4 adv.4 age.4 alc.4 ale.4 agp.4 \
aha.4 ahb.4 ahc.4 ahci.4 ahd.4 aibs.4 aic.4 \
akbd.4 alipm.4 amas.4 amdiic.4 amdpm.4 ami.4 amphy.4 \
ams.4 an.4 andl.4 aps.4 arc.4 aria.4 art.4 \
diff --git a/share/man/man4/alc.4 b/share/man/man4/alc.4
new file mode 100644
index 00000000000..7334cd59413
--- /dev/null
+++ b/share/man/man4/alc.4
@@ -0,0 +1,85 @@
+.\" $OpenBSD: alc.4,v 1.1 2009/08/08 09:31:13 kevlo Exp $
+.\"
+.\" Copyright (c) 2009 Kevin Lo <kevlo@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: August 8 2009 $
+.Dt ALC 4
+.Os
+.Sh NAME
+.Nm alc
+.Nd Atheros AR8131/AR8132 10/100/Gigabit Ethernet device
+.Sh SYNOPSIS
+.Cd "alc* at pci?"
+.Cd "atphy* at mii?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for Ethernet interfaces based on the
+Atheros AR8131/AR8132 Ethernet chipset, also known as
+the Attansic L1C/L2C respectively.
+.Pp
+The
+.Nm
+driver supports IPv4 receive IP/TCP/UDP checksum offload and VLAN
+tag insertion and stripping.
+.Pp
+The following
+.Ar media
+types are supported:
+.Pp
+.Bl -tag -width autoselect -compact
+.It Cm autoselect
+Enable autoselection of the media type and options.
+.It Cm 10baseT
+Set 10Mbps operation.
+.It Cm 100baseTX
+Set 100Mbps (Fast Ethernet) operation.
+.It Cm 1000baseT
+Set 1000Mbps (Gigabit Ethernet) operation.
+.El
+.Pp
+For more information on configuring this device, see
+.Xr ifconfig 8 .
+To view a list of media types and options supported by the card, try
+.Ic ifconfig <device> media .
+For example,
+.Ic ifconfig alc0 media .
+.Sh SEE ALSO
+.Xr arp 4 ,
+.Xr atphy 4 ,
+.Xr ifmedia 4 ,
+.Xr intro 4 ,
+.Xr netintro 4 ,
+.Xr pci 4 ,
+.Xr hostname.if 5 ,
+.Xr ifconfig 8
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Ox 4.5 .
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Pyun YongHyeon
+for
+.Fx
+and ported to
+.Ox
+by
+.An Kevin Lo
+.Aq kevlo@openbsd.org .
diff --git a/share/man/man4/pci.4 b/share/man/man4/pci.4
index a66da48ec7c..cf6915b7d9f 100644
--- a/share/man/man4/pci.4
+++ b/share/man/man4/pci.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: pci.4,v 1.273 2009/07/26 13:24:39 kettenis Exp $
+.\" $OpenBSD: pci.4,v 1.274 2009/08/08 09:31:13 kevlo Exp $
.\" $NetBSD: pci.4,v 1.29 2000/04/01 00:32:23 tsarna Exp $
.\"
.\" Copyright (c) 2000 Theo de Raadt. All rights reserved.
@@ -31,7 +31,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: July 26 2009 $
+.Dd $Mdocdate: August 8 2009 $
.Dt PCI 4
.Os
.Sh NAME
@@ -163,6 +163,8 @@ LSI Logic & Dell MegaRAID SAS RAID controller
.Bl -tag -width 10n -offset ind -compact
.It Xr age 4
Attansic L1 10/100/Gigabit Ethernet device
+.It Xr alc 4
+Atheros AR8131/AR8132 10/100/Gigabit Ethernet device
.It Xr ale 4
Atheros AR8121/AR8113/AR8114 10/100/Gigabit Ethernet device
.It Xr art 4