xref: /freebsd/share/man/man4/ahd.4 (revision 4b2eaea43fec8e8792be611dea204071a10b655a)
1.\"
2.\" Copyright (c) 1995, 1996, 1997, 1998, 2000
3.\" 	Justin T. Gibbs.  All rights reserved.
4.\" Copyright (c) 2002
5.\"	Scott Long.  All rights reserved.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\"    notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\"    notice, this list of conditions and the following disclaimer in the
14.\"    documentation and/or other materials provided with the distribution.
15.\" 3. The name of the author may not be used to endorse or promote products
16.\"    derived from this software without specific prior written permission.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28.\"
29.\" $FreeBSD$
30.\"
31.Dd September 1, 2002
32.Dt AHD 4
33.Os
34.Sh NAME
35.Nm ahd
36.Nd Adaptec PCI/PCI-X Ultra320 SCSI host adapter driver
37.Sh SYNOPSIS
38For one or more PCI/PCI-X cards:
39.Bd -ragged -offset indent -compact
40.Cd device pci
41.Cd device ahd
42.Ed
43.Pp
44To compile in debugging code:
45.Bd -ragged -offset indent -compact
46.Cd options AHD_DEBUG
47.Cd options AHD_DEBUG_OPTS=<bitmask of options>
48.Cd options AHD_REG_PRETTY_PRINT
49.Ed
50.Pp
51To configure one or more controllers to assume the target role:
52.Bd -ragged -offset indent -compact
53.Cd options AHD_TMODE_ENABLE=<bitmask of units>
54.Ed
55.Pp
56For one or more
57.Tn SCSI
58busses:
59.Bd -ragged -offset indent -compact
60.Cd device scbus
61.Ed
62.Sh DESCRIPTION
63This driver provides access to the
64.Tn SCSI
65bus(es) connected to Adaptec
66.Tn AIC7901
67and
68.Tn AIC7902
69host adapter chips.
70These chips are found on many motherboards as well as the
71.Tn 29320
72and
73.Tn 39320
74Adaptec
75.Tn SCSI
76controller cards.
77.Pp
78Driver features include support for narrow and wide busses,
79fast, ultra, ultra2, ultra160, and ultra320 synchronous transfers,
80packetized transfers, tagged queueing, 512 SCB's, and target mode.
81.Pp
82The
83.Dv AHD_DEBUG_OPTS
84option is used to control which diagnostic messages are printed to the
85console when
86.Dv AHD_DEBUG
87is enabled.
88Logically OR the following bits together:
89.Bl -column -offset indent Value Function
90.Em "Value	Function"
910x0001	Show miscellaneous information
920x0002	Show sense data
930x0004	Show Serial EEPROM contents
940x0008	Show bus termination settings
950x0010	Show host memory usage
960x0020	Show SCSI protocol messages
970x0040	Show mode pointer of the chip register window
980x0080	Show selection timeouts
990x0100	Show FIFO usage messages
1000x0200	Show Queue Full status
1010x0400	Show SCB queue status
1020x0800	Show inbound packet information
1030x1000	Show S/G list information
1040x2000	Enable extra diagnostic code in the firmware
105.El
106.Pp
107The
108.Dv AHD_REG_PRETTY_PRINT
109option compiles in support for human-readable bit definitions for each register
110that is printed by the debugging code.
111However, it also bloats the compiled
112size of the driver by approximately 215KB.
113.Pp
114Individual controllers may be configured to operate in the target role
115through the
116.Dv AHD_TMODE_ENABLE
117configuration option.
118The value assigned to this option should be a bitmap
119of all units where target mode is desired.
120For example, a value of 0x25 would enable target mode on units 0, 2, and 5.
121Note that target mode is only supported for ultra160 speeds and below.
122.Pp
123Per target configuration performed in the
124.Tn SCSI-Select
125menu, accessible at boot,
126is honored by this driver.
127This includes synchronous/asynchronous transfers,
128maximum synchronous negotiation rate,
129wide transfers,
130disconnection,
131and the host adapter's
132.Tn SCSI
133ID.
134.Sh BUGS
135The current generation of 79xx chips do not support target mode in Ultra320
136mode.
137Target mode in general has not been well tested in this driver.
138.Sh SEE ALSO
139.Xr ahc 4 ,
140.Xr cd 4 ,
141.Xr da 4 ,
142.Xr sa 4 ,
143.Xr scsi 4
144.Sh AUTHORS
145The
146.Nm
147driver, the
148.Tn AIC7xxx
149sequencer-code assembler,
150and the firmware running on the aic79xx chips was written by
151.An Justin T. Gibbs .
152This manual page is based on the
153.Xr ahc 4
154manual page.
155.Sh HISTORY
156The
157.Nm
158driver first appeared in
159.Fx 4.7 .
160