xref: /linux/drivers/scsi/mpt3sas/mpt3sas_ctl.c (revision afc9a42b7464f76e1388cad87d8543c69f6f74ed)
1f92363d1SSreekanth Reddy /*
2f92363d1SSreekanth Reddy  * Management Module Support for MPT (Message Passing Technology) based
3f92363d1SSreekanth Reddy  * controllers
4f92363d1SSreekanth Reddy  *
5f92363d1SSreekanth Reddy  * This code is based on drivers/scsi/mpt3sas/mpt3sas_ctl.c
6a4ffce0dSSreekanth Reddy  * Copyright (C) 2012-2014  LSI Corporation
7a03bd153SSreekanth Reddy  * Copyright (C) 2013-2014 Avago Technologies
8a03bd153SSreekanth Reddy  *  (mailto: MPT-FusionLinux.pdl@avagotech.com)
9f92363d1SSreekanth Reddy  *
10f92363d1SSreekanth Reddy  * This program is free software; you can redistribute it and/or
11f92363d1SSreekanth Reddy  * modify it under the terms of the GNU General Public License
12f92363d1SSreekanth Reddy  * as published by the Free Software Foundation; either version 2
13f92363d1SSreekanth Reddy  * of the License, or (at your option) any later version.
14f92363d1SSreekanth Reddy  *
15f92363d1SSreekanth Reddy  * This program is distributed in the hope that it will be useful,
16f92363d1SSreekanth Reddy  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17f92363d1SSreekanth Reddy  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18f92363d1SSreekanth Reddy  * GNU General Public License for more details.
19f92363d1SSreekanth Reddy  *
20f92363d1SSreekanth Reddy  * NO WARRANTY
21f92363d1SSreekanth Reddy  * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
22f92363d1SSreekanth Reddy  * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
23f92363d1SSreekanth Reddy  * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
24f92363d1SSreekanth Reddy  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
25f92363d1SSreekanth Reddy  * solely responsible for determining the appropriateness of using and
26f92363d1SSreekanth Reddy  * distributing the Program and assumes all risks associated with its
27f92363d1SSreekanth Reddy  * exercise of rights under this Agreement, including but not limited to
28f92363d1SSreekanth Reddy  * the risks and costs of program errors, damage to or loss of data,
29f92363d1SSreekanth Reddy  * programs or equipment, and unavailability or interruption of operations.
30f92363d1SSreekanth Reddy 
31f92363d1SSreekanth Reddy  * DISCLAIMER OF LIABILITY
32f92363d1SSreekanth Reddy  * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
33f92363d1SSreekanth Reddy  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34f92363d1SSreekanth Reddy  * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
35f92363d1SSreekanth Reddy  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
36f92363d1SSreekanth Reddy  * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
37f92363d1SSreekanth Reddy  * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
38f92363d1SSreekanth Reddy  * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
39f92363d1SSreekanth Reddy 
40f92363d1SSreekanth Reddy  * You should have received a copy of the GNU General Public License
41f92363d1SSreekanth Reddy  * along with this program; if not, write to the Free Software
42f92363d1SSreekanth Reddy  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
43f92363d1SSreekanth Reddy  * USA.
44f92363d1SSreekanth Reddy  */
45f92363d1SSreekanth Reddy 
46f92363d1SSreekanth Reddy #include <linux/kernel.h>
47f92363d1SSreekanth Reddy #include <linux/module.h>
48f92363d1SSreekanth Reddy #include <linux/errno.h>
49f92363d1SSreekanth Reddy #include <linux/init.h>
50f92363d1SSreekanth Reddy #include <linux/slab.h>
51f92363d1SSreekanth Reddy #include <linux/types.h>
52f92363d1SSreekanth Reddy #include <linux/pci.h>
53f92363d1SSreekanth Reddy #include <linux/delay.h>
54f92363d1SSreekanth Reddy #include <linux/compat.h>
55f92363d1SSreekanth Reddy #include <linux/poll.h>
56f92363d1SSreekanth Reddy 
57f92363d1SSreekanth Reddy #include <linux/io.h>
58f92363d1SSreekanth Reddy #include <linux/uaccess.h>
59f92363d1SSreekanth Reddy 
60f92363d1SSreekanth Reddy #include "mpt3sas_base.h"
61f92363d1SSreekanth Reddy #include "mpt3sas_ctl.h"
62f92363d1SSreekanth Reddy 
63f92363d1SSreekanth Reddy 
64f92363d1SSreekanth Reddy static struct fasync_struct *async_queue;
65f92363d1SSreekanth Reddy static DECLARE_WAIT_QUEUE_HEAD(ctl_poll_wait);
66f92363d1SSreekanth Reddy 
67f92363d1SSreekanth Reddy 
68f92363d1SSreekanth Reddy /**
69f92363d1SSreekanth Reddy  * enum block_state - blocking state
70f92363d1SSreekanth Reddy  * @NON_BLOCKING: non blocking
71f92363d1SSreekanth Reddy  * @BLOCKING: blocking
72f92363d1SSreekanth Reddy  *
73f92363d1SSreekanth Reddy  * These states are for ioctls that need to wait for a response
74f92363d1SSreekanth Reddy  * from firmware, so they probably require sleep.
75f92363d1SSreekanth Reddy  */
76f92363d1SSreekanth Reddy enum block_state {
77f92363d1SSreekanth Reddy 	NON_BLOCKING,
78f92363d1SSreekanth Reddy 	BLOCKING,
79f92363d1SSreekanth Reddy };
80f92363d1SSreekanth Reddy 
81f92363d1SSreekanth Reddy /**
82f92363d1SSreekanth Reddy  * _ctl_display_some_debug - debug routine
83f92363d1SSreekanth Reddy  * @ioc: per adapter object
84f92363d1SSreekanth Reddy  * @smid: system request message index
85f92363d1SSreekanth Reddy  * @calling_function_name: string pass from calling function
86f92363d1SSreekanth Reddy  * @mpi_reply: reply message frame
87f92363d1SSreekanth Reddy  * Context: none.
88f92363d1SSreekanth Reddy  *
89f92363d1SSreekanth Reddy  * Function for displaying debug info helpful when debugging issues
90f92363d1SSreekanth Reddy  * in this module.
91f92363d1SSreekanth Reddy  */
92f92363d1SSreekanth Reddy static void
93f92363d1SSreekanth Reddy _ctl_display_some_debug(struct MPT3SAS_ADAPTER *ioc, u16 smid,
94f92363d1SSreekanth Reddy 	char *calling_function_name, MPI2DefaultReply_t *mpi_reply)
95f92363d1SSreekanth Reddy {
96f92363d1SSreekanth Reddy 	Mpi2ConfigRequest_t *mpi_request;
97f92363d1SSreekanth Reddy 	char *desc = NULL;
98f92363d1SSreekanth Reddy 
99f92363d1SSreekanth Reddy 	if (!(ioc->logging_level & MPT_DEBUG_IOCTL))
100f92363d1SSreekanth Reddy 		return;
101f92363d1SSreekanth Reddy 
102f92363d1SSreekanth Reddy 	mpi_request = mpt3sas_base_get_msg_frame(ioc, smid);
103f92363d1SSreekanth Reddy 	switch (mpi_request->Function) {
104f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SCSI_IO_REQUEST:
105f92363d1SSreekanth Reddy 	{
106f92363d1SSreekanth Reddy 		Mpi2SCSIIORequest_t *scsi_request =
107f92363d1SSreekanth Reddy 		    (Mpi2SCSIIORequest_t *)mpi_request;
108f92363d1SSreekanth Reddy 
109f92363d1SSreekanth Reddy 		snprintf(ioc->tmp_string, MPT_STRING_LENGTH,
110f92363d1SSreekanth Reddy 		    "scsi_io, cmd(0x%02x), cdb_len(%d)",
111f92363d1SSreekanth Reddy 		    scsi_request->CDB.CDB32[0],
112f92363d1SSreekanth Reddy 		    le16_to_cpu(scsi_request->IoFlags) & 0xF);
113f92363d1SSreekanth Reddy 		desc = ioc->tmp_string;
114f92363d1SSreekanth Reddy 		break;
115f92363d1SSreekanth Reddy 	}
116f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SCSI_TASK_MGMT:
117f92363d1SSreekanth Reddy 		desc = "task_mgmt";
118f92363d1SSreekanth Reddy 		break;
119f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_IOC_INIT:
120f92363d1SSreekanth Reddy 		desc = "ioc_init";
121f92363d1SSreekanth Reddy 		break;
122f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_IOC_FACTS:
123f92363d1SSreekanth Reddy 		desc = "ioc_facts";
124f92363d1SSreekanth Reddy 		break;
125f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_CONFIG:
126f92363d1SSreekanth Reddy 	{
127f92363d1SSreekanth Reddy 		Mpi2ConfigRequest_t *config_request =
128f92363d1SSreekanth Reddy 		    (Mpi2ConfigRequest_t *)mpi_request;
129f92363d1SSreekanth Reddy 
130f92363d1SSreekanth Reddy 		snprintf(ioc->tmp_string, MPT_STRING_LENGTH,
131f92363d1SSreekanth Reddy 		    "config, type(0x%02x), ext_type(0x%02x), number(%d)",
132f92363d1SSreekanth Reddy 		    (config_request->Header.PageType &
133f92363d1SSreekanth Reddy 		     MPI2_CONFIG_PAGETYPE_MASK), config_request->ExtPageType,
134f92363d1SSreekanth Reddy 		    config_request->Header.PageNumber);
135f92363d1SSreekanth Reddy 		desc = ioc->tmp_string;
136f92363d1SSreekanth Reddy 		break;
137f92363d1SSreekanth Reddy 	}
138f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_PORT_FACTS:
139f92363d1SSreekanth Reddy 		desc = "port_facts";
140f92363d1SSreekanth Reddy 		break;
141f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_PORT_ENABLE:
142f92363d1SSreekanth Reddy 		desc = "port_enable";
143f92363d1SSreekanth Reddy 		break;
144f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_EVENT_NOTIFICATION:
145f92363d1SSreekanth Reddy 		desc = "event_notification";
146f92363d1SSreekanth Reddy 		break;
147f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_FW_DOWNLOAD:
148f92363d1SSreekanth Reddy 		desc = "fw_download";
149f92363d1SSreekanth Reddy 		break;
150f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_FW_UPLOAD:
151f92363d1SSreekanth Reddy 		desc = "fw_upload";
152f92363d1SSreekanth Reddy 		break;
153f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_RAID_ACTION:
154f92363d1SSreekanth Reddy 		desc = "raid_action";
155f92363d1SSreekanth Reddy 		break;
156f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH:
157f92363d1SSreekanth Reddy 	{
158f92363d1SSreekanth Reddy 		Mpi2SCSIIORequest_t *scsi_request =
159f92363d1SSreekanth Reddy 		    (Mpi2SCSIIORequest_t *)mpi_request;
160f92363d1SSreekanth Reddy 
161f92363d1SSreekanth Reddy 		snprintf(ioc->tmp_string, MPT_STRING_LENGTH,
162f92363d1SSreekanth Reddy 		    "raid_pass, cmd(0x%02x), cdb_len(%d)",
163f92363d1SSreekanth Reddy 		    scsi_request->CDB.CDB32[0],
164f92363d1SSreekanth Reddy 		    le16_to_cpu(scsi_request->IoFlags) & 0xF);
165f92363d1SSreekanth Reddy 		desc = ioc->tmp_string;
166f92363d1SSreekanth Reddy 		break;
167f92363d1SSreekanth Reddy 	}
168f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SAS_IO_UNIT_CONTROL:
169f92363d1SSreekanth Reddy 		desc = "sas_iounit_cntl";
170f92363d1SSreekanth Reddy 		break;
171f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SATA_PASSTHROUGH:
172f92363d1SSreekanth Reddy 		desc = "sata_pass";
173f92363d1SSreekanth Reddy 		break;
174f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_DIAG_BUFFER_POST:
175f92363d1SSreekanth Reddy 		desc = "diag_buffer_post";
176f92363d1SSreekanth Reddy 		break;
177f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_DIAG_RELEASE:
178f92363d1SSreekanth Reddy 		desc = "diag_release";
179f92363d1SSreekanth Reddy 		break;
180f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SMP_PASSTHROUGH:
181f92363d1SSreekanth Reddy 		desc = "smp_passthrough";
182f92363d1SSreekanth Reddy 		break;
183f92363d1SSreekanth Reddy 	}
184f92363d1SSreekanth Reddy 
185f92363d1SSreekanth Reddy 	if (!desc)
186f92363d1SSreekanth Reddy 		return;
187f92363d1SSreekanth Reddy 
188f92363d1SSreekanth Reddy 	pr_info(MPT3SAS_FMT "%s: %s, smid(%d)\n",
189f92363d1SSreekanth Reddy 	    ioc->name, calling_function_name, desc, smid);
190f92363d1SSreekanth Reddy 
191f92363d1SSreekanth Reddy 	if (!mpi_reply)
192f92363d1SSreekanth Reddy 		return;
193f92363d1SSreekanth Reddy 
194f92363d1SSreekanth Reddy 	if (mpi_reply->IOCStatus || mpi_reply->IOCLogInfo)
195f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT
196f92363d1SSreekanth Reddy 		    "\tiocstatus(0x%04x), loginfo(0x%08x)\n",
197f92363d1SSreekanth Reddy 		    ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
198f92363d1SSreekanth Reddy 		    le32_to_cpu(mpi_reply->IOCLogInfo));
199f92363d1SSreekanth Reddy 
200f92363d1SSreekanth Reddy 	if (mpi_request->Function == MPI2_FUNCTION_SCSI_IO_REQUEST ||
201f92363d1SSreekanth Reddy 	    mpi_request->Function ==
202f92363d1SSreekanth Reddy 	    MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH) {
203f92363d1SSreekanth Reddy 		Mpi2SCSIIOReply_t *scsi_reply =
204f92363d1SSreekanth Reddy 		    (Mpi2SCSIIOReply_t *)mpi_reply;
205f92363d1SSreekanth Reddy 		struct _sas_device *sas_device = NULL;
20645aa6a1aSSuganath Prabu Subramani 		struct _pcie_device *pcie_device = NULL;
207f92363d1SSreekanth Reddy 
20845aa6a1aSSuganath Prabu Subramani 		sas_device = mpt3sas_get_sdev_by_handle(ioc,
209f92363d1SSreekanth Reddy 		    le16_to_cpu(scsi_reply->DevHandle));
210f92363d1SSreekanth Reddy 		if (sas_device) {
211f92363d1SSreekanth Reddy 			pr_warn(MPT3SAS_FMT "\tsas_address(0x%016llx), phy(%d)\n",
212f92363d1SSreekanth Reddy 				ioc->name, (unsigned long long)
213f92363d1SSreekanth Reddy 			    sas_device->sas_address, sas_device->phy);
214f92363d1SSreekanth Reddy 			pr_warn(MPT3SAS_FMT
215f92363d1SSreekanth Reddy 			    "\tenclosure_logical_id(0x%016llx), slot(%d)\n",
216f92363d1SSreekanth Reddy 			    ioc->name, (unsigned long long)
217f92363d1SSreekanth Reddy 			    sas_device->enclosure_logical_id, sas_device->slot);
21845aa6a1aSSuganath Prabu Subramani 			sas_device_put(sas_device);
219f92363d1SSreekanth Reddy 		}
22045aa6a1aSSuganath Prabu Subramani 		if (!sas_device) {
22145aa6a1aSSuganath Prabu Subramani 			pcie_device = mpt3sas_get_pdev_by_handle(ioc,
22245aa6a1aSSuganath Prabu Subramani 				le16_to_cpu(scsi_reply->DevHandle));
22345aa6a1aSSuganath Prabu Subramani 			if (pcie_device) {
22445aa6a1aSSuganath Prabu Subramani 				pr_warn(MPT3SAS_FMT
22545aa6a1aSSuganath Prabu Subramani 				    "\tWWID(0x%016llx), port(%d)\n", ioc->name,
22645aa6a1aSSuganath Prabu Subramani 				    (unsigned long long)pcie_device->wwid,
22745aa6a1aSSuganath Prabu Subramani 				    pcie_device->port_num);
22845aa6a1aSSuganath Prabu Subramani 				if (pcie_device->enclosure_handle != 0)
22945aa6a1aSSuganath Prabu Subramani 					pr_warn(MPT3SAS_FMT
23045aa6a1aSSuganath Prabu Subramani 					    "\tenclosure_logical_id(0x%016llx), slot(%d)\n",
23145aa6a1aSSuganath Prabu Subramani 					    ioc->name, (unsigned long long)
23245aa6a1aSSuganath Prabu Subramani 					    pcie_device->enclosure_logical_id,
23345aa6a1aSSuganath Prabu Subramani 					    pcie_device->slot);
23445aa6a1aSSuganath Prabu Subramani 				pcie_device_put(pcie_device);
23545aa6a1aSSuganath Prabu Subramani 			}
23645aa6a1aSSuganath Prabu Subramani 		}
237f92363d1SSreekanth Reddy 		if (scsi_reply->SCSIState || scsi_reply->SCSIStatus)
238f92363d1SSreekanth Reddy 			pr_info(MPT3SAS_FMT
239f92363d1SSreekanth Reddy 			    "\tscsi_state(0x%02x), scsi_status"
240f92363d1SSreekanth Reddy 			    "(0x%02x)\n", ioc->name,
241f92363d1SSreekanth Reddy 			    scsi_reply->SCSIState,
242f92363d1SSreekanth Reddy 			    scsi_reply->SCSIStatus);
243f92363d1SSreekanth Reddy 	}
244f92363d1SSreekanth Reddy }
245f92363d1SSreekanth Reddy 
246f92363d1SSreekanth Reddy /**
247f92363d1SSreekanth Reddy  * mpt3sas_ctl_done - ctl module completion routine
248f92363d1SSreekanth Reddy  * @ioc: per adapter object
249f92363d1SSreekanth Reddy  * @smid: system request message index
250f92363d1SSreekanth Reddy  * @msix_index: MSIX table index supplied by the OS
251f92363d1SSreekanth Reddy  * @reply: reply message frame(lower 32bit addr)
252f92363d1SSreekanth Reddy  * Context: none.
253f92363d1SSreekanth Reddy  *
254f92363d1SSreekanth Reddy  * The callback handler when using ioc->ctl_cb_idx.
255f92363d1SSreekanth Reddy  *
256f92363d1SSreekanth Reddy  * Return 1 meaning mf should be freed from _base_interrupt
257f92363d1SSreekanth Reddy  *        0 means the mf is freed from this function.
258f92363d1SSreekanth Reddy  */
259f92363d1SSreekanth Reddy u8
260f92363d1SSreekanth Reddy mpt3sas_ctl_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
261f92363d1SSreekanth Reddy 	u32 reply)
262f92363d1SSreekanth Reddy {
263f92363d1SSreekanth Reddy 	MPI2DefaultReply_t *mpi_reply;
264f92363d1SSreekanth Reddy 	Mpi2SCSIIOReply_t *scsiio_reply;
265aff39e61SSuganath Prabu Subramani 	Mpi26NVMeEncapsulatedErrorReply_t *nvme_error_reply;
266f92363d1SSreekanth Reddy 	const void *sense_data;
267f92363d1SSreekanth Reddy 	u32 sz;
268f92363d1SSreekanth Reddy 
269f92363d1SSreekanth Reddy 	if (ioc->ctl_cmds.status == MPT3_CMD_NOT_USED)
270f92363d1SSreekanth Reddy 		return 1;
271f92363d1SSreekanth Reddy 	if (ioc->ctl_cmds.smid != smid)
272f92363d1SSreekanth Reddy 		return 1;
273f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status |= MPT3_CMD_COMPLETE;
274f92363d1SSreekanth Reddy 	mpi_reply = mpt3sas_base_get_reply_virt_addr(ioc, reply);
275f92363d1SSreekanth Reddy 	if (mpi_reply) {
276f92363d1SSreekanth Reddy 		memcpy(ioc->ctl_cmds.reply, mpi_reply, mpi_reply->MsgLength*4);
277f92363d1SSreekanth Reddy 		ioc->ctl_cmds.status |= MPT3_CMD_REPLY_VALID;
278f92363d1SSreekanth Reddy 		/* get sense data */
279f92363d1SSreekanth Reddy 		if (mpi_reply->Function == MPI2_FUNCTION_SCSI_IO_REQUEST ||
280f92363d1SSreekanth Reddy 		    mpi_reply->Function ==
281f92363d1SSreekanth Reddy 		    MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH) {
282f92363d1SSreekanth Reddy 			scsiio_reply = (Mpi2SCSIIOReply_t *)mpi_reply;
283f92363d1SSreekanth Reddy 			if (scsiio_reply->SCSIState &
284f92363d1SSreekanth Reddy 			    MPI2_SCSI_STATE_AUTOSENSE_VALID) {
285f92363d1SSreekanth Reddy 				sz = min_t(u32, SCSI_SENSE_BUFFERSIZE,
286f92363d1SSreekanth Reddy 				    le32_to_cpu(scsiio_reply->SenseCount));
287f92363d1SSreekanth Reddy 				sense_data = mpt3sas_base_get_sense_buffer(ioc,
288f92363d1SSreekanth Reddy 				    smid);
289f92363d1SSreekanth Reddy 				memcpy(ioc->ctl_cmds.sense, sense_data, sz);
290f92363d1SSreekanth Reddy 			}
291f92363d1SSreekanth Reddy 		}
292aff39e61SSuganath Prabu Subramani 		/*
293aff39e61SSuganath Prabu Subramani 		 * Get Error Response data for NVMe device. The ctl_cmds.sense
294aff39e61SSuganath Prabu Subramani 		 * buffer is used to store the Error Response data.
295aff39e61SSuganath Prabu Subramani 		 */
296aff39e61SSuganath Prabu Subramani 		if (mpi_reply->Function == MPI2_FUNCTION_NVME_ENCAPSULATED) {
297aff39e61SSuganath Prabu Subramani 			nvme_error_reply =
298aff39e61SSuganath Prabu Subramani 			    (Mpi26NVMeEncapsulatedErrorReply_t *)mpi_reply;
299aff39e61SSuganath Prabu Subramani 			sz = min_t(u32, NVME_ERROR_RESPONSE_SIZE,
300aff39e61SSuganath Prabu Subramani 			    le32_to_cpu(nvme_error_reply->ErrorResponseCount));
301aff39e61SSuganath Prabu Subramani 			sense_data = mpt3sas_base_get_sense_buffer(ioc, smid);
302aff39e61SSuganath Prabu Subramani 			memcpy(ioc->ctl_cmds.sense, sense_data, sz);
303aff39e61SSuganath Prabu Subramani 		}
304f92363d1SSreekanth Reddy 	}
305016d5c35SSuganath Prabu Subramani 
306f92363d1SSreekanth Reddy 	_ctl_display_some_debug(ioc, smid, "ctl_done", mpi_reply);
307f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status &= ~MPT3_CMD_PENDING;
308f92363d1SSreekanth Reddy 	complete(&ioc->ctl_cmds.done);
309f92363d1SSreekanth Reddy 	return 1;
310f92363d1SSreekanth Reddy }
311f92363d1SSreekanth Reddy 
312f92363d1SSreekanth Reddy /**
313f92363d1SSreekanth Reddy  * _ctl_check_event_type - determines when an event needs logging
314f92363d1SSreekanth Reddy  * @ioc: per adapter object
315f92363d1SSreekanth Reddy  * @event: firmware event
316f92363d1SSreekanth Reddy  *
317f92363d1SSreekanth Reddy  * The bitmask in ioc->event_type[] indicates which events should be
318f92363d1SSreekanth Reddy  * be saved in the driver event_log.  This bitmask is set by application.
319f92363d1SSreekanth Reddy  *
320f92363d1SSreekanth Reddy  * Returns 1 when event should be captured, or zero means no match.
321f92363d1SSreekanth Reddy  */
322f92363d1SSreekanth Reddy static int
323f92363d1SSreekanth Reddy _ctl_check_event_type(struct MPT3SAS_ADAPTER *ioc, u16 event)
324f92363d1SSreekanth Reddy {
325f92363d1SSreekanth Reddy 	u16 i;
326f92363d1SSreekanth Reddy 	u32 desired_event;
327f92363d1SSreekanth Reddy 
328f92363d1SSreekanth Reddy 	if (event >= 128 || !event || !ioc->event_log)
329f92363d1SSreekanth Reddy 		return 0;
330f92363d1SSreekanth Reddy 
331f92363d1SSreekanth Reddy 	desired_event = (1 << (event % 32));
332f92363d1SSreekanth Reddy 	if (!desired_event)
333f92363d1SSreekanth Reddy 		desired_event = 1;
334f92363d1SSreekanth Reddy 	i = event / 32;
335f92363d1SSreekanth Reddy 	return desired_event & ioc->event_type[i];
336f92363d1SSreekanth Reddy }
337f92363d1SSreekanth Reddy 
338f92363d1SSreekanth Reddy /**
339f92363d1SSreekanth Reddy  * mpt3sas_ctl_add_to_event_log - add event
340f92363d1SSreekanth Reddy  * @ioc: per adapter object
341f92363d1SSreekanth Reddy  * @mpi_reply: reply message frame
342f92363d1SSreekanth Reddy  *
343f92363d1SSreekanth Reddy  * Return nothing.
344f92363d1SSreekanth Reddy  */
345f92363d1SSreekanth Reddy void
346f92363d1SSreekanth Reddy mpt3sas_ctl_add_to_event_log(struct MPT3SAS_ADAPTER *ioc,
347f92363d1SSreekanth Reddy 	Mpi2EventNotificationReply_t *mpi_reply)
348f92363d1SSreekanth Reddy {
349f92363d1SSreekanth Reddy 	struct MPT3_IOCTL_EVENTS *event_log;
350f92363d1SSreekanth Reddy 	u16 event;
351f92363d1SSreekanth Reddy 	int i;
352f92363d1SSreekanth Reddy 	u32 sz, event_data_sz;
353f92363d1SSreekanth Reddy 	u8 send_aen = 0;
354f92363d1SSreekanth Reddy 
355f92363d1SSreekanth Reddy 	if (!ioc->event_log)
356f92363d1SSreekanth Reddy 		return;
357f92363d1SSreekanth Reddy 
358f92363d1SSreekanth Reddy 	event = le16_to_cpu(mpi_reply->Event);
359f92363d1SSreekanth Reddy 
360f92363d1SSreekanth Reddy 	if (_ctl_check_event_type(ioc, event)) {
361f92363d1SSreekanth Reddy 
362f92363d1SSreekanth Reddy 		/* insert entry into circular event_log */
363f92363d1SSreekanth Reddy 		i = ioc->event_context % MPT3SAS_CTL_EVENT_LOG_SIZE;
364f92363d1SSreekanth Reddy 		event_log = ioc->event_log;
365f92363d1SSreekanth Reddy 		event_log[i].event = event;
366f92363d1SSreekanth Reddy 		event_log[i].context = ioc->event_context++;
367f92363d1SSreekanth Reddy 
368f92363d1SSreekanth Reddy 		event_data_sz = le16_to_cpu(mpi_reply->EventDataLength)*4;
369f92363d1SSreekanth Reddy 		sz = min_t(u32, event_data_sz, MPT3_EVENT_DATA_SIZE);
370f92363d1SSreekanth Reddy 		memset(event_log[i].data, 0, MPT3_EVENT_DATA_SIZE);
371f92363d1SSreekanth Reddy 		memcpy(event_log[i].data, mpi_reply->EventData, sz);
372f92363d1SSreekanth Reddy 		send_aen = 1;
373f92363d1SSreekanth Reddy 	}
374f92363d1SSreekanth Reddy 
375f92363d1SSreekanth Reddy 	/* This aen_event_read_flag flag is set until the
376f92363d1SSreekanth Reddy 	 * application has read the event log.
377f92363d1SSreekanth Reddy 	 * For MPI2_EVENT_LOG_ENTRY_ADDED, we always notify.
378f92363d1SSreekanth Reddy 	 */
379f92363d1SSreekanth Reddy 	if (event == MPI2_EVENT_LOG_ENTRY_ADDED ||
380f92363d1SSreekanth Reddy 	    (send_aen && !ioc->aen_event_read_flag)) {
381f92363d1SSreekanth Reddy 		ioc->aen_event_read_flag = 1;
382f92363d1SSreekanth Reddy 		wake_up_interruptible(&ctl_poll_wait);
383f92363d1SSreekanth Reddy 		if (async_queue)
384f92363d1SSreekanth Reddy 			kill_fasync(&async_queue, SIGIO, POLL_IN);
385f92363d1SSreekanth Reddy 	}
386f92363d1SSreekanth Reddy }
387f92363d1SSreekanth Reddy 
388f92363d1SSreekanth Reddy /**
389f92363d1SSreekanth Reddy  * mpt3sas_ctl_event_callback - firmware event handler (called at ISR time)
390f92363d1SSreekanth Reddy  * @ioc: per adapter object
391f92363d1SSreekanth Reddy  * @msix_index: MSIX table index supplied by the OS
392f92363d1SSreekanth Reddy  * @reply: reply message frame(lower 32bit addr)
393f92363d1SSreekanth Reddy  * Context: interrupt.
394f92363d1SSreekanth Reddy  *
395f92363d1SSreekanth Reddy  * This function merely adds a new work task into ioc->firmware_event_thread.
396f92363d1SSreekanth Reddy  * The tasks are worked from _firmware_event_work in user context.
397f92363d1SSreekanth Reddy  *
398f92363d1SSreekanth Reddy  * Return 1 meaning mf should be freed from _base_interrupt
399f92363d1SSreekanth Reddy  *        0 means the mf is freed from this function.
400f92363d1SSreekanth Reddy  */
401f92363d1SSreekanth Reddy u8
402f92363d1SSreekanth Reddy mpt3sas_ctl_event_callback(struct MPT3SAS_ADAPTER *ioc, u8 msix_index,
403f92363d1SSreekanth Reddy 	u32 reply)
404f92363d1SSreekanth Reddy {
405f92363d1SSreekanth Reddy 	Mpi2EventNotificationReply_t *mpi_reply;
406f92363d1SSreekanth Reddy 
407f92363d1SSreekanth Reddy 	mpi_reply = mpt3sas_base_get_reply_virt_addr(ioc, reply);
408869817f9SSuganath prabu Subramani 	if (mpi_reply)
409f92363d1SSreekanth Reddy 		mpt3sas_ctl_add_to_event_log(ioc, mpi_reply);
410f92363d1SSreekanth Reddy 	return 1;
411f92363d1SSreekanth Reddy }
412f92363d1SSreekanth Reddy 
413f92363d1SSreekanth Reddy /**
414f92363d1SSreekanth Reddy  * _ctl_verify_adapter - validates ioc_number passed from application
415f92363d1SSreekanth Reddy  * @ioc: per adapter object
416f92363d1SSreekanth Reddy  * @iocpp: The ioc pointer is returned in this.
417c84b06a4SSreekanth Reddy  * @mpi_version: will be MPI2_VERSION for mpt2ctl ioctl device &
418b130b0d5SSuganath prabu Subramani  * MPI25_VERSION | MPI26_VERSION for mpt3ctl ioctl device.
419f92363d1SSreekanth Reddy  *
420f92363d1SSreekanth Reddy  * Return (-1) means error, else ioc_number.
421f92363d1SSreekanth Reddy  */
422f92363d1SSreekanth Reddy static int
423c84b06a4SSreekanth Reddy _ctl_verify_adapter(int ioc_number, struct MPT3SAS_ADAPTER **iocpp,
424c84b06a4SSreekanth Reddy 							int mpi_version)
425f92363d1SSreekanth Reddy {
426f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc;
427b130b0d5SSuganath prabu Subramani 	int version = 0;
42808c4d550SSreekanth Reddy 	/* global ioc lock to protect controller on list operations */
42908c4d550SSreekanth Reddy 	spin_lock(&gioc_lock);
430f92363d1SSreekanth Reddy 	list_for_each_entry(ioc, &mpt3sas_ioc_list, list) {
431f92363d1SSreekanth Reddy 		if (ioc->id != ioc_number)
432f92363d1SSreekanth Reddy 			continue;
433c84b06a4SSreekanth Reddy 		/* Check whether this ioctl command is from right
434c84b06a4SSreekanth Reddy 		 * ioctl device or not, if not continue the search.
435c84b06a4SSreekanth Reddy 		 */
436b130b0d5SSuganath prabu Subramani 		version = ioc->hba_mpi_version_belonged;
437b130b0d5SSuganath prabu Subramani 		/* MPI25_VERSION and MPI26_VERSION uses same ioctl
438b130b0d5SSuganath prabu Subramani 		 * device.
439b130b0d5SSuganath prabu Subramani 		 */
440b130b0d5SSuganath prabu Subramani 		if (mpi_version == (MPI25_VERSION | MPI26_VERSION)) {
441b130b0d5SSuganath prabu Subramani 			if ((version == MPI25_VERSION) ||
442b130b0d5SSuganath prabu Subramani 				(version == MPI26_VERSION))
443b130b0d5SSuganath prabu Subramani 				goto out;
444b130b0d5SSuganath prabu Subramani 			else
445c84b06a4SSreekanth Reddy 				continue;
446b130b0d5SSuganath prabu Subramani 		} else {
447b130b0d5SSuganath prabu Subramani 			if (version != mpi_version)
448b130b0d5SSuganath prabu Subramani 				continue;
449b130b0d5SSuganath prabu Subramani 		}
450b130b0d5SSuganath prabu Subramani out:
45108c4d550SSreekanth Reddy 		spin_unlock(&gioc_lock);
452f92363d1SSreekanth Reddy 		*iocpp = ioc;
453f92363d1SSreekanth Reddy 		return ioc_number;
454f92363d1SSreekanth Reddy 	}
45508c4d550SSreekanth Reddy 	spin_unlock(&gioc_lock);
456f92363d1SSreekanth Reddy 	*iocpp = NULL;
457f92363d1SSreekanth Reddy 	return -1;
458f92363d1SSreekanth Reddy }
459f92363d1SSreekanth Reddy 
460f92363d1SSreekanth Reddy /**
461f92363d1SSreekanth Reddy  * mpt3sas_ctl_reset_handler - reset callback handler (for ctl)
462f92363d1SSreekanth Reddy  * @ioc: per adapter object
463f92363d1SSreekanth Reddy  * @reset_phase: phase
464f92363d1SSreekanth Reddy  *
465f92363d1SSreekanth Reddy  * The handler for doing any required cleanup or initialization.
466f92363d1SSreekanth Reddy  *
467f92363d1SSreekanth Reddy  * The reset phase can be MPT3_IOC_PRE_RESET, MPT3_IOC_AFTER_RESET,
468f92363d1SSreekanth Reddy  * MPT3_IOC_DONE_RESET
469f92363d1SSreekanth Reddy  */
470f92363d1SSreekanth Reddy void
471f92363d1SSreekanth Reddy mpt3sas_ctl_reset_handler(struct MPT3SAS_ADAPTER *ioc, int reset_phase)
472f92363d1SSreekanth Reddy {
473f92363d1SSreekanth Reddy 	int i;
474f92363d1SSreekanth Reddy 	u8 issue_reset;
475f92363d1SSreekanth Reddy 
476f92363d1SSreekanth Reddy 	switch (reset_phase) {
477f92363d1SSreekanth Reddy 	case MPT3_IOC_PRE_RESET:
478f92363d1SSreekanth Reddy 		dtmprintk(ioc, pr_info(MPT3SAS_FMT
479f92363d1SSreekanth Reddy 			"%s: MPT3_IOC_PRE_RESET\n", ioc->name, __func__));
480f92363d1SSreekanth Reddy 		for (i = 0; i < MPI2_DIAG_BUF_TYPE_COUNT; i++) {
481f92363d1SSreekanth Reddy 			if (!(ioc->diag_buffer_status[i] &
482f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_REGISTERED))
483f92363d1SSreekanth Reddy 				continue;
484f92363d1SSreekanth Reddy 			if ((ioc->diag_buffer_status[i] &
485f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_RELEASED))
486f92363d1SSreekanth Reddy 				continue;
487f92363d1SSreekanth Reddy 			mpt3sas_send_diag_release(ioc, i, &issue_reset);
488f92363d1SSreekanth Reddy 		}
489f92363d1SSreekanth Reddy 		break;
490f92363d1SSreekanth Reddy 	case MPT3_IOC_AFTER_RESET:
491f92363d1SSreekanth Reddy 		dtmprintk(ioc, pr_info(MPT3SAS_FMT
492f92363d1SSreekanth Reddy 			"%s: MPT3_IOC_AFTER_RESET\n", ioc->name, __func__));
493f92363d1SSreekanth Reddy 		if (ioc->ctl_cmds.status & MPT3_CMD_PENDING) {
494f92363d1SSreekanth Reddy 			ioc->ctl_cmds.status |= MPT3_CMD_RESET;
495f92363d1SSreekanth Reddy 			mpt3sas_base_free_smid(ioc, ioc->ctl_cmds.smid);
496f92363d1SSreekanth Reddy 			complete(&ioc->ctl_cmds.done);
497f92363d1SSreekanth Reddy 		}
498f92363d1SSreekanth Reddy 		break;
499f92363d1SSreekanth Reddy 	case MPT3_IOC_DONE_RESET:
500f92363d1SSreekanth Reddy 		dtmprintk(ioc, pr_info(MPT3SAS_FMT
501f92363d1SSreekanth Reddy 			"%s: MPT3_IOC_DONE_RESET\n", ioc->name, __func__));
502f92363d1SSreekanth Reddy 
503f92363d1SSreekanth Reddy 		for (i = 0; i < MPI2_DIAG_BUF_TYPE_COUNT; i++) {
504f92363d1SSreekanth Reddy 			if (!(ioc->diag_buffer_status[i] &
505f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_REGISTERED))
506f92363d1SSreekanth Reddy 				continue;
507f92363d1SSreekanth Reddy 			if ((ioc->diag_buffer_status[i] &
508f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_RELEASED))
509f92363d1SSreekanth Reddy 				continue;
510f92363d1SSreekanth Reddy 			ioc->diag_buffer_status[i] |=
511f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_DIAG_RESET;
512f92363d1SSreekanth Reddy 		}
513f92363d1SSreekanth Reddy 		break;
514f92363d1SSreekanth Reddy 	}
515f92363d1SSreekanth Reddy }
516f92363d1SSreekanth Reddy 
517f92363d1SSreekanth Reddy /**
518c84b06a4SSreekanth Reddy  * _ctl_fasync -
519f92363d1SSreekanth Reddy  * @fd -
520f92363d1SSreekanth Reddy  * @filep -
521f92363d1SSreekanth Reddy  * @mode -
522f92363d1SSreekanth Reddy  *
523f92363d1SSreekanth Reddy  * Called when application request fasyn callback handler.
524f92363d1SSreekanth Reddy  */
5258bbb1cf6SCalvin Owens static int
526c84b06a4SSreekanth Reddy _ctl_fasync(int fd, struct file *filep, int mode)
527f92363d1SSreekanth Reddy {
528f92363d1SSreekanth Reddy 	return fasync_helper(fd, filep, mode, &async_queue);
529f92363d1SSreekanth Reddy }
530f92363d1SSreekanth Reddy 
531f92363d1SSreekanth Reddy /**
532c84b06a4SSreekanth Reddy  * _ctl_poll -
533f92363d1SSreekanth Reddy  * @file -
534f92363d1SSreekanth Reddy  * @wait -
535f92363d1SSreekanth Reddy  *
536f92363d1SSreekanth Reddy  */
537*afc9a42bSAl Viro static __poll_t
538c84b06a4SSreekanth Reddy _ctl_poll(struct file *filep, poll_table *wait)
539f92363d1SSreekanth Reddy {
540f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc;
541f92363d1SSreekanth Reddy 
542f92363d1SSreekanth Reddy 	poll_wait(filep, &ctl_poll_wait, wait);
543f92363d1SSreekanth Reddy 
54408c4d550SSreekanth Reddy 	/* global ioc lock to protect controller on list operations */
54508c4d550SSreekanth Reddy 	spin_lock(&gioc_lock);
546f92363d1SSreekanth Reddy 	list_for_each_entry(ioc, &mpt3sas_ioc_list, list) {
54708c4d550SSreekanth Reddy 		if (ioc->aen_event_read_flag) {
54808c4d550SSreekanth Reddy 			spin_unlock(&gioc_lock);
549f92363d1SSreekanth Reddy 			return POLLIN | POLLRDNORM;
550f92363d1SSreekanth Reddy 		}
55108c4d550SSreekanth Reddy 	}
55208c4d550SSreekanth Reddy 	spin_unlock(&gioc_lock);
553f92363d1SSreekanth Reddy 	return 0;
554f92363d1SSreekanth Reddy }
555f92363d1SSreekanth Reddy 
556f92363d1SSreekanth Reddy /**
557f92363d1SSreekanth Reddy  * _ctl_set_task_mid - assign an active smid to tm request
558f92363d1SSreekanth Reddy  * @ioc: per adapter object
559f92363d1SSreekanth Reddy  * @karg - (struct mpt3_ioctl_command)
560f92363d1SSreekanth Reddy  * @tm_request - pointer to mf from user space
561f92363d1SSreekanth Reddy  *
562f92363d1SSreekanth Reddy  * Returns 0 when an smid if found, else fail.
563f92363d1SSreekanth Reddy  * during failure, the reply frame is filled.
564f92363d1SSreekanth Reddy  */
565f92363d1SSreekanth Reddy static int
566f92363d1SSreekanth Reddy _ctl_set_task_mid(struct MPT3SAS_ADAPTER *ioc, struct mpt3_ioctl_command *karg,
567f92363d1SSreekanth Reddy 	Mpi2SCSITaskManagementRequest_t *tm_request)
568f92363d1SSreekanth Reddy {
569f92363d1SSreekanth Reddy 	u8 found = 0;
570f92363d1SSreekanth Reddy 	u16 i;
571f92363d1SSreekanth Reddy 	u16 handle;
572f92363d1SSreekanth Reddy 	struct scsi_cmnd *scmd;
573f92363d1SSreekanth Reddy 	struct MPT3SAS_DEVICE *priv_data;
574f92363d1SSreekanth Reddy 	unsigned long flags;
575f92363d1SSreekanth Reddy 	Mpi2SCSITaskManagementReply_t *tm_reply;
576f92363d1SSreekanth Reddy 	u32 sz;
577f92363d1SSreekanth Reddy 	u32 lun;
578f92363d1SSreekanth Reddy 	char *desc = NULL;
579f92363d1SSreekanth Reddy 
580f92363d1SSreekanth Reddy 	if (tm_request->TaskType == MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK)
581f92363d1SSreekanth Reddy 		desc = "abort_task";
582f92363d1SSreekanth Reddy 	else if (tm_request->TaskType == MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK)
583f92363d1SSreekanth Reddy 		desc = "query_task";
584f92363d1SSreekanth Reddy 	else
585f92363d1SSreekanth Reddy 		return 0;
586f92363d1SSreekanth Reddy 
587f92363d1SSreekanth Reddy 	lun = scsilun_to_int((struct scsi_lun *)tm_request->LUN);
588f92363d1SSreekanth Reddy 
589f92363d1SSreekanth Reddy 	handle = le16_to_cpu(tm_request->DevHandle);
590f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
591f92363d1SSreekanth Reddy 	for (i = ioc->scsiio_depth; i && !found; i--) {
592f92363d1SSreekanth Reddy 		scmd = ioc->scsi_lookup[i - 1].scmd;
593f92363d1SSreekanth Reddy 		if (scmd == NULL || scmd->device == NULL ||
594f92363d1SSreekanth Reddy 		    scmd->device->hostdata == NULL)
595f92363d1SSreekanth Reddy 			continue;
596f92363d1SSreekanth Reddy 		if (lun != scmd->device->lun)
597f92363d1SSreekanth Reddy 			continue;
598f92363d1SSreekanth Reddy 		priv_data = scmd->device->hostdata;
599f92363d1SSreekanth Reddy 		if (priv_data->sas_target == NULL)
600f92363d1SSreekanth Reddy 			continue;
601f92363d1SSreekanth Reddy 		if (priv_data->sas_target->handle != handle)
602f92363d1SSreekanth Reddy 			continue;
603f92363d1SSreekanth Reddy 		tm_request->TaskMID = cpu_to_le16(ioc->scsi_lookup[i - 1].smid);
604f92363d1SSreekanth Reddy 		found = 1;
605f92363d1SSreekanth Reddy 	}
606f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
607f92363d1SSreekanth Reddy 
608f92363d1SSreekanth Reddy 	if (!found) {
609f92363d1SSreekanth Reddy 		dctlprintk(ioc, pr_info(MPT3SAS_FMT
610f92363d1SSreekanth Reddy 			"%s: handle(0x%04x), lun(%d), no active mid!!\n",
611f92363d1SSreekanth Reddy 			ioc->name,
612f92363d1SSreekanth Reddy 		    desc, le16_to_cpu(tm_request->DevHandle), lun));
613f92363d1SSreekanth Reddy 		tm_reply = ioc->ctl_cmds.reply;
614f92363d1SSreekanth Reddy 		tm_reply->DevHandle = tm_request->DevHandle;
615f92363d1SSreekanth Reddy 		tm_reply->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
616f92363d1SSreekanth Reddy 		tm_reply->TaskType = tm_request->TaskType;
617f92363d1SSreekanth Reddy 		tm_reply->MsgLength = sizeof(Mpi2SCSITaskManagementReply_t)/4;
618f92363d1SSreekanth Reddy 		tm_reply->VP_ID = tm_request->VP_ID;
619f92363d1SSreekanth Reddy 		tm_reply->VF_ID = tm_request->VF_ID;
620f92363d1SSreekanth Reddy 		sz = min_t(u32, karg->max_reply_bytes, ioc->reply_sz);
621f92363d1SSreekanth Reddy 		if (copy_to_user(karg->reply_frame_buf_ptr, ioc->ctl_cmds.reply,
622f92363d1SSreekanth Reddy 		    sz))
623f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n", __FILE__,
624f92363d1SSreekanth Reddy 			    __LINE__, __func__);
625f92363d1SSreekanth Reddy 		return 1;
626f92363d1SSreekanth Reddy 	}
627f92363d1SSreekanth Reddy 
628f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT
629f92363d1SSreekanth Reddy 		"%s: handle(0x%04x), lun(%d), task_mid(%d)\n", ioc->name,
630f92363d1SSreekanth Reddy 	    desc, le16_to_cpu(tm_request->DevHandle), lun,
631f92363d1SSreekanth Reddy 	     le16_to_cpu(tm_request->TaskMID)));
632f92363d1SSreekanth Reddy 	return 0;
633f92363d1SSreekanth Reddy }
634f92363d1SSreekanth Reddy 
635f92363d1SSreekanth Reddy /**
636f92363d1SSreekanth Reddy  * _ctl_do_mpt_command - main handler for MPT3COMMAND opcode
637f92363d1SSreekanth Reddy  * @ioc: per adapter object
638f92363d1SSreekanth Reddy  * @karg - (struct mpt3_ioctl_command)
639f92363d1SSreekanth Reddy  * @mf - pointer to mf in user space
640f92363d1SSreekanth Reddy  */
641f92363d1SSreekanth Reddy static long
642f92363d1SSreekanth Reddy _ctl_do_mpt_command(struct MPT3SAS_ADAPTER *ioc, struct mpt3_ioctl_command karg,
643f92363d1SSreekanth Reddy 	void __user *mf)
644f92363d1SSreekanth Reddy {
645f92363d1SSreekanth Reddy 	MPI2RequestHeader_t *mpi_request = NULL, *request;
646f92363d1SSreekanth Reddy 	MPI2DefaultReply_t *mpi_reply;
647aff39e61SSuganath Prabu Subramani 	Mpi26NVMeEncapsulatedRequest_t *nvme_encap_request = NULL;
648f92363d1SSreekanth Reddy 	u32 ioc_state;
649f92363d1SSreekanth Reddy 	u16 smid;
6508bbb1cf6SCalvin Owens 	unsigned long timeout;
651f92363d1SSreekanth Reddy 	u8 issue_reset;
652aff39e61SSuganath Prabu Subramani 	u32 sz, sz_arg;
653f92363d1SSreekanth Reddy 	void *psge;
654f92363d1SSreekanth Reddy 	void *data_out = NULL;
655f92363d1SSreekanth Reddy 	dma_addr_t data_out_dma = 0;
656f92363d1SSreekanth Reddy 	size_t data_out_sz = 0;
657f92363d1SSreekanth Reddy 	void *data_in = NULL;
658f92363d1SSreekanth Reddy 	dma_addr_t data_in_dma = 0;
659f92363d1SSreekanth Reddy 	size_t data_in_sz = 0;
660f92363d1SSreekanth Reddy 	long ret;
661f92363d1SSreekanth Reddy 	u16 wait_state_count;
662c696f7b8SSuganath Prabu Subramani 	u16 device_handle = MPT3SAS_INVALID_DEVICE_HANDLE;
663f92363d1SSreekanth Reddy 
664f92363d1SSreekanth Reddy 	issue_reset = 0;
665f92363d1SSreekanth Reddy 
666f92363d1SSreekanth Reddy 	if (ioc->ctl_cmds.status != MPT3_CMD_NOT_USED) {
667f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: ctl_cmd in use\n",
668f92363d1SSreekanth Reddy 		    ioc->name, __func__);
669f92363d1SSreekanth Reddy 		ret = -EAGAIN;
670f92363d1SSreekanth Reddy 		goto out;
671f92363d1SSreekanth Reddy 	}
672f92363d1SSreekanth Reddy 
673f92363d1SSreekanth Reddy 	wait_state_count = 0;
674f92363d1SSreekanth Reddy 	ioc_state = mpt3sas_base_get_iocstate(ioc, 1);
675f92363d1SSreekanth Reddy 	while (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
676f92363d1SSreekanth Reddy 		if (wait_state_count++ == 10) {
677f92363d1SSreekanth Reddy 			pr_err(MPT3SAS_FMT
678f92363d1SSreekanth Reddy 			    "%s: failed due to ioc not operational\n",
679f92363d1SSreekanth Reddy 			    ioc->name, __func__);
680f92363d1SSreekanth Reddy 			ret = -EFAULT;
681f92363d1SSreekanth Reddy 			goto out;
682f92363d1SSreekanth Reddy 		}
683f92363d1SSreekanth Reddy 		ssleep(1);
684f92363d1SSreekanth Reddy 		ioc_state = mpt3sas_base_get_iocstate(ioc, 1);
685f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT
686f92363d1SSreekanth Reddy 			"%s: waiting for operational state(count=%d)\n",
687f92363d1SSreekanth Reddy 			ioc->name,
688f92363d1SSreekanth Reddy 		    __func__, wait_state_count);
689f92363d1SSreekanth Reddy 	}
690f92363d1SSreekanth Reddy 	if (wait_state_count)
691f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT "%s: ioc is operational\n",
692f92363d1SSreekanth Reddy 		    ioc->name, __func__);
693f92363d1SSreekanth Reddy 
694f92363d1SSreekanth Reddy 	mpi_request = kzalloc(ioc->request_sz, GFP_KERNEL);
695f92363d1SSreekanth Reddy 	if (!mpi_request) {
696f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
697f92363d1SSreekanth Reddy 			"%s: failed obtaining a memory for mpi_request\n",
698f92363d1SSreekanth Reddy 			ioc->name, __func__);
699f92363d1SSreekanth Reddy 		ret = -ENOMEM;
700f92363d1SSreekanth Reddy 		goto out;
701f92363d1SSreekanth Reddy 	}
702f92363d1SSreekanth Reddy 
703f92363d1SSreekanth Reddy 	/* Check for overflow and wraparound */
704f92363d1SSreekanth Reddy 	if (karg.data_sge_offset * 4 > ioc->request_sz ||
705f92363d1SSreekanth Reddy 	    karg.data_sge_offset > (UINT_MAX / 4)) {
706f92363d1SSreekanth Reddy 		ret = -EINVAL;
707f92363d1SSreekanth Reddy 		goto out;
708f92363d1SSreekanth Reddy 	}
709f92363d1SSreekanth Reddy 
710f92363d1SSreekanth Reddy 	/* copy in request message frame from user */
711f92363d1SSreekanth Reddy 	if (copy_from_user(mpi_request, mf, karg.data_sge_offset*4)) {
712f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n", __FILE__, __LINE__,
713f92363d1SSreekanth Reddy 		    __func__);
714f92363d1SSreekanth Reddy 		ret = -EFAULT;
715f92363d1SSreekanth Reddy 		goto out;
716f92363d1SSreekanth Reddy 	}
717f92363d1SSreekanth Reddy 
718f92363d1SSreekanth Reddy 	if (mpi_request->Function == MPI2_FUNCTION_SCSI_TASK_MGMT) {
719f92363d1SSreekanth Reddy 		smid = mpt3sas_base_get_smid_hpr(ioc, ioc->ctl_cb_idx);
720f92363d1SSreekanth Reddy 		if (!smid) {
721f92363d1SSreekanth Reddy 			pr_err(MPT3SAS_FMT "%s: failed obtaining a smid\n",
722f92363d1SSreekanth Reddy 			    ioc->name, __func__);
723f92363d1SSreekanth Reddy 			ret = -EAGAIN;
724f92363d1SSreekanth Reddy 			goto out;
725f92363d1SSreekanth Reddy 		}
726f92363d1SSreekanth Reddy 	} else {
727f92363d1SSreekanth Reddy 
728f92363d1SSreekanth Reddy 		smid = mpt3sas_base_get_smid_scsiio(ioc, ioc->ctl_cb_idx, NULL);
729f92363d1SSreekanth Reddy 		if (!smid) {
730f92363d1SSreekanth Reddy 			pr_err(MPT3SAS_FMT "%s: failed obtaining a smid\n",
731f92363d1SSreekanth Reddy 			    ioc->name, __func__);
732f92363d1SSreekanth Reddy 			ret = -EAGAIN;
733f92363d1SSreekanth Reddy 			goto out;
734f92363d1SSreekanth Reddy 		}
735f92363d1SSreekanth Reddy 	}
736f92363d1SSreekanth Reddy 
737f92363d1SSreekanth Reddy 	ret = 0;
738f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_PENDING;
739f92363d1SSreekanth Reddy 	memset(ioc->ctl_cmds.reply, 0, ioc->reply_sz);
740f92363d1SSreekanth Reddy 	request = mpt3sas_base_get_msg_frame(ioc, smid);
741f92363d1SSreekanth Reddy 	memcpy(request, mpi_request, karg.data_sge_offset*4);
742f92363d1SSreekanth Reddy 	ioc->ctl_cmds.smid = smid;
743f92363d1SSreekanth Reddy 	data_out_sz = karg.data_out_size;
744f92363d1SSreekanth Reddy 	data_in_sz = karg.data_in_size;
745f92363d1SSreekanth Reddy 
746f92363d1SSreekanth Reddy 	if (mpi_request->Function == MPI2_FUNCTION_SCSI_IO_REQUEST ||
747c696f7b8SSuganath Prabu Subramani 	    mpi_request->Function == MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH ||
748c696f7b8SSuganath Prabu Subramani 	    mpi_request->Function == MPI2_FUNCTION_SCSI_TASK_MGMT ||
749aff39e61SSuganath Prabu Subramani 	    mpi_request->Function == MPI2_FUNCTION_SATA_PASSTHROUGH ||
750aff39e61SSuganath Prabu Subramani 	    mpi_request->Function == MPI2_FUNCTION_NVME_ENCAPSULATED) {
751c696f7b8SSuganath Prabu Subramani 
752c696f7b8SSuganath Prabu Subramani 		device_handle = le16_to_cpu(mpi_request->FunctionDependent1);
753c696f7b8SSuganath Prabu Subramani 		if (!device_handle || (device_handle >
754c696f7b8SSuganath Prabu Subramani 		    ioc->facts.MaxDevHandle)) {
755f92363d1SSreekanth Reddy 			ret = -EINVAL;
756f92363d1SSreekanth Reddy 			mpt3sas_base_free_smid(ioc, smid);
757f92363d1SSreekanth Reddy 			goto out;
758f92363d1SSreekanth Reddy 		}
759f92363d1SSreekanth Reddy 	}
760f92363d1SSreekanth Reddy 
761f92363d1SSreekanth Reddy 	/* obtain dma-able memory for data transfer */
762f92363d1SSreekanth Reddy 	if (data_out_sz) /* WRITE */ {
763f92363d1SSreekanth Reddy 		data_out = pci_alloc_consistent(ioc->pdev, data_out_sz,
764f92363d1SSreekanth Reddy 		    &data_out_dma);
765f92363d1SSreekanth Reddy 		if (!data_out) {
766f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n", __FILE__,
767f92363d1SSreekanth Reddy 			    __LINE__, __func__);
768f92363d1SSreekanth Reddy 			ret = -ENOMEM;
769f92363d1SSreekanth Reddy 			mpt3sas_base_free_smid(ioc, smid);
770f92363d1SSreekanth Reddy 			goto out;
771f92363d1SSreekanth Reddy 		}
772f92363d1SSreekanth Reddy 		if (copy_from_user(data_out, karg.data_out_buf_ptr,
773f92363d1SSreekanth Reddy 			data_out_sz)) {
774f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n", __FILE__,
775f92363d1SSreekanth Reddy 			    __LINE__, __func__);
776f92363d1SSreekanth Reddy 			ret =  -EFAULT;
777f92363d1SSreekanth Reddy 			mpt3sas_base_free_smid(ioc, smid);
778f92363d1SSreekanth Reddy 			goto out;
779f92363d1SSreekanth Reddy 		}
780f92363d1SSreekanth Reddy 	}
781f92363d1SSreekanth Reddy 
782f92363d1SSreekanth Reddy 	if (data_in_sz) /* READ */ {
783f92363d1SSreekanth Reddy 		data_in = pci_alloc_consistent(ioc->pdev, data_in_sz,
784f92363d1SSreekanth Reddy 		    &data_in_dma);
785f92363d1SSreekanth Reddy 		if (!data_in) {
786f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n", __FILE__,
787f92363d1SSreekanth Reddy 			    __LINE__, __func__);
788f92363d1SSreekanth Reddy 			ret = -ENOMEM;
789f92363d1SSreekanth Reddy 			mpt3sas_base_free_smid(ioc, smid);
790f92363d1SSreekanth Reddy 			goto out;
791f92363d1SSreekanth Reddy 		}
792f92363d1SSreekanth Reddy 	}
793f92363d1SSreekanth Reddy 
794f92363d1SSreekanth Reddy 	psge = (void *)request + (karg.data_sge_offset*4);
795f92363d1SSreekanth Reddy 
796f92363d1SSreekanth Reddy 	/* send command to firmware */
797f92363d1SSreekanth Reddy 	_ctl_display_some_debug(ioc, smid, "ctl_request", NULL);
798f92363d1SSreekanth Reddy 
799f92363d1SSreekanth Reddy 	init_completion(&ioc->ctl_cmds.done);
800f92363d1SSreekanth Reddy 	switch (mpi_request->Function) {
801aff39e61SSuganath Prabu Subramani 	case MPI2_FUNCTION_NVME_ENCAPSULATED:
802aff39e61SSuganath Prabu Subramani 	{
803aff39e61SSuganath Prabu Subramani 		nvme_encap_request = (Mpi26NVMeEncapsulatedRequest_t *)request;
804aff39e61SSuganath Prabu Subramani 		/*
805aff39e61SSuganath Prabu Subramani 		 * Get the Physical Address of the sense buffer.
806aff39e61SSuganath Prabu Subramani 		 * Use Error Response buffer address field to hold the sense
807aff39e61SSuganath Prabu Subramani 		 * buffer address.
808aff39e61SSuganath Prabu Subramani 		 * Clear the internal sense buffer, which will potentially hold
809aff39e61SSuganath Prabu Subramani 		 * the Completion Queue Entry on return, or 0 if no Entry.
810aff39e61SSuganath Prabu Subramani 		 * Build the PRPs and set direction bits.
811aff39e61SSuganath Prabu Subramani 		 * Send the request.
812aff39e61SSuganath Prabu Subramani 		 */
813aff39e61SSuganath Prabu Subramani 		nvme_encap_request->ErrorResponseBaseAddress = ioc->sense_dma &
814aff39e61SSuganath Prabu Subramani 		    0xFFFFFFFF00000000;
815aff39e61SSuganath Prabu Subramani 		nvme_encap_request->ErrorResponseBaseAddress |=
816aff39e61SSuganath Prabu Subramani 		    (U64)mpt3sas_base_get_sense_buffer_dma(ioc, smid);
817aff39e61SSuganath Prabu Subramani 		nvme_encap_request->ErrorResponseAllocationLength =
818aff39e61SSuganath Prabu Subramani 						NVME_ERROR_RESPONSE_SIZE;
819aff39e61SSuganath Prabu Subramani 		memset(ioc->ctl_cmds.sense, 0, NVME_ERROR_RESPONSE_SIZE);
820aff39e61SSuganath Prabu Subramani 		ioc->build_nvme_prp(ioc, smid, nvme_encap_request,
821aff39e61SSuganath Prabu Subramani 		    data_out_dma, data_out_sz, data_in_dma, data_in_sz);
822aff39e61SSuganath Prabu Subramani 		if (test_bit(device_handle, ioc->device_remove_in_progress)) {
823aff39e61SSuganath Prabu Subramani 			dtmprintk(ioc, pr_info(MPT3SAS_FMT "handle(0x%04x) :"
824aff39e61SSuganath Prabu Subramani 			    "ioctl failed due to device removal in progress\n",
825aff39e61SSuganath Prabu Subramani 			    ioc->name, device_handle));
826aff39e61SSuganath Prabu Subramani 			mpt3sas_base_free_smid(ioc, smid);
827aff39e61SSuganath Prabu Subramani 			ret = -EINVAL;
828aff39e61SSuganath Prabu Subramani 			goto out;
829aff39e61SSuganath Prabu Subramani 		}
830aff39e61SSuganath Prabu Subramani 		ioc->put_smid_nvme_encap(ioc, smid);
831aff39e61SSuganath Prabu Subramani 		break;
832aff39e61SSuganath Prabu Subramani 	}
833f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SCSI_IO_REQUEST:
834f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH:
835f92363d1SSreekanth Reddy 	{
836f92363d1SSreekanth Reddy 		Mpi2SCSIIORequest_t *scsiio_request =
837f92363d1SSreekanth Reddy 		    (Mpi2SCSIIORequest_t *)request;
838f92363d1SSreekanth Reddy 		scsiio_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE;
839f92363d1SSreekanth Reddy 		scsiio_request->SenseBufferLowAddress =
840f92363d1SSreekanth Reddy 		    mpt3sas_base_get_sense_buffer_dma(ioc, smid);
841f92363d1SSreekanth Reddy 		memset(ioc->ctl_cmds.sense, 0, SCSI_SENSE_BUFFERSIZE);
842c696f7b8SSuganath Prabu Subramani 		if (test_bit(device_handle, ioc->device_remove_in_progress)) {
843c696f7b8SSuganath Prabu Subramani 			dtmprintk(ioc, pr_info(MPT3SAS_FMT
844c696f7b8SSuganath Prabu Subramani 				"handle(0x%04x) :ioctl failed due to device removal in progress\n",
845c696f7b8SSuganath Prabu Subramani 				ioc->name, device_handle));
846c696f7b8SSuganath Prabu Subramani 			mpt3sas_base_free_smid(ioc, smid);
847c696f7b8SSuganath Prabu Subramani 			ret = -EINVAL;
848c696f7b8SSuganath Prabu Subramani 			goto out;
849c696f7b8SSuganath Prabu Subramani 		}
850f92363d1SSreekanth Reddy 		ioc->build_sg(ioc, psge, data_out_dma, data_out_sz,
851f92363d1SSreekanth Reddy 		    data_in_dma, data_in_sz);
852f92363d1SSreekanth Reddy 		if (mpi_request->Function == MPI2_FUNCTION_SCSI_IO_REQUEST)
85381c16f83SSuganath Prabu Subramani 			ioc->put_smid_scsi_io(ioc, smid, device_handle);
854f92363d1SSreekanth Reddy 		else
85581c16f83SSuganath Prabu Subramani 			ioc->put_smid_default(ioc, smid);
856f92363d1SSreekanth Reddy 		break;
857f92363d1SSreekanth Reddy 	}
858f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SCSI_TASK_MGMT:
859f92363d1SSreekanth Reddy 	{
860f92363d1SSreekanth Reddy 		Mpi2SCSITaskManagementRequest_t *tm_request =
861f92363d1SSreekanth Reddy 		    (Mpi2SCSITaskManagementRequest_t *)request;
862f92363d1SSreekanth Reddy 
863f92363d1SSreekanth Reddy 		dtmprintk(ioc, pr_info(MPT3SAS_FMT
864f92363d1SSreekanth Reddy 			"TASK_MGMT: handle(0x%04x), task_type(0x%02x)\n",
865f92363d1SSreekanth Reddy 			ioc->name,
866f92363d1SSreekanth Reddy 		    le16_to_cpu(tm_request->DevHandle), tm_request->TaskType));
867459325c4SChaitra P B 		ioc->got_task_abort_from_ioctl = 1;
868f92363d1SSreekanth Reddy 		if (tm_request->TaskType ==
869f92363d1SSreekanth Reddy 		    MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK ||
870f92363d1SSreekanth Reddy 		    tm_request->TaskType ==
871f92363d1SSreekanth Reddy 		    MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK) {
872f92363d1SSreekanth Reddy 			if (_ctl_set_task_mid(ioc, &karg, tm_request)) {
873f92363d1SSreekanth Reddy 				mpt3sas_base_free_smid(ioc, smid);
874459325c4SChaitra P B 				ioc->got_task_abort_from_ioctl = 0;
875f92363d1SSreekanth Reddy 				goto out;
876f92363d1SSreekanth Reddy 			}
877f92363d1SSreekanth Reddy 		}
878459325c4SChaitra P B 		ioc->got_task_abort_from_ioctl = 0;
879f92363d1SSreekanth Reddy 
880c696f7b8SSuganath Prabu Subramani 		if (test_bit(device_handle, ioc->device_remove_in_progress)) {
881c696f7b8SSuganath Prabu Subramani 			dtmprintk(ioc, pr_info(MPT3SAS_FMT
882c696f7b8SSuganath Prabu Subramani 				"handle(0x%04x) :ioctl failed due to device removal in progress\n",
883c696f7b8SSuganath Prabu Subramani 				ioc->name, device_handle));
884c696f7b8SSuganath Prabu Subramani 			mpt3sas_base_free_smid(ioc, smid);
885c696f7b8SSuganath Prabu Subramani 			ret = -EINVAL;
886c696f7b8SSuganath Prabu Subramani 			goto out;
887c696f7b8SSuganath Prabu Subramani 		}
888f92363d1SSreekanth Reddy 		mpt3sas_scsih_set_tm_flag(ioc, le16_to_cpu(
889f92363d1SSreekanth Reddy 		    tm_request->DevHandle));
890f92363d1SSreekanth Reddy 		ioc->build_sg_mpi(ioc, psge, data_out_dma, data_out_sz,
891f92363d1SSreekanth Reddy 		    data_in_dma, data_in_sz);
89281c16f83SSuganath Prabu Subramani 		ioc->put_smid_hi_priority(ioc, smid, 0);
893f92363d1SSreekanth Reddy 		break;
894f92363d1SSreekanth Reddy 	}
895f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SMP_PASSTHROUGH:
896f92363d1SSreekanth Reddy 	{
897f92363d1SSreekanth Reddy 		Mpi2SmpPassthroughRequest_t *smp_request =
898f92363d1SSreekanth Reddy 		    (Mpi2SmpPassthroughRequest_t *)mpi_request;
899f92363d1SSreekanth Reddy 		u8 *data;
900f92363d1SSreekanth Reddy 
901f92363d1SSreekanth Reddy 		/* ioc determines which port to use */
902f92363d1SSreekanth Reddy 		smp_request->PhysicalPort = 0xFF;
903f92363d1SSreekanth Reddy 		if (smp_request->PassthroughFlags &
904f92363d1SSreekanth Reddy 		    MPI2_SMP_PT_REQ_PT_FLAGS_IMMEDIATE)
905f92363d1SSreekanth Reddy 			data = (u8 *)&smp_request->SGL;
906f92363d1SSreekanth Reddy 		else {
907f92363d1SSreekanth Reddy 			if (unlikely(data_out == NULL)) {
908f92363d1SSreekanth Reddy 				pr_err("failure at %s:%d/%s()!\n",
909f92363d1SSreekanth Reddy 				    __FILE__, __LINE__, __func__);
910f92363d1SSreekanth Reddy 				mpt3sas_base_free_smid(ioc, smid);
911f92363d1SSreekanth Reddy 				ret = -EINVAL;
912f92363d1SSreekanth Reddy 				goto out;
913f92363d1SSreekanth Reddy 			}
914f92363d1SSreekanth Reddy 			data = data_out;
915f92363d1SSreekanth Reddy 		}
916f92363d1SSreekanth Reddy 
917f92363d1SSreekanth Reddy 		if (data[1] == 0x91 && (data[10] == 1 || data[10] == 2)) {
918f92363d1SSreekanth Reddy 			ioc->ioc_link_reset_in_progress = 1;
919f92363d1SSreekanth Reddy 			ioc->ignore_loginfos = 1;
920f92363d1SSreekanth Reddy 		}
921f92363d1SSreekanth Reddy 		ioc->build_sg(ioc, psge, data_out_dma, data_out_sz, data_in_dma,
922f92363d1SSreekanth Reddy 		    data_in_sz);
92381c16f83SSuganath Prabu Subramani 		ioc->put_smid_default(ioc, smid);
924f92363d1SSreekanth Reddy 		break;
925f92363d1SSreekanth Reddy 	}
926f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SATA_PASSTHROUGH:
927c696f7b8SSuganath Prabu Subramani 	{
928c696f7b8SSuganath Prabu Subramani 		if (test_bit(device_handle, ioc->device_remove_in_progress)) {
929c696f7b8SSuganath Prabu Subramani 			dtmprintk(ioc, pr_info(MPT3SAS_FMT
930c696f7b8SSuganath Prabu Subramani 				"handle(0x%04x) :ioctl failed due to device removal in progress\n",
931c696f7b8SSuganath Prabu Subramani 				ioc->name, device_handle));
932c696f7b8SSuganath Prabu Subramani 			mpt3sas_base_free_smid(ioc, smid);
933c696f7b8SSuganath Prabu Subramani 			ret = -EINVAL;
934c696f7b8SSuganath Prabu Subramani 			goto out;
935c696f7b8SSuganath Prabu Subramani 		}
936c696f7b8SSuganath Prabu Subramani 		ioc->build_sg(ioc, psge, data_out_dma, data_out_sz, data_in_dma,
937c696f7b8SSuganath Prabu Subramani 		    data_in_sz);
93881c16f83SSuganath Prabu Subramani 		ioc->put_smid_default(ioc, smid);
939c696f7b8SSuganath Prabu Subramani 		break;
940c696f7b8SSuganath Prabu Subramani 	}
941f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_FW_DOWNLOAD:
942f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_FW_UPLOAD:
943f92363d1SSreekanth Reddy 	{
944f92363d1SSreekanth Reddy 		ioc->build_sg(ioc, psge, data_out_dma, data_out_sz, data_in_dma,
945f92363d1SSreekanth Reddy 		    data_in_sz);
94681c16f83SSuganath Prabu Subramani 		ioc->put_smid_default(ioc, smid);
947f92363d1SSreekanth Reddy 		break;
948f92363d1SSreekanth Reddy 	}
949f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_TOOLBOX:
950f92363d1SSreekanth Reddy 	{
951f92363d1SSreekanth Reddy 		Mpi2ToolboxCleanRequest_t *toolbox_request =
952f92363d1SSreekanth Reddy 			(Mpi2ToolboxCleanRequest_t *)mpi_request;
953f92363d1SSreekanth Reddy 
954f92363d1SSreekanth Reddy 		if (toolbox_request->Tool == MPI2_TOOLBOX_DIAGNOSTIC_CLI_TOOL) {
955f92363d1SSreekanth Reddy 			ioc->build_sg(ioc, psge, data_out_dma, data_out_sz,
956f92363d1SSreekanth Reddy 				data_in_dma, data_in_sz);
957f92363d1SSreekanth Reddy 		} else {
958f92363d1SSreekanth Reddy 			ioc->build_sg_mpi(ioc, psge, data_out_dma, data_out_sz,
959f92363d1SSreekanth Reddy 				data_in_dma, data_in_sz);
960f92363d1SSreekanth Reddy 		}
96181c16f83SSuganath Prabu Subramani 		ioc->put_smid_default(ioc, smid);
962f92363d1SSreekanth Reddy 		break;
963f92363d1SSreekanth Reddy 	}
964f92363d1SSreekanth Reddy 	case MPI2_FUNCTION_SAS_IO_UNIT_CONTROL:
965f92363d1SSreekanth Reddy 	{
966f92363d1SSreekanth Reddy 		Mpi2SasIoUnitControlRequest_t *sasiounit_request =
967f92363d1SSreekanth Reddy 		    (Mpi2SasIoUnitControlRequest_t *)mpi_request;
968f92363d1SSreekanth Reddy 
969f92363d1SSreekanth Reddy 		if (sasiounit_request->Operation == MPI2_SAS_OP_PHY_HARD_RESET
970f92363d1SSreekanth Reddy 		    || sasiounit_request->Operation ==
971f92363d1SSreekanth Reddy 		    MPI2_SAS_OP_PHY_LINK_RESET) {
972f92363d1SSreekanth Reddy 			ioc->ioc_link_reset_in_progress = 1;
973f92363d1SSreekanth Reddy 			ioc->ignore_loginfos = 1;
974f92363d1SSreekanth Reddy 		}
975f92363d1SSreekanth Reddy 		/* drop to default case for posting the request */
976f92363d1SSreekanth Reddy 	}
977f92363d1SSreekanth Reddy 	default:
978f92363d1SSreekanth Reddy 		ioc->build_sg_mpi(ioc, psge, data_out_dma, data_out_sz,
979f92363d1SSreekanth Reddy 		    data_in_dma, data_in_sz);
98081c16f83SSuganath Prabu Subramani 		ioc->put_smid_default(ioc, smid);
981f92363d1SSreekanth Reddy 		break;
982f92363d1SSreekanth Reddy 	}
983f92363d1SSreekanth Reddy 
984f92363d1SSreekanth Reddy 	if (karg.timeout < MPT3_IOCTL_DEFAULT_TIMEOUT)
985f92363d1SSreekanth Reddy 		timeout = MPT3_IOCTL_DEFAULT_TIMEOUT;
986f92363d1SSreekanth Reddy 	else
987f92363d1SSreekanth Reddy 		timeout = karg.timeout;
9888bbb1cf6SCalvin Owens 	wait_for_completion_timeout(&ioc->ctl_cmds.done, timeout*HZ);
989f92363d1SSreekanth Reddy 	if (mpi_request->Function == MPI2_FUNCTION_SCSI_TASK_MGMT) {
990f92363d1SSreekanth Reddy 		Mpi2SCSITaskManagementRequest_t *tm_request =
991f92363d1SSreekanth Reddy 		    (Mpi2SCSITaskManagementRequest_t *)mpi_request;
992f92363d1SSreekanth Reddy 		mpt3sas_scsih_clear_tm_flag(ioc, le16_to_cpu(
993f92363d1SSreekanth Reddy 		    tm_request->DevHandle));
994f92363d1SSreekanth Reddy 		mpt3sas_trigger_master(ioc, MASTER_TRIGGER_TASK_MANAGMENT);
995f92363d1SSreekanth Reddy 	} else if ((mpi_request->Function == MPI2_FUNCTION_SMP_PASSTHROUGH ||
996f92363d1SSreekanth Reddy 	    mpi_request->Function == MPI2_FUNCTION_SAS_IO_UNIT_CONTROL) &&
997f92363d1SSreekanth Reddy 		ioc->ioc_link_reset_in_progress) {
998f92363d1SSreekanth Reddy 		ioc->ioc_link_reset_in_progress = 0;
999f92363d1SSreekanth Reddy 		ioc->ignore_loginfos = 0;
1000f92363d1SSreekanth Reddy 	}
1001f92363d1SSreekanth Reddy 	if (!(ioc->ctl_cmds.status & MPT3_CMD_COMPLETE)) {
1002f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: timeout\n", ioc->name,
1003f92363d1SSreekanth Reddy 		    __func__);
1004f92363d1SSreekanth Reddy 		_debug_dump_mf(mpi_request, karg.data_sge_offset);
1005f92363d1SSreekanth Reddy 		if (!(ioc->ctl_cmds.status & MPT3_CMD_RESET))
1006f92363d1SSreekanth Reddy 			issue_reset = 1;
1007f92363d1SSreekanth Reddy 		goto issue_host_reset;
1008f92363d1SSreekanth Reddy 	}
1009f92363d1SSreekanth Reddy 
1010f92363d1SSreekanth Reddy 	mpi_reply = ioc->ctl_cmds.reply;
1011f92363d1SSreekanth Reddy 
1012f92363d1SSreekanth Reddy 	if (mpi_reply->Function == MPI2_FUNCTION_SCSI_TASK_MGMT &&
1013f92363d1SSreekanth Reddy 	    (ioc->logging_level & MPT_DEBUG_TM)) {
1014f92363d1SSreekanth Reddy 		Mpi2SCSITaskManagementReply_t *tm_reply =
1015f92363d1SSreekanth Reddy 		    (Mpi2SCSITaskManagementReply_t *)mpi_reply;
1016f92363d1SSreekanth Reddy 
1017f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT "TASK_MGMT: " \
1018f92363d1SSreekanth Reddy 		    "IOCStatus(0x%04x), IOCLogInfo(0x%08x), "
1019f92363d1SSreekanth Reddy 		    "TerminationCount(0x%08x)\n", ioc->name,
1020f92363d1SSreekanth Reddy 		    le16_to_cpu(tm_reply->IOCStatus),
1021f92363d1SSreekanth Reddy 		    le32_to_cpu(tm_reply->IOCLogInfo),
1022f92363d1SSreekanth Reddy 		    le32_to_cpu(tm_reply->TerminationCount));
1023f92363d1SSreekanth Reddy 	}
1024af009411SSreekanth Reddy 
1025f92363d1SSreekanth Reddy 	/* copy out xdata to user */
1026f92363d1SSreekanth Reddy 	if (data_in_sz) {
1027f92363d1SSreekanth Reddy 		if (copy_to_user(karg.data_in_buf_ptr, data_in,
1028f92363d1SSreekanth Reddy 		    data_in_sz)) {
1029f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n", __FILE__,
1030f92363d1SSreekanth Reddy 			    __LINE__, __func__);
1031f92363d1SSreekanth Reddy 			ret = -ENODATA;
1032f92363d1SSreekanth Reddy 			goto out;
1033f92363d1SSreekanth Reddy 		}
1034f92363d1SSreekanth Reddy 	}
1035f92363d1SSreekanth Reddy 
1036f92363d1SSreekanth Reddy 	/* copy out reply message frame to user */
1037f92363d1SSreekanth Reddy 	if (karg.max_reply_bytes) {
1038f92363d1SSreekanth Reddy 		sz = min_t(u32, karg.max_reply_bytes, ioc->reply_sz);
1039f92363d1SSreekanth Reddy 		if (copy_to_user(karg.reply_frame_buf_ptr, ioc->ctl_cmds.reply,
1040f92363d1SSreekanth Reddy 		    sz)) {
1041f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n", __FILE__,
1042f92363d1SSreekanth Reddy 			    __LINE__, __func__);
1043f92363d1SSreekanth Reddy 			ret = -ENODATA;
1044f92363d1SSreekanth Reddy 			goto out;
1045f92363d1SSreekanth Reddy 		}
1046f92363d1SSreekanth Reddy 	}
1047f92363d1SSreekanth Reddy 
1048aff39e61SSuganath Prabu Subramani 	/* copy out sense/NVMe Error Response to user */
1049f92363d1SSreekanth Reddy 	if (karg.max_sense_bytes && (mpi_request->Function ==
1050f92363d1SSreekanth Reddy 	    MPI2_FUNCTION_SCSI_IO_REQUEST || mpi_request->Function ==
1051aff39e61SSuganath Prabu Subramani 	    MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH || mpi_request->Function ==
1052aff39e61SSuganath Prabu Subramani 	    MPI2_FUNCTION_NVME_ENCAPSULATED)) {
1053aff39e61SSuganath Prabu Subramani 		if (karg.sense_data_ptr == NULL) {
1054aff39e61SSuganath Prabu Subramani 			pr_info(MPT3SAS_FMT "Response buffer provided"
1055aff39e61SSuganath Prabu Subramani 			    " by application is NULL; Response data will"
1056aff39e61SSuganath Prabu Subramani 			    " not be returned.\n", ioc->name);
1057aff39e61SSuganath Prabu Subramani 			goto out;
1058aff39e61SSuganath Prabu Subramani 		}
1059aff39e61SSuganath Prabu Subramani 		sz_arg = (mpi_request->Function ==
1060aff39e61SSuganath Prabu Subramani 		MPI2_FUNCTION_NVME_ENCAPSULATED) ? NVME_ERROR_RESPONSE_SIZE :
1061aff39e61SSuganath Prabu Subramani 							SCSI_SENSE_BUFFERSIZE;
1062aff39e61SSuganath Prabu Subramani 		sz = min_t(u32, karg.max_sense_bytes, sz_arg);
1063f92363d1SSreekanth Reddy 		if (copy_to_user(karg.sense_data_ptr, ioc->ctl_cmds.sense,
1064f92363d1SSreekanth Reddy 		    sz)) {
1065f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n", __FILE__,
1066f92363d1SSreekanth Reddy 				__LINE__, __func__);
1067f92363d1SSreekanth Reddy 			ret = -ENODATA;
1068f92363d1SSreekanth Reddy 			goto out;
1069f92363d1SSreekanth Reddy 		}
1070f92363d1SSreekanth Reddy 	}
1071f92363d1SSreekanth Reddy 
1072f92363d1SSreekanth Reddy  issue_host_reset:
1073f92363d1SSreekanth Reddy 	if (issue_reset) {
1074f92363d1SSreekanth Reddy 		ret = -ENODATA;
1075f92363d1SSreekanth Reddy 		if ((mpi_request->Function == MPI2_FUNCTION_SCSI_IO_REQUEST ||
1076f92363d1SSreekanth Reddy 		    mpi_request->Function ==
1077f92363d1SSreekanth Reddy 		    MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH ||
1078f92363d1SSreekanth Reddy 		    mpi_request->Function == MPI2_FUNCTION_SATA_PASSTHROUGH)) {
1079f92363d1SSreekanth Reddy 			pr_info(MPT3SAS_FMT "issue target reset: handle = (0x%04x)\n",
1080f92363d1SSreekanth Reddy 				ioc->name,
1081f92363d1SSreekanth Reddy 				le16_to_cpu(mpi_request->FunctionDependent1));
1082f92363d1SSreekanth Reddy 			mpt3sas_halt_firmware(ioc);
108396902835SCalvin Owens 			mpt3sas_scsih_issue_locked_tm(ioc,
1084f92363d1SSreekanth Reddy 			    le16_to_cpu(mpi_request->FunctionDependent1), 0, 0,
108596902835SCalvin Owens 			    0, MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET, 0, 30);
1086f92363d1SSreekanth Reddy 		} else
108798c56ad3SCalvin Owens 			mpt3sas_base_hard_reset_handler(ioc, FORCE_BIG_HAMMER);
1088f92363d1SSreekanth Reddy 	}
1089f92363d1SSreekanth Reddy 
1090f92363d1SSreekanth Reddy  out:
1091f92363d1SSreekanth Reddy 
1092f92363d1SSreekanth Reddy 	/* free memory associated with sg buffers */
1093f92363d1SSreekanth Reddy 	if (data_in)
1094f92363d1SSreekanth Reddy 		pci_free_consistent(ioc->pdev, data_in_sz, data_in,
1095f92363d1SSreekanth Reddy 		    data_in_dma);
1096f92363d1SSreekanth Reddy 
1097f92363d1SSreekanth Reddy 	if (data_out)
1098f92363d1SSreekanth Reddy 		pci_free_consistent(ioc->pdev, data_out_sz, data_out,
1099f92363d1SSreekanth Reddy 		    data_out_dma);
1100f92363d1SSreekanth Reddy 
1101f92363d1SSreekanth Reddy 	kfree(mpi_request);
1102f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_NOT_USED;
1103f92363d1SSreekanth Reddy 	return ret;
1104f92363d1SSreekanth Reddy }
1105f92363d1SSreekanth Reddy 
1106f92363d1SSreekanth Reddy /**
1107f92363d1SSreekanth Reddy  * _ctl_getiocinfo - main handler for MPT3IOCINFO opcode
1108f92363d1SSreekanth Reddy  * @ioc: per adapter object
1109f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1110f92363d1SSreekanth Reddy  */
1111f92363d1SSreekanth Reddy static long
1112f92363d1SSreekanth Reddy _ctl_getiocinfo(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1113f92363d1SSreekanth Reddy {
1114f92363d1SSreekanth Reddy 	struct mpt3_ioctl_iocinfo karg;
1115f92363d1SSreekanth Reddy 
1116f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: enter\n", ioc->name,
1117f92363d1SSreekanth Reddy 	    __func__));
1118f92363d1SSreekanth Reddy 
1119f92363d1SSreekanth Reddy 	memset(&karg, 0 , sizeof(karg));
1120f92363d1SSreekanth Reddy 	if (ioc->pfacts)
1121f92363d1SSreekanth Reddy 		karg.port_number = ioc->pfacts[0].PortNumber;
1122f92363d1SSreekanth Reddy 	karg.hw_rev = ioc->pdev->revision;
1123f92363d1SSreekanth Reddy 	karg.pci_id = ioc->pdev->device;
1124f92363d1SSreekanth Reddy 	karg.subsystem_device = ioc->pdev->subsystem_device;
1125f92363d1SSreekanth Reddy 	karg.subsystem_vendor = ioc->pdev->subsystem_vendor;
1126f92363d1SSreekanth Reddy 	karg.pci_information.u.bits.bus = ioc->pdev->bus->number;
1127f92363d1SSreekanth Reddy 	karg.pci_information.u.bits.device = PCI_SLOT(ioc->pdev->devfn);
1128f92363d1SSreekanth Reddy 	karg.pci_information.u.bits.function = PCI_FUNC(ioc->pdev->devfn);
1129f92363d1SSreekanth Reddy 	karg.pci_information.segment_id = pci_domain_nr(ioc->pdev->bus);
1130f92363d1SSreekanth Reddy 	karg.firmware_version = ioc->facts.FWVersion.Word;
1131c84b06a4SSreekanth Reddy 	strcpy(karg.driver_version, ioc->driver_name);
1132f92363d1SSreekanth Reddy 	strcat(karg.driver_version, "-");
1133d357e84dSSreekanth Reddy 	switch  (ioc->hba_mpi_version_belonged) {
1134d357e84dSSreekanth Reddy 	case MPI2_VERSION:
11357786ab6aSSreekanth Reddy 		if (ioc->is_warpdrive)
11367786ab6aSSreekanth Reddy 			karg.adapter_type = MPT2_IOCTL_INTERFACE_SAS2_SSS6200;
11377786ab6aSSreekanth Reddy 		else
1138d357e84dSSreekanth Reddy 			karg.adapter_type = MPT2_IOCTL_INTERFACE_SAS2;
1139d357e84dSSreekanth Reddy 		strcat(karg.driver_version, MPT2SAS_DRIVER_VERSION);
1140d357e84dSSreekanth Reddy 		break;
1141d357e84dSSreekanth Reddy 	case MPI25_VERSION:
1142b130b0d5SSuganath prabu Subramani 	case MPI26_VERSION:
1143998f26aeSSuganath Prabu Subramani 		if (ioc->is_gen35_ioc)
1144998f26aeSSuganath Prabu Subramani 			karg.adapter_type = MPT3_IOCTL_INTERFACE_SAS35;
1145998f26aeSSuganath Prabu Subramani 		else
1146d357e84dSSreekanth Reddy 			karg.adapter_type = MPT3_IOCTL_INTERFACE_SAS3;
1147d357e84dSSreekanth Reddy 		strcat(karg.driver_version, MPT3SAS_DRIVER_VERSION);
1148d357e84dSSreekanth Reddy 		break;
1149d357e84dSSreekanth Reddy 	}
1150f92363d1SSreekanth Reddy 	karg.bios_version = le32_to_cpu(ioc->bios_pg3.BiosVersion);
1151f92363d1SSreekanth Reddy 
1152f92363d1SSreekanth Reddy 	if (copy_to_user(arg, &karg, sizeof(karg))) {
1153f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1154f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1155f92363d1SSreekanth Reddy 		return -EFAULT;
1156f92363d1SSreekanth Reddy 	}
1157f92363d1SSreekanth Reddy 	return 0;
1158f92363d1SSreekanth Reddy }
1159f92363d1SSreekanth Reddy 
1160f92363d1SSreekanth Reddy /**
1161f92363d1SSreekanth Reddy  * _ctl_eventquery - main handler for MPT3EVENTQUERY opcode
1162f92363d1SSreekanth Reddy  * @ioc: per adapter object
1163f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1164f92363d1SSreekanth Reddy  */
1165f92363d1SSreekanth Reddy static long
1166f92363d1SSreekanth Reddy _ctl_eventquery(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1167f92363d1SSreekanth Reddy {
1168f92363d1SSreekanth Reddy 	struct mpt3_ioctl_eventquery karg;
1169f92363d1SSreekanth Reddy 
1170f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1171f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1172f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1173f92363d1SSreekanth Reddy 		return -EFAULT;
1174f92363d1SSreekanth Reddy 	}
1175f92363d1SSreekanth Reddy 
1176f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: enter\n", ioc->name,
1177f92363d1SSreekanth Reddy 	    __func__));
1178f92363d1SSreekanth Reddy 
1179f92363d1SSreekanth Reddy 	karg.event_entries = MPT3SAS_CTL_EVENT_LOG_SIZE;
1180f92363d1SSreekanth Reddy 	memcpy(karg.event_types, ioc->event_type,
1181f92363d1SSreekanth Reddy 	    MPI2_EVENT_NOTIFY_EVENTMASK_WORDS * sizeof(u32));
1182f92363d1SSreekanth Reddy 
1183f92363d1SSreekanth Reddy 	if (copy_to_user(arg, &karg, sizeof(karg))) {
1184f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1185f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1186f92363d1SSreekanth Reddy 		return -EFAULT;
1187f92363d1SSreekanth Reddy 	}
1188f92363d1SSreekanth Reddy 	return 0;
1189f92363d1SSreekanth Reddy }
1190f92363d1SSreekanth Reddy 
1191f92363d1SSreekanth Reddy /**
1192f92363d1SSreekanth Reddy  * _ctl_eventenable - main handler for MPT3EVENTENABLE opcode
1193f92363d1SSreekanth Reddy  * @ioc: per adapter object
1194f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1195f92363d1SSreekanth Reddy  */
1196f92363d1SSreekanth Reddy static long
1197f92363d1SSreekanth Reddy _ctl_eventenable(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1198f92363d1SSreekanth Reddy {
1199f92363d1SSreekanth Reddy 	struct mpt3_ioctl_eventenable karg;
1200f92363d1SSreekanth Reddy 
1201f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1202f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1203f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1204f92363d1SSreekanth Reddy 		return -EFAULT;
1205f92363d1SSreekanth Reddy 	}
1206f92363d1SSreekanth Reddy 
1207f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: enter\n", ioc->name,
1208f92363d1SSreekanth Reddy 	    __func__));
1209f92363d1SSreekanth Reddy 
1210f92363d1SSreekanth Reddy 	memcpy(ioc->event_type, karg.event_types,
1211f92363d1SSreekanth Reddy 	    MPI2_EVENT_NOTIFY_EVENTMASK_WORDS * sizeof(u32));
1212f92363d1SSreekanth Reddy 	mpt3sas_base_validate_event_type(ioc, ioc->event_type);
1213f92363d1SSreekanth Reddy 
1214f92363d1SSreekanth Reddy 	if (ioc->event_log)
1215f92363d1SSreekanth Reddy 		return 0;
1216f92363d1SSreekanth Reddy 	/* initialize event_log */
1217f92363d1SSreekanth Reddy 	ioc->event_context = 0;
1218f92363d1SSreekanth Reddy 	ioc->aen_event_read_flag = 0;
1219f92363d1SSreekanth Reddy 	ioc->event_log = kcalloc(MPT3SAS_CTL_EVENT_LOG_SIZE,
1220f92363d1SSreekanth Reddy 	    sizeof(struct MPT3_IOCTL_EVENTS), GFP_KERNEL);
1221f92363d1SSreekanth Reddy 	if (!ioc->event_log) {
1222f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1223f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1224f92363d1SSreekanth Reddy 		return -ENOMEM;
1225f92363d1SSreekanth Reddy 	}
1226f92363d1SSreekanth Reddy 	return 0;
1227f92363d1SSreekanth Reddy }
1228f92363d1SSreekanth Reddy 
1229f92363d1SSreekanth Reddy /**
1230f92363d1SSreekanth Reddy  * _ctl_eventreport - main handler for MPT3EVENTREPORT opcode
1231f92363d1SSreekanth Reddy  * @ioc: per adapter object
1232f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1233f92363d1SSreekanth Reddy  */
1234f92363d1SSreekanth Reddy static long
1235f92363d1SSreekanth Reddy _ctl_eventreport(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1236f92363d1SSreekanth Reddy {
1237f92363d1SSreekanth Reddy 	struct mpt3_ioctl_eventreport karg;
1238f92363d1SSreekanth Reddy 	u32 number_bytes, max_events, max;
1239f92363d1SSreekanth Reddy 	struct mpt3_ioctl_eventreport __user *uarg = arg;
1240f92363d1SSreekanth Reddy 
1241f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1242f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1243f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1244f92363d1SSreekanth Reddy 		return -EFAULT;
1245f92363d1SSreekanth Reddy 	}
1246f92363d1SSreekanth Reddy 
1247f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: enter\n", ioc->name,
1248f92363d1SSreekanth Reddy 	    __func__));
1249f92363d1SSreekanth Reddy 
1250f92363d1SSreekanth Reddy 	number_bytes = karg.hdr.max_data_size -
1251f92363d1SSreekanth Reddy 	    sizeof(struct mpt3_ioctl_header);
1252f92363d1SSreekanth Reddy 	max_events = number_bytes/sizeof(struct MPT3_IOCTL_EVENTS);
1253f92363d1SSreekanth Reddy 	max = min_t(u32, MPT3SAS_CTL_EVENT_LOG_SIZE, max_events);
1254f92363d1SSreekanth Reddy 
1255f92363d1SSreekanth Reddy 	/* If fewer than 1 event is requested, there must have
1256f92363d1SSreekanth Reddy 	 * been some type of error.
1257f92363d1SSreekanth Reddy 	 */
1258f92363d1SSreekanth Reddy 	if (!max || !ioc->event_log)
1259f92363d1SSreekanth Reddy 		return -ENODATA;
1260f92363d1SSreekanth Reddy 
1261f92363d1SSreekanth Reddy 	number_bytes = max * sizeof(struct MPT3_IOCTL_EVENTS);
1262f92363d1SSreekanth Reddy 	if (copy_to_user(uarg->event_data, ioc->event_log, number_bytes)) {
1263f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1264f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1265f92363d1SSreekanth Reddy 		return -EFAULT;
1266f92363d1SSreekanth Reddy 	}
1267f92363d1SSreekanth Reddy 
1268f92363d1SSreekanth Reddy 	/* reset flag so SIGIO can restart */
1269f92363d1SSreekanth Reddy 	ioc->aen_event_read_flag = 0;
1270f92363d1SSreekanth Reddy 	return 0;
1271f92363d1SSreekanth Reddy }
1272f92363d1SSreekanth Reddy 
1273f92363d1SSreekanth Reddy /**
1274f92363d1SSreekanth Reddy  * _ctl_do_reset - main handler for MPT3HARDRESET opcode
1275f92363d1SSreekanth Reddy  * @ioc: per adapter object
1276f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1277f92363d1SSreekanth Reddy  */
1278f92363d1SSreekanth Reddy static long
1279f92363d1SSreekanth Reddy _ctl_do_reset(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1280f92363d1SSreekanth Reddy {
1281f92363d1SSreekanth Reddy 	struct mpt3_ioctl_diag_reset karg;
1282f92363d1SSreekanth Reddy 	int retval;
1283f92363d1SSreekanth Reddy 
1284f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1285f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1286f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1287f92363d1SSreekanth Reddy 		return -EFAULT;
1288f92363d1SSreekanth Reddy 	}
1289f92363d1SSreekanth Reddy 
1290f92363d1SSreekanth Reddy 	if (ioc->shost_recovery || ioc->pci_error_recovery ||
1291f92363d1SSreekanth Reddy 	    ioc->is_driver_loading)
1292f92363d1SSreekanth Reddy 		return -EAGAIN;
1293f92363d1SSreekanth Reddy 
1294f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: enter\n", ioc->name,
1295f92363d1SSreekanth Reddy 	    __func__));
1296f92363d1SSreekanth Reddy 
129798c56ad3SCalvin Owens 	retval = mpt3sas_base_hard_reset_handler(ioc, FORCE_BIG_HAMMER);
1298f92363d1SSreekanth Reddy 	pr_info(MPT3SAS_FMT "host reset: %s\n",
1299f92363d1SSreekanth Reddy 	    ioc->name, ((!retval) ? "SUCCESS" : "FAILED"));
1300f92363d1SSreekanth Reddy 	return 0;
1301f92363d1SSreekanth Reddy }
1302f92363d1SSreekanth Reddy 
1303f92363d1SSreekanth Reddy /**
1304f92363d1SSreekanth Reddy  * _ctl_btdh_search_sas_device - searching for sas device
1305f92363d1SSreekanth Reddy  * @ioc: per adapter object
1306f92363d1SSreekanth Reddy  * @btdh: btdh ioctl payload
1307f92363d1SSreekanth Reddy  */
1308f92363d1SSreekanth Reddy static int
1309f92363d1SSreekanth Reddy _ctl_btdh_search_sas_device(struct MPT3SAS_ADAPTER *ioc,
1310f92363d1SSreekanth Reddy 	struct mpt3_ioctl_btdh_mapping *btdh)
1311f92363d1SSreekanth Reddy {
1312f92363d1SSreekanth Reddy 	struct _sas_device *sas_device;
1313f92363d1SSreekanth Reddy 	unsigned long flags;
1314f92363d1SSreekanth Reddy 	int rc = 0;
1315f92363d1SSreekanth Reddy 
1316f92363d1SSreekanth Reddy 	if (list_empty(&ioc->sas_device_list))
1317f92363d1SSreekanth Reddy 		return rc;
1318f92363d1SSreekanth Reddy 
1319f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->sas_device_lock, flags);
1320f92363d1SSreekanth Reddy 	list_for_each_entry(sas_device, &ioc->sas_device_list, list) {
1321f92363d1SSreekanth Reddy 		if (btdh->bus == 0xFFFFFFFF && btdh->id == 0xFFFFFFFF &&
1322f92363d1SSreekanth Reddy 		    btdh->handle == sas_device->handle) {
1323f92363d1SSreekanth Reddy 			btdh->bus = sas_device->channel;
1324f92363d1SSreekanth Reddy 			btdh->id = sas_device->id;
1325f92363d1SSreekanth Reddy 			rc = 1;
1326f92363d1SSreekanth Reddy 			goto out;
1327f92363d1SSreekanth Reddy 		} else if (btdh->bus == sas_device->channel && btdh->id ==
1328f92363d1SSreekanth Reddy 		    sas_device->id && btdh->handle == 0xFFFF) {
1329f92363d1SSreekanth Reddy 			btdh->handle = sas_device->handle;
1330f92363d1SSreekanth Reddy 			rc = 1;
1331f92363d1SSreekanth Reddy 			goto out;
1332f92363d1SSreekanth Reddy 		}
1333f92363d1SSreekanth Reddy 	}
1334f92363d1SSreekanth Reddy  out:
1335f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1336f92363d1SSreekanth Reddy 	return rc;
1337f92363d1SSreekanth Reddy }
1338f92363d1SSreekanth Reddy 
1339f92363d1SSreekanth Reddy /**
134045aa6a1aSSuganath Prabu Subramani  * _ctl_btdh_search_pcie_device - searching for pcie device
134145aa6a1aSSuganath Prabu Subramani  * @ioc: per adapter object
134245aa6a1aSSuganath Prabu Subramani  * @btdh: btdh ioctl payload
134345aa6a1aSSuganath Prabu Subramani  */
134445aa6a1aSSuganath Prabu Subramani static int
134545aa6a1aSSuganath Prabu Subramani _ctl_btdh_search_pcie_device(struct MPT3SAS_ADAPTER *ioc,
134645aa6a1aSSuganath Prabu Subramani 	struct mpt3_ioctl_btdh_mapping *btdh)
134745aa6a1aSSuganath Prabu Subramani {
134845aa6a1aSSuganath Prabu Subramani 	struct _pcie_device *pcie_device;
134945aa6a1aSSuganath Prabu Subramani 	unsigned long flags;
135045aa6a1aSSuganath Prabu Subramani 	int rc = 0;
135145aa6a1aSSuganath Prabu Subramani 
135245aa6a1aSSuganath Prabu Subramani 	if (list_empty(&ioc->pcie_device_list))
135345aa6a1aSSuganath Prabu Subramani 		return rc;
135445aa6a1aSSuganath Prabu Subramani 
135545aa6a1aSSuganath Prabu Subramani 	spin_lock_irqsave(&ioc->pcie_device_lock, flags);
135645aa6a1aSSuganath Prabu Subramani 	list_for_each_entry(pcie_device, &ioc->pcie_device_list, list) {
135745aa6a1aSSuganath Prabu Subramani 		if (btdh->bus == 0xFFFFFFFF && btdh->id == 0xFFFFFFFF &&
135845aa6a1aSSuganath Prabu Subramani 			   btdh->handle == pcie_device->handle) {
135945aa6a1aSSuganath Prabu Subramani 			btdh->bus = pcie_device->channel;
136045aa6a1aSSuganath Prabu Subramani 			btdh->id = pcie_device->id;
136145aa6a1aSSuganath Prabu Subramani 			rc = 1;
136245aa6a1aSSuganath Prabu Subramani 			goto out;
136345aa6a1aSSuganath Prabu Subramani 		} else if (btdh->bus == pcie_device->channel && btdh->id ==
136445aa6a1aSSuganath Prabu Subramani 			   pcie_device->id && btdh->handle == 0xFFFF) {
136545aa6a1aSSuganath Prabu Subramani 			btdh->handle = pcie_device->handle;
136645aa6a1aSSuganath Prabu Subramani 			rc = 1;
136745aa6a1aSSuganath Prabu Subramani 			goto out;
136845aa6a1aSSuganath Prabu Subramani 		}
136945aa6a1aSSuganath Prabu Subramani 	}
137045aa6a1aSSuganath Prabu Subramani  out:
137145aa6a1aSSuganath Prabu Subramani 	spin_unlock_irqrestore(&ioc->pcie_device_lock, flags);
137245aa6a1aSSuganath Prabu Subramani 	return rc;
137345aa6a1aSSuganath Prabu Subramani }
137445aa6a1aSSuganath Prabu Subramani 
137545aa6a1aSSuganath Prabu Subramani /**
1376f92363d1SSreekanth Reddy  * _ctl_btdh_search_raid_device - searching for raid device
1377f92363d1SSreekanth Reddy  * @ioc: per adapter object
1378f92363d1SSreekanth Reddy  * @btdh: btdh ioctl payload
1379f92363d1SSreekanth Reddy  */
1380f92363d1SSreekanth Reddy static int
1381f92363d1SSreekanth Reddy _ctl_btdh_search_raid_device(struct MPT3SAS_ADAPTER *ioc,
1382f92363d1SSreekanth Reddy 	struct mpt3_ioctl_btdh_mapping *btdh)
1383f92363d1SSreekanth Reddy {
1384f92363d1SSreekanth Reddy 	struct _raid_device *raid_device;
1385f92363d1SSreekanth Reddy 	unsigned long flags;
1386f92363d1SSreekanth Reddy 	int rc = 0;
1387f92363d1SSreekanth Reddy 
1388f92363d1SSreekanth Reddy 	if (list_empty(&ioc->raid_device_list))
1389f92363d1SSreekanth Reddy 		return rc;
1390f92363d1SSreekanth Reddy 
1391f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->raid_device_lock, flags);
1392f92363d1SSreekanth Reddy 	list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
1393f92363d1SSreekanth Reddy 		if (btdh->bus == 0xFFFFFFFF && btdh->id == 0xFFFFFFFF &&
1394f92363d1SSreekanth Reddy 		    btdh->handle == raid_device->handle) {
1395f92363d1SSreekanth Reddy 			btdh->bus = raid_device->channel;
1396f92363d1SSreekanth Reddy 			btdh->id = raid_device->id;
1397f92363d1SSreekanth Reddy 			rc = 1;
1398f92363d1SSreekanth Reddy 			goto out;
1399f92363d1SSreekanth Reddy 		} else if (btdh->bus == raid_device->channel && btdh->id ==
1400f92363d1SSreekanth Reddy 		    raid_device->id && btdh->handle == 0xFFFF) {
1401f92363d1SSreekanth Reddy 			btdh->handle = raid_device->handle;
1402f92363d1SSreekanth Reddy 			rc = 1;
1403f92363d1SSreekanth Reddy 			goto out;
1404f92363d1SSreekanth Reddy 		}
1405f92363d1SSreekanth Reddy 	}
1406f92363d1SSreekanth Reddy  out:
1407f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1408f92363d1SSreekanth Reddy 	return rc;
1409f92363d1SSreekanth Reddy }
1410f92363d1SSreekanth Reddy 
1411f92363d1SSreekanth Reddy /**
1412f92363d1SSreekanth Reddy  * _ctl_btdh_mapping - main handler for MPT3BTDHMAPPING opcode
1413f92363d1SSreekanth Reddy  * @ioc: per adapter object
1414f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1415f92363d1SSreekanth Reddy  */
1416f92363d1SSreekanth Reddy static long
1417f92363d1SSreekanth Reddy _ctl_btdh_mapping(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1418f92363d1SSreekanth Reddy {
1419f92363d1SSreekanth Reddy 	struct mpt3_ioctl_btdh_mapping karg;
1420f92363d1SSreekanth Reddy 	int rc;
1421f92363d1SSreekanth Reddy 
1422f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1423f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1424f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1425f92363d1SSreekanth Reddy 		return -EFAULT;
1426f92363d1SSreekanth Reddy 	}
1427f92363d1SSreekanth Reddy 
1428f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name,
1429f92363d1SSreekanth Reddy 	    __func__));
1430f92363d1SSreekanth Reddy 
1431f92363d1SSreekanth Reddy 	rc = _ctl_btdh_search_sas_device(ioc, &karg);
1432f92363d1SSreekanth Reddy 	if (!rc)
143345aa6a1aSSuganath Prabu Subramani 		rc = _ctl_btdh_search_pcie_device(ioc, &karg);
143445aa6a1aSSuganath Prabu Subramani 	if (!rc)
1435f92363d1SSreekanth Reddy 		_ctl_btdh_search_raid_device(ioc, &karg);
1436f92363d1SSreekanth Reddy 
1437f92363d1SSreekanth Reddy 	if (copy_to_user(arg, &karg, sizeof(karg))) {
1438f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1439f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1440f92363d1SSreekanth Reddy 		return -EFAULT;
1441f92363d1SSreekanth Reddy 	}
1442f92363d1SSreekanth Reddy 	return 0;
1443f92363d1SSreekanth Reddy }
1444f92363d1SSreekanth Reddy 
1445f92363d1SSreekanth Reddy /**
1446f92363d1SSreekanth Reddy  * _ctl_diag_capability - return diag buffer capability
1447f92363d1SSreekanth Reddy  * @ioc: per adapter object
1448f92363d1SSreekanth Reddy  * @buffer_type: specifies either TRACE, SNAPSHOT, or EXTENDED
1449f92363d1SSreekanth Reddy  *
1450f92363d1SSreekanth Reddy  * returns 1 when diag buffer support is enabled in firmware
1451f92363d1SSreekanth Reddy  */
1452f92363d1SSreekanth Reddy static u8
1453f92363d1SSreekanth Reddy _ctl_diag_capability(struct MPT3SAS_ADAPTER *ioc, u8 buffer_type)
1454f92363d1SSreekanth Reddy {
1455f92363d1SSreekanth Reddy 	u8 rc = 0;
1456f92363d1SSreekanth Reddy 
1457f92363d1SSreekanth Reddy 	switch (buffer_type) {
1458f92363d1SSreekanth Reddy 	case MPI2_DIAG_BUF_TYPE_TRACE:
1459f92363d1SSreekanth Reddy 		if (ioc->facts.IOCCapabilities &
1460f92363d1SSreekanth Reddy 		    MPI2_IOCFACTS_CAPABILITY_DIAG_TRACE_BUFFER)
1461f92363d1SSreekanth Reddy 			rc = 1;
1462f92363d1SSreekanth Reddy 		break;
1463f92363d1SSreekanth Reddy 	case MPI2_DIAG_BUF_TYPE_SNAPSHOT:
1464f92363d1SSreekanth Reddy 		if (ioc->facts.IOCCapabilities &
1465f92363d1SSreekanth Reddy 		    MPI2_IOCFACTS_CAPABILITY_SNAPSHOT_BUFFER)
1466f92363d1SSreekanth Reddy 			rc = 1;
1467f92363d1SSreekanth Reddy 		break;
1468f92363d1SSreekanth Reddy 	case MPI2_DIAG_BUF_TYPE_EXTENDED:
1469f92363d1SSreekanth Reddy 		if (ioc->facts.IOCCapabilities &
1470f92363d1SSreekanth Reddy 		    MPI2_IOCFACTS_CAPABILITY_EXTENDED_BUFFER)
1471f92363d1SSreekanth Reddy 			rc = 1;
1472f92363d1SSreekanth Reddy 	}
1473f92363d1SSreekanth Reddy 
1474f92363d1SSreekanth Reddy 	return rc;
1475f92363d1SSreekanth Reddy }
1476f92363d1SSreekanth Reddy 
1477f92363d1SSreekanth Reddy 
1478f92363d1SSreekanth Reddy /**
1479f92363d1SSreekanth Reddy  * _ctl_diag_register_2 - wrapper for registering diag buffer support
1480f92363d1SSreekanth Reddy  * @ioc: per adapter object
1481f92363d1SSreekanth Reddy  * @diag_register: the diag_register struct passed in from user space
1482f92363d1SSreekanth Reddy  *
1483f92363d1SSreekanth Reddy  */
1484f92363d1SSreekanth Reddy static long
1485f92363d1SSreekanth Reddy _ctl_diag_register_2(struct MPT3SAS_ADAPTER *ioc,
1486f92363d1SSreekanth Reddy 	struct mpt3_diag_register *diag_register)
1487f92363d1SSreekanth Reddy {
1488f92363d1SSreekanth Reddy 	int rc, i;
1489f92363d1SSreekanth Reddy 	void *request_data = NULL;
1490f92363d1SSreekanth Reddy 	dma_addr_t request_data_dma;
1491f92363d1SSreekanth Reddy 	u32 request_data_sz = 0;
1492f92363d1SSreekanth Reddy 	Mpi2DiagBufferPostRequest_t *mpi_request;
1493f92363d1SSreekanth Reddy 	Mpi2DiagBufferPostReply_t *mpi_reply;
1494f92363d1SSreekanth Reddy 	u8 buffer_type;
1495f92363d1SSreekanth Reddy 	u16 smid;
1496f92363d1SSreekanth Reddy 	u16 ioc_status;
1497f92363d1SSreekanth Reddy 	u32 ioc_state;
1498f92363d1SSreekanth Reddy 	u8 issue_reset = 0;
1499f92363d1SSreekanth Reddy 
1500f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name,
1501f92363d1SSreekanth Reddy 	    __func__));
1502f92363d1SSreekanth Reddy 
1503f92363d1SSreekanth Reddy 	ioc_state = mpt3sas_base_get_iocstate(ioc, 1);
1504f92363d1SSreekanth Reddy 	if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
1505f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1506f92363d1SSreekanth Reddy 		    "%s: failed due to ioc not operational\n",
1507f92363d1SSreekanth Reddy 		    ioc->name, __func__);
1508f92363d1SSreekanth Reddy 		rc = -EAGAIN;
1509f92363d1SSreekanth Reddy 		goto out;
1510f92363d1SSreekanth Reddy 	}
1511f92363d1SSreekanth Reddy 
1512f92363d1SSreekanth Reddy 	if (ioc->ctl_cmds.status != MPT3_CMD_NOT_USED) {
1513f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: ctl_cmd in use\n",
1514f92363d1SSreekanth Reddy 		    ioc->name, __func__);
1515f92363d1SSreekanth Reddy 		rc = -EAGAIN;
1516f92363d1SSreekanth Reddy 		goto out;
1517f92363d1SSreekanth Reddy 	}
1518f92363d1SSreekanth Reddy 
1519f92363d1SSreekanth Reddy 	buffer_type = diag_register->buffer_type;
1520f92363d1SSreekanth Reddy 	if (!_ctl_diag_capability(ioc, buffer_type)) {
1521f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1522f92363d1SSreekanth Reddy 			"%s: doesn't have capability for buffer_type(0x%02x)\n",
1523f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1524f92363d1SSreekanth Reddy 		return -EPERM;
1525f92363d1SSreekanth Reddy 	}
1526f92363d1SSreekanth Reddy 
1527f92363d1SSreekanth Reddy 	if (ioc->diag_buffer_status[buffer_type] &
1528f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_REGISTERED) {
1529f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1530f92363d1SSreekanth Reddy 			"%s: already has a registered buffer for buffer_type(0x%02x)\n",
1531f92363d1SSreekanth Reddy 			ioc->name, __func__,
1532f92363d1SSreekanth Reddy 		    buffer_type);
1533f92363d1SSreekanth Reddy 		return -EINVAL;
1534f92363d1SSreekanth Reddy 	}
1535f92363d1SSreekanth Reddy 
1536f92363d1SSreekanth Reddy 	if (diag_register->requested_buffer_size % 4)  {
1537f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1538f92363d1SSreekanth Reddy 			"%s: the requested_buffer_size is not 4 byte aligned\n",
1539f92363d1SSreekanth Reddy 			ioc->name, __func__);
1540f92363d1SSreekanth Reddy 		return -EINVAL;
1541f92363d1SSreekanth Reddy 	}
1542f92363d1SSreekanth Reddy 
1543f92363d1SSreekanth Reddy 	smid = mpt3sas_base_get_smid(ioc, ioc->ctl_cb_idx);
1544f92363d1SSreekanth Reddy 	if (!smid) {
1545f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: failed obtaining a smid\n",
1546f92363d1SSreekanth Reddy 		    ioc->name, __func__);
1547f92363d1SSreekanth Reddy 		rc = -EAGAIN;
1548f92363d1SSreekanth Reddy 		goto out;
1549f92363d1SSreekanth Reddy 	}
1550f92363d1SSreekanth Reddy 
1551f92363d1SSreekanth Reddy 	rc = 0;
1552f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_PENDING;
1553f92363d1SSreekanth Reddy 	memset(ioc->ctl_cmds.reply, 0, ioc->reply_sz);
1554f92363d1SSreekanth Reddy 	mpi_request = mpt3sas_base_get_msg_frame(ioc, smid);
1555f92363d1SSreekanth Reddy 	ioc->ctl_cmds.smid = smid;
1556f92363d1SSreekanth Reddy 
1557f92363d1SSreekanth Reddy 	request_data = ioc->diag_buffer[buffer_type];
1558f92363d1SSreekanth Reddy 	request_data_sz = diag_register->requested_buffer_size;
1559f92363d1SSreekanth Reddy 	ioc->unique_id[buffer_type] = diag_register->unique_id;
1560f92363d1SSreekanth Reddy 	ioc->diag_buffer_status[buffer_type] = 0;
1561f92363d1SSreekanth Reddy 	memcpy(ioc->product_specific[buffer_type],
1562f92363d1SSreekanth Reddy 	    diag_register->product_specific, MPT3_PRODUCT_SPECIFIC_DWORDS);
1563f92363d1SSreekanth Reddy 	ioc->diagnostic_flags[buffer_type] = diag_register->diagnostic_flags;
1564f92363d1SSreekanth Reddy 
1565f92363d1SSreekanth Reddy 	if (request_data) {
1566f92363d1SSreekanth Reddy 		request_data_dma = ioc->diag_buffer_dma[buffer_type];
1567f92363d1SSreekanth Reddy 		if (request_data_sz != ioc->diag_buffer_sz[buffer_type]) {
1568f92363d1SSreekanth Reddy 			pci_free_consistent(ioc->pdev,
1569f92363d1SSreekanth Reddy 			    ioc->diag_buffer_sz[buffer_type],
1570f92363d1SSreekanth Reddy 			    request_data, request_data_dma);
1571f92363d1SSreekanth Reddy 			request_data = NULL;
1572f92363d1SSreekanth Reddy 		}
1573f92363d1SSreekanth Reddy 	}
1574f92363d1SSreekanth Reddy 
1575f92363d1SSreekanth Reddy 	if (request_data == NULL) {
1576f92363d1SSreekanth Reddy 		ioc->diag_buffer_sz[buffer_type] = 0;
1577f92363d1SSreekanth Reddy 		ioc->diag_buffer_dma[buffer_type] = 0;
1578f92363d1SSreekanth Reddy 		request_data = pci_alloc_consistent(
1579f92363d1SSreekanth Reddy 			ioc->pdev, request_data_sz, &request_data_dma);
1580f92363d1SSreekanth Reddy 		if (request_data == NULL) {
1581f92363d1SSreekanth Reddy 			pr_err(MPT3SAS_FMT "%s: failed allocating memory" \
1582f92363d1SSreekanth Reddy 			    " for diag buffers, requested size(%d)\n",
1583f92363d1SSreekanth Reddy 			    ioc->name, __func__, request_data_sz);
1584f92363d1SSreekanth Reddy 			mpt3sas_base_free_smid(ioc, smid);
1585f92363d1SSreekanth Reddy 			return -ENOMEM;
1586f92363d1SSreekanth Reddy 		}
1587f92363d1SSreekanth Reddy 		ioc->diag_buffer[buffer_type] = request_data;
1588f92363d1SSreekanth Reddy 		ioc->diag_buffer_sz[buffer_type] = request_data_sz;
1589f92363d1SSreekanth Reddy 		ioc->diag_buffer_dma[buffer_type] = request_data_dma;
1590f92363d1SSreekanth Reddy 	}
1591f92363d1SSreekanth Reddy 
1592f92363d1SSreekanth Reddy 	mpi_request->Function = MPI2_FUNCTION_DIAG_BUFFER_POST;
1593f92363d1SSreekanth Reddy 	mpi_request->BufferType = diag_register->buffer_type;
1594f92363d1SSreekanth Reddy 	mpi_request->Flags = cpu_to_le32(diag_register->diagnostic_flags);
1595f92363d1SSreekanth Reddy 	mpi_request->BufferAddress = cpu_to_le64(request_data_dma);
1596f92363d1SSreekanth Reddy 	mpi_request->BufferLength = cpu_to_le32(request_data_sz);
1597f92363d1SSreekanth Reddy 	mpi_request->VF_ID = 0; /* TODO */
1598f92363d1SSreekanth Reddy 	mpi_request->VP_ID = 0;
1599f92363d1SSreekanth Reddy 
1600f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT
1601f92363d1SSreekanth Reddy 		"%s: diag_buffer(0x%p), dma(0x%llx), sz(%d)\n",
1602f92363d1SSreekanth Reddy 		ioc->name, __func__, request_data,
1603f92363d1SSreekanth Reddy 	    (unsigned long long)request_data_dma,
1604f92363d1SSreekanth Reddy 	    le32_to_cpu(mpi_request->BufferLength)));
1605f92363d1SSreekanth Reddy 
1606f92363d1SSreekanth Reddy 	for (i = 0; i < MPT3_PRODUCT_SPECIFIC_DWORDS; i++)
1607f92363d1SSreekanth Reddy 		mpi_request->ProductSpecific[i] =
1608f92363d1SSreekanth Reddy 			cpu_to_le32(ioc->product_specific[buffer_type][i]);
1609f92363d1SSreekanth Reddy 
1610f92363d1SSreekanth Reddy 	init_completion(&ioc->ctl_cmds.done);
161181c16f83SSuganath Prabu Subramani 	ioc->put_smid_default(ioc, smid);
16128bbb1cf6SCalvin Owens 	wait_for_completion_timeout(&ioc->ctl_cmds.done,
1613f92363d1SSreekanth Reddy 	    MPT3_IOCTL_DEFAULT_TIMEOUT*HZ);
1614f92363d1SSreekanth Reddy 
1615f92363d1SSreekanth Reddy 	if (!(ioc->ctl_cmds.status & MPT3_CMD_COMPLETE)) {
1616f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: timeout\n", ioc->name,
1617f92363d1SSreekanth Reddy 		    __func__);
1618f92363d1SSreekanth Reddy 		_debug_dump_mf(mpi_request,
1619f92363d1SSreekanth Reddy 		    sizeof(Mpi2DiagBufferPostRequest_t)/4);
1620f92363d1SSreekanth Reddy 		if (!(ioc->ctl_cmds.status & MPT3_CMD_RESET))
1621f92363d1SSreekanth Reddy 			issue_reset = 1;
1622f92363d1SSreekanth Reddy 		goto issue_host_reset;
1623f92363d1SSreekanth Reddy 	}
1624f92363d1SSreekanth Reddy 
1625f92363d1SSreekanth Reddy 	/* process the completed Reply Message Frame */
1626f92363d1SSreekanth Reddy 	if ((ioc->ctl_cmds.status & MPT3_CMD_REPLY_VALID) == 0) {
1627f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: no reply message\n",
1628f92363d1SSreekanth Reddy 		    ioc->name, __func__);
1629f92363d1SSreekanth Reddy 		rc = -EFAULT;
1630f92363d1SSreekanth Reddy 		goto out;
1631f92363d1SSreekanth Reddy 	}
1632f92363d1SSreekanth Reddy 
1633f92363d1SSreekanth Reddy 	mpi_reply = ioc->ctl_cmds.reply;
1634f92363d1SSreekanth Reddy 	ioc_status = le16_to_cpu(mpi_reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
1635f92363d1SSreekanth Reddy 
1636f92363d1SSreekanth Reddy 	if (ioc_status == MPI2_IOCSTATUS_SUCCESS) {
1637f92363d1SSreekanth Reddy 		ioc->diag_buffer_status[buffer_type] |=
1638f92363d1SSreekanth Reddy 			MPT3_DIAG_BUFFER_IS_REGISTERED;
1639f92363d1SSreekanth Reddy 		dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: success\n",
1640f92363d1SSreekanth Reddy 		    ioc->name, __func__));
1641f92363d1SSreekanth Reddy 	} else {
1642f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT
1643f92363d1SSreekanth Reddy 			"%s: ioc_status(0x%04x) log_info(0x%08x)\n",
1644f92363d1SSreekanth Reddy 			ioc->name, __func__,
1645f92363d1SSreekanth Reddy 		    ioc_status, le32_to_cpu(mpi_reply->IOCLogInfo));
1646f92363d1SSreekanth Reddy 		rc = -EFAULT;
1647f92363d1SSreekanth Reddy 	}
1648f92363d1SSreekanth Reddy 
1649f92363d1SSreekanth Reddy  issue_host_reset:
1650f92363d1SSreekanth Reddy 	if (issue_reset)
165198c56ad3SCalvin Owens 		mpt3sas_base_hard_reset_handler(ioc, FORCE_BIG_HAMMER);
1652f92363d1SSreekanth Reddy 
1653f92363d1SSreekanth Reddy  out:
1654f92363d1SSreekanth Reddy 
1655f92363d1SSreekanth Reddy 	if (rc && request_data)
1656f92363d1SSreekanth Reddy 		pci_free_consistent(ioc->pdev, request_data_sz,
1657f92363d1SSreekanth Reddy 		    request_data, request_data_dma);
1658f92363d1SSreekanth Reddy 
1659f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_NOT_USED;
1660f92363d1SSreekanth Reddy 	return rc;
1661f92363d1SSreekanth Reddy }
1662f92363d1SSreekanth Reddy 
1663f92363d1SSreekanth Reddy /**
1664f92363d1SSreekanth Reddy  * mpt3sas_enable_diag_buffer - enabling diag_buffers support driver load time
1665f92363d1SSreekanth Reddy  * @ioc: per adapter object
1666f92363d1SSreekanth Reddy  * @bits_to_register: bitwise field where trace is bit 0, and snapshot is bit 1
1667f92363d1SSreekanth Reddy  *
1668f92363d1SSreekanth Reddy  * This is called when command line option diag_buffer_enable is enabled
1669f92363d1SSreekanth Reddy  * at driver load time.
1670f92363d1SSreekanth Reddy  */
1671f92363d1SSreekanth Reddy void
1672f92363d1SSreekanth Reddy mpt3sas_enable_diag_buffer(struct MPT3SAS_ADAPTER *ioc, u8 bits_to_register)
1673f92363d1SSreekanth Reddy {
1674f92363d1SSreekanth Reddy 	struct mpt3_diag_register diag_register;
1675f92363d1SSreekanth Reddy 
1676f92363d1SSreekanth Reddy 	memset(&diag_register, 0, sizeof(struct mpt3_diag_register));
1677f92363d1SSreekanth Reddy 
1678f92363d1SSreekanth Reddy 	if (bits_to_register & 1) {
1679f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT "registering trace buffer support\n",
1680f92363d1SSreekanth Reddy 		    ioc->name);
1681f92363d1SSreekanth Reddy 		ioc->diag_trigger_master.MasterData =
1682f92363d1SSreekanth Reddy 		    (MASTER_TRIGGER_FW_FAULT + MASTER_TRIGGER_ADAPTER_RESET);
1683f92363d1SSreekanth Reddy 		diag_register.buffer_type = MPI2_DIAG_BUF_TYPE_TRACE;
1684f92363d1SSreekanth Reddy 		/* register for 2MB buffers  */
1685f92363d1SSreekanth Reddy 		diag_register.requested_buffer_size = 2 * (1024 * 1024);
1686f92363d1SSreekanth Reddy 		diag_register.unique_id = 0x7075900;
1687f92363d1SSreekanth Reddy 		_ctl_diag_register_2(ioc,  &diag_register);
1688f92363d1SSreekanth Reddy 	}
1689f92363d1SSreekanth Reddy 
1690f92363d1SSreekanth Reddy 	if (bits_to_register & 2) {
1691f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT "registering snapshot buffer support\n",
1692f92363d1SSreekanth Reddy 		    ioc->name);
1693f92363d1SSreekanth Reddy 		diag_register.buffer_type = MPI2_DIAG_BUF_TYPE_SNAPSHOT;
1694f92363d1SSreekanth Reddy 		/* register for 2MB buffers  */
1695f92363d1SSreekanth Reddy 		diag_register.requested_buffer_size = 2 * (1024 * 1024);
1696f92363d1SSreekanth Reddy 		diag_register.unique_id = 0x7075901;
1697f92363d1SSreekanth Reddy 		_ctl_diag_register_2(ioc,  &diag_register);
1698f92363d1SSreekanth Reddy 	}
1699f92363d1SSreekanth Reddy 
1700f92363d1SSreekanth Reddy 	if (bits_to_register & 4) {
1701f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT "registering extended buffer support\n",
1702f92363d1SSreekanth Reddy 		    ioc->name);
1703f92363d1SSreekanth Reddy 		diag_register.buffer_type = MPI2_DIAG_BUF_TYPE_EXTENDED;
1704f92363d1SSreekanth Reddy 		/* register for 2MB buffers  */
1705f92363d1SSreekanth Reddy 		diag_register.requested_buffer_size = 2 * (1024 * 1024);
1706f92363d1SSreekanth Reddy 		diag_register.unique_id = 0x7075901;
1707f92363d1SSreekanth Reddy 		_ctl_diag_register_2(ioc,  &diag_register);
1708f92363d1SSreekanth Reddy 	}
1709f92363d1SSreekanth Reddy }
1710f92363d1SSreekanth Reddy 
1711f92363d1SSreekanth Reddy /**
1712f92363d1SSreekanth Reddy  * _ctl_diag_register - application register with driver
1713f92363d1SSreekanth Reddy  * @ioc: per adapter object
1714f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1715f92363d1SSreekanth Reddy  *
1716f92363d1SSreekanth Reddy  * This will allow the driver to setup any required buffers that will be
1717f92363d1SSreekanth Reddy  * needed by firmware to communicate with the driver.
1718f92363d1SSreekanth Reddy  */
1719f92363d1SSreekanth Reddy static long
1720f92363d1SSreekanth Reddy _ctl_diag_register(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1721f92363d1SSreekanth Reddy {
1722f92363d1SSreekanth Reddy 	struct mpt3_diag_register karg;
1723f92363d1SSreekanth Reddy 	long rc;
1724f92363d1SSreekanth Reddy 
1725f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1726f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1727f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1728f92363d1SSreekanth Reddy 		return -EFAULT;
1729f92363d1SSreekanth Reddy 	}
1730f92363d1SSreekanth Reddy 
1731f92363d1SSreekanth Reddy 	rc = _ctl_diag_register_2(ioc, &karg);
1732f92363d1SSreekanth Reddy 	return rc;
1733f92363d1SSreekanth Reddy }
1734f92363d1SSreekanth Reddy 
1735f92363d1SSreekanth Reddy /**
1736f92363d1SSreekanth Reddy  * _ctl_diag_unregister - application unregister with driver
1737f92363d1SSreekanth Reddy  * @ioc: per adapter object
1738f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1739f92363d1SSreekanth Reddy  *
1740f92363d1SSreekanth Reddy  * This will allow the driver to cleanup any memory allocated for diag
1741f92363d1SSreekanth Reddy  * messages and to free up any resources.
1742f92363d1SSreekanth Reddy  */
1743f92363d1SSreekanth Reddy static long
1744f92363d1SSreekanth Reddy _ctl_diag_unregister(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1745f92363d1SSreekanth Reddy {
1746f92363d1SSreekanth Reddy 	struct mpt3_diag_unregister karg;
1747f92363d1SSreekanth Reddy 	void *request_data;
1748f92363d1SSreekanth Reddy 	dma_addr_t request_data_dma;
1749f92363d1SSreekanth Reddy 	u32 request_data_sz;
1750f92363d1SSreekanth Reddy 	u8 buffer_type;
1751f92363d1SSreekanth Reddy 
1752f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1753f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1754f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1755f92363d1SSreekanth Reddy 		return -EFAULT;
1756f92363d1SSreekanth Reddy 	}
1757f92363d1SSreekanth Reddy 
1758f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name,
1759f92363d1SSreekanth Reddy 	    __func__));
1760f92363d1SSreekanth Reddy 
1761f92363d1SSreekanth Reddy 	buffer_type = karg.unique_id & 0x000000ff;
1762f92363d1SSreekanth Reddy 	if (!_ctl_diag_capability(ioc, buffer_type)) {
1763f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1764f92363d1SSreekanth Reddy 			"%s: doesn't have capability for buffer_type(0x%02x)\n",
1765f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1766f92363d1SSreekanth Reddy 		return -EPERM;
1767f92363d1SSreekanth Reddy 	}
1768f92363d1SSreekanth Reddy 
1769f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[buffer_type] &
1770f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_REGISTERED) == 0) {
1771f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1772f92363d1SSreekanth Reddy 			"%s: buffer_type(0x%02x) is not registered\n",
1773f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1774f92363d1SSreekanth Reddy 		return -EINVAL;
1775f92363d1SSreekanth Reddy 	}
1776f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[buffer_type] &
1777f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_RELEASED) == 0) {
1778f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1779f92363d1SSreekanth Reddy 			"%s: buffer_type(0x%02x) has not been released\n",
1780f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1781f92363d1SSreekanth Reddy 		return -EINVAL;
1782f92363d1SSreekanth Reddy 	}
1783f92363d1SSreekanth Reddy 
1784f92363d1SSreekanth Reddy 	if (karg.unique_id != ioc->unique_id[buffer_type]) {
1785f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1786f92363d1SSreekanth Reddy 			"%s: unique_id(0x%08x) is not registered\n",
1787f92363d1SSreekanth Reddy 			ioc->name, __func__, karg.unique_id);
1788f92363d1SSreekanth Reddy 		return -EINVAL;
1789f92363d1SSreekanth Reddy 	}
1790f92363d1SSreekanth Reddy 
1791f92363d1SSreekanth Reddy 	request_data = ioc->diag_buffer[buffer_type];
1792f92363d1SSreekanth Reddy 	if (!request_data) {
1793f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1794f92363d1SSreekanth Reddy 			"%s: doesn't have memory allocated for buffer_type(0x%02x)\n",
1795f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1796f92363d1SSreekanth Reddy 		return -ENOMEM;
1797f92363d1SSreekanth Reddy 	}
1798f92363d1SSreekanth Reddy 
1799f92363d1SSreekanth Reddy 	request_data_sz = ioc->diag_buffer_sz[buffer_type];
1800f92363d1SSreekanth Reddy 	request_data_dma = ioc->diag_buffer_dma[buffer_type];
1801f92363d1SSreekanth Reddy 	pci_free_consistent(ioc->pdev, request_data_sz,
1802f92363d1SSreekanth Reddy 	    request_data, request_data_dma);
1803f92363d1SSreekanth Reddy 	ioc->diag_buffer[buffer_type] = NULL;
1804f92363d1SSreekanth Reddy 	ioc->diag_buffer_status[buffer_type] = 0;
1805f92363d1SSreekanth Reddy 	return 0;
1806f92363d1SSreekanth Reddy }
1807f92363d1SSreekanth Reddy 
1808f92363d1SSreekanth Reddy /**
1809f92363d1SSreekanth Reddy  * _ctl_diag_query - query relevant info associated with diag buffers
1810f92363d1SSreekanth Reddy  * @ioc: per adapter object
1811f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
1812f92363d1SSreekanth Reddy  *
1813f92363d1SSreekanth Reddy  * The application will send only buffer_type and unique_id.  Driver will
1814f92363d1SSreekanth Reddy  * inspect unique_id first, if valid, fill in all the info.  If unique_id is
1815f92363d1SSreekanth Reddy  * 0x00, the driver will return info specified by Buffer Type.
1816f92363d1SSreekanth Reddy  */
1817f92363d1SSreekanth Reddy static long
1818f92363d1SSreekanth Reddy _ctl_diag_query(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
1819f92363d1SSreekanth Reddy {
1820f92363d1SSreekanth Reddy 	struct mpt3_diag_query karg;
1821f92363d1SSreekanth Reddy 	void *request_data;
1822f92363d1SSreekanth Reddy 	int i;
1823f92363d1SSreekanth Reddy 	u8 buffer_type;
1824f92363d1SSreekanth Reddy 
1825f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
1826f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
1827f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
1828f92363d1SSreekanth Reddy 		return -EFAULT;
1829f92363d1SSreekanth Reddy 	}
1830f92363d1SSreekanth Reddy 
1831f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name,
1832f92363d1SSreekanth Reddy 	    __func__));
1833f92363d1SSreekanth Reddy 
1834f92363d1SSreekanth Reddy 	karg.application_flags = 0;
1835f92363d1SSreekanth Reddy 	buffer_type = karg.buffer_type;
1836f92363d1SSreekanth Reddy 
1837f92363d1SSreekanth Reddy 	if (!_ctl_diag_capability(ioc, buffer_type)) {
1838f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1839f92363d1SSreekanth Reddy 			"%s: doesn't have capability for buffer_type(0x%02x)\n",
1840f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1841f92363d1SSreekanth Reddy 		return -EPERM;
1842f92363d1SSreekanth Reddy 	}
1843f92363d1SSreekanth Reddy 
1844f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[buffer_type] &
1845f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_REGISTERED) == 0) {
1846f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1847f92363d1SSreekanth Reddy 			"%s: buffer_type(0x%02x) is not registered\n",
1848f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1849f92363d1SSreekanth Reddy 		return -EINVAL;
1850f92363d1SSreekanth Reddy 	}
1851f92363d1SSreekanth Reddy 
1852f92363d1SSreekanth Reddy 	if (karg.unique_id & 0xffffff00) {
1853f92363d1SSreekanth Reddy 		if (karg.unique_id != ioc->unique_id[buffer_type]) {
1854f92363d1SSreekanth Reddy 			pr_err(MPT3SAS_FMT
1855f92363d1SSreekanth Reddy 				"%s: unique_id(0x%08x) is not registered\n",
1856f92363d1SSreekanth Reddy 				ioc->name, __func__, karg.unique_id);
1857f92363d1SSreekanth Reddy 			return -EINVAL;
1858f92363d1SSreekanth Reddy 		}
1859f92363d1SSreekanth Reddy 	}
1860f92363d1SSreekanth Reddy 
1861f92363d1SSreekanth Reddy 	request_data = ioc->diag_buffer[buffer_type];
1862f92363d1SSreekanth Reddy 	if (!request_data) {
1863f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1864f92363d1SSreekanth Reddy 			"%s: doesn't have buffer for buffer_type(0x%02x)\n",
1865f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
1866f92363d1SSreekanth Reddy 		return -ENOMEM;
1867f92363d1SSreekanth Reddy 	}
1868f92363d1SSreekanth Reddy 
1869f92363d1SSreekanth Reddy 	if (ioc->diag_buffer_status[buffer_type] & MPT3_DIAG_BUFFER_IS_RELEASED)
1870f92363d1SSreekanth Reddy 		karg.application_flags = (MPT3_APP_FLAGS_APP_OWNED |
1871f92363d1SSreekanth Reddy 		    MPT3_APP_FLAGS_BUFFER_VALID);
1872f92363d1SSreekanth Reddy 	else
1873f92363d1SSreekanth Reddy 		karg.application_flags = (MPT3_APP_FLAGS_APP_OWNED |
1874f92363d1SSreekanth Reddy 		    MPT3_APP_FLAGS_BUFFER_VALID |
1875f92363d1SSreekanth Reddy 		    MPT3_APP_FLAGS_FW_BUFFER_ACCESS);
1876f92363d1SSreekanth Reddy 
1877f92363d1SSreekanth Reddy 	for (i = 0; i < MPT3_PRODUCT_SPECIFIC_DWORDS; i++)
1878f92363d1SSreekanth Reddy 		karg.product_specific[i] =
1879f92363d1SSreekanth Reddy 		    ioc->product_specific[buffer_type][i];
1880f92363d1SSreekanth Reddy 
1881f92363d1SSreekanth Reddy 	karg.total_buffer_size = ioc->diag_buffer_sz[buffer_type];
1882f92363d1SSreekanth Reddy 	karg.driver_added_buffer_size = 0;
1883f92363d1SSreekanth Reddy 	karg.unique_id = ioc->unique_id[buffer_type];
1884f92363d1SSreekanth Reddy 	karg.diagnostic_flags = ioc->diagnostic_flags[buffer_type];
1885f92363d1SSreekanth Reddy 
1886f92363d1SSreekanth Reddy 	if (copy_to_user(arg, &karg, sizeof(struct mpt3_diag_query))) {
1887f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
1888f92363d1SSreekanth Reddy 			"%s: unable to write mpt3_diag_query data @ %p\n",
1889f92363d1SSreekanth Reddy 			ioc->name, __func__, arg);
1890f92363d1SSreekanth Reddy 		return -EFAULT;
1891f92363d1SSreekanth Reddy 	}
1892f92363d1SSreekanth Reddy 	return 0;
1893f92363d1SSreekanth Reddy }
1894f92363d1SSreekanth Reddy 
1895f92363d1SSreekanth Reddy /**
1896f92363d1SSreekanth Reddy  * mpt3sas_send_diag_release - Diag Release Message
1897f92363d1SSreekanth Reddy  * @ioc: per adapter object
1898f92363d1SSreekanth Reddy  * @buffer_type - specifies either TRACE, SNAPSHOT, or EXTENDED
1899f92363d1SSreekanth Reddy  * @issue_reset - specifies whether host reset is required.
1900f92363d1SSreekanth Reddy  *
1901f92363d1SSreekanth Reddy  */
1902f92363d1SSreekanth Reddy int
1903f92363d1SSreekanth Reddy mpt3sas_send_diag_release(struct MPT3SAS_ADAPTER *ioc, u8 buffer_type,
1904f92363d1SSreekanth Reddy 	u8 *issue_reset)
1905f92363d1SSreekanth Reddy {
1906f92363d1SSreekanth Reddy 	Mpi2DiagReleaseRequest_t *mpi_request;
1907f92363d1SSreekanth Reddy 	Mpi2DiagReleaseReply_t *mpi_reply;
1908f92363d1SSreekanth Reddy 	u16 smid;
1909f92363d1SSreekanth Reddy 	u16 ioc_status;
1910f92363d1SSreekanth Reddy 	u32 ioc_state;
1911f92363d1SSreekanth Reddy 	int rc;
1912f92363d1SSreekanth Reddy 
1913f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name,
1914f92363d1SSreekanth Reddy 	    __func__));
1915f92363d1SSreekanth Reddy 
1916f92363d1SSreekanth Reddy 	rc = 0;
1917f92363d1SSreekanth Reddy 	*issue_reset = 0;
1918f92363d1SSreekanth Reddy 
1919f92363d1SSreekanth Reddy 	ioc_state = mpt3sas_base_get_iocstate(ioc, 1);
1920f92363d1SSreekanth Reddy 	if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
1921f92363d1SSreekanth Reddy 		if (ioc->diag_buffer_status[buffer_type] &
1922f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_REGISTERED)
1923f92363d1SSreekanth Reddy 			ioc->diag_buffer_status[buffer_type] |=
1924f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_RELEASED;
1925f92363d1SSreekanth Reddy 		dctlprintk(ioc, pr_info(MPT3SAS_FMT
1926f92363d1SSreekanth Reddy 			"%s: skipping due to FAULT state\n", ioc->name,
1927f92363d1SSreekanth Reddy 		    __func__));
1928f92363d1SSreekanth Reddy 		rc = -EAGAIN;
1929f92363d1SSreekanth Reddy 		goto out;
1930f92363d1SSreekanth Reddy 	}
1931f92363d1SSreekanth Reddy 
1932f92363d1SSreekanth Reddy 	if (ioc->ctl_cmds.status != MPT3_CMD_NOT_USED) {
1933f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: ctl_cmd in use\n",
1934f92363d1SSreekanth Reddy 		    ioc->name, __func__);
1935f92363d1SSreekanth Reddy 		rc = -EAGAIN;
1936f92363d1SSreekanth Reddy 		goto out;
1937f92363d1SSreekanth Reddy 	}
1938f92363d1SSreekanth Reddy 
1939f92363d1SSreekanth Reddy 	smid = mpt3sas_base_get_smid(ioc, ioc->ctl_cb_idx);
1940f92363d1SSreekanth Reddy 	if (!smid) {
1941f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: failed obtaining a smid\n",
1942f92363d1SSreekanth Reddy 		    ioc->name, __func__);
1943f92363d1SSreekanth Reddy 		rc = -EAGAIN;
1944f92363d1SSreekanth Reddy 		goto out;
1945f92363d1SSreekanth Reddy 	}
1946f92363d1SSreekanth Reddy 
1947f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_PENDING;
1948f92363d1SSreekanth Reddy 	memset(ioc->ctl_cmds.reply, 0, ioc->reply_sz);
1949f92363d1SSreekanth Reddy 	mpi_request = mpt3sas_base_get_msg_frame(ioc, smid);
1950f92363d1SSreekanth Reddy 	ioc->ctl_cmds.smid = smid;
1951f92363d1SSreekanth Reddy 
1952f92363d1SSreekanth Reddy 	mpi_request->Function = MPI2_FUNCTION_DIAG_RELEASE;
1953f92363d1SSreekanth Reddy 	mpi_request->BufferType = buffer_type;
1954f92363d1SSreekanth Reddy 	mpi_request->VF_ID = 0; /* TODO */
1955f92363d1SSreekanth Reddy 	mpi_request->VP_ID = 0;
1956f92363d1SSreekanth Reddy 
1957f92363d1SSreekanth Reddy 	init_completion(&ioc->ctl_cmds.done);
195881c16f83SSuganath Prabu Subramani 	ioc->put_smid_default(ioc, smid);
19598bbb1cf6SCalvin Owens 	wait_for_completion_timeout(&ioc->ctl_cmds.done,
1960f92363d1SSreekanth Reddy 	    MPT3_IOCTL_DEFAULT_TIMEOUT*HZ);
1961f92363d1SSreekanth Reddy 
1962f92363d1SSreekanth Reddy 	if (!(ioc->ctl_cmds.status & MPT3_CMD_COMPLETE)) {
1963f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: timeout\n", ioc->name,
1964f92363d1SSreekanth Reddy 		    __func__);
1965f92363d1SSreekanth Reddy 		_debug_dump_mf(mpi_request,
1966f92363d1SSreekanth Reddy 		    sizeof(Mpi2DiagReleaseRequest_t)/4);
1967f92363d1SSreekanth Reddy 		if (!(ioc->ctl_cmds.status & MPT3_CMD_RESET))
1968f92363d1SSreekanth Reddy 			*issue_reset = 1;
1969f92363d1SSreekanth Reddy 		rc = -EFAULT;
1970f92363d1SSreekanth Reddy 		goto out;
1971f92363d1SSreekanth Reddy 	}
1972f92363d1SSreekanth Reddy 
1973f92363d1SSreekanth Reddy 	/* process the completed Reply Message Frame */
1974f92363d1SSreekanth Reddy 	if ((ioc->ctl_cmds.status & MPT3_CMD_REPLY_VALID) == 0) {
1975f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: no reply message\n",
1976f92363d1SSreekanth Reddy 		    ioc->name, __func__);
1977f92363d1SSreekanth Reddy 		rc = -EFAULT;
1978f92363d1SSreekanth Reddy 		goto out;
1979f92363d1SSreekanth Reddy 	}
1980f92363d1SSreekanth Reddy 
1981f92363d1SSreekanth Reddy 	mpi_reply = ioc->ctl_cmds.reply;
1982f92363d1SSreekanth Reddy 	ioc_status = le16_to_cpu(mpi_reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
1983f92363d1SSreekanth Reddy 
1984f92363d1SSreekanth Reddy 	if (ioc_status == MPI2_IOCSTATUS_SUCCESS) {
1985f92363d1SSreekanth Reddy 		ioc->diag_buffer_status[buffer_type] |=
1986f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_RELEASED;
1987f92363d1SSreekanth Reddy 		dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: success\n",
1988f92363d1SSreekanth Reddy 		    ioc->name, __func__));
1989f92363d1SSreekanth Reddy 	} else {
1990f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT
1991f92363d1SSreekanth Reddy 			"%s: ioc_status(0x%04x) log_info(0x%08x)\n",
1992f92363d1SSreekanth Reddy 			ioc->name, __func__,
1993f92363d1SSreekanth Reddy 		    ioc_status, le32_to_cpu(mpi_reply->IOCLogInfo));
1994f92363d1SSreekanth Reddy 		rc = -EFAULT;
1995f92363d1SSreekanth Reddy 	}
1996f92363d1SSreekanth Reddy 
1997f92363d1SSreekanth Reddy  out:
1998f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_NOT_USED;
1999f92363d1SSreekanth Reddy 	return rc;
2000f92363d1SSreekanth Reddy }
2001f92363d1SSreekanth Reddy 
2002f92363d1SSreekanth Reddy /**
2003f92363d1SSreekanth Reddy  * _ctl_diag_release - request to send Diag Release Message to firmware
2004f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
2005f92363d1SSreekanth Reddy  *
2006f92363d1SSreekanth Reddy  * This allows ownership of the specified buffer to returned to the driver,
2007f92363d1SSreekanth Reddy  * allowing an application to read the buffer without fear that firmware is
20089a284e5cSMasahiro Yamada  * overwriting information in the buffer.
2009f92363d1SSreekanth Reddy  */
2010f92363d1SSreekanth Reddy static long
2011f92363d1SSreekanth Reddy _ctl_diag_release(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
2012f92363d1SSreekanth Reddy {
2013f92363d1SSreekanth Reddy 	struct mpt3_diag_release karg;
2014f92363d1SSreekanth Reddy 	void *request_data;
2015f92363d1SSreekanth Reddy 	int rc;
2016f92363d1SSreekanth Reddy 	u8 buffer_type;
2017f92363d1SSreekanth Reddy 	u8 issue_reset = 0;
2018f92363d1SSreekanth Reddy 
2019f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
2020f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
2021f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
2022f92363d1SSreekanth Reddy 		return -EFAULT;
2023f92363d1SSreekanth Reddy 	}
2024f92363d1SSreekanth Reddy 
2025f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name,
2026f92363d1SSreekanth Reddy 	    __func__));
2027f92363d1SSreekanth Reddy 
2028f92363d1SSreekanth Reddy 	buffer_type = karg.unique_id & 0x000000ff;
2029f92363d1SSreekanth Reddy 	if (!_ctl_diag_capability(ioc, buffer_type)) {
2030f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2031f92363d1SSreekanth Reddy 			"%s: doesn't have capability for buffer_type(0x%02x)\n",
2032f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
2033f92363d1SSreekanth Reddy 		return -EPERM;
2034f92363d1SSreekanth Reddy 	}
2035f92363d1SSreekanth Reddy 
2036f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[buffer_type] &
2037f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_REGISTERED) == 0) {
2038f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2039f92363d1SSreekanth Reddy 			"%s: buffer_type(0x%02x) is not registered\n",
2040f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
2041f92363d1SSreekanth Reddy 		return -EINVAL;
2042f92363d1SSreekanth Reddy 	}
2043f92363d1SSreekanth Reddy 
2044f92363d1SSreekanth Reddy 	if (karg.unique_id != ioc->unique_id[buffer_type]) {
2045f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2046f92363d1SSreekanth Reddy 			"%s: unique_id(0x%08x) is not registered\n",
2047f92363d1SSreekanth Reddy 			ioc->name, __func__, karg.unique_id);
2048f92363d1SSreekanth Reddy 		return -EINVAL;
2049f92363d1SSreekanth Reddy 	}
2050f92363d1SSreekanth Reddy 
2051f92363d1SSreekanth Reddy 	if (ioc->diag_buffer_status[buffer_type] &
2052f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_RELEASED) {
2053f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2054f92363d1SSreekanth Reddy 			"%s: buffer_type(0x%02x) is already released\n",
2055f92363d1SSreekanth Reddy 			ioc->name, __func__,
2056f92363d1SSreekanth Reddy 		    buffer_type);
2057f92363d1SSreekanth Reddy 		return 0;
2058f92363d1SSreekanth Reddy 	}
2059f92363d1SSreekanth Reddy 
2060f92363d1SSreekanth Reddy 	request_data = ioc->diag_buffer[buffer_type];
2061f92363d1SSreekanth Reddy 
2062f92363d1SSreekanth Reddy 	if (!request_data) {
2063f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2064f92363d1SSreekanth Reddy 			"%s: doesn't have memory allocated for buffer_type(0x%02x)\n",
2065f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
2066f92363d1SSreekanth Reddy 		return -ENOMEM;
2067f92363d1SSreekanth Reddy 	}
2068f92363d1SSreekanth Reddy 
2069f92363d1SSreekanth Reddy 	/* buffers were released by due to host reset */
2070f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[buffer_type] &
2071f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_DIAG_RESET)) {
2072f92363d1SSreekanth Reddy 		ioc->diag_buffer_status[buffer_type] |=
2073f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_RELEASED;
2074f92363d1SSreekanth Reddy 		ioc->diag_buffer_status[buffer_type] &=
2075f92363d1SSreekanth Reddy 		    ~MPT3_DIAG_BUFFER_IS_DIAG_RESET;
2076f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2077f92363d1SSreekanth Reddy 			"%s: buffer_type(0x%02x) was released due to host reset\n",
2078f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
2079f92363d1SSreekanth Reddy 		return 0;
2080f92363d1SSreekanth Reddy 	}
2081f92363d1SSreekanth Reddy 
2082f92363d1SSreekanth Reddy 	rc = mpt3sas_send_diag_release(ioc, buffer_type, &issue_reset);
2083f92363d1SSreekanth Reddy 
2084f92363d1SSreekanth Reddy 	if (issue_reset)
208598c56ad3SCalvin Owens 		mpt3sas_base_hard_reset_handler(ioc, FORCE_BIG_HAMMER);
2086f92363d1SSreekanth Reddy 
2087f92363d1SSreekanth Reddy 	return rc;
2088f92363d1SSreekanth Reddy }
2089f92363d1SSreekanth Reddy 
2090f92363d1SSreekanth Reddy /**
2091f92363d1SSreekanth Reddy  * _ctl_diag_read_buffer - request for copy of the diag buffer
2092f92363d1SSreekanth Reddy  * @ioc: per adapter object
2093f92363d1SSreekanth Reddy  * @arg - user space buffer containing ioctl content
2094f92363d1SSreekanth Reddy  */
2095f92363d1SSreekanth Reddy static long
2096f92363d1SSreekanth Reddy _ctl_diag_read_buffer(struct MPT3SAS_ADAPTER *ioc, void __user *arg)
2097f92363d1SSreekanth Reddy {
2098f92363d1SSreekanth Reddy 	struct mpt3_diag_read_buffer karg;
2099f92363d1SSreekanth Reddy 	struct mpt3_diag_read_buffer __user *uarg = arg;
2100f92363d1SSreekanth Reddy 	void *request_data, *diag_data;
2101f92363d1SSreekanth Reddy 	Mpi2DiagBufferPostRequest_t *mpi_request;
2102f92363d1SSreekanth Reddy 	Mpi2DiagBufferPostReply_t *mpi_reply;
2103f92363d1SSreekanth Reddy 	int rc, i;
2104f92363d1SSreekanth Reddy 	u8 buffer_type;
21058bbb1cf6SCalvin Owens 	unsigned long request_size, copy_size;
2106f92363d1SSreekanth Reddy 	u16 smid;
2107f92363d1SSreekanth Reddy 	u16 ioc_status;
2108f92363d1SSreekanth Reddy 	u8 issue_reset = 0;
2109f92363d1SSreekanth Reddy 
2110f92363d1SSreekanth Reddy 	if (copy_from_user(&karg, arg, sizeof(karg))) {
2111f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
2112f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
2113f92363d1SSreekanth Reddy 		return -EFAULT;
2114f92363d1SSreekanth Reddy 	}
2115f92363d1SSreekanth Reddy 
2116f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s\n", ioc->name,
2117f92363d1SSreekanth Reddy 	    __func__));
2118f92363d1SSreekanth Reddy 
2119f92363d1SSreekanth Reddy 	buffer_type = karg.unique_id & 0x000000ff;
2120f92363d1SSreekanth Reddy 	if (!_ctl_diag_capability(ioc, buffer_type)) {
2121f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2122f92363d1SSreekanth Reddy 			"%s: doesn't have capability for buffer_type(0x%02x)\n",
2123f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
2124f92363d1SSreekanth Reddy 		return -EPERM;
2125f92363d1SSreekanth Reddy 	}
2126f92363d1SSreekanth Reddy 
2127f92363d1SSreekanth Reddy 	if (karg.unique_id != ioc->unique_id[buffer_type]) {
2128f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2129f92363d1SSreekanth Reddy 			"%s: unique_id(0x%08x) is not registered\n",
2130f92363d1SSreekanth Reddy 			ioc->name, __func__, karg.unique_id);
2131f92363d1SSreekanth Reddy 		return -EINVAL;
2132f92363d1SSreekanth Reddy 	}
2133f92363d1SSreekanth Reddy 
2134f92363d1SSreekanth Reddy 	request_data = ioc->diag_buffer[buffer_type];
2135f92363d1SSreekanth Reddy 	if (!request_data) {
2136f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2137f92363d1SSreekanth Reddy 			"%s: doesn't have buffer for buffer_type(0x%02x)\n",
2138f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type);
2139f92363d1SSreekanth Reddy 		return -ENOMEM;
2140f92363d1SSreekanth Reddy 	}
2141f92363d1SSreekanth Reddy 
2142f92363d1SSreekanth Reddy 	request_size = ioc->diag_buffer_sz[buffer_type];
2143f92363d1SSreekanth Reddy 
2144f92363d1SSreekanth Reddy 	if ((karg.starting_offset % 4) || (karg.bytes_to_read % 4)) {
2145f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: either the starting_offset " \
2146f92363d1SSreekanth Reddy 		    "or bytes_to_read are not 4 byte aligned\n", ioc->name,
2147f92363d1SSreekanth Reddy 		    __func__);
2148f92363d1SSreekanth Reddy 		return -EINVAL;
2149f92363d1SSreekanth Reddy 	}
2150f92363d1SSreekanth Reddy 
2151f92363d1SSreekanth Reddy 	if (karg.starting_offset > request_size)
2152f92363d1SSreekanth Reddy 		return -EINVAL;
2153f92363d1SSreekanth Reddy 
2154f92363d1SSreekanth Reddy 	diag_data = (void *)(request_data + karg.starting_offset);
2155f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT
2156f92363d1SSreekanth Reddy 		"%s: diag_buffer(%p), offset(%d), sz(%d)\n",
2157f92363d1SSreekanth Reddy 		ioc->name, __func__,
2158f92363d1SSreekanth Reddy 	    diag_data, karg.starting_offset, karg.bytes_to_read));
2159f92363d1SSreekanth Reddy 
2160f92363d1SSreekanth Reddy 	/* Truncate data on requests that are too large */
2161f92363d1SSreekanth Reddy 	if ((diag_data + karg.bytes_to_read < diag_data) ||
2162f92363d1SSreekanth Reddy 	    (diag_data + karg.bytes_to_read > request_data + request_size))
2163f92363d1SSreekanth Reddy 		copy_size = request_size - karg.starting_offset;
2164f92363d1SSreekanth Reddy 	else
2165f92363d1SSreekanth Reddy 		copy_size = karg.bytes_to_read;
2166f92363d1SSreekanth Reddy 
2167f92363d1SSreekanth Reddy 	if (copy_to_user((void __user *)uarg->diagnostic_data,
2168f92363d1SSreekanth Reddy 	    diag_data, copy_size)) {
2169f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
2170f92363d1SSreekanth Reddy 			"%s: Unable to write mpt_diag_read_buffer_t data @ %p\n",
2171f92363d1SSreekanth Reddy 			ioc->name, __func__, diag_data);
2172f92363d1SSreekanth Reddy 		return -EFAULT;
2173f92363d1SSreekanth Reddy 	}
2174f92363d1SSreekanth Reddy 
2175f92363d1SSreekanth Reddy 	if ((karg.flags & MPT3_FLAGS_REREGISTER) == 0)
2176f92363d1SSreekanth Reddy 		return 0;
2177f92363d1SSreekanth Reddy 
2178f92363d1SSreekanth Reddy 	dctlprintk(ioc, pr_info(MPT3SAS_FMT
2179f92363d1SSreekanth Reddy 		"%s: Reregister buffer_type(0x%02x)\n",
2180f92363d1SSreekanth Reddy 		ioc->name, __func__, buffer_type));
2181f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[buffer_type] &
2182f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_RELEASED) == 0) {
2183f92363d1SSreekanth Reddy 		dctlprintk(ioc, pr_info(MPT3SAS_FMT
2184f92363d1SSreekanth Reddy 			"%s: buffer_type(0x%02x) is still registered\n",
2185f92363d1SSreekanth Reddy 			ioc->name, __func__, buffer_type));
2186f92363d1SSreekanth Reddy 		return 0;
2187f92363d1SSreekanth Reddy 	}
2188f92363d1SSreekanth Reddy 	/* Get a free request frame and save the message context.
2189f92363d1SSreekanth Reddy 	*/
2190f92363d1SSreekanth Reddy 
2191f92363d1SSreekanth Reddy 	if (ioc->ctl_cmds.status != MPT3_CMD_NOT_USED) {
2192f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: ctl_cmd in use\n",
2193f92363d1SSreekanth Reddy 		    ioc->name, __func__);
2194f92363d1SSreekanth Reddy 		rc = -EAGAIN;
2195f92363d1SSreekanth Reddy 		goto out;
2196f92363d1SSreekanth Reddy 	}
2197f92363d1SSreekanth Reddy 
2198f92363d1SSreekanth Reddy 	smid = mpt3sas_base_get_smid(ioc, ioc->ctl_cb_idx);
2199f92363d1SSreekanth Reddy 	if (!smid) {
2200f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: failed obtaining a smid\n",
2201f92363d1SSreekanth Reddy 		    ioc->name, __func__);
2202f92363d1SSreekanth Reddy 		rc = -EAGAIN;
2203f92363d1SSreekanth Reddy 		goto out;
2204f92363d1SSreekanth Reddy 	}
2205f92363d1SSreekanth Reddy 
2206f92363d1SSreekanth Reddy 	rc = 0;
2207f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_PENDING;
2208f92363d1SSreekanth Reddy 	memset(ioc->ctl_cmds.reply, 0, ioc->reply_sz);
2209f92363d1SSreekanth Reddy 	mpi_request = mpt3sas_base_get_msg_frame(ioc, smid);
2210f92363d1SSreekanth Reddy 	ioc->ctl_cmds.smid = smid;
2211f92363d1SSreekanth Reddy 
2212f92363d1SSreekanth Reddy 	mpi_request->Function = MPI2_FUNCTION_DIAG_BUFFER_POST;
2213f92363d1SSreekanth Reddy 	mpi_request->BufferType = buffer_type;
2214f92363d1SSreekanth Reddy 	mpi_request->BufferLength =
2215f92363d1SSreekanth Reddy 	    cpu_to_le32(ioc->diag_buffer_sz[buffer_type]);
2216f92363d1SSreekanth Reddy 	mpi_request->BufferAddress =
2217f92363d1SSreekanth Reddy 	    cpu_to_le64(ioc->diag_buffer_dma[buffer_type]);
2218f92363d1SSreekanth Reddy 	for (i = 0; i < MPT3_PRODUCT_SPECIFIC_DWORDS; i++)
2219f92363d1SSreekanth Reddy 		mpi_request->ProductSpecific[i] =
2220f92363d1SSreekanth Reddy 			cpu_to_le32(ioc->product_specific[buffer_type][i]);
2221f92363d1SSreekanth Reddy 	mpi_request->VF_ID = 0; /* TODO */
2222f92363d1SSreekanth Reddy 	mpi_request->VP_ID = 0;
2223f92363d1SSreekanth Reddy 
2224f92363d1SSreekanth Reddy 	init_completion(&ioc->ctl_cmds.done);
222581c16f83SSuganath Prabu Subramani 	ioc->put_smid_default(ioc, smid);
22268bbb1cf6SCalvin Owens 	wait_for_completion_timeout(&ioc->ctl_cmds.done,
2227f92363d1SSreekanth Reddy 	    MPT3_IOCTL_DEFAULT_TIMEOUT*HZ);
2228f92363d1SSreekanth Reddy 
2229f92363d1SSreekanth Reddy 	if (!(ioc->ctl_cmds.status & MPT3_CMD_COMPLETE)) {
2230f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: timeout\n", ioc->name,
2231f92363d1SSreekanth Reddy 		    __func__);
2232f92363d1SSreekanth Reddy 		_debug_dump_mf(mpi_request,
2233f92363d1SSreekanth Reddy 		    sizeof(Mpi2DiagBufferPostRequest_t)/4);
2234f92363d1SSreekanth Reddy 		if (!(ioc->ctl_cmds.status & MPT3_CMD_RESET))
2235f92363d1SSreekanth Reddy 			issue_reset = 1;
2236f92363d1SSreekanth Reddy 		goto issue_host_reset;
2237f92363d1SSreekanth Reddy 	}
2238f92363d1SSreekanth Reddy 
2239f92363d1SSreekanth Reddy 	/* process the completed Reply Message Frame */
2240f92363d1SSreekanth Reddy 	if ((ioc->ctl_cmds.status & MPT3_CMD_REPLY_VALID) == 0) {
2241f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: no reply message\n",
2242f92363d1SSreekanth Reddy 		    ioc->name, __func__);
2243f92363d1SSreekanth Reddy 		rc = -EFAULT;
2244f92363d1SSreekanth Reddy 		goto out;
2245f92363d1SSreekanth Reddy 	}
2246f92363d1SSreekanth Reddy 
2247f92363d1SSreekanth Reddy 	mpi_reply = ioc->ctl_cmds.reply;
2248f92363d1SSreekanth Reddy 	ioc_status = le16_to_cpu(mpi_reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
2249f92363d1SSreekanth Reddy 
2250f92363d1SSreekanth Reddy 	if (ioc_status == MPI2_IOCSTATUS_SUCCESS) {
2251f92363d1SSreekanth Reddy 		ioc->diag_buffer_status[buffer_type] |=
2252f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_REGISTERED;
2253f92363d1SSreekanth Reddy 		dctlprintk(ioc, pr_info(MPT3SAS_FMT "%s: success\n",
2254f92363d1SSreekanth Reddy 		    ioc->name, __func__));
2255f92363d1SSreekanth Reddy 	} else {
2256f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT
2257f92363d1SSreekanth Reddy 			"%s: ioc_status(0x%04x) log_info(0x%08x)\n",
2258f92363d1SSreekanth Reddy 			ioc->name, __func__,
2259f92363d1SSreekanth Reddy 		    ioc_status, le32_to_cpu(mpi_reply->IOCLogInfo));
2260f92363d1SSreekanth Reddy 		rc = -EFAULT;
2261f92363d1SSreekanth Reddy 	}
2262f92363d1SSreekanth Reddy 
2263f92363d1SSreekanth Reddy  issue_host_reset:
2264f92363d1SSreekanth Reddy 	if (issue_reset)
226598c56ad3SCalvin Owens 		mpt3sas_base_hard_reset_handler(ioc, FORCE_BIG_HAMMER);
2266f92363d1SSreekanth Reddy 
2267f92363d1SSreekanth Reddy  out:
2268f92363d1SSreekanth Reddy 
2269f92363d1SSreekanth Reddy 	ioc->ctl_cmds.status = MPT3_CMD_NOT_USED;
2270f92363d1SSreekanth Reddy 	return rc;
2271f92363d1SSreekanth Reddy }
2272f92363d1SSreekanth Reddy 
2273f92363d1SSreekanth Reddy 
2274f92363d1SSreekanth Reddy 
2275f92363d1SSreekanth Reddy #ifdef CONFIG_COMPAT
2276f92363d1SSreekanth Reddy /**
2277f92363d1SSreekanth Reddy  * _ctl_compat_mpt_command - convert 32bit pointers to 64bit.
2278f92363d1SSreekanth Reddy  * @ioc: per adapter object
2279f92363d1SSreekanth Reddy  * @cmd - ioctl opcode
2280f92363d1SSreekanth Reddy  * @arg - (struct mpt3_ioctl_command32)
2281f92363d1SSreekanth Reddy  *
2282f92363d1SSreekanth Reddy  * MPT3COMMAND32 - Handle 32bit applications running on 64bit os.
2283f92363d1SSreekanth Reddy  */
2284f92363d1SSreekanth Reddy static long
2285f92363d1SSreekanth Reddy _ctl_compat_mpt_command(struct MPT3SAS_ADAPTER *ioc, unsigned cmd,
2286f92363d1SSreekanth Reddy 	void __user *arg)
2287f92363d1SSreekanth Reddy {
2288f92363d1SSreekanth Reddy 	struct mpt3_ioctl_command32 karg32;
2289f92363d1SSreekanth Reddy 	struct mpt3_ioctl_command32 __user *uarg;
2290f92363d1SSreekanth Reddy 	struct mpt3_ioctl_command karg;
2291f92363d1SSreekanth Reddy 
2292f92363d1SSreekanth Reddy 	if (_IOC_SIZE(cmd) != sizeof(struct mpt3_ioctl_command32))
2293f92363d1SSreekanth Reddy 		return -EINVAL;
2294f92363d1SSreekanth Reddy 
2295f92363d1SSreekanth Reddy 	uarg = (struct mpt3_ioctl_command32 __user *) arg;
2296f92363d1SSreekanth Reddy 
2297f92363d1SSreekanth Reddy 	if (copy_from_user(&karg32, (char __user *)arg, sizeof(karg32))) {
2298f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
2299f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
2300f92363d1SSreekanth Reddy 		return -EFAULT;
2301f92363d1SSreekanth Reddy 	}
2302f92363d1SSreekanth Reddy 
2303f92363d1SSreekanth Reddy 	memset(&karg, 0, sizeof(struct mpt3_ioctl_command));
2304f92363d1SSreekanth Reddy 	karg.hdr.ioc_number = karg32.hdr.ioc_number;
2305f92363d1SSreekanth Reddy 	karg.hdr.port_number = karg32.hdr.port_number;
2306f92363d1SSreekanth Reddy 	karg.hdr.max_data_size = karg32.hdr.max_data_size;
2307f92363d1SSreekanth Reddy 	karg.timeout = karg32.timeout;
2308f92363d1SSreekanth Reddy 	karg.max_reply_bytes = karg32.max_reply_bytes;
2309f92363d1SSreekanth Reddy 	karg.data_in_size = karg32.data_in_size;
2310f92363d1SSreekanth Reddy 	karg.data_out_size = karg32.data_out_size;
2311f92363d1SSreekanth Reddy 	karg.max_sense_bytes = karg32.max_sense_bytes;
2312f92363d1SSreekanth Reddy 	karg.data_sge_offset = karg32.data_sge_offset;
2313f92363d1SSreekanth Reddy 	karg.reply_frame_buf_ptr = compat_ptr(karg32.reply_frame_buf_ptr);
2314f92363d1SSreekanth Reddy 	karg.data_in_buf_ptr = compat_ptr(karg32.data_in_buf_ptr);
2315f92363d1SSreekanth Reddy 	karg.data_out_buf_ptr = compat_ptr(karg32.data_out_buf_ptr);
2316f92363d1SSreekanth Reddy 	karg.sense_data_ptr = compat_ptr(karg32.sense_data_ptr);
2317f92363d1SSreekanth Reddy 	return _ctl_do_mpt_command(ioc, karg, &uarg->mf);
2318f92363d1SSreekanth Reddy }
2319f92363d1SSreekanth Reddy #endif
2320f92363d1SSreekanth Reddy 
2321f92363d1SSreekanth Reddy /**
2322f92363d1SSreekanth Reddy  * _ctl_ioctl_main - main ioctl entry point
2323f92363d1SSreekanth Reddy  * @file - (struct file)
2324f92363d1SSreekanth Reddy  * @cmd - ioctl opcode
2325c84b06a4SSreekanth Reddy  * @arg - user space data buffer
2326c84b06a4SSreekanth Reddy  * @compat - handles 32 bit applications in 64bit os
2327c84b06a4SSreekanth Reddy  * @mpi_version: will be MPI2_VERSION for mpt2ctl ioctl device &
2328b130b0d5SSuganath prabu Subramani  * MPI25_VERSION | MPI26_VERSION for mpt3ctl ioctl device.
2329f92363d1SSreekanth Reddy  */
2330f92363d1SSreekanth Reddy static long
2331f92363d1SSreekanth Reddy _ctl_ioctl_main(struct file *file, unsigned int cmd, void __user *arg,
2332c84b06a4SSreekanth Reddy 	u8 compat, u16 mpi_version)
2333f92363d1SSreekanth Reddy {
2334f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc;
2335f92363d1SSreekanth Reddy 	struct mpt3_ioctl_header ioctl_header;
2336f92363d1SSreekanth Reddy 	enum block_state state;
2337f92363d1SSreekanth Reddy 	long ret = -EINVAL;
2338f92363d1SSreekanth Reddy 
2339f92363d1SSreekanth Reddy 	/* get IOCTL header */
2340f92363d1SSreekanth Reddy 	if (copy_from_user(&ioctl_header, (char __user *)arg,
2341f92363d1SSreekanth Reddy 	    sizeof(struct mpt3_ioctl_header))) {
2342f92363d1SSreekanth Reddy 		pr_err("failure at %s:%d/%s()!\n",
2343f92363d1SSreekanth Reddy 		    __FILE__, __LINE__, __func__);
2344f92363d1SSreekanth Reddy 		return -EFAULT;
2345f92363d1SSreekanth Reddy 	}
2346f92363d1SSreekanth Reddy 
2347c84b06a4SSreekanth Reddy 	if (_ctl_verify_adapter(ioctl_header.ioc_number,
2348c84b06a4SSreekanth Reddy 				&ioc, mpi_version) == -1 || !ioc)
2349f92363d1SSreekanth Reddy 		return -ENODEV;
2350f92363d1SSreekanth Reddy 
235108c4d550SSreekanth Reddy 	/* pci_access_mutex lock acquired by ioctl path */
235208c4d550SSreekanth Reddy 	mutex_lock(&ioc->pci_access_mutex);
235308c4d550SSreekanth Reddy 
2354f92363d1SSreekanth Reddy 	if (ioc->shost_recovery || ioc->pci_error_recovery ||
235508c4d550SSreekanth Reddy 	    ioc->is_driver_loading || ioc->remove_host) {
235608c4d550SSreekanth Reddy 		ret = -EAGAIN;
235708c4d550SSreekanth Reddy 		goto out_unlock_pciaccess;
235808c4d550SSreekanth Reddy 	}
2359f92363d1SSreekanth Reddy 
2360f92363d1SSreekanth Reddy 	state = (file->f_flags & O_NONBLOCK) ? NON_BLOCKING : BLOCKING;
2361f92363d1SSreekanth Reddy 	if (state == NON_BLOCKING) {
236208c4d550SSreekanth Reddy 		if (!mutex_trylock(&ioc->ctl_cmds.mutex)) {
236308c4d550SSreekanth Reddy 			ret = -EAGAIN;
236408c4d550SSreekanth Reddy 			goto out_unlock_pciaccess;
236508c4d550SSreekanth Reddy 		}
236608c4d550SSreekanth Reddy 	} else if (mutex_lock_interruptible(&ioc->ctl_cmds.mutex)) {
236708c4d550SSreekanth Reddy 		ret = -ERESTARTSYS;
236808c4d550SSreekanth Reddy 		goto out_unlock_pciaccess;
236908c4d550SSreekanth Reddy 	}
2370f92363d1SSreekanth Reddy 
2371f92363d1SSreekanth Reddy 
2372f92363d1SSreekanth Reddy 	switch (cmd) {
2373f92363d1SSreekanth Reddy 	case MPT3IOCINFO:
2374f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_ioctl_iocinfo))
2375f92363d1SSreekanth Reddy 			ret = _ctl_getiocinfo(ioc, arg);
2376f92363d1SSreekanth Reddy 		break;
2377f92363d1SSreekanth Reddy #ifdef CONFIG_COMPAT
2378f92363d1SSreekanth Reddy 	case MPT3COMMAND32:
2379f92363d1SSreekanth Reddy #endif
2380f92363d1SSreekanth Reddy 	case MPT3COMMAND:
2381f92363d1SSreekanth Reddy 	{
2382f92363d1SSreekanth Reddy 		struct mpt3_ioctl_command __user *uarg;
2383f92363d1SSreekanth Reddy 		struct mpt3_ioctl_command karg;
2384f92363d1SSreekanth Reddy 
2385f92363d1SSreekanth Reddy #ifdef CONFIG_COMPAT
2386f92363d1SSreekanth Reddy 		if (compat) {
2387f92363d1SSreekanth Reddy 			ret = _ctl_compat_mpt_command(ioc, cmd, arg);
2388f92363d1SSreekanth Reddy 			break;
2389f92363d1SSreekanth Reddy 		}
2390f92363d1SSreekanth Reddy #endif
2391f92363d1SSreekanth Reddy 		if (copy_from_user(&karg, arg, sizeof(karg))) {
2392f92363d1SSreekanth Reddy 			pr_err("failure at %s:%d/%s()!\n",
2393f92363d1SSreekanth Reddy 			    __FILE__, __LINE__, __func__);
2394f92363d1SSreekanth Reddy 			ret = -EFAULT;
2395f92363d1SSreekanth Reddy 			break;
2396f92363d1SSreekanth Reddy 		}
2397f92363d1SSreekanth Reddy 
2398f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_ioctl_command)) {
2399f92363d1SSreekanth Reddy 			uarg = arg;
2400f92363d1SSreekanth Reddy 			ret = _ctl_do_mpt_command(ioc, karg, &uarg->mf);
2401f92363d1SSreekanth Reddy 		}
2402f92363d1SSreekanth Reddy 		break;
2403f92363d1SSreekanth Reddy 	}
2404f92363d1SSreekanth Reddy 	case MPT3EVENTQUERY:
2405f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_ioctl_eventquery))
2406f92363d1SSreekanth Reddy 			ret = _ctl_eventquery(ioc, arg);
2407f92363d1SSreekanth Reddy 		break;
2408f92363d1SSreekanth Reddy 	case MPT3EVENTENABLE:
2409f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_ioctl_eventenable))
2410f92363d1SSreekanth Reddy 			ret = _ctl_eventenable(ioc, arg);
2411f92363d1SSreekanth Reddy 		break;
2412f92363d1SSreekanth Reddy 	case MPT3EVENTREPORT:
2413f92363d1SSreekanth Reddy 		ret = _ctl_eventreport(ioc, arg);
2414f92363d1SSreekanth Reddy 		break;
2415f92363d1SSreekanth Reddy 	case MPT3HARDRESET:
2416f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_ioctl_diag_reset))
2417f92363d1SSreekanth Reddy 			ret = _ctl_do_reset(ioc, arg);
2418f92363d1SSreekanth Reddy 		break;
2419f92363d1SSreekanth Reddy 	case MPT3BTDHMAPPING:
2420f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_ioctl_btdh_mapping))
2421f92363d1SSreekanth Reddy 			ret = _ctl_btdh_mapping(ioc, arg);
2422f92363d1SSreekanth Reddy 		break;
2423f92363d1SSreekanth Reddy 	case MPT3DIAGREGISTER:
2424f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_diag_register))
2425f92363d1SSreekanth Reddy 			ret = _ctl_diag_register(ioc, arg);
2426f92363d1SSreekanth Reddy 		break;
2427f92363d1SSreekanth Reddy 	case MPT3DIAGUNREGISTER:
2428f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_diag_unregister))
2429f92363d1SSreekanth Reddy 			ret = _ctl_diag_unregister(ioc, arg);
2430f92363d1SSreekanth Reddy 		break;
2431f92363d1SSreekanth Reddy 	case MPT3DIAGQUERY:
2432f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_diag_query))
2433f92363d1SSreekanth Reddy 			ret = _ctl_diag_query(ioc, arg);
2434f92363d1SSreekanth Reddy 		break;
2435f92363d1SSreekanth Reddy 	case MPT3DIAGRELEASE:
2436f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_diag_release))
2437f92363d1SSreekanth Reddy 			ret = _ctl_diag_release(ioc, arg);
2438f92363d1SSreekanth Reddy 		break;
2439f92363d1SSreekanth Reddy 	case MPT3DIAGREADBUFFER:
2440f92363d1SSreekanth Reddy 		if (_IOC_SIZE(cmd) == sizeof(struct mpt3_diag_read_buffer))
2441f92363d1SSreekanth Reddy 			ret = _ctl_diag_read_buffer(ioc, arg);
2442f92363d1SSreekanth Reddy 		break;
2443f92363d1SSreekanth Reddy 	default:
2444f92363d1SSreekanth Reddy 		dctlprintk(ioc, pr_info(MPT3SAS_FMT
2445f92363d1SSreekanth Reddy 		    "unsupported ioctl opcode(0x%08x)\n", ioc->name, cmd));
2446f92363d1SSreekanth Reddy 		break;
2447f92363d1SSreekanth Reddy 	}
2448f92363d1SSreekanth Reddy 
2449f92363d1SSreekanth Reddy 	mutex_unlock(&ioc->ctl_cmds.mutex);
245008c4d550SSreekanth Reddy out_unlock_pciaccess:
245108c4d550SSreekanth Reddy 	mutex_unlock(&ioc->pci_access_mutex);
2452f92363d1SSreekanth Reddy 	return ret;
2453f92363d1SSreekanth Reddy }
2454f92363d1SSreekanth Reddy 
2455f92363d1SSreekanth Reddy /**
2456c84b06a4SSreekanth Reddy  * _ctl_ioctl - mpt3ctl main ioctl entry point (unlocked)
2457f92363d1SSreekanth Reddy  * @file - (struct file)
2458f92363d1SSreekanth Reddy  * @cmd - ioctl opcode
2459f92363d1SSreekanth Reddy  * @arg -
2460f92363d1SSreekanth Reddy  */
24618bbb1cf6SCalvin Owens static long
2462c84b06a4SSreekanth Reddy _ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2463f92363d1SSreekanth Reddy {
2464f92363d1SSreekanth Reddy 	long ret;
2465f92363d1SSreekanth Reddy 
2466b130b0d5SSuganath prabu Subramani 	/* pass MPI25_VERSION | MPI26_VERSION value,
2467b130b0d5SSuganath prabu Subramani 	 * to indicate that this ioctl cmd
2468c84b06a4SSreekanth Reddy 	 * came from mpt3ctl ioctl device.
2469c84b06a4SSreekanth Reddy 	 */
2470b130b0d5SSuganath prabu Subramani 	ret = _ctl_ioctl_main(file, cmd, (void __user *)arg, 0,
2471b130b0d5SSuganath prabu Subramani 		MPI25_VERSION | MPI26_VERSION);
2472f92363d1SSreekanth Reddy 	return ret;
2473f92363d1SSreekanth Reddy }
2474f92363d1SSreekanth Reddy 
2475c84b06a4SSreekanth Reddy /**
2476c84b06a4SSreekanth Reddy  * _ctl_mpt2_ioctl - mpt2ctl main ioctl entry point (unlocked)
2477c84b06a4SSreekanth Reddy  * @file - (struct file)
2478c84b06a4SSreekanth Reddy  * @cmd - ioctl opcode
2479c84b06a4SSreekanth Reddy  * @arg -
2480c84b06a4SSreekanth Reddy  */
24818bbb1cf6SCalvin Owens static long
2482c84b06a4SSreekanth Reddy _ctl_mpt2_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2483c84b06a4SSreekanth Reddy {
2484c84b06a4SSreekanth Reddy 	long ret;
2485c84b06a4SSreekanth Reddy 
2486c84b06a4SSreekanth Reddy 	/* pass MPI2_VERSION value, to indicate that this ioctl cmd
2487c84b06a4SSreekanth Reddy 	 * came from mpt2ctl ioctl device.
2488c84b06a4SSreekanth Reddy 	 */
2489c84b06a4SSreekanth Reddy 	ret = _ctl_ioctl_main(file, cmd, (void __user *)arg, 0, MPI2_VERSION);
2490c84b06a4SSreekanth Reddy 	return ret;
2491c84b06a4SSreekanth Reddy }
2492f92363d1SSreekanth Reddy #ifdef CONFIG_COMPAT
2493f92363d1SSreekanth Reddy /**
2494c84b06a4SSreekanth Reddy  *_ ctl_ioctl_compat - main ioctl entry point (compat)
2495f92363d1SSreekanth Reddy  * @file -
2496f92363d1SSreekanth Reddy  * @cmd -
2497f92363d1SSreekanth Reddy  * @arg -
2498f92363d1SSreekanth Reddy  *
2499f92363d1SSreekanth Reddy  * This routine handles 32 bit applications in 64bit os.
2500f92363d1SSreekanth Reddy  */
25018bbb1cf6SCalvin Owens static long
2502c84b06a4SSreekanth Reddy _ctl_ioctl_compat(struct file *file, unsigned cmd, unsigned long arg)
2503f92363d1SSreekanth Reddy {
2504f92363d1SSreekanth Reddy 	long ret;
2505f92363d1SSreekanth Reddy 
2506b130b0d5SSuganath prabu Subramani 	ret = _ctl_ioctl_main(file, cmd, (void __user *)arg, 1,
2507b130b0d5SSuganath prabu Subramani 		MPI25_VERSION | MPI26_VERSION);
2508c84b06a4SSreekanth Reddy 	return ret;
2509c84b06a4SSreekanth Reddy }
2510c84b06a4SSreekanth Reddy 
2511c84b06a4SSreekanth Reddy /**
2512c84b06a4SSreekanth Reddy  *_ ctl_mpt2_ioctl_compat - main ioctl entry point (compat)
2513c84b06a4SSreekanth Reddy  * @file -
2514c84b06a4SSreekanth Reddy  * @cmd -
2515c84b06a4SSreekanth Reddy  * @arg -
2516c84b06a4SSreekanth Reddy  *
2517c84b06a4SSreekanth Reddy  * This routine handles 32 bit applications in 64bit os.
2518c84b06a4SSreekanth Reddy  */
25198bbb1cf6SCalvin Owens static long
2520c84b06a4SSreekanth Reddy _ctl_mpt2_ioctl_compat(struct file *file, unsigned cmd, unsigned long arg)
2521c84b06a4SSreekanth Reddy {
2522c84b06a4SSreekanth Reddy 	long ret;
2523c84b06a4SSreekanth Reddy 
2524c84b06a4SSreekanth Reddy 	ret = _ctl_ioctl_main(file, cmd, (void __user *)arg, 1, MPI2_VERSION);
2525f92363d1SSreekanth Reddy 	return ret;
2526f92363d1SSreekanth Reddy }
2527f92363d1SSreekanth Reddy #endif
2528f92363d1SSreekanth Reddy 
2529f92363d1SSreekanth Reddy /* scsi host attributes */
2530f92363d1SSreekanth Reddy /**
2531f92363d1SSreekanth Reddy  * _ctl_version_fw_show - firmware version
2532f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2533f92363d1SSreekanth Reddy  * @buf - the buffer returned
2534f92363d1SSreekanth Reddy  *
2535f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2536f92363d1SSreekanth Reddy  */
2537f92363d1SSreekanth Reddy static ssize_t
2538f92363d1SSreekanth Reddy _ctl_version_fw_show(struct device *cdev, struct device_attribute *attr,
2539f92363d1SSreekanth Reddy 	char *buf)
2540f92363d1SSreekanth Reddy {
2541f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2542f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2543f92363d1SSreekanth Reddy 
2544f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%02d.%02d.%02d.%02d\n",
2545f92363d1SSreekanth Reddy 	    (ioc->facts.FWVersion.Word & 0xFF000000) >> 24,
2546f92363d1SSreekanth Reddy 	    (ioc->facts.FWVersion.Word & 0x00FF0000) >> 16,
2547f92363d1SSreekanth Reddy 	    (ioc->facts.FWVersion.Word & 0x0000FF00) >> 8,
2548f92363d1SSreekanth Reddy 	    ioc->facts.FWVersion.Word & 0x000000FF);
2549f92363d1SSreekanth Reddy }
2550f92363d1SSreekanth Reddy static DEVICE_ATTR(version_fw, S_IRUGO, _ctl_version_fw_show, NULL);
2551f92363d1SSreekanth Reddy 
2552f92363d1SSreekanth Reddy /**
2553f92363d1SSreekanth Reddy  * _ctl_version_bios_show - bios version
2554f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2555f92363d1SSreekanth Reddy  * @buf - the buffer returned
2556f92363d1SSreekanth Reddy  *
2557f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2558f92363d1SSreekanth Reddy  */
2559f92363d1SSreekanth Reddy static ssize_t
2560f92363d1SSreekanth Reddy _ctl_version_bios_show(struct device *cdev, struct device_attribute *attr,
2561f92363d1SSreekanth Reddy 	char *buf)
2562f92363d1SSreekanth Reddy {
2563f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2564f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2565f92363d1SSreekanth Reddy 
2566f92363d1SSreekanth Reddy 	u32 version = le32_to_cpu(ioc->bios_pg3.BiosVersion);
2567f92363d1SSreekanth Reddy 
2568f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%02d.%02d.%02d.%02d\n",
2569f92363d1SSreekanth Reddy 	    (version & 0xFF000000) >> 24,
2570f92363d1SSreekanth Reddy 	    (version & 0x00FF0000) >> 16,
2571f92363d1SSreekanth Reddy 	    (version & 0x0000FF00) >> 8,
2572f92363d1SSreekanth Reddy 	    version & 0x000000FF);
2573f92363d1SSreekanth Reddy }
2574f92363d1SSreekanth Reddy static DEVICE_ATTR(version_bios, S_IRUGO, _ctl_version_bios_show, NULL);
2575f92363d1SSreekanth Reddy 
2576f92363d1SSreekanth Reddy /**
2577f92363d1SSreekanth Reddy  * _ctl_version_mpi_show - MPI (message passing interface) version
2578f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2579f92363d1SSreekanth Reddy  * @buf - the buffer returned
2580f92363d1SSreekanth Reddy  *
2581f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2582f92363d1SSreekanth Reddy  */
2583f92363d1SSreekanth Reddy static ssize_t
2584f92363d1SSreekanth Reddy _ctl_version_mpi_show(struct device *cdev, struct device_attribute *attr,
2585f92363d1SSreekanth Reddy 	char *buf)
2586f92363d1SSreekanth Reddy {
2587f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2588f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2589f92363d1SSreekanth Reddy 
2590f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%03x.%02x\n",
2591f92363d1SSreekanth Reddy 	    ioc->facts.MsgVersion, ioc->facts.HeaderVersion >> 8);
2592f92363d1SSreekanth Reddy }
2593f92363d1SSreekanth Reddy static DEVICE_ATTR(version_mpi, S_IRUGO, _ctl_version_mpi_show, NULL);
2594f92363d1SSreekanth Reddy 
2595f92363d1SSreekanth Reddy /**
2596f92363d1SSreekanth Reddy  * _ctl_version_product_show - product name
2597f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2598f92363d1SSreekanth Reddy  * @buf - the buffer returned
2599f92363d1SSreekanth Reddy  *
2600f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2601f92363d1SSreekanth Reddy  */
2602f92363d1SSreekanth Reddy static ssize_t
2603f92363d1SSreekanth Reddy _ctl_version_product_show(struct device *cdev, struct device_attribute *attr,
2604f92363d1SSreekanth Reddy 	char *buf)
2605f92363d1SSreekanth Reddy {
2606f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2607f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2608f92363d1SSreekanth Reddy 
2609f92363d1SSreekanth Reddy 	return snprintf(buf, 16, "%s\n", ioc->manu_pg0.ChipName);
2610f92363d1SSreekanth Reddy }
2611f92363d1SSreekanth Reddy static DEVICE_ATTR(version_product, S_IRUGO, _ctl_version_product_show, NULL);
2612f92363d1SSreekanth Reddy 
2613f92363d1SSreekanth Reddy /**
2614f92363d1SSreekanth Reddy  * _ctl_version_nvdata_persistent_show - ndvata persistent version
2615f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2616f92363d1SSreekanth Reddy  * @buf - the buffer returned
2617f92363d1SSreekanth Reddy  *
2618f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2619f92363d1SSreekanth Reddy  */
2620f92363d1SSreekanth Reddy static ssize_t
2621f92363d1SSreekanth Reddy _ctl_version_nvdata_persistent_show(struct device *cdev,
2622f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
2623f92363d1SSreekanth Reddy {
2624f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2625f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2626f92363d1SSreekanth Reddy 
2627f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%08xh\n",
2628f92363d1SSreekanth Reddy 	    le32_to_cpu(ioc->iounit_pg0.NvdataVersionPersistent.Word));
2629f92363d1SSreekanth Reddy }
2630f92363d1SSreekanth Reddy static DEVICE_ATTR(version_nvdata_persistent, S_IRUGO,
2631f92363d1SSreekanth Reddy 	_ctl_version_nvdata_persistent_show, NULL);
2632f92363d1SSreekanth Reddy 
2633f92363d1SSreekanth Reddy /**
2634f92363d1SSreekanth Reddy  * _ctl_version_nvdata_default_show - nvdata default version
2635f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2636f92363d1SSreekanth Reddy  * @buf - the buffer returned
2637f92363d1SSreekanth Reddy  *
2638f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2639f92363d1SSreekanth Reddy  */
2640f92363d1SSreekanth Reddy static ssize_t
2641f92363d1SSreekanth Reddy _ctl_version_nvdata_default_show(struct device *cdev, struct device_attribute
2642f92363d1SSreekanth Reddy 	*attr, char *buf)
2643f92363d1SSreekanth Reddy {
2644f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2645f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2646f92363d1SSreekanth Reddy 
2647f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%08xh\n",
2648f92363d1SSreekanth Reddy 	    le32_to_cpu(ioc->iounit_pg0.NvdataVersionDefault.Word));
2649f92363d1SSreekanth Reddy }
2650f92363d1SSreekanth Reddy static DEVICE_ATTR(version_nvdata_default, S_IRUGO,
2651f92363d1SSreekanth Reddy 	_ctl_version_nvdata_default_show, NULL);
2652f92363d1SSreekanth Reddy 
2653f92363d1SSreekanth Reddy /**
2654f92363d1SSreekanth Reddy  * _ctl_board_name_show - board name
2655f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2656f92363d1SSreekanth Reddy  * @buf - the buffer returned
2657f92363d1SSreekanth Reddy  *
2658f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2659f92363d1SSreekanth Reddy  */
2660f92363d1SSreekanth Reddy static ssize_t
2661f92363d1SSreekanth Reddy _ctl_board_name_show(struct device *cdev, struct device_attribute *attr,
2662f92363d1SSreekanth Reddy 	char *buf)
2663f92363d1SSreekanth Reddy {
2664f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2665f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2666f92363d1SSreekanth Reddy 
2667f92363d1SSreekanth Reddy 	return snprintf(buf, 16, "%s\n", ioc->manu_pg0.BoardName);
2668f92363d1SSreekanth Reddy }
2669f92363d1SSreekanth Reddy static DEVICE_ATTR(board_name, S_IRUGO, _ctl_board_name_show, NULL);
2670f92363d1SSreekanth Reddy 
2671f92363d1SSreekanth Reddy /**
2672f92363d1SSreekanth Reddy  * _ctl_board_assembly_show - board assembly name
2673f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2674f92363d1SSreekanth Reddy  * @buf - the buffer returned
2675f92363d1SSreekanth Reddy  *
2676f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2677f92363d1SSreekanth Reddy  */
2678f92363d1SSreekanth Reddy static ssize_t
2679f92363d1SSreekanth Reddy _ctl_board_assembly_show(struct device *cdev, struct device_attribute *attr,
2680f92363d1SSreekanth Reddy 	char *buf)
2681f92363d1SSreekanth Reddy {
2682f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2683f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2684f92363d1SSreekanth Reddy 
2685f92363d1SSreekanth Reddy 	return snprintf(buf, 16, "%s\n", ioc->manu_pg0.BoardAssembly);
2686f92363d1SSreekanth Reddy }
2687f92363d1SSreekanth Reddy static DEVICE_ATTR(board_assembly, S_IRUGO, _ctl_board_assembly_show, NULL);
2688f92363d1SSreekanth Reddy 
2689f92363d1SSreekanth Reddy /**
2690f92363d1SSreekanth Reddy  * _ctl_board_tracer_show - board tracer number
2691f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2692f92363d1SSreekanth Reddy  * @buf - the buffer returned
2693f92363d1SSreekanth Reddy  *
2694f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2695f92363d1SSreekanth Reddy  */
2696f92363d1SSreekanth Reddy static ssize_t
2697f92363d1SSreekanth Reddy _ctl_board_tracer_show(struct device *cdev, struct device_attribute *attr,
2698f92363d1SSreekanth Reddy 	char *buf)
2699f92363d1SSreekanth Reddy {
2700f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2701f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2702f92363d1SSreekanth Reddy 
2703f92363d1SSreekanth Reddy 	return snprintf(buf, 16, "%s\n", ioc->manu_pg0.BoardTracerNumber);
2704f92363d1SSreekanth Reddy }
2705f92363d1SSreekanth Reddy static DEVICE_ATTR(board_tracer, S_IRUGO, _ctl_board_tracer_show, NULL);
2706f92363d1SSreekanth Reddy 
2707f92363d1SSreekanth Reddy /**
2708f92363d1SSreekanth Reddy  * _ctl_io_delay_show - io missing delay
2709f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2710f92363d1SSreekanth Reddy  * @buf - the buffer returned
2711f92363d1SSreekanth Reddy  *
2712f92363d1SSreekanth Reddy  * This is for firmware implemention for deboucing device
2713f92363d1SSreekanth Reddy  * removal events.
2714f92363d1SSreekanth Reddy  *
2715f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2716f92363d1SSreekanth Reddy  */
2717f92363d1SSreekanth Reddy static ssize_t
2718f92363d1SSreekanth Reddy _ctl_io_delay_show(struct device *cdev, struct device_attribute *attr,
2719f92363d1SSreekanth Reddy 	char *buf)
2720f92363d1SSreekanth Reddy {
2721f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2722f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2723f92363d1SSreekanth Reddy 
2724f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%02d\n", ioc->io_missing_delay);
2725f92363d1SSreekanth Reddy }
2726f92363d1SSreekanth Reddy static DEVICE_ATTR(io_delay, S_IRUGO, _ctl_io_delay_show, NULL);
2727f92363d1SSreekanth Reddy 
2728f92363d1SSreekanth Reddy /**
2729f92363d1SSreekanth Reddy  * _ctl_device_delay_show - device missing delay
2730f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2731f92363d1SSreekanth Reddy  * @buf - the buffer returned
2732f92363d1SSreekanth Reddy  *
2733f92363d1SSreekanth Reddy  * This is for firmware implemention for deboucing device
2734f92363d1SSreekanth Reddy  * removal events.
2735f92363d1SSreekanth Reddy  *
2736f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2737f92363d1SSreekanth Reddy  */
2738f92363d1SSreekanth Reddy static ssize_t
2739f92363d1SSreekanth Reddy _ctl_device_delay_show(struct device *cdev, struct device_attribute *attr,
2740f92363d1SSreekanth Reddy 	char *buf)
2741f92363d1SSreekanth Reddy {
2742f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2743f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2744f92363d1SSreekanth Reddy 
2745f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%02d\n", ioc->device_missing_delay);
2746f92363d1SSreekanth Reddy }
2747f92363d1SSreekanth Reddy static DEVICE_ATTR(device_delay, S_IRUGO, _ctl_device_delay_show, NULL);
2748f92363d1SSreekanth Reddy 
2749f92363d1SSreekanth Reddy /**
2750f92363d1SSreekanth Reddy  * _ctl_fw_queue_depth_show - global credits
2751f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2752f92363d1SSreekanth Reddy  * @buf - the buffer returned
2753f92363d1SSreekanth Reddy  *
2754f92363d1SSreekanth Reddy  * This is firmware queue depth limit
2755f92363d1SSreekanth Reddy  *
2756f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2757f92363d1SSreekanth Reddy  */
2758f92363d1SSreekanth Reddy static ssize_t
2759f92363d1SSreekanth Reddy _ctl_fw_queue_depth_show(struct device *cdev, struct device_attribute *attr,
2760f92363d1SSreekanth Reddy 	char *buf)
2761f92363d1SSreekanth Reddy {
2762f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2763f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2764f92363d1SSreekanth Reddy 
2765f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%02d\n", ioc->facts.RequestCredit);
2766f92363d1SSreekanth Reddy }
2767f92363d1SSreekanth Reddy static DEVICE_ATTR(fw_queue_depth, S_IRUGO, _ctl_fw_queue_depth_show, NULL);
2768f92363d1SSreekanth Reddy 
2769f92363d1SSreekanth Reddy /**
2770f92363d1SSreekanth Reddy  * _ctl_sas_address_show - sas address
2771f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2772f92363d1SSreekanth Reddy  * @buf - the buffer returned
2773f92363d1SSreekanth Reddy  *
2774f92363d1SSreekanth Reddy  * This is the controller sas address
2775f92363d1SSreekanth Reddy  *
2776f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2777f92363d1SSreekanth Reddy  */
2778f92363d1SSreekanth Reddy static ssize_t
2779f92363d1SSreekanth Reddy _ctl_host_sas_address_show(struct device *cdev, struct device_attribute *attr,
2780f92363d1SSreekanth Reddy 	char *buf)
2781f92363d1SSreekanth Reddy 
2782f92363d1SSreekanth Reddy {
2783f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2784f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2785f92363d1SSreekanth Reddy 
2786f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "0x%016llx\n",
2787f92363d1SSreekanth Reddy 	    (unsigned long long)ioc->sas_hba.sas_address);
2788f92363d1SSreekanth Reddy }
2789f92363d1SSreekanth Reddy static DEVICE_ATTR(host_sas_address, S_IRUGO,
2790f92363d1SSreekanth Reddy 	_ctl_host_sas_address_show, NULL);
2791f92363d1SSreekanth Reddy 
2792f92363d1SSreekanth Reddy /**
2793f92363d1SSreekanth Reddy  * _ctl_logging_level_show - logging level
2794f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2795f92363d1SSreekanth Reddy  * @buf - the buffer returned
2796f92363d1SSreekanth Reddy  *
2797f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
2798f92363d1SSreekanth Reddy  */
2799f92363d1SSreekanth Reddy static ssize_t
2800f92363d1SSreekanth Reddy _ctl_logging_level_show(struct device *cdev, struct device_attribute *attr,
2801f92363d1SSreekanth Reddy 	char *buf)
2802f92363d1SSreekanth Reddy {
2803f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2804f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2805f92363d1SSreekanth Reddy 
2806f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%08xh\n", ioc->logging_level);
2807f92363d1SSreekanth Reddy }
2808f92363d1SSreekanth Reddy static ssize_t
2809f92363d1SSreekanth Reddy _ctl_logging_level_store(struct device *cdev, struct device_attribute *attr,
2810f92363d1SSreekanth Reddy 	const char *buf, size_t count)
2811f92363d1SSreekanth Reddy {
2812f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2813f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2814f92363d1SSreekanth Reddy 	int val = 0;
2815f92363d1SSreekanth Reddy 
2816f92363d1SSreekanth Reddy 	if (sscanf(buf, "%x", &val) != 1)
2817f92363d1SSreekanth Reddy 		return -EINVAL;
2818f92363d1SSreekanth Reddy 
2819f92363d1SSreekanth Reddy 	ioc->logging_level = val;
2820f92363d1SSreekanth Reddy 	pr_info(MPT3SAS_FMT "logging_level=%08xh\n", ioc->name,
2821f92363d1SSreekanth Reddy 	    ioc->logging_level);
2822f92363d1SSreekanth Reddy 	return strlen(buf);
2823f92363d1SSreekanth Reddy }
2824f92363d1SSreekanth Reddy static DEVICE_ATTR(logging_level, S_IRUGO | S_IWUSR, _ctl_logging_level_show,
2825f92363d1SSreekanth Reddy 	_ctl_logging_level_store);
2826f92363d1SSreekanth Reddy 
2827f92363d1SSreekanth Reddy /**
2828f92363d1SSreekanth Reddy  * _ctl_fwfault_debug_show - show/store fwfault_debug
2829f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2830f92363d1SSreekanth Reddy  * @buf - the buffer returned
2831f92363d1SSreekanth Reddy  *
2832f92363d1SSreekanth Reddy  * mpt3sas_fwfault_debug is command line option
2833f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
2834f92363d1SSreekanth Reddy  */
2835f92363d1SSreekanth Reddy static ssize_t
2836f92363d1SSreekanth Reddy _ctl_fwfault_debug_show(struct device *cdev, struct device_attribute *attr,
2837f92363d1SSreekanth Reddy 	char *buf)
2838f92363d1SSreekanth Reddy {
2839f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2840f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2841f92363d1SSreekanth Reddy 
2842f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%d\n", ioc->fwfault_debug);
2843f92363d1SSreekanth Reddy }
2844f92363d1SSreekanth Reddy static ssize_t
2845f92363d1SSreekanth Reddy _ctl_fwfault_debug_store(struct device *cdev, struct device_attribute *attr,
2846f92363d1SSreekanth Reddy 	const char *buf, size_t count)
2847f92363d1SSreekanth Reddy {
2848f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2849f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2850f92363d1SSreekanth Reddy 	int val = 0;
2851f92363d1SSreekanth Reddy 
2852f92363d1SSreekanth Reddy 	if (sscanf(buf, "%d", &val) != 1)
2853f92363d1SSreekanth Reddy 		return -EINVAL;
2854f92363d1SSreekanth Reddy 
2855f92363d1SSreekanth Reddy 	ioc->fwfault_debug = val;
2856f92363d1SSreekanth Reddy 	pr_info(MPT3SAS_FMT "fwfault_debug=%d\n", ioc->name,
2857f92363d1SSreekanth Reddy 	    ioc->fwfault_debug);
2858f92363d1SSreekanth Reddy 	return strlen(buf);
2859f92363d1SSreekanth Reddy }
2860f92363d1SSreekanth Reddy static DEVICE_ATTR(fwfault_debug, S_IRUGO | S_IWUSR,
2861f92363d1SSreekanth Reddy 	_ctl_fwfault_debug_show, _ctl_fwfault_debug_store);
2862f92363d1SSreekanth Reddy 
2863f92363d1SSreekanth Reddy /**
2864f92363d1SSreekanth Reddy  * _ctl_ioc_reset_count_show - ioc reset count
2865f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2866f92363d1SSreekanth Reddy  * @buf - the buffer returned
2867f92363d1SSreekanth Reddy  *
2868f92363d1SSreekanth Reddy  * This is firmware queue depth limit
2869f92363d1SSreekanth Reddy  *
2870f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2871f92363d1SSreekanth Reddy  */
2872f92363d1SSreekanth Reddy static ssize_t
2873f92363d1SSreekanth Reddy _ctl_ioc_reset_count_show(struct device *cdev, struct device_attribute *attr,
2874f92363d1SSreekanth Reddy 	char *buf)
2875f92363d1SSreekanth Reddy {
2876f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2877f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2878f92363d1SSreekanth Reddy 
2879f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%d\n", ioc->ioc_reset_count);
2880f92363d1SSreekanth Reddy }
2881f92363d1SSreekanth Reddy static DEVICE_ATTR(ioc_reset_count, S_IRUGO, _ctl_ioc_reset_count_show, NULL);
2882f92363d1SSreekanth Reddy 
2883f92363d1SSreekanth Reddy /**
2884f92363d1SSreekanth Reddy  * _ctl_ioc_reply_queue_count_show - number of reply queues
2885f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
2886f92363d1SSreekanth Reddy  * @buf - the buffer returned
2887f92363d1SSreekanth Reddy  *
2888f92363d1SSreekanth Reddy  * This is number of reply queues
2889f92363d1SSreekanth Reddy  *
2890f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
2891f92363d1SSreekanth Reddy  */
2892f92363d1SSreekanth Reddy static ssize_t
2893f92363d1SSreekanth Reddy _ctl_ioc_reply_queue_count_show(struct device *cdev,
2894f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
2895f92363d1SSreekanth Reddy {
2896f92363d1SSreekanth Reddy 	u8 reply_queue_count;
2897f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
2898f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
2899f92363d1SSreekanth Reddy 
2900f92363d1SSreekanth Reddy 	if ((ioc->facts.IOCCapabilities &
2901f92363d1SSreekanth Reddy 	    MPI2_IOCFACTS_CAPABILITY_MSI_X_INDEX) && ioc->msix_enable)
2902f92363d1SSreekanth Reddy 		reply_queue_count = ioc->reply_queue_count;
2903f92363d1SSreekanth Reddy 	else
2904f92363d1SSreekanth Reddy 		reply_queue_count = 1;
2905f92363d1SSreekanth Reddy 
2906f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%d\n", reply_queue_count);
2907f92363d1SSreekanth Reddy }
2908f92363d1SSreekanth Reddy static DEVICE_ATTR(reply_queue_count, S_IRUGO, _ctl_ioc_reply_queue_count_show,
2909f92363d1SSreekanth Reddy 	NULL);
2910f92363d1SSreekanth Reddy 
291142263095SSreekanth Reddy /**
291242263095SSreekanth Reddy  * _ctl_BRM_status_show - Backup Rail Monitor Status
291342263095SSreekanth Reddy  * @cdev - pointer to embedded class device
291442263095SSreekanth Reddy  * @buf - the buffer returned
291542263095SSreekanth Reddy  *
291642263095SSreekanth Reddy  * This is number of reply queues
291742263095SSreekanth Reddy  *
291842263095SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
291942263095SSreekanth Reddy  */
292042263095SSreekanth Reddy static ssize_t
292142263095SSreekanth Reddy _ctl_BRM_status_show(struct device *cdev, struct device_attribute *attr,
292242263095SSreekanth Reddy 	char *buf)
292342263095SSreekanth Reddy {
292442263095SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
292542263095SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
292642263095SSreekanth Reddy 	Mpi2IOUnitPage3_t *io_unit_pg3 = NULL;
292742263095SSreekanth Reddy 	Mpi2ConfigReply_t mpi_reply;
292842263095SSreekanth Reddy 	u16 backup_rail_monitor_status = 0;
292942263095SSreekanth Reddy 	u16 ioc_status;
293042263095SSreekanth Reddy 	int sz;
293142263095SSreekanth Reddy 	ssize_t rc = 0;
293242263095SSreekanth Reddy 
293342263095SSreekanth Reddy 	if (!ioc->is_warpdrive) {
293442263095SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: BRM attribute is only for"
293542263095SSreekanth Reddy 		    " warpdrive\n", ioc->name, __func__);
293642263095SSreekanth Reddy 		goto out;
293742263095SSreekanth Reddy 	}
293808c4d550SSreekanth Reddy 	/* pci_access_mutex lock acquired by sysfs show path */
293908c4d550SSreekanth Reddy 	mutex_lock(&ioc->pci_access_mutex);
294008c4d550SSreekanth Reddy 	if (ioc->pci_error_recovery || ioc->remove_host) {
294108c4d550SSreekanth Reddy 		mutex_unlock(&ioc->pci_access_mutex);
294208c4d550SSreekanth Reddy 		return 0;
294308c4d550SSreekanth Reddy 	}
294442263095SSreekanth Reddy 
294542263095SSreekanth Reddy 	/* allocate upto GPIOVal 36 entries */
294642263095SSreekanth Reddy 	sz = offsetof(Mpi2IOUnitPage3_t, GPIOVal) + (sizeof(u16) * 36);
294742263095SSreekanth Reddy 	io_unit_pg3 = kzalloc(sz, GFP_KERNEL);
294842263095SSreekanth Reddy 	if (!io_unit_pg3) {
294942263095SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: failed allocating memory "
295042263095SSreekanth Reddy 		    "for iounit_pg3: (%d) bytes\n", ioc->name, __func__, sz);
295142263095SSreekanth Reddy 		goto out;
295242263095SSreekanth Reddy 	}
295342263095SSreekanth Reddy 
295442263095SSreekanth Reddy 	if (mpt3sas_config_get_iounit_pg3(ioc, &mpi_reply, io_unit_pg3, sz) !=
295542263095SSreekanth Reddy 	    0) {
295642263095SSreekanth Reddy 		pr_err(MPT3SAS_FMT
295742263095SSreekanth Reddy 		    "%s: failed reading iounit_pg3\n", ioc->name,
295842263095SSreekanth Reddy 		    __func__);
295942263095SSreekanth Reddy 		goto out;
296042263095SSreekanth Reddy 	}
296142263095SSreekanth Reddy 
296242263095SSreekanth Reddy 	ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
296342263095SSreekanth Reddy 	if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
296442263095SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: iounit_pg3 failed with "
296542263095SSreekanth Reddy 		    "ioc_status(0x%04x)\n", ioc->name, __func__, ioc_status);
296642263095SSreekanth Reddy 		goto out;
296742263095SSreekanth Reddy 	}
296842263095SSreekanth Reddy 
296942263095SSreekanth Reddy 	if (io_unit_pg3->GPIOCount < 25) {
297042263095SSreekanth Reddy 		pr_err(MPT3SAS_FMT "%s: iounit_pg3->GPIOCount less than "
297142263095SSreekanth Reddy 		     "25 entries, detected (%d) entries\n", ioc->name, __func__,
297242263095SSreekanth Reddy 		    io_unit_pg3->GPIOCount);
297342263095SSreekanth Reddy 		goto out;
297442263095SSreekanth Reddy 	}
297542263095SSreekanth Reddy 
297642263095SSreekanth Reddy 	/* BRM status is in bit zero of GPIOVal[24] */
297742263095SSreekanth Reddy 	backup_rail_monitor_status = le16_to_cpu(io_unit_pg3->GPIOVal[24]);
297842263095SSreekanth Reddy 	rc = snprintf(buf, PAGE_SIZE, "%d\n", (backup_rail_monitor_status & 1));
297942263095SSreekanth Reddy 
298042263095SSreekanth Reddy  out:
298142263095SSreekanth Reddy 	kfree(io_unit_pg3);
298208c4d550SSreekanth Reddy 	mutex_unlock(&ioc->pci_access_mutex);
298342263095SSreekanth Reddy 	return rc;
298442263095SSreekanth Reddy }
298542263095SSreekanth Reddy static DEVICE_ATTR(BRM_status, S_IRUGO, _ctl_BRM_status_show, NULL);
298642263095SSreekanth Reddy 
2987f92363d1SSreekanth Reddy struct DIAG_BUFFER_START {
2988f92363d1SSreekanth Reddy 	__le32	Size;
2989f92363d1SSreekanth Reddy 	__le32	DiagVersion;
2990f92363d1SSreekanth Reddy 	u8	BufferType;
2991f92363d1SSreekanth Reddy 	u8	Reserved[3];
2992f92363d1SSreekanth Reddy 	__le32	Reserved1;
2993f92363d1SSreekanth Reddy 	__le32	Reserved2;
2994f92363d1SSreekanth Reddy 	__le32	Reserved3;
2995f92363d1SSreekanth Reddy };
2996f92363d1SSreekanth Reddy 
2997f92363d1SSreekanth Reddy /**
2998f92363d1SSreekanth Reddy  * _ctl_host_trace_buffer_size_show - host buffer size (trace only)
2999f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3000f92363d1SSreekanth Reddy  * @buf - the buffer returned
3001f92363d1SSreekanth Reddy  *
3002f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
3003f92363d1SSreekanth Reddy  */
3004f92363d1SSreekanth Reddy static ssize_t
3005f92363d1SSreekanth Reddy _ctl_host_trace_buffer_size_show(struct device *cdev,
3006f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
3007f92363d1SSreekanth Reddy {
3008f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3009f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3010f92363d1SSreekanth Reddy 	u32 size = 0;
3011f92363d1SSreekanth Reddy 	struct DIAG_BUFFER_START *request_data;
3012f92363d1SSreekanth Reddy 
3013f92363d1SSreekanth Reddy 	if (!ioc->diag_buffer[MPI2_DIAG_BUF_TYPE_TRACE]) {
3014f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
3015f92363d1SSreekanth Reddy 			"%s: host_trace_buffer is not registered\n",
3016f92363d1SSreekanth Reddy 			ioc->name, __func__);
3017f92363d1SSreekanth Reddy 		return 0;
3018f92363d1SSreekanth Reddy 	}
3019f92363d1SSreekanth Reddy 
3020f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3021f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_REGISTERED) == 0) {
3022f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
3023f92363d1SSreekanth Reddy 			"%s: host_trace_buffer is not registered\n",
3024f92363d1SSreekanth Reddy 			ioc->name, __func__);
3025f92363d1SSreekanth Reddy 		return 0;
3026f92363d1SSreekanth Reddy 	}
3027f92363d1SSreekanth Reddy 
3028f92363d1SSreekanth Reddy 	request_data = (struct DIAG_BUFFER_START *)
3029f92363d1SSreekanth Reddy 	    ioc->diag_buffer[MPI2_DIAG_BUF_TYPE_TRACE];
3030f92363d1SSreekanth Reddy 	if ((le32_to_cpu(request_data->DiagVersion) == 0x00000000 ||
3031f92363d1SSreekanth Reddy 	    le32_to_cpu(request_data->DiagVersion) == 0x01000000 ||
3032f92363d1SSreekanth Reddy 	    le32_to_cpu(request_data->DiagVersion) == 0x01010000) &&
3033f92363d1SSreekanth Reddy 	    le32_to_cpu(request_data->Reserved3) == 0x4742444c)
3034f92363d1SSreekanth Reddy 		size = le32_to_cpu(request_data->Size);
3035f92363d1SSreekanth Reddy 
3036f92363d1SSreekanth Reddy 	ioc->ring_buffer_sz = size;
3037f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "%d\n", size);
3038f92363d1SSreekanth Reddy }
3039f92363d1SSreekanth Reddy static DEVICE_ATTR(host_trace_buffer_size, S_IRUGO,
3040f92363d1SSreekanth Reddy 	_ctl_host_trace_buffer_size_show, NULL);
3041f92363d1SSreekanth Reddy 
3042f92363d1SSreekanth Reddy /**
3043f92363d1SSreekanth Reddy  * _ctl_host_trace_buffer_show - firmware ring buffer (trace only)
3044f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3045f92363d1SSreekanth Reddy  * @buf - the buffer returned
3046f92363d1SSreekanth Reddy  *
3047f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3048f92363d1SSreekanth Reddy  *
3049f92363d1SSreekanth Reddy  * You will only be able to read 4k bytes of ring buffer at a time.
3050f92363d1SSreekanth Reddy  * In order to read beyond 4k bytes, you will have to write out the
3051f92363d1SSreekanth Reddy  * offset to the same attribute, it will move the pointer.
3052f92363d1SSreekanth Reddy  */
3053f92363d1SSreekanth Reddy static ssize_t
3054f92363d1SSreekanth Reddy _ctl_host_trace_buffer_show(struct device *cdev, struct device_attribute *attr,
3055f92363d1SSreekanth Reddy 	char *buf)
3056f92363d1SSreekanth Reddy {
3057f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3058f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3059f92363d1SSreekanth Reddy 	void *request_data;
3060f92363d1SSreekanth Reddy 	u32 size;
3061f92363d1SSreekanth Reddy 
3062f92363d1SSreekanth Reddy 	if (!ioc->diag_buffer[MPI2_DIAG_BUF_TYPE_TRACE]) {
3063f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
3064f92363d1SSreekanth Reddy 			"%s: host_trace_buffer is not registered\n",
3065f92363d1SSreekanth Reddy 			ioc->name, __func__);
3066f92363d1SSreekanth Reddy 		return 0;
3067f92363d1SSreekanth Reddy 	}
3068f92363d1SSreekanth Reddy 
3069f92363d1SSreekanth Reddy 	if ((ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3070f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_REGISTERED) == 0) {
3071f92363d1SSreekanth Reddy 		pr_err(MPT3SAS_FMT
3072f92363d1SSreekanth Reddy 			"%s: host_trace_buffer is not registered\n",
3073f92363d1SSreekanth Reddy 			ioc->name, __func__);
3074f92363d1SSreekanth Reddy 		return 0;
3075f92363d1SSreekanth Reddy 	}
3076f92363d1SSreekanth Reddy 
3077f92363d1SSreekanth Reddy 	if (ioc->ring_buffer_offset > ioc->ring_buffer_sz)
3078f92363d1SSreekanth Reddy 		return 0;
3079f92363d1SSreekanth Reddy 
3080f92363d1SSreekanth Reddy 	size = ioc->ring_buffer_sz - ioc->ring_buffer_offset;
3081f92363d1SSreekanth Reddy 	size = (size >= PAGE_SIZE) ? (PAGE_SIZE - 1) : size;
3082f92363d1SSreekanth Reddy 	request_data = ioc->diag_buffer[0] + ioc->ring_buffer_offset;
3083f92363d1SSreekanth Reddy 	memcpy(buf, request_data, size);
3084f92363d1SSreekanth Reddy 	return size;
3085f92363d1SSreekanth Reddy }
3086f92363d1SSreekanth Reddy 
3087f92363d1SSreekanth Reddy static ssize_t
3088f92363d1SSreekanth Reddy _ctl_host_trace_buffer_store(struct device *cdev, struct device_attribute *attr,
3089f92363d1SSreekanth Reddy 	const char *buf, size_t count)
3090f92363d1SSreekanth Reddy {
3091f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3092f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3093f92363d1SSreekanth Reddy 	int val = 0;
3094f92363d1SSreekanth Reddy 
3095f92363d1SSreekanth Reddy 	if (sscanf(buf, "%d", &val) != 1)
3096f92363d1SSreekanth Reddy 		return -EINVAL;
3097f92363d1SSreekanth Reddy 
3098f92363d1SSreekanth Reddy 	ioc->ring_buffer_offset = val;
3099f92363d1SSreekanth Reddy 	return strlen(buf);
3100f92363d1SSreekanth Reddy }
3101f92363d1SSreekanth Reddy static DEVICE_ATTR(host_trace_buffer, S_IRUGO | S_IWUSR,
3102f92363d1SSreekanth Reddy 	_ctl_host_trace_buffer_show, _ctl_host_trace_buffer_store);
3103f92363d1SSreekanth Reddy 
3104f92363d1SSreekanth Reddy 
3105f92363d1SSreekanth Reddy /*****************************************/
3106f92363d1SSreekanth Reddy 
3107f92363d1SSreekanth Reddy /**
3108f92363d1SSreekanth Reddy  * _ctl_host_trace_buffer_enable_show - firmware ring buffer (trace only)
3109f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3110f92363d1SSreekanth Reddy  * @buf - the buffer returned
3111f92363d1SSreekanth Reddy  *
3112f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3113f92363d1SSreekanth Reddy  *
3114f92363d1SSreekanth Reddy  * This is a mechnism to post/release host_trace_buffers
3115f92363d1SSreekanth Reddy  */
3116f92363d1SSreekanth Reddy static ssize_t
3117f92363d1SSreekanth Reddy _ctl_host_trace_buffer_enable_show(struct device *cdev,
3118f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
3119f92363d1SSreekanth Reddy {
3120f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3121f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3122f92363d1SSreekanth Reddy 
3123f92363d1SSreekanth Reddy 	if ((!ioc->diag_buffer[MPI2_DIAG_BUF_TYPE_TRACE]) ||
3124f92363d1SSreekanth Reddy 	   ((ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3125f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_REGISTERED) == 0))
3126f92363d1SSreekanth Reddy 		return snprintf(buf, PAGE_SIZE, "off\n");
3127f92363d1SSreekanth Reddy 	else if ((ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3128f92363d1SSreekanth Reddy 	    MPT3_DIAG_BUFFER_IS_RELEASED))
3129f92363d1SSreekanth Reddy 		return snprintf(buf, PAGE_SIZE, "release\n");
3130f92363d1SSreekanth Reddy 	else
3131f92363d1SSreekanth Reddy 		return snprintf(buf, PAGE_SIZE, "post\n");
3132f92363d1SSreekanth Reddy }
3133f92363d1SSreekanth Reddy 
3134f92363d1SSreekanth Reddy static ssize_t
3135f92363d1SSreekanth Reddy _ctl_host_trace_buffer_enable_store(struct device *cdev,
3136f92363d1SSreekanth Reddy 	struct device_attribute *attr, const char *buf, size_t count)
3137f92363d1SSreekanth Reddy {
3138f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3139f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3140f92363d1SSreekanth Reddy 	char str[10] = "";
3141f92363d1SSreekanth Reddy 	struct mpt3_diag_register diag_register;
3142f92363d1SSreekanth Reddy 	u8 issue_reset = 0;
3143f92363d1SSreekanth Reddy 
3144f92363d1SSreekanth Reddy 	/* don't allow post/release occurr while recovery is active */
3145f92363d1SSreekanth Reddy 	if (ioc->shost_recovery || ioc->remove_host ||
3146f92363d1SSreekanth Reddy 	    ioc->pci_error_recovery || ioc->is_driver_loading)
3147f92363d1SSreekanth Reddy 		return -EBUSY;
3148f92363d1SSreekanth Reddy 
3149f92363d1SSreekanth Reddy 	if (sscanf(buf, "%9s", str) != 1)
3150f92363d1SSreekanth Reddy 		return -EINVAL;
3151f92363d1SSreekanth Reddy 
3152f92363d1SSreekanth Reddy 	if (!strcmp(str, "post")) {
3153f92363d1SSreekanth Reddy 		/* exit out if host buffers are already posted */
3154f92363d1SSreekanth Reddy 		if ((ioc->diag_buffer[MPI2_DIAG_BUF_TYPE_TRACE]) &&
3155f92363d1SSreekanth Reddy 		    (ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3156f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_REGISTERED) &&
3157f92363d1SSreekanth Reddy 		    ((ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3158f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_RELEASED) == 0))
3159f92363d1SSreekanth Reddy 			goto out;
3160f92363d1SSreekanth Reddy 		memset(&diag_register, 0, sizeof(struct mpt3_diag_register));
3161f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT "posting host trace buffers\n",
3162f92363d1SSreekanth Reddy 		    ioc->name);
3163f92363d1SSreekanth Reddy 		diag_register.buffer_type = MPI2_DIAG_BUF_TYPE_TRACE;
3164f92363d1SSreekanth Reddy 		diag_register.requested_buffer_size = (1024 * 1024);
3165f92363d1SSreekanth Reddy 		diag_register.unique_id = 0x7075900;
3166f92363d1SSreekanth Reddy 		ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] = 0;
3167f92363d1SSreekanth Reddy 		_ctl_diag_register_2(ioc,  &diag_register);
3168f92363d1SSreekanth Reddy 	} else if (!strcmp(str, "release")) {
3169f92363d1SSreekanth Reddy 		/* exit out if host buffers are already released */
3170f92363d1SSreekanth Reddy 		if (!ioc->diag_buffer[MPI2_DIAG_BUF_TYPE_TRACE])
3171f92363d1SSreekanth Reddy 			goto out;
3172f92363d1SSreekanth Reddy 		if ((ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3173f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_REGISTERED) == 0)
3174f92363d1SSreekanth Reddy 			goto out;
3175f92363d1SSreekanth Reddy 		if ((ioc->diag_buffer_status[MPI2_DIAG_BUF_TYPE_TRACE] &
3176f92363d1SSreekanth Reddy 		    MPT3_DIAG_BUFFER_IS_RELEASED))
3177f92363d1SSreekanth Reddy 			goto out;
3178f92363d1SSreekanth Reddy 		pr_info(MPT3SAS_FMT "releasing host trace buffer\n",
3179f92363d1SSreekanth Reddy 		    ioc->name);
3180f92363d1SSreekanth Reddy 		mpt3sas_send_diag_release(ioc, MPI2_DIAG_BUF_TYPE_TRACE,
3181f92363d1SSreekanth Reddy 		    &issue_reset);
3182f92363d1SSreekanth Reddy 	}
3183f92363d1SSreekanth Reddy 
3184f92363d1SSreekanth Reddy  out:
3185f92363d1SSreekanth Reddy 	return strlen(buf);
3186f92363d1SSreekanth Reddy }
3187f92363d1SSreekanth Reddy static DEVICE_ATTR(host_trace_buffer_enable, S_IRUGO | S_IWUSR,
3188f92363d1SSreekanth Reddy 	_ctl_host_trace_buffer_enable_show,
3189f92363d1SSreekanth Reddy 	_ctl_host_trace_buffer_enable_store);
3190f92363d1SSreekanth Reddy 
3191f92363d1SSreekanth Reddy /*********** diagnostic trigger suppport *********************************/
3192f92363d1SSreekanth Reddy 
3193f92363d1SSreekanth Reddy /**
3194f92363d1SSreekanth Reddy  * _ctl_diag_trigger_master_show - show the diag_trigger_master attribute
3195f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3196f92363d1SSreekanth Reddy  * @buf - the buffer returned
3197f92363d1SSreekanth Reddy  *
3198f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3199f92363d1SSreekanth Reddy  */
3200f92363d1SSreekanth Reddy static ssize_t
3201f92363d1SSreekanth Reddy _ctl_diag_trigger_master_show(struct device *cdev,
3202f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
3203f92363d1SSreekanth Reddy 
3204f92363d1SSreekanth Reddy {
3205f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3206f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3207f92363d1SSreekanth Reddy 	unsigned long flags;
3208f92363d1SSreekanth Reddy 	ssize_t rc;
3209f92363d1SSreekanth Reddy 
3210f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3211f92363d1SSreekanth Reddy 	rc = sizeof(struct SL_WH_MASTER_TRIGGER_T);
3212f92363d1SSreekanth Reddy 	memcpy(buf, &ioc->diag_trigger_master, rc);
3213f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3214f92363d1SSreekanth Reddy 	return rc;
3215f92363d1SSreekanth Reddy }
3216f92363d1SSreekanth Reddy 
3217f92363d1SSreekanth Reddy /**
3218f92363d1SSreekanth Reddy  * _ctl_diag_trigger_master_store - store the diag_trigger_master attribute
3219f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3220f92363d1SSreekanth Reddy  * @buf - the buffer returned
3221f92363d1SSreekanth Reddy  *
3222f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3223f92363d1SSreekanth Reddy  */
3224f92363d1SSreekanth Reddy static ssize_t
3225f92363d1SSreekanth Reddy _ctl_diag_trigger_master_store(struct device *cdev,
3226f92363d1SSreekanth Reddy 	struct device_attribute *attr, const char *buf, size_t count)
3227f92363d1SSreekanth Reddy 
3228f92363d1SSreekanth Reddy {
3229f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3230f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3231f92363d1SSreekanth Reddy 	unsigned long flags;
3232f92363d1SSreekanth Reddy 	ssize_t rc;
3233f92363d1SSreekanth Reddy 
3234f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3235f92363d1SSreekanth Reddy 	rc = min(sizeof(struct SL_WH_MASTER_TRIGGER_T), count);
3236f92363d1SSreekanth Reddy 	memset(&ioc->diag_trigger_master, 0,
3237f92363d1SSreekanth Reddy 	    sizeof(struct SL_WH_MASTER_TRIGGER_T));
3238f92363d1SSreekanth Reddy 	memcpy(&ioc->diag_trigger_master, buf, rc);
3239f92363d1SSreekanth Reddy 	ioc->diag_trigger_master.MasterData |=
3240f92363d1SSreekanth Reddy 	    (MASTER_TRIGGER_FW_FAULT + MASTER_TRIGGER_ADAPTER_RESET);
3241f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3242f92363d1SSreekanth Reddy 	return rc;
3243f92363d1SSreekanth Reddy }
3244f92363d1SSreekanth Reddy static DEVICE_ATTR(diag_trigger_master, S_IRUGO | S_IWUSR,
3245f92363d1SSreekanth Reddy 	_ctl_diag_trigger_master_show, _ctl_diag_trigger_master_store);
3246f92363d1SSreekanth Reddy 
3247f92363d1SSreekanth Reddy 
3248f92363d1SSreekanth Reddy /**
3249f92363d1SSreekanth Reddy  * _ctl_diag_trigger_event_show - show the diag_trigger_event attribute
3250f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3251f92363d1SSreekanth Reddy  * @buf - the buffer returned
3252f92363d1SSreekanth Reddy  *
3253f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3254f92363d1SSreekanth Reddy  */
3255f92363d1SSreekanth Reddy static ssize_t
3256f92363d1SSreekanth Reddy _ctl_diag_trigger_event_show(struct device *cdev,
3257f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
3258f92363d1SSreekanth Reddy {
3259f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3260f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3261f92363d1SSreekanth Reddy 	unsigned long flags;
3262f92363d1SSreekanth Reddy 	ssize_t rc;
3263f92363d1SSreekanth Reddy 
3264f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3265f92363d1SSreekanth Reddy 	rc = sizeof(struct SL_WH_EVENT_TRIGGERS_T);
3266f92363d1SSreekanth Reddy 	memcpy(buf, &ioc->diag_trigger_event, rc);
3267f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3268f92363d1SSreekanth Reddy 	return rc;
3269f92363d1SSreekanth Reddy }
3270f92363d1SSreekanth Reddy 
3271f92363d1SSreekanth Reddy /**
3272f92363d1SSreekanth Reddy  * _ctl_diag_trigger_event_store - store the diag_trigger_event attribute
3273f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3274f92363d1SSreekanth Reddy  * @buf - the buffer returned
3275f92363d1SSreekanth Reddy  *
3276f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3277f92363d1SSreekanth Reddy  */
3278f92363d1SSreekanth Reddy static ssize_t
3279f92363d1SSreekanth Reddy _ctl_diag_trigger_event_store(struct device *cdev,
3280f92363d1SSreekanth Reddy 	struct device_attribute *attr, const char *buf, size_t count)
3281f92363d1SSreekanth Reddy 
3282f92363d1SSreekanth Reddy {
3283f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3284f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3285f92363d1SSreekanth Reddy 	unsigned long flags;
3286f92363d1SSreekanth Reddy 	ssize_t sz;
3287f92363d1SSreekanth Reddy 
3288f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3289f92363d1SSreekanth Reddy 	sz = min(sizeof(struct SL_WH_EVENT_TRIGGERS_T), count);
3290f92363d1SSreekanth Reddy 	memset(&ioc->diag_trigger_event, 0,
3291f92363d1SSreekanth Reddy 	    sizeof(struct SL_WH_EVENT_TRIGGERS_T));
3292f92363d1SSreekanth Reddy 	memcpy(&ioc->diag_trigger_event, buf, sz);
3293f92363d1SSreekanth Reddy 	if (ioc->diag_trigger_event.ValidEntries > NUM_VALID_ENTRIES)
3294f92363d1SSreekanth Reddy 		ioc->diag_trigger_event.ValidEntries = NUM_VALID_ENTRIES;
3295f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3296f92363d1SSreekanth Reddy 	return sz;
3297f92363d1SSreekanth Reddy }
3298f92363d1SSreekanth Reddy static DEVICE_ATTR(diag_trigger_event, S_IRUGO | S_IWUSR,
3299f92363d1SSreekanth Reddy 	_ctl_diag_trigger_event_show, _ctl_diag_trigger_event_store);
3300f92363d1SSreekanth Reddy 
3301f92363d1SSreekanth Reddy 
3302f92363d1SSreekanth Reddy /**
3303f92363d1SSreekanth Reddy  * _ctl_diag_trigger_scsi_show - show the diag_trigger_scsi attribute
3304f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3305f92363d1SSreekanth Reddy  * @buf - the buffer returned
3306f92363d1SSreekanth Reddy  *
3307f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3308f92363d1SSreekanth Reddy  */
3309f92363d1SSreekanth Reddy static ssize_t
3310f92363d1SSreekanth Reddy _ctl_diag_trigger_scsi_show(struct device *cdev,
3311f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
3312f92363d1SSreekanth Reddy {
3313f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3314f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3315f92363d1SSreekanth Reddy 	unsigned long flags;
3316f92363d1SSreekanth Reddy 	ssize_t rc;
3317f92363d1SSreekanth Reddy 
3318f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3319f92363d1SSreekanth Reddy 	rc = sizeof(struct SL_WH_SCSI_TRIGGERS_T);
3320f92363d1SSreekanth Reddy 	memcpy(buf, &ioc->diag_trigger_scsi, rc);
3321f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3322f92363d1SSreekanth Reddy 	return rc;
3323f92363d1SSreekanth Reddy }
3324f92363d1SSreekanth Reddy 
3325f92363d1SSreekanth Reddy /**
3326f92363d1SSreekanth Reddy  * _ctl_diag_trigger_scsi_store - store the diag_trigger_scsi attribute
3327f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3328f92363d1SSreekanth Reddy  * @buf - the buffer returned
3329f92363d1SSreekanth Reddy  *
3330f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3331f92363d1SSreekanth Reddy  */
3332f92363d1SSreekanth Reddy static ssize_t
3333f92363d1SSreekanth Reddy _ctl_diag_trigger_scsi_store(struct device *cdev,
3334f92363d1SSreekanth Reddy 	struct device_attribute *attr, const char *buf, size_t count)
3335f92363d1SSreekanth Reddy {
3336f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3337f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3338f92363d1SSreekanth Reddy 	unsigned long flags;
3339f92363d1SSreekanth Reddy 	ssize_t sz;
3340f92363d1SSreekanth Reddy 
3341f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3342f92363d1SSreekanth Reddy 	sz = min(sizeof(struct SL_WH_SCSI_TRIGGERS_T), count);
3343f92363d1SSreekanth Reddy 	memset(&ioc->diag_trigger_scsi, 0,
3344f92363d1SSreekanth Reddy 	    sizeof(struct SL_WH_EVENT_TRIGGERS_T));
3345f92363d1SSreekanth Reddy 	memcpy(&ioc->diag_trigger_scsi, buf, sz);
3346f92363d1SSreekanth Reddy 	if (ioc->diag_trigger_scsi.ValidEntries > NUM_VALID_ENTRIES)
3347f92363d1SSreekanth Reddy 		ioc->diag_trigger_scsi.ValidEntries = NUM_VALID_ENTRIES;
3348f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3349f92363d1SSreekanth Reddy 	return sz;
3350f92363d1SSreekanth Reddy }
3351f92363d1SSreekanth Reddy static DEVICE_ATTR(diag_trigger_scsi, S_IRUGO | S_IWUSR,
3352f92363d1SSreekanth Reddy 	_ctl_diag_trigger_scsi_show, _ctl_diag_trigger_scsi_store);
3353f92363d1SSreekanth Reddy 
3354f92363d1SSreekanth Reddy 
3355f92363d1SSreekanth Reddy /**
3356f92363d1SSreekanth Reddy  * _ctl_diag_trigger_scsi_show - show the diag_trigger_mpi attribute
3357f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3358f92363d1SSreekanth Reddy  * @buf - the buffer returned
3359f92363d1SSreekanth Reddy  *
3360f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3361f92363d1SSreekanth Reddy  */
3362f92363d1SSreekanth Reddy static ssize_t
3363f92363d1SSreekanth Reddy _ctl_diag_trigger_mpi_show(struct device *cdev,
3364f92363d1SSreekanth Reddy 	struct device_attribute *attr, char *buf)
3365f92363d1SSreekanth Reddy {
3366f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3367f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3368f92363d1SSreekanth Reddy 	unsigned long flags;
3369f92363d1SSreekanth Reddy 	ssize_t rc;
3370f92363d1SSreekanth Reddy 
3371f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3372f92363d1SSreekanth Reddy 	rc = sizeof(struct SL_WH_MPI_TRIGGERS_T);
3373f92363d1SSreekanth Reddy 	memcpy(buf, &ioc->diag_trigger_mpi, rc);
3374f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3375f92363d1SSreekanth Reddy 	return rc;
3376f92363d1SSreekanth Reddy }
3377f92363d1SSreekanth Reddy 
3378f92363d1SSreekanth Reddy /**
3379f92363d1SSreekanth Reddy  * _ctl_diag_trigger_mpi_store - store the diag_trigger_mpi attribute
3380f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3381f92363d1SSreekanth Reddy  * @buf - the buffer returned
3382f92363d1SSreekanth Reddy  *
3383f92363d1SSreekanth Reddy  * A sysfs 'read/write' shost attribute.
3384f92363d1SSreekanth Reddy  */
3385f92363d1SSreekanth Reddy static ssize_t
3386f92363d1SSreekanth Reddy _ctl_diag_trigger_mpi_store(struct device *cdev,
3387f92363d1SSreekanth Reddy 	struct device_attribute *attr, const char *buf, size_t count)
3388f92363d1SSreekanth Reddy {
3389f92363d1SSreekanth Reddy 	struct Scsi_Host *shost = class_to_shost(cdev);
3390f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc = shost_priv(shost);
3391f92363d1SSreekanth Reddy 	unsigned long flags;
3392f92363d1SSreekanth Reddy 	ssize_t sz;
3393f92363d1SSreekanth Reddy 
3394f92363d1SSreekanth Reddy 	spin_lock_irqsave(&ioc->diag_trigger_lock, flags);
3395f92363d1SSreekanth Reddy 	sz = min(sizeof(struct SL_WH_MPI_TRIGGERS_T), count);
3396f92363d1SSreekanth Reddy 	memset(&ioc->diag_trigger_mpi, 0,
339766331e8cSDan Carpenter 	    sizeof(ioc->diag_trigger_mpi));
3398f92363d1SSreekanth Reddy 	memcpy(&ioc->diag_trigger_mpi, buf, sz);
3399f92363d1SSreekanth Reddy 	if (ioc->diag_trigger_mpi.ValidEntries > NUM_VALID_ENTRIES)
3400f92363d1SSreekanth Reddy 		ioc->diag_trigger_mpi.ValidEntries = NUM_VALID_ENTRIES;
3401f92363d1SSreekanth Reddy 	spin_unlock_irqrestore(&ioc->diag_trigger_lock, flags);
3402f92363d1SSreekanth Reddy 	return sz;
3403f92363d1SSreekanth Reddy }
3404f92363d1SSreekanth Reddy 
3405f92363d1SSreekanth Reddy static DEVICE_ATTR(diag_trigger_mpi, S_IRUGO | S_IWUSR,
3406f92363d1SSreekanth Reddy 	_ctl_diag_trigger_mpi_show, _ctl_diag_trigger_mpi_store);
3407f92363d1SSreekanth Reddy 
3408f92363d1SSreekanth Reddy /*********** diagnostic trigger suppport *** END ****************************/
3409f92363d1SSreekanth Reddy 
3410f92363d1SSreekanth Reddy /*****************************************/
3411f92363d1SSreekanth Reddy 
3412f92363d1SSreekanth Reddy struct device_attribute *mpt3sas_host_attrs[] = {
3413f92363d1SSreekanth Reddy 	&dev_attr_version_fw,
3414f92363d1SSreekanth Reddy 	&dev_attr_version_bios,
3415f92363d1SSreekanth Reddy 	&dev_attr_version_mpi,
3416f92363d1SSreekanth Reddy 	&dev_attr_version_product,
3417f92363d1SSreekanth Reddy 	&dev_attr_version_nvdata_persistent,
3418f92363d1SSreekanth Reddy 	&dev_attr_version_nvdata_default,
3419f92363d1SSreekanth Reddy 	&dev_attr_board_name,
3420f92363d1SSreekanth Reddy 	&dev_attr_board_assembly,
3421f92363d1SSreekanth Reddy 	&dev_attr_board_tracer,
3422f92363d1SSreekanth Reddy 	&dev_attr_io_delay,
3423f92363d1SSreekanth Reddy 	&dev_attr_device_delay,
3424f92363d1SSreekanth Reddy 	&dev_attr_logging_level,
3425f92363d1SSreekanth Reddy 	&dev_attr_fwfault_debug,
3426f92363d1SSreekanth Reddy 	&dev_attr_fw_queue_depth,
3427f92363d1SSreekanth Reddy 	&dev_attr_host_sas_address,
3428f92363d1SSreekanth Reddy 	&dev_attr_ioc_reset_count,
3429f92363d1SSreekanth Reddy 	&dev_attr_host_trace_buffer_size,
3430f92363d1SSreekanth Reddy 	&dev_attr_host_trace_buffer,
3431f92363d1SSreekanth Reddy 	&dev_attr_host_trace_buffer_enable,
3432f92363d1SSreekanth Reddy 	&dev_attr_reply_queue_count,
3433f92363d1SSreekanth Reddy 	&dev_attr_diag_trigger_master,
3434f92363d1SSreekanth Reddy 	&dev_attr_diag_trigger_event,
3435f92363d1SSreekanth Reddy 	&dev_attr_diag_trigger_scsi,
3436f92363d1SSreekanth Reddy 	&dev_attr_diag_trigger_mpi,
343742263095SSreekanth Reddy 	&dev_attr_BRM_status,
3438f92363d1SSreekanth Reddy 	NULL,
3439f92363d1SSreekanth Reddy };
3440f92363d1SSreekanth Reddy 
3441f92363d1SSreekanth Reddy /* device attributes */
3442f92363d1SSreekanth Reddy 
3443f92363d1SSreekanth Reddy /**
3444f92363d1SSreekanth Reddy  * _ctl_device_sas_address_show - sas address
3445f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3446f92363d1SSreekanth Reddy  * @buf - the buffer returned
3447f92363d1SSreekanth Reddy  *
3448f92363d1SSreekanth Reddy  * This is the sas address for the target
3449f92363d1SSreekanth Reddy  *
3450f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
3451f92363d1SSreekanth Reddy  */
3452f92363d1SSreekanth Reddy static ssize_t
3453f92363d1SSreekanth Reddy _ctl_device_sas_address_show(struct device *dev, struct device_attribute *attr,
3454f92363d1SSreekanth Reddy 	char *buf)
3455f92363d1SSreekanth Reddy {
3456f92363d1SSreekanth Reddy 	struct scsi_device *sdev = to_scsi_device(dev);
3457f92363d1SSreekanth Reddy 	struct MPT3SAS_DEVICE *sas_device_priv_data = sdev->hostdata;
3458f92363d1SSreekanth Reddy 
3459f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "0x%016llx\n",
3460f92363d1SSreekanth Reddy 	    (unsigned long long)sas_device_priv_data->sas_target->sas_address);
3461f92363d1SSreekanth Reddy }
3462f92363d1SSreekanth Reddy static DEVICE_ATTR(sas_address, S_IRUGO, _ctl_device_sas_address_show, NULL);
3463f92363d1SSreekanth Reddy 
3464f92363d1SSreekanth Reddy /**
3465f92363d1SSreekanth Reddy  * _ctl_device_handle_show - device handle
3466f92363d1SSreekanth Reddy  * @cdev - pointer to embedded class device
3467f92363d1SSreekanth Reddy  * @buf - the buffer returned
3468f92363d1SSreekanth Reddy  *
3469f92363d1SSreekanth Reddy  * This is the firmware assigned device handle
3470f92363d1SSreekanth Reddy  *
3471f92363d1SSreekanth Reddy  * A sysfs 'read-only' shost attribute.
3472f92363d1SSreekanth Reddy  */
3473f92363d1SSreekanth Reddy static ssize_t
3474f92363d1SSreekanth Reddy _ctl_device_handle_show(struct device *dev, struct device_attribute *attr,
3475f92363d1SSreekanth Reddy 	char *buf)
3476f92363d1SSreekanth Reddy {
3477f92363d1SSreekanth Reddy 	struct scsi_device *sdev = to_scsi_device(dev);
3478f92363d1SSreekanth Reddy 	struct MPT3SAS_DEVICE *sas_device_priv_data = sdev->hostdata;
3479f92363d1SSreekanth Reddy 
3480f92363d1SSreekanth Reddy 	return snprintf(buf, PAGE_SIZE, "0x%04x\n",
3481f92363d1SSreekanth Reddy 	    sas_device_priv_data->sas_target->handle);
3482f92363d1SSreekanth Reddy }
3483f92363d1SSreekanth Reddy static DEVICE_ATTR(sas_device_handle, S_IRUGO, _ctl_device_handle_show, NULL);
3484f92363d1SSreekanth Reddy 
3485307d9075SAdam Manzanares /**
3486307d9075SAdam Manzanares  * _ctl_device_ncq_io_prio_show - send prioritized io commands to device
3487307d9075SAdam Manzanares  * @dev - pointer to embedded device
3488307d9075SAdam Manzanares  * @buf - the buffer returned
3489307d9075SAdam Manzanares  *
3490307d9075SAdam Manzanares  * A sysfs 'read/write' sdev attribute, only works with SATA
3491307d9075SAdam Manzanares  */
3492307d9075SAdam Manzanares static ssize_t
3493307d9075SAdam Manzanares _ctl_device_ncq_prio_enable_show(struct device *dev,
3494307d9075SAdam Manzanares 				 struct device_attribute *attr, char *buf)
3495307d9075SAdam Manzanares {
3496307d9075SAdam Manzanares 	struct scsi_device *sdev = to_scsi_device(dev);
3497307d9075SAdam Manzanares 	struct MPT3SAS_DEVICE *sas_device_priv_data = sdev->hostdata;
3498307d9075SAdam Manzanares 
3499307d9075SAdam Manzanares 	return snprintf(buf, PAGE_SIZE, "%d\n",
3500307d9075SAdam Manzanares 			sas_device_priv_data->ncq_prio_enable);
3501307d9075SAdam Manzanares }
3502307d9075SAdam Manzanares 
3503307d9075SAdam Manzanares static ssize_t
3504307d9075SAdam Manzanares _ctl_device_ncq_prio_enable_store(struct device *dev,
3505307d9075SAdam Manzanares 				  struct device_attribute *attr,
3506307d9075SAdam Manzanares 				  const char *buf, size_t count)
3507307d9075SAdam Manzanares {
3508307d9075SAdam Manzanares 	struct scsi_device *sdev = to_scsi_device(dev);
3509307d9075SAdam Manzanares 	struct MPT3SAS_DEVICE *sas_device_priv_data = sdev->hostdata;
3510307d9075SAdam Manzanares 	bool ncq_prio_enable = 0;
3511307d9075SAdam Manzanares 
3512307d9075SAdam Manzanares 	if (kstrtobool(buf, &ncq_prio_enable))
3513307d9075SAdam Manzanares 		return -EINVAL;
3514307d9075SAdam Manzanares 
3515307d9075SAdam Manzanares 	if (!scsih_ncq_prio_supp(sdev))
3516307d9075SAdam Manzanares 		return -EINVAL;
3517307d9075SAdam Manzanares 
3518307d9075SAdam Manzanares 	sas_device_priv_data->ncq_prio_enable = ncq_prio_enable;
3519307d9075SAdam Manzanares 	return strlen(buf);
3520307d9075SAdam Manzanares }
3521307d9075SAdam Manzanares static DEVICE_ATTR(sas_ncq_prio_enable, S_IRUGO | S_IWUSR,
3522307d9075SAdam Manzanares 		   _ctl_device_ncq_prio_enable_show,
3523307d9075SAdam Manzanares 		   _ctl_device_ncq_prio_enable_store);
3524307d9075SAdam Manzanares 
3525f92363d1SSreekanth Reddy struct device_attribute *mpt3sas_dev_attrs[] = {
3526f92363d1SSreekanth Reddy 	&dev_attr_sas_address,
3527f92363d1SSreekanth Reddy 	&dev_attr_sas_device_handle,
3528307d9075SAdam Manzanares 	&dev_attr_sas_ncq_prio_enable,
3529f92363d1SSreekanth Reddy 	NULL,
3530f92363d1SSreekanth Reddy };
3531f92363d1SSreekanth Reddy 
3532c84b06a4SSreekanth Reddy /* file operations table for mpt3ctl device */
3533c84b06a4SSreekanth Reddy static const struct file_operations ctl_fops = {
3534c84b06a4SSreekanth Reddy 	.owner = THIS_MODULE,
3535c84b06a4SSreekanth Reddy 	.unlocked_ioctl = _ctl_ioctl,
3536c84b06a4SSreekanth Reddy 	.poll = _ctl_poll,
3537c84b06a4SSreekanth Reddy 	.fasync = _ctl_fasync,
3538c84b06a4SSreekanth Reddy #ifdef CONFIG_COMPAT
3539c84b06a4SSreekanth Reddy 	.compat_ioctl = _ctl_ioctl_compat,
3540c84b06a4SSreekanth Reddy #endif
3541c84b06a4SSreekanth Reddy };
3542c84b06a4SSreekanth Reddy 
3543c84b06a4SSreekanth Reddy /* file operations table for mpt2ctl device */
3544c84b06a4SSreekanth Reddy static const struct file_operations ctl_gen2_fops = {
3545c84b06a4SSreekanth Reddy 	.owner = THIS_MODULE,
3546c84b06a4SSreekanth Reddy 	.unlocked_ioctl = _ctl_mpt2_ioctl,
3547c84b06a4SSreekanth Reddy 	.poll = _ctl_poll,
3548c84b06a4SSreekanth Reddy 	.fasync = _ctl_fasync,
3549c84b06a4SSreekanth Reddy #ifdef CONFIG_COMPAT
3550c84b06a4SSreekanth Reddy 	.compat_ioctl = _ctl_mpt2_ioctl_compat,
3551c84b06a4SSreekanth Reddy #endif
3552c84b06a4SSreekanth Reddy };
3553c84b06a4SSreekanth Reddy 
3554c84b06a4SSreekanth Reddy static struct miscdevice ctl_dev = {
3555c84b06a4SSreekanth Reddy 	.minor  = MPT3SAS_MINOR,
3556c84b06a4SSreekanth Reddy 	.name   = MPT3SAS_DEV_NAME,
3557c84b06a4SSreekanth Reddy 	.fops   = &ctl_fops,
3558c84b06a4SSreekanth Reddy };
3559c84b06a4SSreekanth Reddy 
3560c84b06a4SSreekanth Reddy static struct miscdevice gen2_ctl_dev = {
3561c84b06a4SSreekanth Reddy 	.minor  = MPT2SAS_MINOR,
3562c84b06a4SSreekanth Reddy 	.name   = MPT2SAS_DEV_NAME,
3563c84b06a4SSreekanth Reddy 	.fops   = &ctl_gen2_fops,
3564c84b06a4SSreekanth Reddy };
3565c84b06a4SSreekanth Reddy 
3566f92363d1SSreekanth Reddy /**
3567c84b06a4SSreekanth Reddy  * mpt3sas_ctl_init - main entry point for ctl.
3568f92363d1SSreekanth Reddy  *
3569f92363d1SSreekanth Reddy  */
3570f92363d1SSreekanth Reddy void
3571c84b06a4SSreekanth Reddy mpt3sas_ctl_init(ushort hbas_to_enumerate)
3572f92363d1SSreekanth Reddy {
3573f92363d1SSreekanth Reddy 	async_queue = NULL;
3574c84b06a4SSreekanth Reddy 
3575c84b06a4SSreekanth Reddy 	/* Don't register mpt3ctl ioctl device if
3576c84b06a4SSreekanth Reddy 	 * hbas_to_enumarate is one.
3577c84b06a4SSreekanth Reddy 	 */
3578c84b06a4SSreekanth Reddy 	if (hbas_to_enumerate != 1)
3579c84b06a4SSreekanth Reddy 		if (misc_register(&ctl_dev) < 0)
3580c84b06a4SSreekanth Reddy 			pr_err("%s can't register misc device [minor=%d]\n",
3581c84b06a4SSreekanth Reddy 			    MPT3SAS_DRIVER_NAME, MPT3SAS_MINOR);
3582c84b06a4SSreekanth Reddy 
3583c84b06a4SSreekanth Reddy 	/* Don't register mpt3ctl ioctl device if
3584c84b06a4SSreekanth Reddy 	 * hbas_to_enumarate is two.
3585c84b06a4SSreekanth Reddy 	 */
3586c84b06a4SSreekanth Reddy 	if (hbas_to_enumerate != 2)
3587c84b06a4SSreekanth Reddy 		if (misc_register(&gen2_ctl_dev) < 0)
3588c84b06a4SSreekanth Reddy 			pr_err("%s can't register misc device [minor=%d]\n",
3589c84b06a4SSreekanth Reddy 			    MPT2SAS_DRIVER_NAME, MPT2SAS_MINOR);
3590c84b06a4SSreekanth Reddy 
3591f92363d1SSreekanth Reddy 	init_waitqueue_head(&ctl_poll_wait);
3592f92363d1SSreekanth Reddy }
3593f92363d1SSreekanth Reddy 
3594f92363d1SSreekanth Reddy /**
3595c84b06a4SSreekanth Reddy  * mpt3sas_ctl_exit - exit point for ctl
3596f92363d1SSreekanth Reddy  *
3597f92363d1SSreekanth Reddy  */
3598f92363d1SSreekanth Reddy void
3599c84b06a4SSreekanth Reddy mpt3sas_ctl_exit(ushort hbas_to_enumerate)
3600f92363d1SSreekanth Reddy {
3601f92363d1SSreekanth Reddy 	struct MPT3SAS_ADAPTER *ioc;
3602f92363d1SSreekanth Reddy 	int i;
3603f92363d1SSreekanth Reddy 
3604f92363d1SSreekanth Reddy 	list_for_each_entry(ioc, &mpt3sas_ioc_list, list) {
3605f92363d1SSreekanth Reddy 
3606f92363d1SSreekanth Reddy 		/* free memory associated to diag buffers */
3607f92363d1SSreekanth Reddy 		for (i = 0; i < MPI2_DIAG_BUF_TYPE_COUNT; i++) {
3608f92363d1SSreekanth Reddy 			if (!ioc->diag_buffer[i])
3609f92363d1SSreekanth Reddy 				continue;
3610f92363d1SSreekanth Reddy 			if (!(ioc->diag_buffer_status[i] &
3611f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_REGISTERED))
3612f92363d1SSreekanth Reddy 				continue;
3613f92363d1SSreekanth Reddy 			if ((ioc->diag_buffer_status[i] &
3614f92363d1SSreekanth Reddy 			    MPT3_DIAG_BUFFER_IS_RELEASED))
3615f92363d1SSreekanth Reddy 				continue;
3616f92363d1SSreekanth Reddy 			pci_free_consistent(ioc->pdev, ioc->diag_buffer_sz[i],
3617f92363d1SSreekanth Reddy 			ioc->diag_buffer[i], ioc->diag_buffer_dma[i]);
3618f92363d1SSreekanth Reddy 			ioc->diag_buffer[i] = NULL;
3619f92363d1SSreekanth Reddy 			ioc->diag_buffer_status[i] = 0;
3620f92363d1SSreekanth Reddy 		}
3621f92363d1SSreekanth Reddy 
3622f92363d1SSreekanth Reddy 		kfree(ioc->event_log);
3623f92363d1SSreekanth Reddy 	}
3624c84b06a4SSreekanth Reddy 	if (hbas_to_enumerate != 1)
3625c84b06a4SSreekanth Reddy 		misc_deregister(&ctl_dev);
3626c84b06a4SSreekanth Reddy 	if (hbas_to_enumerate != 2)
3627c84b06a4SSreekanth Reddy 		misc_deregister(&gen2_ctl_dev);
3628f92363d1SSreekanth Reddy }
3629