9fac68fc38
It includes: 1)Newly added TMF feature. 2)Added newly Huawei & Inspur PCI ID's 3)Fixed smartpqi driver hangs in Z-Pool while running on FreeBSD12.1 4)Fixed flooding dmesg in kernel while the controller is offline during in ioctls. 5)Avoided unnecessary host memory allocation for rcb sg buffers. 6)Fixed race conditions while accessing internal rcb structure. 7)Fixed where Logical volumes exposing two different names to the OS it's due to the system memory is overwritten with DMA stale data. 8)Fixed dynamically unloading a smartpqi driver. 9)Added device_shutdown callback instead of deprecated shutdown_final kernel event in smartpqi driver. 10)Fixed where Os is crashed during physical drive hot removal during heavy IO. 11)Fixed OS crash during controller lockup/offline during heavy IO. 12)Fixed coverity issues in smartpqi driver 13)Fixed system crash while creating and deleting logical volume in a continuous loop. 14)Fixed where the volume size is not exposing to OS when it expands. 15)Added HC3 pci id's. Reviewed by: Scott Benesh (microsemi), Murthy Bhat (microsemi), imp Differential Revision: https://reviews.freebsd.org/D30182 Sponsored by: Netflix
352 lines
9.1 KiB
C
352 lines
9.1 KiB
C
/*-
|
|
* Copyright 2016-2021 Microchip Technology, Inc. and/or its subsidiaries.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
/* $FreeBSD$ */
|
|
|
|
#include "smartpqi_includes.h"
|
|
|
|
/*
|
|
* Process internal RAID response in the case of success.
|
|
*/
|
|
void
|
|
pqisrc_process_internal_raid_response_success(pqisrc_softstate_t *softs,rcb_t *rcb)
|
|
{
|
|
DBG_FUNC("IN");
|
|
|
|
rcb->status = REQUEST_SUCCESS;
|
|
rcb->req_pending = false;
|
|
|
|
DBG_FUNC("OUT");
|
|
}
|
|
|
|
/*
|
|
* Process internal RAID response in the case of failure.
|
|
*/
|
|
void
|
|
pqisrc_process_internal_raid_response_error(pqisrc_softstate_t *softs,
|
|
rcb_t *rcb, uint16_t err_idx)
|
|
{
|
|
raid_path_error_info_elem_t error_info;
|
|
|
|
DBG_FUNC("IN");
|
|
|
|
rcb->error_info = (char *) (softs->err_buf_dma_mem.virt_addr) +
|
|
(err_idx * PQI_ERROR_BUFFER_ELEMENT_LENGTH);
|
|
|
|
memcpy(&error_info, rcb->error_info, sizeof(error_info));
|
|
|
|
DBG_INFO("error_status 0x%x data_in_result 0x%x data_out_result 0x%x\n",
|
|
error_info.status, error_info.data_in_result, error_info.data_out_result);
|
|
|
|
rcb->status = REQUEST_FAILED;
|
|
|
|
switch (error_info.data_out_result) {
|
|
case PQI_RAID_DATA_IN_OUT_GOOD:
|
|
if (error_info.status == PQI_RAID_DATA_IN_OUT_GOOD)
|
|
rcb->status = REQUEST_SUCCESS;
|
|
break;
|
|
case PQI_RAID_DATA_IN_OUT_UNDERFLOW:
|
|
if (error_info.status == PQI_RAID_DATA_IN_OUT_GOOD ||
|
|
error_info.status == PQI_RAID_STATUS_CHECK_CONDITION)
|
|
rcb->status = REQUEST_SUCCESS;
|
|
break;
|
|
}
|
|
|
|
rcb->req_pending = false;
|
|
|
|
DBG_FUNC("OUT");
|
|
}
|
|
|
|
/*
|
|
* Process the AIO/RAID IO in the case of success.
|
|
*/
|
|
void
|
|
pqisrc_process_io_response_success(pqisrc_softstate_t *softs, rcb_t *rcb)
|
|
{
|
|
DBG_FUNC("IN");
|
|
|
|
os_io_response_success(rcb);
|
|
|
|
DBG_FUNC("OUT");
|
|
}
|
|
|
|
static void
|
|
pqisrc_extract_sense_data(sense_data_u_t *sense_data, uint8_t *key, uint8_t *asc, uint8_t *ascq)
|
|
{
|
|
if (sense_data->fixed_format.response_code == SCSI_SENSE_RESPONSE_70 ||
|
|
sense_data->fixed_format.response_code == SCSI_SENSE_RESPONSE_71)
|
|
{
|
|
sense_data_fixed_t *fixed = &sense_data->fixed_format;
|
|
|
|
*key = fixed->sense_key;
|
|
*asc = fixed->sense_code;
|
|
*ascq = fixed->sense_qual;
|
|
}
|
|
else if (sense_data->descriptor_format.response_code == SCSI_SENSE_RESPONSE_72 ||
|
|
sense_data->descriptor_format.response_code == SCSI_SENSE_RESPONSE_73)
|
|
{
|
|
sense_data_descriptor_t *desc = &sense_data->descriptor_format;
|
|
|
|
*key = desc->sense_key;
|
|
*asc = desc->sense_code;
|
|
*ascq = desc->sense_qual;
|
|
}
|
|
else
|
|
{
|
|
*key = 0xFF;
|
|
*asc = 0xFF;
|
|
*ascq = 0xFF;
|
|
}
|
|
}
|
|
|
|
static void
|
|
pqisrc_show_sense_data_simple(pqisrc_softstate_t *softs, rcb_t *rcb, sense_data_u_t *sense_data)
|
|
{
|
|
uint8_t opcode = rcb->cdbp ? rcb->cdbp[0] : 0xFF;
|
|
char *path = io_path_to_ascii(rcb->path);
|
|
uint8_t key, asc, ascq;
|
|
pqisrc_extract_sense_data(sense_data, &key, &asc, &ascq);
|
|
|
|
DBG_NOTE("[ERR INFO] BTL: %d:%d:%d op=0x%x path=%s K:C:Q: %x:%x:%x\n",
|
|
rcb->dvp->bus, rcb->dvp->target, rcb->dvp->lun,
|
|
opcode, path, key, asc, ascq);
|
|
}
|
|
|
|
void
|
|
pqisrc_show_sense_data_full(pqisrc_softstate_t *softs, rcb_t *rcb, sense_data_u_t *sense_data)
|
|
{
|
|
pqisrc_print_buffer(softs, "sense data", sense_data, 32, 0);
|
|
|
|
pqisrc_show_sense_data_simple(softs, rcb, sense_data);
|
|
|
|
/* add more detail here as needed */
|
|
}
|
|
|
|
|
|
/*
|
|
* Process the error info for AIO in the case of failure.
|
|
*/
|
|
void
|
|
pqisrc_process_aio_response_error(pqisrc_softstate_t *softs,
|
|
rcb_t *rcb, uint16_t err_idx)
|
|
{
|
|
aio_path_error_info_elem_t *err_info = NULL;
|
|
|
|
DBG_FUNC("IN");
|
|
|
|
err_info = (aio_path_error_info_elem_t*)
|
|
softs->err_buf_dma_mem.virt_addr +
|
|
err_idx;
|
|
|
|
if(err_info == NULL) {
|
|
DBG_ERR("err_info structure is NULL err_idx :%x", err_idx);
|
|
return;
|
|
}
|
|
|
|
os_aio_response_error(rcb, err_info);
|
|
|
|
DBG_FUNC("OUT");
|
|
}
|
|
|
|
/*
|
|
* Process the error info for RAID IO in the case of failure.
|
|
*/
|
|
void
|
|
pqisrc_process_raid_response_error(pqisrc_softstate_t *softs,
|
|
rcb_t *rcb, uint16_t err_idx)
|
|
{
|
|
raid_path_error_info_elem_t *err_info = NULL;
|
|
|
|
DBG_FUNC("IN");
|
|
|
|
err_info = (raid_path_error_info_elem_t*)
|
|
softs->err_buf_dma_mem.virt_addr +
|
|
err_idx;
|
|
|
|
if(err_info == NULL) {
|
|
DBG_ERR("err_info structure is NULL err_idx :%x", err_idx);
|
|
return;
|
|
}
|
|
|
|
os_raid_response_error(rcb, err_info);
|
|
|
|
DBG_FUNC("OUT");
|
|
}
|
|
|
|
/*
|
|
* Process the Task Management function response.
|
|
*/
|
|
int
|
|
pqisrc_process_task_management_response(pqisrc_softstate_t *softs,
|
|
pqi_tmf_resp_t *tmf_resp)
|
|
{
|
|
int ret = REQUEST_SUCCESS;
|
|
uint32_t tag = (uint32_t)tmf_resp->req_id;
|
|
rcb_t *rcb = &softs->rcb[tag];
|
|
|
|
ASSERT(rcb->tag == tag);
|
|
|
|
DBG_FUNC("IN\n");
|
|
|
|
switch (tmf_resp->resp_code) {
|
|
case SOP_TASK_MANAGEMENT_FUNCTION_COMPLETE:
|
|
case SOP_TASK_MANAGEMENT_FUNCTION_SUCCEEDED:
|
|
ret = REQUEST_SUCCESS;
|
|
break;
|
|
default:
|
|
DBG_WARN("TMF Failed, Response code : 0x%x\n", tmf_resp->resp_code);
|
|
ret = REQUEST_FAILED;
|
|
break;
|
|
}
|
|
|
|
rcb->status = ret;
|
|
rcb->req_pending = false;
|
|
|
|
DBG_FUNC("OUT");
|
|
return ret;
|
|
}
|
|
|
|
static int
|
|
pqisrc_process_vendor_general_response(pqi_vendor_general_response_t *response)
|
|
{
|
|
|
|
int ret = REQUEST_SUCCESS;
|
|
|
|
switch(response->status) {
|
|
case PQI_VENDOR_RESPONSE_IU_SUCCESS:
|
|
break;
|
|
case PQI_VENDOR_RESPONSE_IU_UNSUCCESS:
|
|
case PQI_VENDOR_RESPONSE_IU_INVALID_PARAM:
|
|
case PQI_VENDOR_RESPONSE_IU_INSUFF_RESRC:
|
|
ret = REQUEST_FAILED;
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* Function used to process the response from the adapter
|
|
* which is invoked by IRQ handler.
|
|
*/
|
|
void
|
|
pqisrc_process_response_queue(pqisrc_softstate_t *softs, int oq_id)
|
|
{
|
|
ob_queue_t *ob_q;
|
|
struct pqi_io_response *response;
|
|
uint32_t oq_pi, oq_ci;
|
|
pqi_scsi_dev_t *dvp = NULL;
|
|
|
|
DBG_FUNC("IN");
|
|
|
|
ob_q = &softs->op_ob_q[oq_id - 1]; /* zero for event Q */
|
|
oq_ci = ob_q->ci_local;
|
|
oq_pi = *(ob_q->pi_virt_addr);
|
|
|
|
DBG_INFO("ci : %d pi : %d qid : %d\n", oq_ci, oq_pi, ob_q->q_id);
|
|
|
|
while (1) {
|
|
rcb_t *rcb = NULL;
|
|
uint32_t tag = 0;
|
|
uint32_t offset;
|
|
boolean_t os_scsi_cmd = false;
|
|
|
|
if (oq_pi == oq_ci)
|
|
break;
|
|
/* Get the response */
|
|
offset = oq_ci * ob_q->elem_size;
|
|
response = (struct pqi_io_response *)(ob_q->array_virt_addr +
|
|
offset);
|
|
tag = response->request_id;
|
|
rcb = &softs->rcb[tag];
|
|
/* Make sure we are processing a valid response. */
|
|
if ((rcb->tag != tag) || (rcb->req_pending == false)) {
|
|
DBG_ERR("No such request pending with tag : %x", tag);
|
|
oq_ci = (oq_ci + 1) % ob_q->num_elem;
|
|
break;
|
|
}
|
|
/* Timedout request has been completed. This should not hit,
|
|
* if timeout is set as TIMEOUT_INFINITE while calling
|
|
* pqisrc_wait_on_condition(softs,rcb,timeout).
|
|
*/
|
|
if (rcb->timedout) {
|
|
DBG_WARN("timed out request completing from firmware, driver already completed it with failure , free the tag %d\n", tag);
|
|
oq_ci = (oq_ci + 1) % ob_q->num_elem;
|
|
os_reset_rcb(rcb);
|
|
pqisrc_put_tag(&softs->taglist, tag);
|
|
break;
|
|
}
|
|
|
|
if (IS_OS_SCSICMD(rcb)) {
|
|
dvp = rcb->dvp;
|
|
if (dvp)
|
|
os_scsi_cmd = true;
|
|
else
|
|
DBG_WARN("Received IO completion for the Null device!!!\n");
|
|
}
|
|
|
|
|
|
DBG_INFO("response.header.iu_type : %x \n", response->header.iu_type);
|
|
|
|
switch (response->header.iu_type) {
|
|
case PQI_RESPONSE_IU_RAID_PATH_IO_SUCCESS:
|
|
case PQI_RESPONSE_IU_AIO_PATH_IO_SUCCESS:
|
|
rcb->success_cmp_callback(softs, rcb);
|
|
if (os_scsi_cmd)
|
|
pqisrc_decrement_device_active_io(softs, dvp);
|
|
|
|
break;
|
|
case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR:
|
|
case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR:
|
|
rcb->error_cmp_callback(softs, rcb, LE_16(response->error_index));
|
|
if (os_scsi_cmd)
|
|
pqisrc_decrement_device_active_io(softs, dvp);
|
|
break;
|
|
case PQI_RESPONSE_IU_GENERAL_MANAGEMENT:
|
|
rcb->req_pending = false;
|
|
break;
|
|
case PQI_RESPONSE_IU_VENDOR_GENERAL:
|
|
rcb->req_pending = false;
|
|
rcb->status = pqisrc_process_vendor_general_response(
|
|
(pqi_vendor_general_response_t *)response);
|
|
break;
|
|
case PQI_RESPONSE_IU_TASK_MANAGEMENT:
|
|
rcb->status = pqisrc_process_task_management_response(softs, (void *)response);
|
|
break;
|
|
|
|
default:
|
|
DBG_ERR("Invalid Response IU 0x%x\n",response->header.iu_type);
|
|
break;
|
|
}
|
|
|
|
oq_ci = (oq_ci + 1) % ob_q->num_elem;
|
|
}
|
|
|
|
ob_q->ci_local = oq_ci;
|
|
PCI_MEM_PUT32(softs, ob_q->ci_register_abs,
|
|
ob_q->ci_register_offset, ob_q->ci_local );
|
|
DBG_FUNC("OUT");
|
|
}
|