Commit 405314df authored by John Garry's avatar John Garry Committed by Martin K. Petersen

scsi: hisi_sas: remove hisi_sas_port_deformed()

Currently when a root PHY is deformed from a asd_sas_port we try to
release the slots in the LLDD, and fail.

Regardless, it is not right to release this early.

This patch removes the deformed function. As it was before, port
deformation is still done in hisi_sas_phy_down().

It would be nice to actually remove the hisi_sas_port_{de}formed() pair,
however we cannot as we need to know the asd_sas_port index libsas has
associated with an asd_sas_phy.

The hw does actually generate a port id for a PHY, but this seems to a
random number, so ignored for this purpose.

This patch also changes the code to link slots to the hisi_sas_device,
and not hisi_sas_port.
Signed-off-by: default avatarJohn Garry <john.garry@huawei.com>
Signed-off-by: default avatarXiang Chen <chenxiang66@hisilicon.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 7c594f04
...@@ -91,7 +91,6 @@ struct hisi_sas_port { ...@@ -91,7 +91,6 @@ struct hisi_sas_port {
struct asd_sas_port sas_port; struct asd_sas_port sas_port;
u8 port_attached; u8 port_attached;
u8 id; /* from hw */ u8 id; /* from hw */
struct list_head list;
}; };
struct hisi_sas_cq { struct hisi_sas_cq {
...@@ -114,6 +113,7 @@ struct hisi_sas_device { ...@@ -114,6 +113,7 @@ struct hisi_sas_device {
u64 attached_phy; u64 attached_phy;
u64 device_id; u64 device_id;
atomic64_t running_req; atomic64_t running_req;
struct list_head list;
u8 dev_status; u8 dev_status;
}; };
...@@ -166,7 +166,7 @@ struct hisi_sas_hw { ...@@ -166,7 +166,7 @@ struct hisi_sas_hw {
struct hisi_sas_slot *slot, struct hisi_sas_slot *slot,
int device_id, int abort_flag, int tag_to_abort); int device_id, int abort_flag, int tag_to_abort);
int (*slot_complete)(struct hisi_hba *hisi_hba, int (*slot_complete)(struct hisi_hba *hisi_hba,
struct hisi_sas_slot *slot, int abort); struct hisi_sas_slot *slot);
void (*phys_init)(struct hisi_hba *hisi_hba); void (*phys_init)(struct hisi_hba *hisi_hba);
void (*phy_enable)(struct hisi_hba *hisi_hba, int phy_no); void (*phy_enable)(struct hisi_hba *hisi_hba, int phy_no);
void (*phy_disable)(struct hisi_hba *hisi_hba, int phy_no); void (*phy_disable)(struct hisi_hba *hisi_hba, int phy_no);
......
...@@ -308,7 +308,7 @@ static int hisi_sas_task_prep(struct sas_task *task, struct hisi_hba *hisi_hba, ...@@ -308,7 +308,7 @@ static int hisi_sas_task_prep(struct sas_task *task, struct hisi_hba *hisi_hba,
goto err_out_command_table; goto err_out_command_table;
} }
list_add_tail(&slot->entry, &port->list); list_add_tail(&slot->entry, &sas_dev->list);
spin_lock(&task->task_state_lock); spin_lock(&task->task_state_lock);
task->task_state_flags |= SAS_TASK_AT_INITIATOR; task->task_state_flags |= SAS_TASK_AT_INITIATOR;
spin_unlock(&task->task_state_lock); spin_unlock(&task->task_state_lock);
...@@ -424,6 +424,7 @@ static struct hisi_sas_device *hisi_sas_alloc_dev(struct domain_device *device) ...@@ -424,6 +424,7 @@ static struct hisi_sas_device *hisi_sas_alloc_dev(struct domain_device *device)
sas_dev->dev_type = device->dev_type; sas_dev->dev_type = device->dev_type;
sas_dev->hisi_hba = hisi_hba; sas_dev->hisi_hba = hisi_hba;
sas_dev->sas_device = device; sas_dev->sas_device = device;
INIT_LIST_HEAD(&hisi_hba->devices[i].list);
break; break;
} }
} }
...@@ -568,63 +569,55 @@ static void hisi_sas_port_notify_formed(struct asd_sas_phy *sas_phy) ...@@ -568,63 +569,55 @@ static void hisi_sas_port_notify_formed(struct asd_sas_phy *sas_phy)
spin_unlock_irqrestore(&hisi_hba->lock, flags); spin_unlock_irqrestore(&hisi_hba->lock, flags);
} }
static void hisi_sas_do_release_task(struct hisi_hba *hisi_hba, int phy_no, static void hisi_sas_do_release_task(struct hisi_hba *hisi_hba,
struct domain_device *device) struct sas_task *task,
struct hisi_sas_slot *slot)
{ {
struct hisi_sas_phy *phy; struct task_status_struct *ts;
struct hisi_sas_port *port; unsigned long flags;
struct hisi_sas_slot *slot, *slot2;
struct device *dev = &hisi_hba->pdev->dev;
phy = &hisi_hba->phy[phy_no]; if (!task)
port = phy->port;
if (!port)
return; return;
list_for_each_entry_safe(slot, slot2, &port->list, entry) { ts = &task->task_status;
struct sas_task *task;
task = slot->task;
if (device && task->dev != device)
continue;
dev_info(dev, "Release slot [%d:%d], task [%p]:\n",
slot->dlvry_queue, slot->dlvry_queue_slot, task);
hisi_hba->hw->slot_complete(hisi_hba, slot, 1);
}
}
static void hisi_sas_port_notify_deformed(struct asd_sas_phy *sas_phy) ts->resp = SAS_TASK_COMPLETE;
{ ts->stat = SAS_ABORTED_TASK;
struct domain_device *device; spin_lock_irqsave(&task->task_state_lock, flags);
struct hisi_sas_phy *phy = sas_phy->lldd_phy; task->task_state_flags &=
struct asd_sas_port *sas_port = sas_phy->port; ~(SAS_TASK_STATE_PENDING | SAS_TASK_AT_INITIATOR);
task->task_state_flags |= SAS_TASK_STATE_DONE;
spin_unlock_irqrestore(&task->task_state_lock, flags);
list_for_each_entry(device, &sas_port->dev_list, dev_list_node) hisi_sas_slot_task_free(hisi_hba, task, slot);
hisi_sas_do_release_task(phy->hisi_hba, sas_phy->id, device);
} }
/* hisi_hba.lock should be locked */
static void hisi_sas_release_task(struct hisi_hba *hisi_hba, static void hisi_sas_release_task(struct hisi_hba *hisi_hba,
struct domain_device *device) struct domain_device *device)
{ {
struct asd_sas_port *port = device->port; struct hisi_sas_slot *slot, *slot2;
struct asd_sas_phy *sas_phy; struct hisi_sas_device *sas_dev = device->lldd_dev;
list_for_each_entry(sas_phy, &port->phy_list, port_phy_el) list_for_each_entry_safe(slot, slot2, &sas_dev->list, entry)
hisi_sas_do_release_task(hisi_hba, sas_phy->id, device); hisi_sas_do_release_task(hisi_hba, slot->task, slot);
} }
static void hisi_sas_release_tasks(struct hisi_hba *hisi_hba) static void hisi_sas_release_tasks(struct hisi_hba *hisi_hba)
{ {
struct hisi_sas_device *sas_dev;
struct domain_device *device;
int i; int i;
for (i = 0; i < HISI_SAS_MAX_PHYS; i++) { for (i = 0; i < HISI_SAS_MAX_DEVICES; i++) {
struct hisi_sas_phy *phy = &hisi_hba->phy[i]; sas_dev = &hisi_hba->devices[i];
struct asd_sas_phy *sas_phy = &phy->sas_phy; device = sas_dev->sas_device;
if (!sas_phy->port) if ((sas_dev->dev_type == SAS_PHY_UNUSED) ||
!device)
continue; continue;
hisi_sas_port_notify_deformed(sas_phy);
hisi_sas_release_task(hisi_hba, device);
} }
} }
...@@ -958,7 +951,7 @@ static int hisi_sas_abort_task(struct sas_task *task) ...@@ -958,7 +951,7 @@ static int hisi_sas_abort_task(struct sas_task *task)
slot = &hisi_hba->slot_info slot = &hisi_hba->slot_info
[tmf_task.tag_of_task_to_be_managed]; [tmf_task.tag_of_task_to_be_managed];
spin_lock_irqsave(&hisi_hba->lock, flags); spin_lock_irqsave(&hisi_hba->lock, flags);
hisi_hba->hw->slot_complete(hisi_hba, slot, 1); hisi_hba->hw->slot_complete(hisi_hba, slot);
spin_unlock_irqrestore(&hisi_hba->lock, flags); spin_unlock_irqrestore(&hisi_hba->lock, flags);
} }
} }
...@@ -1149,11 +1142,8 @@ hisi_sas_internal_abort_task_exec(struct hisi_hba *hisi_hba, u64 device_id, ...@@ -1149,11 +1142,8 @@ hisi_sas_internal_abort_task_exec(struct hisi_hba *hisi_hba, u64 device_id,
if (rc) if (rc)
goto err_out_tag; goto err_out_tag;
/* Port structure is static for the HBA, so
* even if the port is deformed it is ok list_add_tail(&slot->entry, &sas_dev->list);
* to reference.
*/
list_add_tail(&slot->entry, &port->list);
spin_lock(&task->task_state_lock); spin_lock(&task->task_state_lock);
task->task_state_flags |= SAS_TASK_AT_INITIATOR; task->task_state_flags |= SAS_TASK_AT_INITIATOR;
spin_unlock(&task->task_state_lock); spin_unlock(&task->task_state_lock);
...@@ -1259,11 +1249,6 @@ static void hisi_sas_port_formed(struct asd_sas_phy *sas_phy) ...@@ -1259,11 +1249,6 @@ static void hisi_sas_port_formed(struct asd_sas_phy *sas_phy)
hisi_sas_port_notify_formed(sas_phy); hisi_sas_port_notify_formed(sas_phy);
} }
static void hisi_sas_port_deformed(struct asd_sas_phy *sas_phy)
{
hisi_sas_port_notify_deformed(sas_phy);
}
static void hisi_sas_phy_disconnected(struct hisi_sas_phy *phy) static void hisi_sas_phy_disconnected(struct hisi_sas_phy *phy)
{ {
phy->phy_attached = 0; phy->phy_attached = 0;
...@@ -1369,7 +1354,6 @@ static struct sas_domain_function_template hisi_sas_transport_ops = { ...@@ -1369,7 +1354,6 @@ static struct sas_domain_function_template hisi_sas_transport_ops = {
.lldd_lu_reset = hisi_sas_lu_reset, .lldd_lu_reset = hisi_sas_lu_reset,
.lldd_query_task = hisi_sas_query_task, .lldd_query_task = hisi_sas_query_task,
.lldd_port_formed = hisi_sas_port_formed, .lldd_port_formed = hisi_sas_port_formed,
.lldd_port_deformed = hisi_sas_port_deformed,
}; };
void hisi_sas_init_mem(struct hisi_hba *hisi_hba) void hisi_sas_init_mem(struct hisi_hba *hisi_hba)
...@@ -1414,7 +1398,6 @@ static int hisi_sas_alloc(struct hisi_hba *hisi_hba, struct Scsi_Host *shost) ...@@ -1414,7 +1398,6 @@ static int hisi_sas_alloc(struct hisi_hba *hisi_hba, struct Scsi_Host *shost)
hisi_sas_phy_init(hisi_hba, i); hisi_sas_phy_init(hisi_hba, i);
hisi_hba->port[i].port_attached = 0; hisi_hba->port[i].port_attached = 0;
hisi_hba->port[i].id = -1; hisi_hba->port[i].id = -1;
INIT_LIST_HEAD(&hisi_hba->port[i].list);
} }
for (i = 0; i < HISI_SAS_MAX_DEVICES; i++) { for (i = 0; i < HISI_SAS_MAX_DEVICES; i++) {
......
...@@ -1277,7 +1277,7 @@ static void slot_err_v1_hw(struct hisi_hba *hisi_hba, ...@@ -1277,7 +1277,7 @@ static void slot_err_v1_hw(struct hisi_hba *hisi_hba,
} }
static int slot_complete_v1_hw(struct hisi_hba *hisi_hba, static int slot_complete_v1_hw(struct hisi_hba *hisi_hba,
struct hisi_sas_slot *slot, int abort) struct hisi_sas_slot *slot)
{ {
struct sas_task *task = slot->task; struct sas_task *task = slot->task;
struct hisi_sas_device *sas_dev; struct hisi_sas_device *sas_dev;
...@@ -1307,9 +1307,8 @@ static int slot_complete_v1_hw(struct hisi_hba *hisi_hba, ...@@ -1307,9 +1307,8 @@ static int slot_complete_v1_hw(struct hisi_hba *hisi_hba,
memset(ts, 0, sizeof(*ts)); memset(ts, 0, sizeof(*ts));
ts->resp = SAS_TASK_COMPLETE; ts->resp = SAS_TASK_COMPLETE;
if (unlikely(!sas_dev || abort)) { if (unlikely(!sas_dev)) {
if (!sas_dev) dev_dbg(dev, "slot complete: port has no device\n");
dev_dbg(dev, "slot complete: port has not device\n");
ts->stat = SAS_PHY_DOWN; ts->stat = SAS_PHY_DOWN;
goto out; goto out;
} }
...@@ -1622,7 +1621,7 @@ static irqreturn_t cq_interrupt_v1_hw(int irq, void *p) ...@@ -1622,7 +1621,7 @@ static irqreturn_t cq_interrupt_v1_hw(int irq, void *p)
*/ */
slot->cmplt_queue_slot = rd_point; slot->cmplt_queue_slot = rd_point;
slot->cmplt_queue = queue; slot->cmplt_queue = queue;
slot_complete_v1_hw(hisi_hba, slot, 0); slot_complete_v1_hw(hisi_hba, slot);
if (++rd_point >= HISI_SAS_QUEUE_SLOTS) if (++rd_point >= HISI_SAS_QUEUE_SLOTS)
rd_point = 0; rd_point = 0;
......
...@@ -625,6 +625,7 @@ hisi_sas_device *alloc_dev_quirk_v2_hw(struct domain_device *device) ...@@ -625,6 +625,7 @@ hisi_sas_device *alloc_dev_quirk_v2_hw(struct domain_device *device)
sas_dev->dev_type = device->dev_type; sas_dev->dev_type = device->dev_type;
sas_dev->hisi_hba = hisi_hba; sas_dev->hisi_hba = hisi_hba;
sas_dev->sas_device = device; sas_dev->sas_device = device;
INIT_LIST_HEAD(&hisi_hba->devices[i].list);
break; break;
} }
} }
...@@ -1724,8 +1725,7 @@ static void slot_err_v2_hw(struct hisi_hba *hisi_hba, ...@@ -1724,8 +1725,7 @@ static void slot_err_v2_hw(struct hisi_hba *hisi_hba,
} }
static int static int
slot_complete_v2_hw(struct hisi_hba *hisi_hba, struct hisi_sas_slot *slot, slot_complete_v2_hw(struct hisi_hba *hisi_hba, struct hisi_sas_slot *slot)
int abort)
{ {
struct sas_task *task = slot->task; struct sas_task *task = slot->task;
struct hisi_sas_device *sas_dev; struct hisi_sas_device *sas_dev;
...@@ -1752,9 +1752,8 @@ slot_complete_v2_hw(struct hisi_hba *hisi_hba, struct hisi_sas_slot *slot, ...@@ -1752,9 +1752,8 @@ slot_complete_v2_hw(struct hisi_hba *hisi_hba, struct hisi_sas_slot *slot,
memset(ts, 0, sizeof(*ts)); memset(ts, 0, sizeof(*ts));
ts->resp = SAS_TASK_COMPLETE; ts->resp = SAS_TASK_COMPLETE;
if (unlikely(!sas_dev || abort)) { if (unlikely(!sas_dev)) {
if (!sas_dev) dev_dbg(dev, "slot complete: port has no device\n");
dev_dbg(dev, "slot complete: port has not device\n");
ts->stat = SAS_PHY_DOWN; ts->stat = SAS_PHY_DOWN;
goto out; goto out;
} }
...@@ -2615,7 +2614,7 @@ static void cq_tasklet_v2_hw(unsigned long val) ...@@ -2615,7 +2614,7 @@ static void cq_tasklet_v2_hw(unsigned long val)
slot = &hisi_hba->slot_info[iptt]; slot = &hisi_hba->slot_info[iptt];
slot->cmplt_queue_slot = rd_point; slot->cmplt_queue_slot = rd_point;
slot->cmplt_queue = queue; slot->cmplt_queue = queue;
slot_complete_v2_hw(hisi_hba, slot, 0); slot_complete_v2_hw(hisi_hba, slot);
act_tmp &= ~(1 << ncq_tag_count); act_tmp &= ~(1 << ncq_tag_count);
ncq_tag_count = ffs(act_tmp); ncq_tag_count = ffs(act_tmp);
...@@ -2625,7 +2624,7 @@ static void cq_tasklet_v2_hw(unsigned long val) ...@@ -2625,7 +2624,7 @@ static void cq_tasklet_v2_hw(unsigned long val)
slot = &hisi_hba->slot_info[iptt]; slot = &hisi_hba->slot_info[iptt];
slot->cmplt_queue_slot = rd_point; slot->cmplt_queue_slot = rd_point;
slot->cmplt_queue = queue; slot->cmplt_queue = queue;
slot_complete_v2_hw(hisi_hba, slot, 0); slot_complete_v2_hw(hisi_hba, slot);
} }
if (++rd_point >= HISI_SAS_QUEUE_SLOTS) if (++rd_point >= HISI_SAS_QUEUE_SLOTS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment