freebsd-dev/sys/dev/aic7xxx/aic7xxx_asm.1
Justin T. Gibbs 3cddb2a3e2 John Aycock's BSD copyrighted sequencer assembler and sequencer code. This
is identical to the older version, just the copyright has changed.  Many
thanks go to Dean Gehnert of the Linux camp who went the extra mile to make
this happen.

Other changes:

Update assembler man page to include the -v and -D options

Merge in Dean's latest changes to the assembler

Have the sequencer do a MSG_REJECT when the negotiated syncronous rate
is lower than the adapter supports.  This forces asyncronous mode which
is faster at these rates anyway.

This code will be moved shortly to the non-gpld portion of the tree.
1995-04-15 21:45:56 +00:00

71 lines
2.6 KiB
Groff

.\" Copyright (c) 1994, 1995
.\" Justin T. Gibbs. All rights reserved.
.\"
.\" 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.
.\" 3. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
.\"
.\"
.Dd November 11, 1994
.Dt AIC7XXX_ASM 1
.Os BSD 4
.Sh NAME
.Nm aic7xxx_asm
.Nd Assembler for the Adaptec aic7xxx family of asics
.Sh SYNOPSIS
.Nm aic7xxx_asm
.Op Fl d
.Op Fl D Ar variable=value
.Op Fl v
.Op Fl o Ar file
.Ar source-file
.Sh DESCRIPTION
The Adaptec aic7xxx family of asics are single chip SCSI controllers with a
RISC like command processor. This assembler parses the language outlined
in the Adaptec technical document
.%T "AIC-7770 (EISA/ISA Bus Master Single-Chip SCSI Host Adaptor) Data Book"
and produces ascii output intended for a C byte array.
.Pp
The aic7xxx assembler is required to compile kernels with aic7xxx SCSI
adaptor support (AHA-274x, AHA-284x, AHA-294x controllers) and is compiled,
installed, and used automatically in the kernel compile directory when
necessary.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl D Ar variable=value
Define
.Ar variable
to be
.Ar value
in the global context
.It Fl d
Turn on debugging
.It Fl v
Print version information
.It Fl o Ar file
Redirect assembler output to
.Ar file
.Pp
.Sh AUTHOR
This aic7770 assembler was written by
John Aycock (aycock@cpsc.ucalgary.ca)