191 lines
6.2 KiB
Diff
191 lines
6.2 KiB
Diff
From 737944bcc3de8f2d70f7a05ced45d46c43e96b69 Mon Sep 17 00:00:00 2001
|
|
From: John Garry <john.garry@huawei.com>
|
|
Date: Mon, 5 Aug 2019 21:48:07 +0800
|
|
Subject: [PATCH 011/108] scsi: hisi_sas: Drop SMP resp frame DMA mapping
|
|
|
|
mainline inclusion
|
|
from mainline-v5.4-rc1
|
|
commit 5f6c32d7ce576e9275ab2e9b21192f5cd5f24273
|
|
category: feature
|
|
bugzilla: https://gitee.com/src-openeuler/kernel/issues/I8EKNE
|
|
|
|
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=5f6c32d7ce576e9275ab2e9b21192f5cd5f24273
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
The SMP frame response is written to the command table and not the SMP
|
|
response pointer from libsas, so don't bother DMA mapping (and unmapping)
|
|
the SMP response from libsas.
|
|
|
|
Suggested-by: Xiang Chen <chenxiang66@hisilicon.com>
|
|
Signed-off-by: John Garry <john.garry@huawei.com>
|
|
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
|
|
Signed-off-by: YunYi Yang <yangyunyi2@huawei.com>
|
|
|
|
Conflicts:
|
|
drivers/scsi/hisi_sas/hisi_sas_main.c
|
|
---
|
|
drivers/scsi/hisi_sas/hisi_sas_main.c | 30 +++++++-------------------
|
|
drivers/scsi/hisi_sas/hisi_sas_v1_hw.c | 4 +---
|
|
drivers/scsi/hisi_sas/hisi_sas_v2_hw.c | 4 +---
|
|
drivers/scsi/hisi_sas/hisi_sas_v3_hw.c | 4 +---
|
|
4 files changed, 11 insertions(+), 31 deletions(-)
|
|
|
|
diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c b/drivers/scsi/hisi_sas/hisi_sas_main.c
|
|
index 11c27ae7c0a2..f57b8689fc3d 100644
|
|
--- a/drivers/scsi/hisi_sas/hisi_sas_main.c
|
|
+++ b/drivers/scsi/hisi_sas/hisi_sas_main.c
|
|
@@ -300,8 +300,8 @@ static void hisi_sas_task_prep_abort(struct hisi_hba *hisi_hba,
|
|
}
|
|
|
|
static void hisi_sas_dma_unmap(struct hisi_hba *hisi_hba,
|
|
- struct sas_task *task, int n_elem,
|
|
- int n_elem_req, int n_elem_resp)
|
|
+ struct sas_task *task, int n_elem,
|
|
+ int n_elem_req)
|
|
{
|
|
struct device *dev = hisi_hba->dev;
|
|
|
|
@@ -315,22 +315,19 @@ static void hisi_sas_dma_unmap(struct hisi_hba *hisi_hba,
|
|
if (n_elem_req)
|
|
dma_unmap_sg(dev, &task->smp_task.smp_req,
|
|
1, DMA_TO_DEVICE);
|
|
- if (n_elem_resp)
|
|
- dma_unmap_sg(dev, &task->smp_task.smp_resp,
|
|
- 1, DMA_FROM_DEVICE);
|
|
}
|
|
}
|
|
}
|
|
|
|
static int hisi_sas_dma_map(struct hisi_hba *hisi_hba,
|
|
struct sas_task *task, int *n_elem,
|
|
- int *n_elem_req, int *n_elem_resp)
|
|
+ int *n_elem_req)
|
|
{
|
|
struct device *dev = hisi_hba->dev;
|
|
int rc;
|
|
|
|
if (!sas_protocol_ata(task->task_proto)) {
|
|
- unsigned int req_len, resp_len;
|
|
+ unsigned int req_len;
|
|
|
|
if (task->num_scatter) {
|
|
*n_elem = dma_map_sg(dev, task->scatter,
|
|
@@ -351,17 +348,6 @@ static int hisi_sas_dma_map(struct hisi_hba *hisi_hba,
|
|
rc = -EINVAL;
|
|
goto err_out_dma_unmap;
|
|
}
|
|
- *n_elem_resp = dma_map_sg(dev, &task->smp_task.smp_resp,
|
|
- 1, DMA_FROM_DEVICE);
|
|
- if (!*n_elem_resp) {
|
|
- rc = -ENOMEM;
|
|
- goto err_out_dma_unmap;
|
|
- }
|
|
- resp_len = sg_dma_len(&task->smp_task.smp_resp);
|
|
- if (resp_len & 0x3) {
|
|
- rc = -EINVAL;
|
|
- goto err_out_dma_unmap;
|
|
- }
|
|
}
|
|
} else
|
|
*n_elem = task->num_scatter;
|
|
@@ -376,7 +362,7 @@ static int hisi_sas_dma_map(struct hisi_hba *hisi_hba,
|
|
|
|
err_out_dma_unmap:
|
|
hisi_sas_dma_unmap(hisi_hba, task, *n_elem,
|
|
- *n_elem_req, *n_elem_resp);
|
|
+ *n_elem_req);
|
|
prep_out:
|
|
return rc;
|
|
}
|
|
@@ -450,7 +436,7 @@ static int hisi_sas_task_prep(struct sas_task *task,
|
|
struct asd_sas_port *sas_port = device->port;
|
|
struct device *dev = hisi_hba->dev;
|
|
int dlvry_queue_slot, dlvry_queue, rc, slot_idx;
|
|
- int n_elem = 0, n_elem_dif = 0, n_elem_req = 0, n_elem_resp = 0;
|
|
+ int n_elem = 0, n_elem_dif = 0, n_elem_req = 0;
|
|
struct hisi_sas_dq *dq;
|
|
unsigned long flags;
|
|
int wr_q_index;
|
|
@@ -487,7 +473,7 @@ static int hisi_sas_task_prep(struct sas_task *task,
|
|
}
|
|
|
|
rc = hisi_sas_dma_map(hisi_hba, task, &n_elem,
|
|
- &n_elem_req, &n_elem_resp);
|
|
+ &n_elem_req);
|
|
if (rc < 0)
|
|
goto prep_out;
|
|
|
|
@@ -580,7 +566,7 @@ static int hisi_sas_task_prep(struct sas_task *task,
|
|
hisi_sas_dif_dma_unmap(hisi_hba, task, n_elem_dif);
|
|
err_out_dma_unmap:
|
|
hisi_sas_dma_unmap(hisi_hba, task, n_elem,
|
|
- n_elem_req, n_elem_resp);
|
|
+ n_elem_req);
|
|
prep_out:
|
|
dev_err(dev, "task prep: failed[%d]!\n", rc);
|
|
return rc;
|
|
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
|
|
index eebc774ba443..fb64684384c6 100644
|
|
--- a/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
|
|
+++ b/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
|
|
@@ -1288,14 +1288,12 @@ static int slot_complete_v1_hw(struct hisi_hba *hisi_hba,
|
|
|
|
ts->stat = SAM_STAT_GOOD;
|
|
|
|
- dma_unmap_sg(dev, &task->smp_task.smp_resp, 1,
|
|
- DMA_FROM_DEVICE);
|
|
dma_unmap_sg(dev, &task->smp_task.smp_req, 1,
|
|
DMA_TO_DEVICE);
|
|
memcpy(to + sg_resp->offset,
|
|
hisi_sas_status_buf_addr_mem(slot) +
|
|
sizeof(struct hisi_sas_err_record),
|
|
- sg_dma_len(sg_resp));
|
|
+ sg_resp->length);
|
|
break;
|
|
}
|
|
case SAS_PROTOCOL_SATA:
|
|
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
|
|
index a2689ca8421a..d1453a6c6dda 100644
|
|
--- a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
|
|
+++ b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
|
|
@@ -2445,14 +2445,12 @@ slot_complete_v2_hw(struct hisi_hba *hisi_hba, struct hisi_sas_slot *slot)
|
|
|
|
ts->stat = SAM_STAT_GOOD;
|
|
|
|
- dma_unmap_sg(dev, &task->smp_task.smp_resp, 1,
|
|
- DMA_FROM_DEVICE);
|
|
dma_unmap_sg(dev, &task->smp_task.smp_req, 1,
|
|
DMA_TO_DEVICE);
|
|
memcpy(to + sg_resp->offset,
|
|
hisi_sas_status_buf_addr_mem(slot) +
|
|
sizeof(struct hisi_sas_err_record),
|
|
- sg_dma_len(sg_resp));
|
|
+ sg_resp->length);
|
|
break;
|
|
}
|
|
case SAS_PROTOCOL_SATA:
|
|
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
|
|
index c3b8432c5c34..19be76c54b4c 100644
|
|
--- a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
|
|
+++ b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
|
|
@@ -2537,14 +2537,12 @@ slot_complete_v3_hw(struct hisi_hba *hisi_hba, struct hisi_sas_slot *slot)
|
|
|
|
ts->stat = SAM_STAT_GOOD;
|
|
|
|
- dma_unmap_sg(dev, &task->smp_task.smp_resp, 1,
|
|
- DMA_FROM_DEVICE);
|
|
dma_unmap_sg(dev, &task->smp_task.smp_req, 1,
|
|
DMA_TO_DEVICE);
|
|
memcpy(to + sg_resp->offset,
|
|
hisi_sas_status_buf_addr_mem(slot) +
|
|
sizeof(struct hisi_sas_err_record),
|
|
- sg_dma_len(sg_resp));
|
|
+ sg_resp->length);
|
|
break;
|
|
}
|
|
case SAS_PROTOCOL_SATA:
|
|
--
|
|
2.27.0
|
|
|