2 * Management Module Support for MPT (Message Passing Technology) based
5 * This code is based on drivers/scsi/mpt2sas/mpt2_ctl.h
6 * Copyright (C) 2007-2014 LSI Corporation
7 * Copyright (C) 20013-2014 Avago Technologies
8 * (mailto: MPT-FusionLinux.pdl@avagotech.com)
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
21 * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
22 * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
23 * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
24 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
25 * solely responsible for determining the appropriateness of using and
26 * distributing the Program and assumes all risks associated with its
27 * exercise of rights under this Agreement, including but not limited to
28 * the risks and costs of program errors, damage to or loss of data,
29 * programs or equipment, and unavailability or interruption of operations.
31 * DISCLAIMER OF LIABILITY
32 * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
33 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
35 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
36 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
37 * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
38 * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
40 * You should have received a copy of the GNU General Public License
41 * along with this program; if not, write to the Free Software
42 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
46 #ifndef MPT2SAS_CTL_H_INCLUDED
47 #define MPT2SAS_CTL_H_INCLUDED
50 #include <linux/miscdevice.h>
53 #define MPT2SAS_DEV_NAME "mpt2ctl"
54 #define MPT2_MAGIC_NUMBER 'L'
55 #define MPT2_IOCTL_DEFAULT_TIMEOUT (10) /* in seconds */
60 #define MPT2IOCINFO _IOWR(MPT2_MAGIC_NUMBER, 17, \
61 struct mpt2_ioctl_iocinfo)
62 #define MPT2COMMAND _IOWR(MPT2_MAGIC_NUMBER, 20, \
63 struct mpt2_ioctl_command)
65 #define MPT2COMMAND32 _IOWR(MPT2_MAGIC_NUMBER, 20, \
66 struct mpt2_ioctl_command32)
68 #define MPT2EVENTQUERY _IOWR(MPT2_MAGIC_NUMBER, 21, \
69 struct mpt2_ioctl_eventquery)
70 #define MPT2EVENTENABLE _IOWR(MPT2_MAGIC_NUMBER, 22, \
71 struct mpt2_ioctl_eventenable)
72 #define MPT2EVENTREPORT _IOWR(MPT2_MAGIC_NUMBER, 23, \
73 struct mpt2_ioctl_eventreport)
74 #define MPT2HARDRESET _IOWR(MPT2_MAGIC_NUMBER, 24, \
75 struct mpt2_ioctl_diag_reset)
76 #define MPT2BTDHMAPPING _IOWR(MPT2_MAGIC_NUMBER, 31, \
77 struct mpt2_ioctl_btdh_mapping)
79 /* diag buffer support */
80 #define MPT2DIAGREGISTER _IOWR(MPT2_MAGIC_NUMBER, 26, \
81 struct mpt2_diag_register)
82 #define MPT2DIAGRELEASE _IOWR(MPT2_MAGIC_NUMBER, 27, \
83 struct mpt2_diag_release)
84 #define MPT2DIAGUNREGISTER _IOWR(MPT2_MAGIC_NUMBER, 28, \
85 struct mpt2_diag_unregister)
86 #define MPT2DIAGQUERY _IOWR(MPT2_MAGIC_NUMBER, 29, \
87 struct mpt2_diag_query)
88 #define MPT2DIAGREADBUFFER _IOWR(MPT2_MAGIC_NUMBER, 30, \
89 struct mpt2_diag_read_buffer)
92 * struct mpt2_ioctl_header - main header structure
93 * @ioc_number - IOC unit number
94 * @port_number - IOC port number
95 * @max_data_size - maximum number bytes to transfer on read
97 struct mpt2_ioctl_header
{
100 uint32_t max_data_size
;
104 * struct mpt2_ioctl_diag_reset - diagnostic reset
105 * @hdr - generic header
107 struct mpt2_ioctl_diag_reset
{
108 struct mpt2_ioctl_header hdr
;
113 * struct mpt2_ioctl_pci_info - pci device info
114 * @device - pci device id
115 * @function - pci function id
117 * @segment_id - pci segment id
119 struct mpt2_ioctl_pci_info
{
132 #define MPT2_IOCTL_INTERFACE_SCSI (0x00)
133 #define MPT2_IOCTL_INTERFACE_FC (0x01)
134 #define MPT2_IOCTL_INTERFACE_FC_IP (0x02)
135 #define MPT2_IOCTL_INTERFACE_SAS (0x03)
136 #define MPT2_IOCTL_INTERFACE_SAS2 (0x04)
137 #define MPT2_IOCTL_INTERFACE_SAS2_SSS6200 (0x05)
138 #define MPT2_IOCTL_VERSION_LENGTH (32)
141 * struct mpt2_ioctl_iocinfo - generic controller info
142 * @hdr - generic header
143 * @adapter_type - type of adapter (spi, fc, sas)
144 * @port_number - port number
146 * @hw_rev - hardware revision
147 * @sub_system_device - PCI subsystem Device ID
148 * @sub_system_vendor - PCI subsystem Vendor ID
150 * @firmware_version - firmware version
151 * @bios_version - BIOS version
152 * @driver_version - driver version - 32 ASCII characters
154 * @scsi_id - scsi id of adapter 0
156 * @pci_information - pci info (2nd revision)
158 struct mpt2_ioctl_iocinfo
{
159 struct mpt2_ioctl_header hdr
;
160 uint32_t adapter_type
;
161 uint32_t port_number
;
164 uint32_t subsystem_device
;
165 uint32_t subsystem_vendor
;
167 uint32_t firmware_version
;
168 uint32_t bios_version
;
169 uint8_t driver_version
[MPT2_IOCTL_VERSION_LENGTH
];
173 struct mpt2_ioctl_pci_info pci_information
;
177 /* number of event log entries */
178 #define MPT2SAS_CTL_EVENT_LOG_SIZE (50)
181 * struct mpt2_ioctl_eventquery - query event count and type
182 * @hdr - generic header
183 * @event_entries - number of events returned by get_event_report
185 * @event_types - type of events currently being captured
187 struct mpt2_ioctl_eventquery
{
188 struct mpt2_ioctl_header hdr
;
189 uint16_t event_entries
;
191 uint32_t event_types
[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS
];
195 * struct mpt2_ioctl_eventenable - enable/disable event capturing
196 * @hdr - generic header
197 * @event_types - toggle off/on type of events to be captured
199 struct mpt2_ioctl_eventenable
{
200 struct mpt2_ioctl_header hdr
;
201 uint32_t event_types
[4];
204 #define MPT2_EVENT_DATA_SIZE (192)
206 * struct MPT2_IOCTL_EVENTS -
207 * @event - the event that was reported
208 * @context - unique value for each event assigned by driver
209 * @data - event data returned in fw reply message
211 struct MPT2_IOCTL_EVENTS
{
214 uint8_t data
[MPT2_EVENT_DATA_SIZE
];
218 * struct mpt2_ioctl_eventreport - returing event log
219 * @hdr - generic header
220 * @event_data - (see struct MPT2_IOCTL_EVENTS)
222 struct mpt2_ioctl_eventreport
{
223 struct mpt2_ioctl_header hdr
;
224 struct MPT2_IOCTL_EVENTS event_data
[1];
228 * struct mpt2_ioctl_command - generic mpt firmware passthru ioctl
229 * @hdr - generic header
230 * @timeout - command timeout in seconds. (if zero then use driver default
232 * @reply_frame_buf_ptr - reply location
233 * @data_in_buf_ptr - destination for read
234 * @data_out_buf_ptr - data source for write
235 * @sense_data_ptr - sense data location
236 * @max_reply_bytes - maximum number of reply bytes to be sent to app.
237 * @data_in_size - number bytes for data transfer in (read)
238 * @data_out_size - number bytes for data transfer out (write)
239 * @max_sense_bytes - maximum number of bytes for auto sense buffers
240 * @data_sge_offset - offset in words from the start of the request message to
244 struct mpt2_ioctl_command
{
245 struct mpt2_ioctl_header hdr
;
247 void __user
*reply_frame_buf_ptr
;
248 void __user
*data_in_buf_ptr
;
249 void __user
*data_out_buf_ptr
;
250 void __user
*sense_data_ptr
;
251 uint32_t max_reply_bytes
;
252 uint32_t data_in_size
;
253 uint32_t data_out_size
;
254 uint32_t max_sense_bytes
;
255 uint32_t data_sge_offset
;
260 struct mpt2_ioctl_command32
{
261 struct mpt2_ioctl_header hdr
;
263 uint32_t reply_frame_buf_ptr
;
264 uint32_t data_in_buf_ptr
;
265 uint32_t data_out_buf_ptr
;
266 uint32_t sense_data_ptr
;
267 uint32_t max_reply_bytes
;
268 uint32_t data_in_size
;
269 uint32_t data_out_size
;
270 uint32_t max_sense_bytes
;
271 uint32_t data_sge_offset
;
277 * struct mpt2_ioctl_btdh_mapping - mapping info
278 * @hdr - generic header
279 * @id - target device identification number
280 * @bus - SCSI bus number that the target device exists on
281 * @handle - device handle for the target device
284 * To obtain a bus/id the application sets
285 * handle to valid handle, and bus/id to 0xFFFF.
287 * To obtain the device handle the application sets
288 * bus/id valid value, and the handle to 0xFFFF.
290 struct mpt2_ioctl_btdh_mapping
{
291 struct mpt2_ioctl_header hdr
;
299 /* status bits for ioc->diag_buffer_status */
300 #define MPT2_DIAG_BUFFER_IS_REGISTERED (0x01)
301 #define MPT2_DIAG_BUFFER_IS_RELEASED (0x02)
302 #define MPT2_DIAG_BUFFER_IS_DIAG_RESET (0x04)
304 /* application flags for mpt2_diag_register, mpt2_diag_query */
305 #define MPT2_APP_FLAGS_APP_OWNED (0x0001)
306 #define MPT2_APP_FLAGS_BUFFER_VALID (0x0002)
307 #define MPT2_APP_FLAGS_FW_BUFFER_ACCESS (0x0004)
309 /* flags for mpt2_diag_read_buffer */
310 #define MPT2_FLAGS_REREGISTER (0x0001)
312 #define MPT2_PRODUCT_SPECIFIC_DWORDS 23
315 * struct mpt2_diag_register - application register with driver
316 * @hdr - generic header
318 * @buffer_type - specifies either TRACE, SNAPSHOT, or EXTENDED
319 * @application_flags - misc flags
320 * @diagnostic_flags - specifies flags affecting command processing
321 * @product_specific - product specific information
322 * @requested_buffer_size - buffers size in bytes
323 * @unique_id - tag specified by application that is used to signal ownership
326 * This will allow the driver to setup any required buffers that will be
327 * needed by firmware to communicate with the driver.
329 struct mpt2_diag_register
{
330 struct mpt2_ioctl_header hdr
;
333 uint16_t application_flags
;
334 uint32_t diagnostic_flags
;
335 uint32_t product_specific
[MPT2_PRODUCT_SPECIFIC_DWORDS
];
336 uint32_t requested_buffer_size
;
341 * struct mpt2_diag_unregister - application unregister with driver
342 * @hdr - generic header
343 * @unique_id - tag uniquely identifies the buffer to be unregistered
345 * This will allow the driver to cleanup any memory allocated for diag
346 * messages and to free up any resources.
348 struct mpt2_diag_unregister
{
349 struct mpt2_ioctl_header hdr
;
354 * struct mpt2_diag_query - query relevant info associated with diag buffers
355 * @hdr - generic header
357 * @buffer_type - specifies either TRACE, SNAPSHOT, or EXTENDED
358 * @application_flags - misc flags
359 * @diagnostic_flags - specifies flags affecting command processing
360 * @product_specific - product specific information
361 * @total_buffer_size - diag buffer size in bytes
362 * @driver_added_buffer_size - size of extra space appended to end of buffer
363 * @unique_id - unique id associated with this buffer.
365 * The application will send only buffer_type and unique_id. Driver will
366 * inspect unique_id first, if valid, fill in all the info. If unique_id is
367 * 0x00, the driver will return info specified by Buffer Type.
369 struct mpt2_diag_query
{
370 struct mpt2_ioctl_header hdr
;
373 uint16_t application_flags
;
374 uint32_t diagnostic_flags
;
375 uint32_t product_specific
[MPT2_PRODUCT_SPECIFIC_DWORDS
];
376 uint32_t total_buffer_size
;
377 uint32_t driver_added_buffer_size
;
382 * struct mpt2_diag_release - request to send Diag Release Message to firmware
383 * @hdr - generic header
384 * @unique_id - tag uniquely identifies the buffer to be released
386 * This allows ownership of the specified buffer to returned to the driver,
387 * allowing an application to read the buffer without fear that firmware is
388 * overwritting information in the buffer.
390 struct mpt2_diag_release
{
391 struct mpt2_ioctl_header hdr
;
396 * struct mpt2_diag_read_buffer - request for copy of the diag buffer
397 * @hdr - generic header
400 * @flags - misc flags
401 * @starting_offset - starting offset within drivers buffer where to start
402 * reading data at into the specified application buffer
403 * @bytes_to_read - number of bytes to copy from the drivers buffer into the
404 * application buffer starting at starting_offset.
405 * @unique_id - unique id associated with this buffer.
406 * @diagnostic_data - data payload
408 struct mpt2_diag_read_buffer
{
409 struct mpt2_ioctl_header hdr
;
413 uint32_t starting_offset
;
414 uint32_t bytes_to_read
;
416 uint32_t diagnostic_data
[1];
419 #endif /* MPT2SAS_CTL_H_INCLUDED */