xref: /freebsd/share/man/man4/mpr.4 (revision fed1ca4b719c56c930f2259d80663cd34be812bb)
1.\"
2.\" Copyright (c) 2010 Spectra Logic Corporation
3.\" Copyright (c) 2014 LSI Corp
4.\" Copyright (c) 2016 Avago Technologies
5.\" Copyright (c) 2016 Broadcom Ltd.
6.\" All rights reserved.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\"    notice, this list of conditions, and the following disclaimer,
13.\"    without modification.
14.\" 2. Redistributions in binary form must reproduce at minimum a disclaimer
15.\"    substantially similar to the "NO WARRANTY" disclaimer below
16.\"    ("Disclaimer") and any redistribution must be conditioned upon
17.\"    including a substantially similar Disclaimer requirement for further
18.\"    binary redistribution.
19.\"
20.\" NO WARRANTY
21.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22.\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23.\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
24.\" A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25.\" HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30.\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31.\" POSSIBILITY OF SUCH DAMAGES.
32.\"
33.\" mpr driver man page.
34.\"
35.\" Author: Ken Merry <ken@FreeBSD.org>
36.\" Author: Stephen McConnell <slm@FreeBSD.org>
37.\"
38.\" $Id$
39.\" $FreeBSD$
40.\"
41.Dd April 29, 2016
42.Dt MPR 4
43.Os
44.Sh NAME
45.Nm mpr
46.Nd "LSI Fusion-MPT 3 IT/IR 12Gb/s Serial Attached SCSI/SATA driver"
47.Sh SYNOPSIS
48To compile this driver into the kernel, place these lines in the kernel
49configuration file:
50.Bd -ragged -offset indent
51.Cd "device pci"
52.Cd "device scbus"
53.Cd "device mpr"
54.Ed
55.Pp
56The driver can be loaded as a module at boot time by placing this line in
57.Xr loader.conf 5 :
58.Bd -literal -offset indent
59mpr_load="YES"
60.Ed
61.Sh DESCRIPTION
62The
63.Nm
64driver provides support for Broadcom Ltd./Avago Tech (LSI)
65Fusion-MPT 3 IT/IR
66.Tn SAS
67controllers.
68.Sh HARDWARE
69These controllers are supported by the
70.Nm
71driver:
72.Pp
73.Bl -bullet -compact
74.It
75Broadcom Ltd./Avago Tech (LSI) SAS 3004 (4 Port SAS)
76.It
77Broadcom Ltd./Avago Tech (LSI) SAS 3008 (8 Port SAS)
78.It
79Broadcom Ltd./Avago Tech (LSI) SAS 3108 (8 Port SAS)
80.It
81Broadcom Ltd./Avago Tech (LSI) SAS 3216 (16 Port SAS)
82.It
83Broadcom Ltd./Avago Tech (LSI) SAS 3224 (24 Port SAS)
84.El
85.Sh CONFIGURATION
86.Pp
87In all tunable descriptions below, X represents the adapter number.
88.Pp
89To disable MSI interrupts for all
90.Nm
91driver instances, set this tunable value in
92.Xr loader.conf 5 :
93.Bd -literal -offset indent
94hw.mpr.disable_msi=1
95.Ed
96.Pp
97To disable MSI interrupts for a specific
98.Nm
99driver instance, set this tunable value in
100.Xr loader.conf 5 :
101.Bd -literal -offset indent
102dev.mpr.X.disable_msi=1
103.Ed
104.Pp
105To disable MSI-X interrupts for all
106.Nm
107driver instances, set this tunable value in
108.Xr loader.conf 5 :
109.Bd -literal -offset indent
110hw.mpr.disable_msix=1
111.Ed
112.Pp
113To disable MSI-X interrupts for a specific
114.Nm
115driver instance, set this tunable value in
116.Xr loader.conf 5 :
117.Bd -literal -offset indent
118dev.mpr.X.disable_msix=1
119.Ed
120.Pp
121To set the maximum number of DMA chains allocated for all adapters, set
122this tunable in
123.Xr loader.conf 5 :
124.Bd -literal -offset indent
125hw.mpr.max_chains=NNNN
126.Ed
127.Pp
128To set the maximum number of DMA chains allocated for a specific adapter,
129set this tunable in
130.Xr loader.conf 5 :
131.Bd -literal -offset indent
132dev.mpr.X.max_chains=NNNN
133.Ed
134.Pp
135The default max_chains value is 2048.
136.Pp
137The current number of free chain frames is stored in the
138dev.mpr.X.chain_free
139.Xr sysctl 8
140variable.
141.Pp
142The lowest number of free chain frames seen since boot is stored in the
143dev.mpr.X.chain_free_lowwater
144.Xr sysctl 8
145variable.
146.Pp
147The number of times that chain frame allocations have failed since boot is
148stored in the
149dev.mpr.X.chain_alloc_fail
150.Xr sysctl 8
151variable.
152This can be used to determine whether the max_chains tunable should be
153increased to help performance.
154.Pp
155The current number of active I/O commands is shown in the
156dev.mpr.X.io_cmds_active
157.Xr sysctl 8
158variable.
159.Pp
160The highest number of active I/O commands seen since boot is stored in the
161dev.mpr.X.io_cmds_highwater
162.Xr sysctl 8
163variable.
164.Pp
165Devices can be excluded from
166.Nm
167control for all adapters by setting this tunable in
168.Xr loader.conf 5 :
169.Bd -literal -offset indent
170hw.mpr.exclude_ids=Y
171.Ed
172.Pp
173Y represents the target ID of the device.
174If more than one device is to be excluded, target IDs are separated by commas.
175.Pp
176Devices can be excluded from
177.Nm
178control for a specific adapter by setting this tunable in
179.Xr loader.conf 5 :
180.Bd -literal -offset indent
181dev.mpr.X.exclude_ids=Y
182.Ed
183.Pp
184Y represents the target ID of the device.
185If more than one device is to be excluded, target IDs are separated by commas.
186.Pp
187The adapter can issue the
188.Sy StartStopUnit
189SCSI command to SATA direct-access devices during shutdown.
190This allows the device to quiesce powering down.
191To control this feature for all adapters, set the
192.Bd -literal -offset indent
193hw.mpr.enable_ssu
194.Ed
195.Pp
196tunable in
197.Xr loader.conf 5
198to one of these values:
199.Bl -tag -width 6n -offset indent
200.It 0
201Do not send SSU to either HDDs or SSDs.
202.It 1
203Send SSU to SSDs, but not to HDDs.
204This is the default value.
205.It 2
206Send SSU to HDDs, but not to SSDs.
207.It 3
208Send SSU to both HDDs and SSDs.
209.El
210.Pp
211To control the feature for a specific adapter, set this tunable value in
212.Xr loader.conf 5 :
213.Bd -literal -offset indent
214dev.mpr.X.enable_ssu
215.Ed
216.Pp
217The same set of values are valid when setting this tunable for all adapters.
218.Pp
219SATA disks that take several seconds to spin up and fail the SATA Identify
220command might not be discovered by the driver.
221This problem can sometimes be overcome by increasing the value of the spinup
222wait time in
223.Xr loader.conf 5 :
224with the
225.Bd -literal -offset indent
226hw.mpr.spinup_wait_time=NNNN
227.Ed
228.Pp
229tunable.
230NNNN represents the number of seconds to wait for SATA devices to spin up when
231the device fails the initial SATA Identify command.
232.Pp
233Spinup wait times can be set for specific adapters in
234.Xr loader.conf 5 :
235with the
236.Bd -literal -offset indent
237dev.mpr.X.spinup_wait_time=NNNN
238.Ed
239.Pp
240tunable.
241NNNN is the number of seconds to wait for SATA devices to spin up when they fail
242the initial SATA Identify command.
243.Sh DEBUGGING
244To enable debugging prints from the
245.Nm
246driver, set the
247.Bd -literal -offset indent
248hw.mpr.X.debug_level
249.Ed
250.Pp
251tunable, either in
252.Xr loader.conf 5
253or by using
254.Xr sysctl 8 .
255These bits have the described effects:
256.Bd -literal -offset indent
2570x0001 Enable informational prints (set by default).
2580x0002 Enable prints for driver faults (set by default).
2590x0004 Enable prints for controller events.
2600x0008 Enable prints for controller logging.
2610x0010 Enable prints for tracing recovery operations.
2620x0020 Enable prints for parameter errors and programming bugs.
2630x0040 Enable prints for system initialization operations.
2640x0080 Enable prints for more detailed information.
2650x0100 Enable prints for user-generated commands (IOCTL).
2660x0200 Enable prints for device mapping.
2670x0400 Enable prints for tracing through driver functions.
268.Ed
269.Sh SEE ALSO
270.Xr cam 4 ,
271.Xr cd 4 ,
272.Xr ch 4 ,
273.Xr da 4 ,
274.Xr mps 4 ,
275.Xr mpt 4 ,
276.Xr pci 4 ,
277.Xr sa 4 ,
278.Xr scsi 4 ,
279.Xr targ 4 ,
280.Xr loader.conf 5 ,
281.Xr sysctl 8
282.Sh HISTORY
283The
284.Nm
285driver first appeared in FreeBSD 9.3.
286.Sh AUTHORS
287The
288.Nm
289driver was originally written by
290.An -nosplit
291.An Scott Long Aq Mt scottl@FreeBSD.org .
292It has been improved and tested by LSI Corporation,
293Avago Technologies (formally LSI), and Broadcom Ltd. (formally Avago).
294.Pp
295This man page was written by
296.An Ken Merry Aq Mt ken@FreeBSD.org
297with additional input from
298.An Stephen McConnell Aq Mt slm@FreeBSD.org .
299