blob: 32edda3e55c6cd2b652355f463ef50d9fd64f242 [file] [log] [blame]
jack wangdbf9bfe2009-10-14 16:19:21 +08001/*
Sakthivel Kf5860992013-04-17 16:37:02 +05302 * PMC-Sierra PM8001/8081/8088/8089 SAS/SATA based host adapters driver
jack wangdbf9bfe2009-10-14 16:19:21 +08003 *
4 * Copyright (c) 2008-2009 USI Co., Ltd.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
14 * substantially similar to the "NO WARRANTY" disclaimer below
15 * ("Disclaimer") and any redistribution must be conditioned upon
16 * including a substantially similar Disclaimer requirement for further
17 * binary redistribution.
18 * 3. Neither the names of the above-listed copyright holders nor the names
19 * of any contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * Alternatively, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2 as published by the Free
24 * Software Foundation.
25 *
26 * NO WARRANTY
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
35 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
36 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGES.
38 *
39 */
40
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
jack wangdbf9bfe2009-10-14 16:19:21 +080042#include "pm8001_sas.h"
Changyuan Lyu8ceddda2021-11-15 13:57:49 -080043#include "pm80xx_tracepoints.h"
jack wangdbf9bfe2009-10-14 16:19:21 +080044
45/**
46 * pm8001_find_tag - from sas task to find out tag that belongs to this task
47 * @task: the task sent to the LLDD
48 * @tag: the found tag associated with the task
49 */
50static int pm8001_find_tag(struct sas_task *task, u32 *tag)
51{
52 if (task->lldd_task) {
53 struct pm8001_ccb_info *ccb;
54 ccb = task->lldd_task;
55 *tag = ccb->ccb_tag;
56 return 1;
57 }
58 return 0;
59}
60
61/**
Tomas Henzlef300542014-07-09 17:20:40 +053062 * pm8001_tag_free - free the no more needed tag
jack wangdbf9bfe2009-10-14 16:19:21 +080063 * @pm8001_ha: our hba struct
64 * @tag: the found tag associated with the task
65 */
Tomas Henzlef300542014-07-09 17:20:40 +053066void pm8001_tag_free(struct pm8001_hba_info *pm8001_ha, u32 tag)
jack wangdbf9bfe2009-10-14 16:19:21 +080067{
68 void *bitmap = pm8001_ha->tags;
69 clear_bit(tag, bitmap);
70}
71
jack wangdbf9bfe2009-10-14 16:19:21 +080072/**
73 * pm8001_tag_alloc - allocate a empty tag for task used.
74 * @pm8001_ha: our hba struct
75 * @tag_out: the found empty tag .
76 */
77inline int pm8001_tag_alloc(struct pm8001_hba_info *pm8001_ha, u32 *tag_out)
78{
Tomas Henzlef300542014-07-09 17:20:40 +053079 unsigned int tag;
jack wangdbf9bfe2009-10-14 16:19:21 +080080 void *bitmap = pm8001_ha->tags;
Tomas Henzl646cdf02014-07-09 17:21:01 +053081 unsigned long flags;
jack wangdbf9bfe2009-10-14 16:19:21 +080082
Tomas Henzl646cdf02014-07-09 17:21:01 +053083 spin_lock_irqsave(&pm8001_ha->bitmap_lock, flags);
Tomas Henzlef300542014-07-09 17:20:40 +053084 tag = find_first_zero_bit(bitmap, pm8001_ha->tags_num);
Tomas Henzl646cdf02014-07-09 17:21:01 +053085 if (tag >= pm8001_ha->tags_num) {
86 spin_unlock_irqrestore(&pm8001_ha->bitmap_lock, flags);
jack wangdbf9bfe2009-10-14 16:19:21 +080087 return -SAS_QUEUE_FULL;
Tomas Henzl646cdf02014-07-09 17:21:01 +053088 }
Tomas Henzlef300542014-07-09 17:20:40 +053089 set_bit(tag, bitmap);
Tomas Henzl646cdf02014-07-09 17:21:01 +053090 spin_unlock_irqrestore(&pm8001_ha->bitmap_lock, flags);
jack wangdbf9bfe2009-10-14 16:19:21 +080091 *tag_out = tag;
92 return 0;
93}
94
95void pm8001_tag_init(struct pm8001_hba_info *pm8001_ha)
96{
97 int i;
98 for (i = 0; i < pm8001_ha->tags_num; ++i)
Tomas Henzlef300542014-07-09 17:20:40 +053099 pm8001_tag_free(pm8001_ha, i);
jack wangdbf9bfe2009-10-14 16:19:21 +0800100}
101
Randy Dunlapbb6beab2021-07-08 09:57:23 -0700102/**
103 * pm8001_mem_alloc - allocate memory for pm8001.
104 * @pdev: pci device.
105 * @virt_addr: the allocated virtual address
106 * @pphys_addr: DMA address for this device
107 * @pphys_addr_hi: the physical address high byte address.
108 * @pphys_addr_lo: the physical address low byte address.
109 * @mem_size: memory size.
110 * @align: requested byte alignment
111 */
jack wangdbf9bfe2009-10-14 16:19:21 +0800112int pm8001_mem_alloc(struct pci_dev *pdev, void **virt_addr,
113 dma_addr_t *pphys_addr, u32 *pphys_addr_hi,
114 u32 *pphys_addr_lo, u32 mem_size, u32 align)
115{
116 caddr_t mem_virt_alloc;
117 dma_addr_t mem_dma_handle;
118 u64 phys_align;
119 u64 align_offset = 0;
120 if (align)
121 align_offset = (dma_addr_t)align - 1;
Luis Chamberlain750afb02019-01-04 09:23:09 +0100122 mem_virt_alloc = dma_alloc_coherent(&pdev->dev, mem_size + align,
123 &mem_dma_handle, GFP_KERNEL);
Zhen Lei4ee8c402021-06-10 17:46:05 +0800124 if (!mem_virt_alloc)
125 return -ENOMEM;
jack wangdbf9bfe2009-10-14 16:19:21 +0800126 *pphys_addr = mem_dma_handle;
127 phys_align = (*pphys_addr + align_offset) & ~align_offset;
128 *virt_addr = (void *)mem_virt_alloc + phys_align - *pphys_addr;
129 *pphys_addr_hi = upper_32_bits(phys_align);
130 *pphys_addr_lo = lower_32_bits(phys_align);
131 return 0;
132}
Lee Jonesa0cf5ce2020-07-21 17:41:18 +0100133
jack wangdbf9bfe2009-10-14 16:19:21 +0800134/**
135 * pm8001_find_ha_by_dev - from domain device which come from sas layer to
136 * find out our hba struct.
137 * @dev: the domain device which from sas layer.
138 */
139static
140struct pm8001_hba_info *pm8001_find_ha_by_dev(struct domain_device *dev)
141{
142 struct sas_ha_struct *sha = dev->port->ha;
143 struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
144 return pm8001_ha;
145}
146
147/**
148 * pm8001_phy_control - this function should be registered to
149 * sas_domain_function_template to provide libsas used, note: this is just
150 * control the HBA phy rather than other expander phy if you want control
151 * other phy, you should use SMP command.
152 * @sas_phy: which phy in HBA phys.
153 * @func: the operation.
154 * @funcdata: always NULL.
155 */
156int pm8001_phy_control(struct asd_sas_phy *sas_phy, enum phy_func func,
157 void *funcdata)
158{
159 int rc = 0, phy_id = sas_phy->id;
160 struct pm8001_hba_info *pm8001_ha = NULL;
161 struct sas_phy_linkrates *rates;
Deepak Ukeycd135752018-09-11 14:18:02 +0530162 struct pm8001_phy *phy;
jack wangdbf9bfe2009-10-14 16:19:21 +0800163 DECLARE_COMPLETION_ONSTACK(completion);
Mark Salyzynd95d0002012-01-17 09:18:57 -0500164 unsigned long flags;
jack wangdbf9bfe2009-10-14 16:19:21 +0800165 pm8001_ha = sas_phy->ha->lldd_ha;
Deepak Ukeycd135752018-09-11 14:18:02 +0530166 phy = &pm8001_ha->phy[phy_id];
jack wangdbf9bfe2009-10-14 16:19:21 +0800167 pm8001_ha->phy[phy_id].enable_completion = &completion;
168 switch (func) {
169 case PHY_FUNC_SET_LINK_RATE:
170 rates = funcdata;
171 if (rates->minimum_linkrate) {
172 pm8001_ha->phy[phy_id].minimum_linkrate =
173 rates->minimum_linkrate;
174 }
175 if (rates->maximum_linkrate) {
176 pm8001_ha->phy[phy_id].maximum_linkrate =
177 rates->maximum_linkrate;
178 }
Deepak Ukeycd135752018-09-11 14:18:02 +0530179 if (pm8001_ha->phy[phy_id].phy_state == PHY_LINK_DISABLE) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800180 PM8001_CHIP_DISP->phy_start_req(pm8001_ha, phy_id);
181 wait_for_completion(&completion);
182 }
183 PM8001_CHIP_DISP->phy_ctl_req(pm8001_ha, phy_id,
184 PHY_LINK_RESET);
185 break;
186 case PHY_FUNC_HARD_RESET:
Deepak Ukeycd135752018-09-11 14:18:02 +0530187 if (pm8001_ha->phy[phy_id].phy_state == PHY_LINK_DISABLE) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800188 PM8001_CHIP_DISP->phy_start_req(pm8001_ha, phy_id);
189 wait_for_completion(&completion);
190 }
191 PM8001_CHIP_DISP->phy_ctl_req(pm8001_ha, phy_id,
192 PHY_HARD_RESET);
193 break;
194 case PHY_FUNC_LINK_RESET:
Deepak Ukeycd135752018-09-11 14:18:02 +0530195 if (pm8001_ha->phy[phy_id].phy_state == PHY_LINK_DISABLE) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800196 PM8001_CHIP_DISP->phy_start_req(pm8001_ha, phy_id);
197 wait_for_completion(&completion);
198 }
199 PM8001_CHIP_DISP->phy_ctl_req(pm8001_ha, phy_id,
200 PHY_LINK_RESET);
201 break;
202 case PHY_FUNC_RELEASE_SPINUP_HOLD:
203 PM8001_CHIP_DISP->phy_ctl_req(pm8001_ha, phy_id,
204 PHY_LINK_RESET);
205 break;
206 case PHY_FUNC_DISABLE:
Deepak Ukeycd135752018-09-11 14:18:02 +0530207 if (pm8001_ha->chip_id != chip_8001) {
208 if (pm8001_ha->phy[phy_id].phy_state ==
209 PHY_STATE_LINK_UP_SPCV) {
Deepak Ukeycd135752018-09-11 14:18:02 +0530210 sas_phy_disconnected(&phy->sas_phy);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +0100211 sas_notify_phy_event(&phy->sas_phy,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +0100212 PHYE_LOSS_OF_SIGNAL, GFP_KERNEL);
Deepak Ukeycd135752018-09-11 14:18:02 +0530213 phy->phy_attached = 0;
214 }
215 } else {
216 if (pm8001_ha->phy[phy_id].phy_state ==
217 PHY_STATE_LINK_UP_SPC) {
Deepak Ukeycd135752018-09-11 14:18:02 +0530218 sas_phy_disconnected(&phy->sas_phy);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +0100219 sas_notify_phy_event(&phy->sas_phy,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +0100220 PHYE_LOSS_OF_SIGNAL, GFP_KERNEL);
Deepak Ukeycd135752018-09-11 14:18:02 +0530221 phy->phy_attached = 0;
222 }
223 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800224 PM8001_CHIP_DISP->phy_stop_req(pm8001_ha, phy_id);
225 break;
Mark Salyzynd95d0002012-01-17 09:18:57 -0500226 case PHY_FUNC_GET_EVENTS:
227 spin_lock_irqsave(&pm8001_ha->lock, flags);
Sakthivel Kf5860992013-04-17 16:37:02 +0530228 if (pm8001_ha->chip_id == chip_8001) {
229 if (-1 == pm8001_bar4_shift(pm8001_ha,
Mark Salyzynd95d0002012-01-17 09:18:57 -0500230 (phy_id < 4) ? 0x30000 : 0x40000)) {
Sakthivel Kf5860992013-04-17 16:37:02 +0530231 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
232 return -EINVAL;
233 }
Mark Salyzynd95d0002012-01-17 09:18:57 -0500234 }
235 {
236 struct sas_phy *phy = sas_phy->phy;
237 uint32_t *qp = (uint32_t *)(((char *)
238 pm8001_ha->io_mem[2].memvirtaddr)
239 + 0x1034 + (0x4000 * (phy_id & 3)));
240
241 phy->invalid_dword_count = qp[0];
242 phy->running_disparity_error_count = qp[1];
243 phy->loss_of_dword_sync_count = qp[3];
244 phy->phy_reset_problem_count = qp[4];
245 }
Sakthivel Kf5860992013-04-17 16:37:02 +0530246 if (pm8001_ha->chip_id == chip_8001)
247 pm8001_bar4_shift(pm8001_ha, 0);
Mark Salyzynd95d0002012-01-17 09:18:57 -0500248 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
249 return 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800250 default:
Joe Perches1b5d2792020-11-20 15:16:09 -0800251 pm8001_dbg(pm8001_ha, DEVIO, "func 0x%x\n", func);
Mark Salyzynd95d0002012-01-17 09:18:57 -0500252 rc = -EOPNOTSUPP;
jack wangdbf9bfe2009-10-14 16:19:21 +0800253 }
254 msleep(300);
255 return rc;
256}
257
jack wangdbf9bfe2009-10-14 16:19:21 +0800258/**
259 * pm8001_scan_start - we should enable all HBA phys by sending the phy_start
260 * command to HBA.
261 * @shost: the scsi host data.
262 */
263void pm8001_scan_start(struct Scsi_Host *shost)
264{
265 int i;
266 struct pm8001_hba_info *pm8001_ha;
267 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
Ajish Koshyd1acd812021-05-05 17:31:03 +0530268 DECLARE_COMPLETION_ONSTACK(completion);
jack wangdbf9bfe2009-10-14 16:19:21 +0800269 pm8001_ha = sha->lldd_ha;
Sakthivel Kf5860992013-04-17 16:37:02 +0530270 /* SAS_RE_INITIALIZATION not available in SPCv/ve */
271 if (pm8001_ha->chip_id == chip_8001)
272 PM8001_CHIP_DISP->sas_re_init_req(pm8001_ha);
Ajish Koshyd1acd812021-05-05 17:31:03 +0530273 for (i = 0; i < pm8001_ha->chip->n_phy; ++i) {
274 pm8001_ha->phy[i].enable_completion = &completion;
jack wangdbf9bfe2009-10-14 16:19:21 +0800275 PM8001_CHIP_DISP->phy_start_req(pm8001_ha, i);
Ajish Koshyd1acd812021-05-05 17:31:03 +0530276 wait_for_completion(&completion);
277 msleep(300);
278 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800279}
280
281int pm8001_scan_finished(struct Scsi_Host *shost, unsigned long time)
282{
Dan Williamsb1124cd2011-12-19 16:42:34 -0800283 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
284
jack wangdbf9bfe2009-10-14 16:19:21 +0800285 /* give the phy enabling interrupt event time to come in (1s
286 * is empirically about all it takes) */
287 if (time < HZ)
288 return 0;
289 /* Wait for discovery to finish */
Dan Williamsb1124cd2011-12-19 16:42:34 -0800290 sas_drain_work(ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800291 return 1;
292}
293
294/**
295 * pm8001_task_prep_smp - the dispatcher function, prepare data for smp task
296 * @pm8001_ha: our hba card information
297 * @ccb: the ccb which attached to smp task
298 */
299static int pm8001_task_prep_smp(struct pm8001_hba_info *pm8001_ha,
300 struct pm8001_ccb_info *ccb)
301{
302 return PM8001_CHIP_DISP->smp_req(pm8001_ha, ccb);
303}
304
305u32 pm8001_get_ncq_tag(struct sas_task *task, u32 *tag)
306{
307 struct ata_queued_cmd *qc = task->uldd_task;
308 if (qc) {
309 if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
Hannes Reineckeef026b12016-04-25 12:45:44 +0200310 qc->tf.command == ATA_CMD_FPDMA_READ ||
311 qc->tf.command == ATA_CMD_FPDMA_RECV ||
Hannes Reinecke661ce1f2016-04-25 12:45:45 +0200312 qc->tf.command == ATA_CMD_FPDMA_SEND ||
313 qc->tf.command == ATA_CMD_NCQ_NON_DATA) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800314 *tag = qc->tag;
315 return 1;
316 }
317 }
318 return 0;
319}
320
321/**
322 * pm8001_task_prep_ata - the dispatcher function, prepare data for sata task
323 * @pm8001_ha: our hba card information
324 * @ccb: the ccb which attached to sata task
325 */
326static int pm8001_task_prep_ata(struct pm8001_hba_info *pm8001_ha,
327 struct pm8001_ccb_info *ccb)
328{
329 return PM8001_CHIP_DISP->sata_req(pm8001_ha, ccb);
330}
331
332/**
333 * pm8001_task_prep_ssp_tm - the dispatcher function, prepare task management data
334 * @pm8001_ha: our hba card information
335 * @ccb: the ccb which attached to TM
336 * @tmf: the task management IU
337 */
338static int pm8001_task_prep_ssp_tm(struct pm8001_hba_info *pm8001_ha,
339 struct pm8001_ccb_info *ccb, struct pm8001_tmf_task *tmf)
340{
341 return PM8001_CHIP_DISP->ssp_tm_req(pm8001_ha, ccb, tmf);
342}
343
344/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -0700345 * pm8001_task_prep_ssp - the dispatcher function, prepare ssp data for ssp task
jack wangdbf9bfe2009-10-14 16:19:21 +0800346 * @pm8001_ha: our hba card information
347 * @ccb: the ccb which attached to ssp task
348 */
349static int pm8001_task_prep_ssp(struct pm8001_hba_info *pm8001_ha,
350 struct pm8001_ccb_info *ccb)
351{
352 return PM8001_CHIP_DISP->ssp_io_req(pm8001_ha, ccb);
353}
Dan Williams11e16362011-09-20 15:11:03 -0700354
jack wang1cc943a2009-12-07 17:22:42 +0800355 /* Find the local port id that's attached to this device */
356static int sas_find_local_port_id(struct domain_device *dev)
357{
358 struct domain_device *pdev = dev->parent;
359
360 /* Directly attached device */
361 if (!pdev)
362 return dev->port->id;
363 while (pdev) {
364 struct domain_device *pdev_p = pdev->parent;
365 if (!pdev_p)
366 return pdev->port->id;
367 pdev = pdev->parent;
368 }
369 return 0;
370}
371
Lee Jonesa0cf5ce2020-07-21 17:41:18 +0100372#define DEV_IS_GONE(pm8001_dev) \
373 ((!pm8001_dev || (pm8001_dev->dev_type == SAS_PHY_UNUSED)))
jack wangdbf9bfe2009-10-14 16:19:21 +0800374/**
jack_wang97ee2082009-11-05 22:33:51 +0800375 * pm8001_task_exec - queue the task(ssp, smp && ata) to the hardware.
jack wangdbf9bfe2009-10-14 16:19:21 +0800376 * @task: the task to be execute.
jack wangdbf9bfe2009-10-14 16:19:21 +0800377 * @gfp_flags: gfp_flags.
jack_wang97ee2082009-11-05 22:33:51 +0800378 * @is_tmf: if it is task management task.
jack wangdbf9bfe2009-10-14 16:19:21 +0800379 * @tmf: the task management IU
380 */
Christoph Hellwig79855d12014-11-05 10:36:28 +0100381static int pm8001_task_exec(struct sas_task *task,
jack wangdbf9bfe2009-10-14 16:19:21 +0800382 gfp_t gfp_flags, int is_tmf, struct pm8001_tmf_task *tmf)
383{
384 struct domain_device *dev = task->dev;
385 struct pm8001_hba_info *pm8001_ha;
386 struct pm8001_device *pm8001_dev;
jack wang1cc943a2009-12-07 17:22:42 +0800387 struct pm8001_port *port = NULL;
jack wangdbf9bfe2009-10-14 16:19:21 +0800388 struct sas_task *t = task;
389 struct pm8001_ccb_info *ccb;
John Sperbeckcef15382019-11-14 15:39:00 +0530390 u32 tag = 0xdeadbeef, rc = 0, n_elem = 0;
Dan Williams312d3e52011-11-17 17:59:50 -0800391 unsigned long flags = 0;
Vikram Auradkara88d9db2019-11-14 15:39:04 +0530392 enum sas_protocol task_proto = t->task_proto;
jack wangdbf9bfe2009-10-14 16:19:21 +0800393
394 if (!dev->port) {
395 struct task_status_struct *tsm = &t->task_status;
396 tsm->resp = SAS_TASK_UNDELIVERED;
397 tsm->stat = SAS_PHY_DOWN;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700398 if (dev->dev_type != SAS_SATA_DEV)
jack wangdbf9bfe2009-10-14 16:19:21 +0800399 t->task_done(t);
400 return 0;
401 }
402 pm8001_ha = pm8001_find_ha_by_dev(task->dev);
Deepak Ukey72349b62018-09-11 14:18:04 +0530403 if (pm8001_ha->controller_fatal_error) {
404 struct task_status_struct *ts = &t->task_status;
405
406 ts->resp = SAS_TASK_UNDELIVERED;
407 t->task_done(t);
408 return 0;
409 }
Joe Perches1b5d2792020-11-20 15:16:09 -0800410 pm8001_dbg(pm8001_ha, IO, "pm8001_task_exec device\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800411 spin_lock_irqsave(&pm8001_ha->lock, flags);
412 do {
413 dev = t->dev;
414 pm8001_dev = dev->lldd_dev;
jack wang1cc943a2009-12-07 17:22:42 +0800415 port = &pm8001_ha->port[sas_find_local_port_id(dev)];
Mark Salyzynb90b3782011-09-22 08:50:01 -0700416 if (DEV_IS_GONE(pm8001_dev) || !port->port_attached) {
Vikram Auradkara88d9db2019-11-14 15:39:04 +0530417 if (sas_protocol_ata(task_proto)) {
jack wang1cc943a2009-12-07 17:22:42 +0800418 struct task_status_struct *ts = &t->task_status;
419 ts->resp = SAS_TASK_UNDELIVERED;
420 ts->stat = SAS_PHY_DOWN;
421
422 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
jack wang1cc943a2009-12-07 17:22:42 +0800423 t->task_done(t);
jack wang1cc943a2009-12-07 17:22:42 +0800424 spin_lock_irqsave(&pm8001_ha->lock, flags);
jack wang1cc943a2009-12-07 17:22:42 +0800425 continue;
426 } else {
427 struct task_status_struct *ts = &t->task_status;
428 ts->resp = SAS_TASK_UNDELIVERED;
429 ts->stat = SAS_PHY_DOWN;
430 t->task_done(t);
jack wang1cc943a2009-12-07 17:22:42 +0800431 continue;
432 }
433 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800434 rc = pm8001_tag_alloc(pm8001_ha, &tag);
435 if (rc)
436 goto err_out;
437 ccb = &pm8001_ha->ccb_info[tag];
438
Vikram Auradkara88d9db2019-11-14 15:39:04 +0530439 if (!sas_protocol_ata(task_proto)) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800440 if (t->num_scatter) {
441 n_elem = dma_map_sg(pm8001_ha->dev,
442 t->scatter,
443 t->num_scatter,
444 t->data_dir);
445 if (!n_elem) {
446 rc = -ENOMEM;
jack_wang97ee2082009-11-05 22:33:51 +0800447 goto err_out_tag;
jack wangdbf9bfe2009-10-14 16:19:21 +0800448 }
449 }
450 } else {
451 n_elem = t->num_scatter;
452 }
453
jack_wang97ee2082009-11-05 22:33:51 +0800454 t->lldd_task = ccb;
jack wangdbf9bfe2009-10-14 16:19:21 +0800455 ccb->n_elem = n_elem;
456 ccb->ccb_tag = tag;
457 ccb->task = t;
XinHong Zhuaed97b82014-02-14 16:01:28 +0800458 ccb->device = pm8001_dev;
Vikram Auradkara88d9db2019-11-14 15:39:04 +0530459 switch (task_proto) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800460 case SAS_PROTOCOL_SMP:
Viswas G4a2efd42020-11-02 22:25:26 +0530461 atomic_inc(&pm8001_dev->running_req);
jack wangdbf9bfe2009-10-14 16:19:21 +0800462 rc = pm8001_task_prep_smp(pm8001_ha, ccb);
463 break;
464 case SAS_PROTOCOL_SSP:
Viswas G4a2efd42020-11-02 22:25:26 +0530465 atomic_inc(&pm8001_dev->running_req);
jack wangdbf9bfe2009-10-14 16:19:21 +0800466 if (is_tmf)
467 rc = pm8001_task_prep_ssp_tm(pm8001_ha,
468 ccb, tmf);
469 else
470 rc = pm8001_task_prep_ssp(pm8001_ha, ccb);
471 break;
472 case SAS_PROTOCOL_SATA:
473 case SAS_PROTOCOL_STP:
Viswas G4a2efd42020-11-02 22:25:26 +0530474 atomic_inc(&pm8001_dev->running_req);
jack wangdbf9bfe2009-10-14 16:19:21 +0800475 rc = pm8001_task_prep_ata(pm8001_ha, ccb);
476 break;
477 default:
478 dev_printk(KERN_ERR, pm8001_ha->dev,
Vikram Auradkara88d9db2019-11-14 15:39:04 +0530479 "unknown sas_task proto: 0x%x\n", task_proto);
jack wangdbf9bfe2009-10-14 16:19:21 +0800480 rc = -EINVAL;
481 break;
482 }
483
484 if (rc) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800485 pm8001_dbg(pm8001_ha, IO, "rc is %x\n", rc);
Viswas G4a2efd42020-11-02 22:25:26 +0530486 atomic_dec(&pm8001_dev->running_req);
jack wangdbf9bfe2009-10-14 16:19:21 +0800487 goto err_out_tag;
488 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800489 /* TODO: select normal or high priority */
490 spin_lock(&t->task_state_lock);
491 t->task_state_flags |= SAS_TASK_AT_INITIATOR;
492 spin_unlock(&t->task_state_lock);
Christoph Hellwig79855d12014-11-05 10:36:28 +0100493 } while (0);
jack wangdbf9bfe2009-10-14 16:19:21 +0800494 rc = 0;
495 goto out_done;
496
497err_out_tag:
498 pm8001_tag_free(pm8001_ha, tag);
499err_out:
500 dev_printk(KERN_ERR, pm8001_ha->dev, "pm8001 exec failed[%d]!\n", rc);
Vikram Auradkara88d9db2019-11-14 15:39:04 +0530501 if (!sas_protocol_ata(task_proto))
jack wangdbf9bfe2009-10-14 16:19:21 +0800502 if (n_elem)
Deepak Ukey76cb25b2018-09-11 14:18:03 +0530503 dma_unmap_sg(pm8001_ha->dev, t->scatter, t->num_scatter,
jack wangdbf9bfe2009-10-14 16:19:21 +0800504 t->data_dir);
505out_done:
506 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
507 return rc;
508}
509
510/**
511 * pm8001_queue_command - register for upper layer used, all IO commands sent
512 * to HBA are from this interface.
513 * @task: the task to be execute.
jack wangdbf9bfe2009-10-14 16:19:21 +0800514 * @gfp_flags: gfp_flags
515 */
Christoph Hellwig79855d12014-11-05 10:36:28 +0100516int pm8001_queue_command(struct sas_task *task, gfp_t gfp_flags)
jack wangdbf9bfe2009-10-14 16:19:21 +0800517{
Christoph Hellwig79855d12014-11-05 10:36:28 +0100518 return pm8001_task_exec(task, gfp_flags, 0, NULL);
jack wangdbf9bfe2009-10-14 16:19:21 +0800519}
520
jack wangdbf9bfe2009-10-14 16:19:21 +0800521/**
522 * pm8001_ccb_task_free - free the sg for ssp and smp command, free the ccb.
523 * @pm8001_ha: our hba card information
524 * @ccb: the ccb which attached to ssp task
525 * @task: the task to be free.
526 * @ccb_idx: ccb index.
527 */
528void pm8001_ccb_task_free(struct pm8001_hba_info *pm8001_ha,
529 struct sas_task *task, struct pm8001_ccb_info *ccb, u32 ccb_idx)
530{
Changyuan Lyu8ceddda2021-11-15 13:57:49 -0800531 struct ata_queued_cmd *qc;
532 struct pm8001_device *pm8001_dev;
533
jack wangdbf9bfe2009-10-14 16:19:21 +0800534 if (!ccb->task)
535 return;
536 if (!sas_protocol_ata(task->task_proto))
537 if (ccb->n_elem)
538 dma_unmap_sg(pm8001_ha->dev, task->scatter,
539 task->num_scatter, task->data_dir);
540
541 switch (task->task_proto) {
542 case SAS_PROTOCOL_SMP:
543 dma_unmap_sg(pm8001_ha->dev, &task->smp_task.smp_resp, 1,
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +0200544 DMA_FROM_DEVICE);
jack wangdbf9bfe2009-10-14 16:19:21 +0800545 dma_unmap_sg(pm8001_ha->dev, &task->smp_task.smp_req, 1,
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +0200546 DMA_TO_DEVICE);
jack wangdbf9bfe2009-10-14 16:19:21 +0800547 break;
548
549 case SAS_PROTOCOL_SATA:
550 case SAS_PROTOCOL_STP:
551 case SAS_PROTOCOL_SSP:
552 default:
553 /* do nothing */
554 break;
555 }
Changyuan Lyu8ceddda2021-11-15 13:57:49 -0800556
557 if (sas_protocol_ata(task->task_proto)) {
558 // For SCSI/ATA commands uldd_task points to ata_queued_cmd
559 qc = task->uldd_task;
560 pm8001_dev = ccb->device;
561 trace_pm80xx_request_complete(pm8001_ha->id,
562 pm8001_dev ? pm8001_dev->attached_phy : PM8001_MAX_PHYS,
563 ccb_idx, 0 /* ctlr_opcode not known */,
564 qc ? qc->tf.command : 0, // ata opcode
565 pm8001_dev ? atomic_read(&pm8001_dev->running_req) : -1);
566 }
567
jack wangdbf9bfe2009-10-14 16:19:21 +0800568 task->lldd_task = NULL;
569 ccb->task = NULL;
570 ccb->ccb_tag = 0xFFFFFFFF;
Mark Salyzyn5954d732012-01-17 11:52:24 -0500571 ccb->open_retry = 0;
Tomas Henzlef300542014-07-09 17:20:40 +0530572 pm8001_tag_free(pm8001_ha, ccb_idx);
jack wangdbf9bfe2009-10-14 16:19:21 +0800573}
574
Randy Dunlapbb6beab2021-07-08 09:57:23 -0700575/**
576 * pm8001_alloc_dev - find a empty pm8001_device
577 * @pm8001_ha: our hba card information
578 */
Baoyou Xie7efa59e2016-09-23 21:54:22 +0800579static struct pm8001_device *pm8001_alloc_dev(struct pm8001_hba_info *pm8001_ha)
jack wangdbf9bfe2009-10-14 16:19:21 +0800580{
581 u32 dev;
582 for (dev = 0; dev < PM8001_MAX_DEVICES; dev++) {
James Bottomleyaa9f8322013-05-07 14:44:06 -0700583 if (pm8001_ha->devices[dev].dev_type == SAS_PHY_UNUSED) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800584 pm8001_ha->devices[dev].id = dev;
585 return &pm8001_ha->devices[dev];
586 }
587 }
588 if (dev == PM8001_MAX_DEVICES) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800589 pm8001_dbg(pm8001_ha, FAIL,
590 "max support %d devices, ignore ..\n",
591 PM8001_MAX_DEVICES);
jack wangdbf9bfe2009-10-14 16:19:21 +0800592 }
593 return NULL;
594}
Sakthivel Kc6b9ef52013-03-19 18:08:08 +0530595/**
596 * pm8001_find_dev - find a matching pm8001_device
597 * @pm8001_ha: our hba card information
Lee Jonesa0cf5ce2020-07-21 17:41:18 +0100598 * @device_id: device ID to match against
Sakthivel Kc6b9ef52013-03-19 18:08:08 +0530599 */
600struct pm8001_device *pm8001_find_dev(struct pm8001_hba_info *pm8001_ha,
601 u32 device_id)
602{
603 u32 dev;
604 for (dev = 0; dev < PM8001_MAX_DEVICES; dev++) {
605 if (pm8001_ha->devices[dev].device_id == device_id)
606 return &pm8001_ha->devices[dev];
607 }
608 if (dev == PM8001_MAX_DEVICES) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800609 pm8001_dbg(pm8001_ha, FAIL, "NO MATCHING DEVICE FOUND !!!\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +0530610 }
611 return NULL;
612}
jack wangdbf9bfe2009-10-14 16:19:21 +0800613
Ruksar Devadi4f5deeb2021-04-15 16:03:50 +0530614void pm8001_free_dev(struct pm8001_device *pm8001_dev)
jack wangdbf9bfe2009-10-14 16:19:21 +0800615{
616 u32 id = pm8001_dev->id;
617 memset(pm8001_dev, 0, sizeof(*pm8001_dev));
618 pm8001_dev->id = id;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700619 pm8001_dev->dev_type = SAS_PHY_UNUSED;
jack wangdbf9bfe2009-10-14 16:19:21 +0800620 pm8001_dev->device_id = PM8001_MAX_DEVICES;
621 pm8001_dev->sas_device = NULL;
622}
623
624/**
jack_wang97ee2082009-11-05 22:33:51 +0800625 * pm8001_dev_found_notify - libsas notify a device is found.
626 * @dev: the device structure which sas layer used.
627 *
628 * when libsas find a sas domain device, it should tell the LLDD that
629 * device is found, and then LLDD register this device to HBA firmware
630 * by the command "OPC_INB_REG_DEV", after that the HBA will assign a
631 * device ID(according to device's sas address) and returned it to LLDD. From
jack wangdbf9bfe2009-10-14 16:19:21 +0800632 * now on, we communicate with HBA FW with the device ID which HBA assigned
Daniel Mack3ad2f3fb2010-02-03 08:01:28 +0800633 * rather than sas address. it is the necessary step for our HBA but it is
jack wangdbf9bfe2009-10-14 16:19:21 +0800634 * the optional for other HBA driver.
jack wangdbf9bfe2009-10-14 16:19:21 +0800635 */
636static int pm8001_dev_found_notify(struct domain_device *dev)
637{
638 unsigned long flags = 0;
639 int res = 0;
640 struct pm8001_hba_info *pm8001_ha = NULL;
641 struct domain_device *parent_dev = dev->parent;
642 struct pm8001_device *pm8001_device;
643 DECLARE_COMPLETION_ONSTACK(completion);
644 u32 flag = 0;
645 pm8001_ha = pm8001_find_ha_by_dev(dev);
646 spin_lock_irqsave(&pm8001_ha->lock, flags);
647
648 pm8001_device = pm8001_alloc_dev(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800649 if (!pm8001_device) {
650 res = -1;
651 goto found_out;
652 }
jack wangf01f4e62009-12-07 17:22:55 +0800653 pm8001_device->sas_device = dev;
jack wangdbf9bfe2009-10-14 16:19:21 +0800654 dev->lldd_dev = pm8001_device;
655 pm8001_device->dev_type = dev->dev_type;
656 pm8001_device->dcompletion = &completion;
John Garry924a3542019-06-10 20:41:41 +0800657 if (parent_dev && dev_is_expander(parent_dev->dev_type)) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800658 int phy_id;
659 struct ex_phy *phy;
660 for (phy_id = 0; phy_id < parent_dev->ex_dev.num_phys;
661 phy_id++) {
662 phy = &parent_dev->ex_dev.ex_phy[phy_id];
663 if (SAS_ADDR(phy->attached_sas_addr)
664 == SAS_ADDR(dev->sas_addr)) {
665 pm8001_device->attached_phy = phy_id;
666 break;
667 }
668 }
669 if (phy_id == parent_dev->ex_dev.num_phys) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800670 pm8001_dbg(pm8001_ha, FAIL,
671 "Error: no attached dev:%016llx at ex:%016llx.\n",
672 SAS_ADDR(dev->sas_addr),
673 SAS_ADDR(parent_dev->sas_addr));
jack wangdbf9bfe2009-10-14 16:19:21 +0800674 res = -1;
675 }
676 } else {
James Bottomleyaa9f8322013-05-07 14:44:06 -0700677 if (dev->dev_type == SAS_SATA_DEV) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800678 pm8001_device->attached_phy =
679 dev->rphy->identify.phy_identifier;
Julia Lawall251f24e2018-12-30 16:53:13 +0100680 flag = 1; /* directly sata */
jack wangdbf9bfe2009-10-14 16:19:21 +0800681 }
682 } /*register this device to HBA*/
Joe Perches1b5d2792020-11-20 15:16:09 -0800683 pm8001_dbg(pm8001_ha, DISC, "Found device\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800684 PM8001_CHIP_DISP->reg_dev_req(pm8001_ha, pm8001_device, flag);
685 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
686 wait_for_completion(&completion);
James Bottomleyaa9f8322013-05-07 14:44:06 -0700687 if (dev->dev_type == SAS_END_DEVICE)
jack wangdbf9bfe2009-10-14 16:19:21 +0800688 msleep(50);
Mark Salyzyn5c4fb762012-01-17 12:56:45 -0500689 pm8001_ha->flags = PM8001F_RUN_TIME;
jack wangdbf9bfe2009-10-14 16:19:21 +0800690 return 0;
691found_out:
692 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
693 return res;
694}
695
696int pm8001_dev_found(struct domain_device *dev)
697{
698 return pm8001_dev_found_notify(dev);
699}
700
Sakthivel Kc6b9ef52013-03-19 18:08:08 +0530701void pm8001_task_done(struct sas_task *task)
jack wangdbf9bfe2009-10-14 16:19:21 +0800702{
Igor Pylypivd712d3f2021-07-07 11:59:45 -0700703 del_timer(&task->slow_task->timer);
Dan Williamsf0bf7502012-06-21 23:36:30 -0700704 complete(&task->slow_task->completion);
jack wangdbf9bfe2009-10-14 16:19:21 +0800705}
706
Kees Cook77570ee2017-08-22 16:05:14 -0700707static void pm8001_tmf_timedout(struct timer_list *t)
jack wangdbf9bfe2009-10-14 16:19:21 +0800708{
Kees Cook77570ee2017-08-22 16:05:14 -0700709 struct sas_task_slow *slow = from_timer(slow, t, timer);
710 struct sas_task *task = slow->task;
Igor Pylypivd712d3f2021-07-07 11:59:45 -0700711 unsigned long flags;
jack wangdbf9bfe2009-10-14 16:19:21 +0800712
Igor Pylypivd712d3f2021-07-07 11:59:45 -0700713 spin_lock_irqsave(&task->task_state_lock, flags);
714 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
715 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
716 complete(&task->slow_task->completion);
717 }
718 spin_unlock_irqrestore(&task->task_state_lock, flags);
jack wangdbf9bfe2009-10-14 16:19:21 +0800719}
720
721#define PM8001_TASK_TIMEOUT 20
722/**
jack_wang97ee2082009-11-05 22:33:51 +0800723 * pm8001_exec_internal_tmf_task - execute some task management commands.
jack wangdbf9bfe2009-10-14 16:19:21 +0800724 * @dev: the wanted device.
725 * @tmf: which task management wanted to be take.
726 * @para_len: para_len.
727 * @parameter: ssp task parameter.
jack_wang97ee2082009-11-05 22:33:51 +0800728 *
729 * when errors or exception happened, we may want to do something, for example
Randy Dunlapbb6beab2021-07-08 09:57:23 -0700730 * abort the issued task which result in this exception, it is done by calling
jack_wang97ee2082009-11-05 22:33:51 +0800731 * this function, note it is also with the task execute interface.
jack wangdbf9bfe2009-10-14 16:19:21 +0800732 */
733static int pm8001_exec_internal_tmf_task(struct domain_device *dev,
734 void *parameter, u32 para_len, struct pm8001_tmf_task *tmf)
735{
736 int res, retry;
737 struct sas_task *task = NULL;
738 struct pm8001_hba_info *pm8001_ha = pm8001_find_ha_by_dev(dev);
Anand Kumar Santhaname912457b2013-09-17 16:58:10 +0530739 struct pm8001_device *pm8001_dev = dev->lldd_dev;
740 DECLARE_COMPLETION_ONSTACK(completion_setstate);
jack wangdbf9bfe2009-10-14 16:19:21 +0800741
742 for (retry = 0; retry < 3; retry++) {
Dan Williamsf0bf7502012-06-21 23:36:30 -0700743 task = sas_alloc_slow_task(GFP_KERNEL);
jack wangdbf9bfe2009-10-14 16:19:21 +0800744 if (!task)
745 return -ENOMEM;
746
747 task->dev = dev;
748 task->task_proto = dev->tproto;
749 memcpy(&task->ssp_task, parameter, para_len);
750 task->task_done = pm8001_task_done;
Kees Cook841b86f2017-10-23 09:40:42 +0200751 task->slow_task->timer.function = pm8001_tmf_timedout;
Dan Williamsf0bf7502012-06-21 23:36:30 -0700752 task->slow_task->timer.expires = jiffies + PM8001_TASK_TIMEOUT*HZ;
753 add_timer(&task->slow_task->timer);
jack wangdbf9bfe2009-10-14 16:19:21 +0800754
Christoph Hellwig79855d12014-11-05 10:36:28 +0100755 res = pm8001_task_exec(task, GFP_KERNEL, 1, tmf);
jack wangdbf9bfe2009-10-14 16:19:21 +0800756
757 if (res) {
Dan Williamsf0bf7502012-06-21 23:36:30 -0700758 del_timer(&task->slow_task->timer);
Joe Perches1b5d2792020-11-20 15:16:09 -0800759 pm8001_dbg(pm8001_ha, FAIL, "Executing internal task failed\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800760 goto ex_err;
761 }
Dan Williamsf0bf7502012-06-21 23:36:30 -0700762 wait_for_completion(&task->slow_task->completion);
Anand Kumar Santhaname912457b2013-09-17 16:58:10 +0530763 if (pm8001_ha->chip_id != chip_8001) {
764 pm8001_dev->setds_completion = &completion_setstate;
Colin Ian King9e2a07e2019-03-17 18:15:32 +0000765 PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
Igor Pylypiv9ec3d4c2021-03-04 22:09:08 -0800766 pm8001_dev, DS_OPERATIONAL);
Anand Kumar Santhaname912457b2013-09-17 16:58:10 +0530767 wait_for_completion(&completion_setstate);
768 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800769 res = -TMF_RESP_FUNC_FAILED;
770 /* Even TMF timed out, return direct. */
Igor Pylypivd712d3f2021-07-07 11:59:45 -0700771 if (task->task_state_flags & SAS_TASK_STATE_ABORTED) {
John Garry61f162a2022-01-27 21:12:51 +0800772 struct pm8001_ccb_info *ccb = task->lldd_task;
773
Igor Pylypivd712d3f2021-07-07 11:59:45 -0700774 pm8001_dbg(pm8001_ha, FAIL, "TMF task[%x]timeout.\n",
775 tmf->tmf);
John Garry61f162a2022-01-27 21:12:51 +0800776
777 if (ccb)
778 ccb->task = NULL;
Igor Pylypivd712d3f2021-07-07 11:59:45 -0700779 goto ex_err;
jack wangdbf9bfe2009-10-14 16:19:21 +0800780 }
781
782 if (task->task_status.resp == SAS_TASK_COMPLETE &&
Bart Van Assched377f412021-05-23 19:54:55 -0700783 task->task_status.stat == SAS_SAM_STAT_GOOD) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800784 res = TMF_RESP_FUNC_COMPLETE;
785 break;
786 }
787
788 if (task->task_status.resp == SAS_TASK_COMPLETE &&
789 task->task_status.stat == SAS_DATA_UNDERRUN) {
790 /* no error, but return the number of bytes of
791 * underrun */
792 res = task->task_status.residual;
793 break;
794 }
795
796 if (task->task_status.resp == SAS_TASK_COMPLETE &&
797 task->task_status.stat == SAS_DATA_OVERRUN) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800798 pm8001_dbg(pm8001_ha, FAIL, "Blocked task error.\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800799 res = -EMSGSIZE;
800 break;
801 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -0800802 pm8001_dbg(pm8001_ha, EH,
803 " Task to dev %016llx response:0x%x status 0x%x\n",
804 SAS_ADDR(dev->sas_addr),
805 task->task_status.resp,
806 task->task_status.stat);
Dan Williams4fcf8122011-07-29 17:26:39 -0700807 sas_free_task(task);
jack wangdbf9bfe2009-10-14 16:19:21 +0800808 task = NULL;
809 }
810 }
811ex_err:
812 BUG_ON(retry == 3 && task != NULL);
Dan Williams4fcf8122011-07-29 17:26:39 -0700813 sas_free_task(task);
jack wangdbf9bfe2009-10-14 16:19:21 +0800814 return res;
815}
816
817static int
818pm8001_exec_internal_task_abort(struct pm8001_hba_info *pm8001_ha,
819 struct pm8001_device *pm8001_dev, struct domain_device *dev, u32 flag,
820 u32 task_tag)
821{
822 int res, retry;
jack_wang97ee2082009-11-05 22:33:51 +0800823 u32 ccb_tag;
jack wangdbf9bfe2009-10-14 16:19:21 +0800824 struct pm8001_ccb_info *ccb;
825 struct sas_task *task = NULL;
826
827 for (retry = 0; retry < 3; retry++) {
Dan Williamsf0bf7502012-06-21 23:36:30 -0700828 task = sas_alloc_slow_task(GFP_KERNEL);
jack wangdbf9bfe2009-10-14 16:19:21 +0800829 if (!task)
830 return -ENOMEM;
831
832 task->dev = dev;
833 task->task_proto = dev->tproto;
834 task->task_done = pm8001_task_done;
Kees Cook841b86f2017-10-23 09:40:42 +0200835 task->slow_task->timer.function = pm8001_tmf_timedout;
Dan Williamsf0bf7502012-06-21 23:36:30 -0700836 task->slow_task->timer.expires = jiffies + PM8001_TASK_TIMEOUT * HZ;
837 add_timer(&task->slow_task->timer);
jack wangdbf9bfe2009-10-14 16:19:21 +0800838
jack_wang97ee2082009-11-05 22:33:51 +0800839 res = pm8001_tag_alloc(pm8001_ha, &ccb_tag);
840 if (res)
Dinghao Liuea403fd2020-08-23 17:14:53 +0800841 goto ex_err;
jack wangdbf9bfe2009-10-14 16:19:21 +0800842 ccb = &pm8001_ha->ccb_info[ccb_tag];
843 ccb->device = pm8001_dev;
844 ccb->ccb_tag = ccb_tag;
845 ccb->task = task;
Viswas G3b700e32015-08-11 15:06:28 +0530846 ccb->n_elem = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800847
848 res = PM8001_CHIP_DISP->task_abort(pm8001_ha,
849 pm8001_dev, flag, task_tag, ccb_tag);
850
851 if (res) {
Dan Williamsf0bf7502012-06-21 23:36:30 -0700852 del_timer(&task->slow_task->timer);
Joe Perches1b5d2792020-11-20 15:16:09 -0800853 pm8001_dbg(pm8001_ha, FAIL, "Executing internal task failed\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800854 goto ex_err;
855 }
Dan Williamsf0bf7502012-06-21 23:36:30 -0700856 wait_for_completion(&task->slow_task->completion);
jack wangdbf9bfe2009-10-14 16:19:21 +0800857 res = TMF_RESP_FUNC_FAILED;
858 /* Even TMF timed out, return direct. */
Igor Pylypivd712d3f2021-07-07 11:59:45 -0700859 if (task->task_state_flags & SAS_TASK_STATE_ABORTED) {
860 pm8001_dbg(pm8001_ha, FAIL, "TMF task timeout.\n");
861 goto ex_err;
jack wangdbf9bfe2009-10-14 16:19:21 +0800862 }
863
864 if (task->task_status.resp == SAS_TASK_COMPLETE &&
Bart Van Assched377f412021-05-23 19:54:55 -0700865 task->task_status.stat == SAS_SAM_STAT_GOOD) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800866 res = TMF_RESP_FUNC_COMPLETE;
867 break;
868
869 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -0800870 pm8001_dbg(pm8001_ha, EH,
871 " Task to dev %016llx response: 0x%x status 0x%x\n",
872 SAS_ADDR(dev->sas_addr),
873 task->task_status.resp,
874 task->task_status.stat);
Dan Williams4fcf8122011-07-29 17:26:39 -0700875 sas_free_task(task);
jack wangdbf9bfe2009-10-14 16:19:21 +0800876 task = NULL;
877 }
878 }
879ex_err:
880 BUG_ON(retry == 3 && task != NULL);
Dan Williams4fcf8122011-07-29 17:26:39 -0700881 sas_free_task(task);
jack wangdbf9bfe2009-10-14 16:19:21 +0800882 return res;
883}
884
885/**
886 * pm8001_dev_gone_notify - see the comments for "pm8001_dev_found_notify"
887 * @dev: the device structure which sas layer used.
888 */
889static void pm8001_dev_gone_notify(struct domain_device *dev)
890{
891 unsigned long flags = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800892 struct pm8001_hba_info *pm8001_ha;
893 struct pm8001_device *pm8001_dev = dev->lldd_dev;
Dan Carpenter2471b892010-04-23 14:01:04 +0200894
jack wangdbf9bfe2009-10-14 16:19:21 +0800895 pm8001_ha = pm8001_find_ha_by_dev(dev);
896 spin_lock_irqsave(&pm8001_ha->lock, flags);
jack wangdbf9bfe2009-10-14 16:19:21 +0800897 if (pm8001_dev) {
Dan Carpenter2471b892010-04-23 14:01:04 +0200898 u32 device_id = pm8001_dev->device_id;
899
Joe Perches1b5d2792020-11-20 15:16:09 -0800900 pm8001_dbg(pm8001_ha, DISC, "found dev[%d:%x] is gone.\n",
901 pm8001_dev->device_id, pm8001_dev->dev_type);
Viswas G4a2efd42020-11-02 22:25:26 +0530902 if (atomic_read(&pm8001_dev->running_req)) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800903 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +0800904 pm8001_exec_internal_task_abort(pm8001_ha, pm8001_dev,
905 dev, 1, 0);
Viswas G4a2efd42020-11-02 22:25:26 +0530906 while (atomic_read(&pm8001_dev->running_req))
Deepak Ukey196ba662019-07-09 15:30:48 +0530907 msleep(20);
jack wangdbf9bfe2009-10-14 16:19:21 +0800908 spin_lock_irqsave(&pm8001_ha->lock, flags);
909 }
910 PM8001_CHIP_DISP->dereg_dev_req(pm8001_ha, device_id);
911 pm8001_free_dev(pm8001_dev);
912 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -0800913 pm8001_dbg(pm8001_ha, DISC, "Found dev has gone.\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800914 }
915 dev->lldd_dev = NULL;
916 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
917}
918
919void pm8001_dev_gone(struct domain_device *dev)
920{
921 pm8001_dev_gone_notify(dev);
922}
923
924static int pm8001_issue_ssp_tmf(struct domain_device *dev,
925 u8 *lun, struct pm8001_tmf_task *tmf)
926{
927 struct sas_ssp_task ssp_task;
928 if (!(dev->tproto & SAS_PROTOCOL_SSP))
929 return TMF_RESP_FUNC_ESUPP;
930
Lee Jones412b51f2020-11-02 10:25:43 +0000931 memcpy((u8 *)&ssp_task.LUN, lun, 8);
jack wangdbf9bfe2009-10-14 16:19:21 +0800932 return pm8001_exec_internal_tmf_task(dev, &ssp_task, sizeof(ssp_task),
933 tmf);
934}
935
Mark Salyzyn5954d732012-01-17 11:52:24 -0500936/* retry commands by ha, by task and/or by device */
937void pm8001_open_reject_retry(
938 struct pm8001_hba_info *pm8001_ha,
939 struct sas_task *task_to_close,
940 struct pm8001_device *device_to_close)
941{
942 int i;
943 unsigned long flags;
944
945 if (pm8001_ha == NULL)
946 return;
947
948 spin_lock_irqsave(&pm8001_ha->lock, flags);
949
950 for (i = 0; i < PM8001_MAX_CCB; i++) {
951 struct sas_task *task;
952 struct task_status_struct *ts;
953 struct pm8001_device *pm8001_dev;
954 unsigned long flags1;
955 u32 tag;
956 struct pm8001_ccb_info *ccb = &pm8001_ha->ccb_info[i];
957
958 pm8001_dev = ccb->device;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700959 if (!pm8001_dev || (pm8001_dev->dev_type == SAS_PHY_UNUSED))
Mark Salyzyn5954d732012-01-17 11:52:24 -0500960 continue;
961 if (!device_to_close) {
962 uintptr_t d = (uintptr_t)pm8001_dev
963 - (uintptr_t)&pm8001_ha->devices;
964 if (((d % sizeof(*pm8001_dev)) != 0)
965 || ((d / sizeof(*pm8001_dev)) >= PM8001_MAX_DEVICES))
966 continue;
967 } else if (pm8001_dev != device_to_close)
968 continue;
969 tag = ccb->ccb_tag;
970 if (!tag || (tag == 0xFFFFFFFF))
971 continue;
972 task = ccb->task;
973 if (!task || !task->task_done)
974 continue;
975 if (task_to_close && (task != task_to_close))
976 continue;
977 ts = &task->task_status;
978 ts->resp = SAS_TASK_COMPLETE;
979 /* Force the midlayer to retry */
980 ts->stat = SAS_OPEN_REJECT;
981 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
982 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +0530983 atomic_dec(&pm8001_dev->running_req);
Mark Salyzyn5954d732012-01-17 11:52:24 -0500984 spin_lock_irqsave(&task->task_state_lock, flags1);
985 task->task_state_flags &= ~SAS_TASK_STATE_PENDING;
986 task->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
987 task->task_state_flags |= SAS_TASK_STATE_DONE;
988 if (unlikely((task->task_state_flags
989 & SAS_TASK_STATE_ABORTED))) {
990 spin_unlock_irqrestore(&task->task_state_lock,
991 flags1);
992 pm8001_ccb_task_free(pm8001_ha, task, ccb, tag);
993 } else {
994 spin_unlock_irqrestore(&task->task_state_lock,
995 flags1);
996 pm8001_ccb_task_free(pm8001_ha, task, ccb, tag);
997 mb();/* in order to force CPU ordering */
998 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
999 task->task_done(task);
1000 spin_lock_irqsave(&pm8001_ha->lock, flags);
1001 }
1002 }
1003
1004 spin_unlock_irqrestore(&pm8001_ha->lock, flags);
1005}
1006
jack wangdbf9bfe2009-10-14 16:19:21 +08001007/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001008 * pm8001_I_T_nexus_reset() - reset the initiator/target connection
1009 * @dev: the device structure for the device to reset.
1010 *
1011 * Standard mandates link reset for ATA (type 0) and hard reset for
1012 * SSP (type 1), only for RECOVERY
1013 */
jack wangdbf9bfe2009-10-14 16:19:21 +08001014int pm8001_I_T_nexus_reset(struct domain_device *dev)
1015{
1016 int rc = TMF_RESP_FUNC_FAILED;
1017 struct pm8001_device *pm8001_dev;
1018 struct pm8001_hba_info *pm8001_ha;
1019 struct sas_phy *phy;
Dan Williamse7db8222012-06-21 23:30:58 -07001020
jack wangdbf9bfe2009-10-14 16:19:21 +08001021 if (!dev || !dev->lldd_dev)
Dan Williamse7db8222012-06-21 23:30:58 -07001022 return -ENODEV;
jack wangdbf9bfe2009-10-14 16:19:21 +08001023
1024 pm8001_dev = dev->lldd_dev;
1025 pm8001_ha = pm8001_find_ha_by_dev(dev);
Dan Williamsf41a0c42011-12-21 21:33:17 -08001026 phy = sas_get_local_phy(dev);
jack wangdbf9bfe2009-10-14 16:19:21 +08001027
1028 if (dev_is_sata(dev)) {
Dan Williamsf41a0c42011-12-21 21:33:17 -08001029 if (scsi_is_sas_phy_local(phy)) {
1030 rc = 0;
1031 goto out;
1032 }
jack wangdbf9bfe2009-10-14 16:19:21 +08001033 rc = sas_phy_reset(phy, 1);
Viswas G3a1ae962015-08-11 15:06:26 +05301034 if (rc) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001035 pm8001_dbg(pm8001_ha, EH,
1036 "phy reset failed for device %x\n"
1037 "with rc %d\n", pm8001_dev->device_id, rc);
Viswas G3a1ae962015-08-11 15:06:26 +05301038 rc = TMF_RESP_FUNC_FAILED;
1039 goto out;
1040 }
jack wangdbf9bfe2009-10-14 16:19:21 +08001041 msleep(2000);
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08001042 rc = pm8001_exec_internal_task_abort(pm8001_ha, pm8001_dev,
1043 dev, 1, 0);
Viswas G3a1ae962015-08-11 15:06:26 +05301044 if (rc) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001045 pm8001_dbg(pm8001_ha, EH, "task abort failed %x\n"
1046 "with rc %d\n", pm8001_dev->device_id, rc);
Viswas G3a1ae962015-08-11 15:06:26 +05301047 rc = TMF_RESP_FUNC_FAILED;
1048 }
Dan Williamsf41a0c42011-12-21 21:33:17 -08001049 } else {
1050 rc = sas_phy_reset(phy, 1);
1051 msleep(2000);
jack wangdbf9bfe2009-10-14 16:19:21 +08001052 }
Joe Perches1b5d2792020-11-20 15:16:09 -08001053 pm8001_dbg(pm8001_ha, EH, " for device[%x]:rc=%d\n",
1054 pm8001_dev->device_id, rc);
Dan Williamsf41a0c42011-12-21 21:33:17 -08001055 out:
1056 sas_put_local_phy(phy);
jack wangdbf9bfe2009-10-14 16:19:21 +08001057 return rc;
1058}
1059
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301060/*
1061* This function handle the IT_NEXUS_XXX event or completion
1062* status code for SSP/SATA/SMP I/O request.
1063*/
1064int pm8001_I_T_nexus_event_handler(struct domain_device *dev)
1065{
1066 int rc = TMF_RESP_FUNC_FAILED;
1067 struct pm8001_device *pm8001_dev;
1068 struct pm8001_hba_info *pm8001_ha;
1069 struct sas_phy *phy;
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301070
1071 if (!dev || !dev->lldd_dev)
1072 return -1;
1073
1074 pm8001_dev = dev->lldd_dev;
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301075 pm8001_ha = pm8001_find_ha_by_dev(dev);
1076
Joe Perches1b5d2792020-11-20 15:16:09 -08001077 pm8001_dbg(pm8001_ha, EH, "I_T_Nexus handler invoked !!\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301078
1079 phy = sas_get_local_phy(dev);
1080
1081 if (dev_is_sata(dev)) {
1082 DECLARE_COMPLETION_ONSTACK(completion_setstate);
1083 if (scsi_is_sas_phy_local(phy)) {
1084 rc = 0;
1085 goto out;
1086 }
1087 /* send internal ssp/sata/smp abort command to FW */
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08001088 rc = pm8001_exec_internal_task_abort(pm8001_ha, pm8001_dev,
1089 dev, 1, 0);
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301090 msleep(100);
1091
1092 /* deregister the target device */
1093 pm8001_dev_gone_notify(dev);
1094 msleep(200);
1095
1096 /*send phy reset to hard reset target */
1097 rc = sas_phy_reset(phy, 1);
1098 msleep(2000);
1099 pm8001_dev->setds_completion = &completion_setstate;
1100
1101 wait_for_completion(&completion_setstate);
1102 } else {
1103 /* send internal ssp/sata/smp abort command to FW */
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08001104 rc = pm8001_exec_internal_task_abort(pm8001_ha, pm8001_dev,
1105 dev, 1, 0);
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301106 msleep(100);
1107
1108 /* deregister the target device */
1109 pm8001_dev_gone_notify(dev);
1110 msleep(200);
1111
1112 /*send phy reset to hard reset target */
1113 rc = sas_phy_reset(phy, 1);
1114 msleep(2000);
1115 }
Joe Perches1b5d2792020-11-20 15:16:09 -08001116 pm8001_dbg(pm8001_ha, EH, " for device[%x]:rc=%d\n",
1117 pm8001_dev->device_id, rc);
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301118out:
1119 sas_put_local_phy(phy);
1120
1121 return rc;
1122}
jack wangdbf9bfe2009-10-14 16:19:21 +08001123/* mandatory SAM-3, the task reset the specified LUN*/
1124int pm8001_lu_reset(struct domain_device *dev, u8 *lun)
1125{
1126 int rc = TMF_RESP_FUNC_FAILED;
1127 struct pm8001_tmf_task tmf_task;
1128 struct pm8001_device *pm8001_dev = dev->lldd_dev;
1129 struct pm8001_hba_info *pm8001_ha = pm8001_find_ha_by_dev(dev);
Nikith Ganigarakoppal34a9b812013-10-30 16:13:22 +05301130 DECLARE_COMPLETION_ONSTACK(completion_setstate);
jack wangdbf9bfe2009-10-14 16:19:21 +08001131 if (dev_is_sata(dev)) {
Dan Williamsf41a0c42011-12-21 21:33:17 -08001132 struct sas_phy *phy = sas_get_local_phy(dev);
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08001133 rc = pm8001_exec_internal_task_abort(pm8001_ha, pm8001_dev,
1134 dev, 1, 0);
jack wangdbf9bfe2009-10-14 16:19:21 +08001135 rc = sas_phy_reset(phy, 1);
Dan Williamsf41a0c42011-12-21 21:33:17 -08001136 sas_put_local_phy(phy);
Nikith Ganigarakoppal34a9b812013-10-30 16:13:22 +05301137 pm8001_dev->setds_completion = &completion_setstate;
jack wangdbf9bfe2009-10-14 16:19:21 +08001138 rc = PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
Igor Pylypiv9ec3d4c2021-03-04 22:09:08 -08001139 pm8001_dev, DS_OPERATIONAL);
Nikith Ganigarakoppal34a9b812013-10-30 16:13:22 +05301140 wait_for_completion(&completion_setstate);
jack wangdbf9bfe2009-10-14 16:19:21 +08001141 } else {
1142 tmf_task.tmf = TMF_LU_RESET;
1143 rc = pm8001_issue_ssp_tmf(dev, lun, &tmf_task);
1144 }
1145 /* If failed, fall-through I_T_Nexus reset */
Joe Perches1b5d2792020-11-20 15:16:09 -08001146 pm8001_dbg(pm8001_ha, EH, "for device[%x]:rc=%d\n",
1147 pm8001_dev->device_id, rc);
jack wangdbf9bfe2009-10-14 16:19:21 +08001148 return rc;
1149}
1150
1151/* optional SAM-3 */
1152int pm8001_query_task(struct sas_task *task)
1153{
1154 u32 tag = 0xdeadbeef;
jack wangdbf9bfe2009-10-14 16:19:21 +08001155 struct scsi_lun lun;
1156 struct pm8001_tmf_task tmf_task;
1157 int rc = TMF_RESP_FUNC_FAILED;
1158 if (unlikely(!task || !task->lldd_task || !task->dev))
1159 return rc;
1160
1161 if (task->task_proto & SAS_PROTOCOL_SSP) {
1162 struct scsi_cmnd *cmnd = task->uldd_task;
1163 struct domain_device *dev = task->dev;
1164 struct pm8001_hba_info *pm8001_ha =
1165 pm8001_find_ha_by_dev(dev);
1166
1167 int_to_scsilun(cmnd->device->lun, &lun);
1168 rc = pm8001_find_tag(task, &tag);
1169 if (rc == 0) {
1170 rc = TMF_RESP_FUNC_FAILED;
1171 return rc;
1172 }
Joe Perches1b5d2792020-11-20 15:16:09 -08001173 pm8001_dbg(pm8001_ha, EH, "Query:[%16ph]\n", cmnd->cmnd);
jack wangdbf9bfe2009-10-14 16:19:21 +08001174 tmf_task.tmf = TMF_QUERY_TASK;
1175 tmf_task.tag_of_task_to_be_managed = tag;
1176
1177 rc = pm8001_issue_ssp_tmf(dev, lun.scsi_lun, &tmf_task);
1178 switch (rc) {
1179 /* The task is still in Lun, release it then */
1180 case TMF_RESP_FUNC_SUCC:
Joe Perches1b5d2792020-11-20 15:16:09 -08001181 pm8001_dbg(pm8001_ha, EH,
1182 "The task is still in Lun\n");
Mark Salyzyn6fbc7692011-09-26 07:57:36 -07001183 break;
jack wangdbf9bfe2009-10-14 16:19:21 +08001184 /* The task is not in Lun or failed, reset the phy */
1185 case TMF_RESP_FUNC_FAILED:
1186 case TMF_RESP_FUNC_COMPLETE:
Joe Perches1b5d2792020-11-20 15:16:09 -08001187 pm8001_dbg(pm8001_ha, EH,
1188 "The task is not in Lun or failed, reset the phy\n");
jack wangdbf9bfe2009-10-14 16:19:21 +08001189 break;
1190 }
1191 }
peter chang73706722019-11-14 15:39:02 +05301192 pr_err("pm80xx: rc= %d\n", rc);
jack wangdbf9bfe2009-10-14 16:19:21 +08001193 return rc;
1194}
1195
Weitao Hou32877942019-05-20 11:24:03 +08001196/* mandatory SAM-3, still need free task/ccb info, abort the specified task */
jack wangdbf9bfe2009-10-14 16:19:21 +08001197int pm8001_abort_task(struct sas_task *task)
1198{
1199 unsigned long flags;
Viswas G1db49902017-10-18 11:39:11 +05301200 u32 tag;
jack wangdbf9bfe2009-10-14 16:19:21 +08001201 struct domain_device *dev ;
Viswas G1db49902017-10-18 11:39:11 +05301202 struct pm8001_hba_info *pm8001_ha;
jack wangdbf9bfe2009-10-14 16:19:21 +08001203 struct scsi_lun lun;
1204 struct pm8001_device *pm8001_dev;
1205 struct pm8001_tmf_task tmf_task;
Viswas G869ddbd2017-10-18 11:39:13 +05301206 int rc = TMF_RESP_FUNC_FAILED, ret;
Ajish Koshyee05cb72021-12-28 16:47:53 +05301207 u32 phy_id, port_id;
Viswas G869ddbd2017-10-18 11:39:13 +05301208 struct sas_task_slow slow_task;
akshatzena961ea02021-01-09 18:08:43 +05301209
jack wangdbf9bfe2009-10-14 16:19:21 +08001210 if (unlikely(!task || !task->lldd_task || !task->dev))
Viswas G1db49902017-10-18 11:39:11 +05301211 return TMF_RESP_FUNC_FAILED;
akshatzena961ea02021-01-09 18:08:43 +05301212
Viswas G1db49902017-10-18 11:39:11 +05301213 dev = task->dev;
1214 pm8001_dev = dev->lldd_dev;
1215 pm8001_ha = pm8001_find_ha_by_dev(dev);
Viswas G869ddbd2017-10-18 11:39:13 +05301216 phy_id = pm8001_dev->attached_phy;
akshatzena961ea02021-01-09 18:08:43 +05301217
1218 if (PM8001_CHIP_DISP->fatal_errors(pm8001_ha)) {
1219 // If the controller is seeing fatal errors
1220 // abort task will not get a response from the controller
1221 return TMF_RESP_FUNC_FAILED;
1222 }
1223
peter chang51c1c5f62019-11-14 15:39:06 +05301224 ret = pm8001_find_tag(task, &tag);
1225 if (ret == 0) {
Joe Perches2ce6e202020-11-23 20:36:03 -08001226 pm8001_info(pm8001_ha, "no tag for task:%p\n", task);
Viswas G1db49902017-10-18 11:39:11 +05301227 return TMF_RESP_FUNC_FAILED;
1228 }
jack wangdbf9bfe2009-10-14 16:19:21 +08001229 spin_lock_irqsave(&task->task_state_lock, flags);
1230 if (task->task_state_flags & SAS_TASK_STATE_DONE) {
1231 spin_unlock_irqrestore(&task->task_state_lock, flags);
Viswas G1db49902017-10-18 11:39:11 +05301232 return TMF_RESP_FUNC_COMPLETE;
jack wangdbf9bfe2009-10-14 16:19:21 +08001233 }
Viswas G869ddbd2017-10-18 11:39:13 +05301234 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
1235 if (task->slow_task == NULL) {
1236 init_completion(&slow_task.completion);
1237 task->slow_task = &slow_task;
jack wangdbf9bfe2009-10-14 16:19:21 +08001238 }
1239 spin_unlock_irqrestore(&task->task_state_lock, flags);
1240 if (task->task_proto & SAS_PROTOCOL_SSP) {
1241 struct scsi_cmnd *cmnd = task->uldd_task;
jack wangdbf9bfe2009-10-14 16:19:21 +08001242 int_to_scsilun(cmnd->device->lun, &lun);
jack_wang97ee2082009-11-05 22:33:51 +08001243 tmf_task.tmf = TMF_ABORT_TASK;
jack wangdbf9bfe2009-10-14 16:19:21 +08001244 tmf_task.tag_of_task_to_be_managed = tag;
1245 rc = pm8001_issue_ssp_tmf(dev, lun.scsi_lun, &tmf_task);
jack_wang97ee2082009-11-05 22:33:51 +08001246 pm8001_exec_internal_task_abort(pm8001_ha, pm8001_dev,
jack wangdbf9bfe2009-10-14 16:19:21 +08001247 pm8001_dev->sas_device, 0, tag);
1248 } else if (task->task_proto & SAS_PROTOCOL_SATA ||
1249 task->task_proto & SAS_PROTOCOL_STP) {
Viswas G869ddbd2017-10-18 11:39:13 +05301250 if (pm8001_ha->chip_id == chip_8006) {
1251 DECLARE_COMPLETION_ONSTACK(completion_reset);
1252 DECLARE_COMPLETION_ONSTACK(completion);
1253 struct pm8001_phy *phy = pm8001_ha->phy + phy_id;
Ajish Koshyee05cb72021-12-28 16:47:53 +05301254 port_id = phy->port->port_id;
Viswas G869ddbd2017-10-18 11:39:13 +05301255
1256 /* 1. Set Device state as Recovery */
1257 pm8001_dev->setds_completion = &completion;
1258 PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
Igor Pylypiv9ec3d4c2021-03-04 22:09:08 -08001259 pm8001_dev, DS_IN_RECOVERY);
Viswas G869ddbd2017-10-18 11:39:13 +05301260 wait_for_completion(&completion);
1261
1262 /* 2. Send Phy Control Hard Reset */
1263 reinit_completion(&completion);
peter chang51c1c5f62019-11-14 15:39:06 +05301264 phy->port_reset_status = PORT_RESET_TMO;
Viswas G869ddbd2017-10-18 11:39:13 +05301265 phy->reset_success = false;
1266 phy->enable_completion = &completion;
1267 phy->reset_completion = &completion_reset;
1268 ret = PM8001_CHIP_DISP->phy_ctl_req(pm8001_ha, phy_id,
1269 PHY_HARD_RESET);
peter chang51c1c5f62019-11-14 15:39:06 +05301270 if (ret) {
1271 phy->enable_completion = NULL;
1272 phy->reset_completion = NULL;
Viswas G869ddbd2017-10-18 11:39:13 +05301273 goto out;
peter chang51c1c5f62019-11-14 15:39:06 +05301274 }
1275
1276 /* In the case of the reset timeout/fail we still
1277 * abort the command at the firmware. The assumption
1278 * here is that the drive is off doing something so
1279 * that it's not processing requests, and we want to
1280 * avoid getting a completion for this and either
1281 * leaking the task in libsas or losing the race and
1282 * getting a double free.
1283 */
Joe Perches1b5d2792020-11-20 15:16:09 -08001284 pm8001_dbg(pm8001_ha, MSG,
1285 "Waiting for local phy ctl\n");
peter chang51c1c5f62019-11-14 15:39:06 +05301286 ret = wait_for_completion_timeout(&completion,
1287 PM8001_TASK_TIMEOUT * HZ);
1288 if (!ret || !phy->reset_success) {
1289 phy->enable_completion = NULL;
1290 phy->reset_completion = NULL;
1291 } else {
1292 /* 3. Wait for Port Reset complete or
1293 * Port reset TMO
1294 */
Joe Perches1b5d2792020-11-20 15:16:09 -08001295 pm8001_dbg(pm8001_ha, MSG,
1296 "Waiting for Port reset\n");
peter chang51c1c5f62019-11-14 15:39:06 +05301297 ret = wait_for_completion_timeout(
1298 &completion_reset,
1299 PM8001_TASK_TIMEOUT * HZ);
1300 if (!ret)
1301 phy->reset_completion = NULL;
1302 WARN_ON(phy->port_reset_status ==
1303 PORT_RESET_TMO);
1304 if (phy->port_reset_status == PORT_RESET_TMO) {
1305 pm8001_dev_gone_notify(dev);
Ajish Koshyee05cb72021-12-28 16:47:53 +05301306 PM8001_CHIP_DISP->hw_event_ack_req(
1307 pm8001_ha, 0,
1308 0x07, /*HW_EVENT_PHY_DOWN ack*/
1309 port_id, phy_id, 0, 0);
peter chang51c1c5f62019-11-14 15:39:06 +05301310 goto out;
1311 }
Deepak Ukey196ba662019-07-09 15:30:48 +05301312 }
Viswas G869ddbd2017-10-18 11:39:13 +05301313
1314 /*
1315 * 4. SATA Abort ALL
1316 * we wait for the task to be aborted so that the task
1317 * is removed from the ccb. on success the caller is
1318 * going to free the task.
1319 */
1320 ret = pm8001_exec_internal_task_abort(pm8001_ha,
1321 pm8001_dev, pm8001_dev->sas_device, 1, tag);
1322 if (ret)
1323 goto out;
1324 ret = wait_for_completion_timeout(
1325 &task->slow_task->completion,
1326 PM8001_TASK_TIMEOUT * HZ);
1327 if (!ret)
1328 goto out;
1329
1330 /* 5. Set Device State as Operational */
1331 reinit_completion(&completion);
1332 pm8001_dev->setds_completion = &completion;
1333 PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
Igor Pylypiv9ec3d4c2021-03-04 22:09:08 -08001334 pm8001_dev, DS_OPERATIONAL);
Viswas G869ddbd2017-10-18 11:39:13 +05301335 wait_for_completion(&completion);
1336 } else {
1337 rc = pm8001_exec_internal_task_abort(pm8001_ha,
1338 pm8001_dev, pm8001_dev->sas_device, 0, tag);
jack wangdbf9bfe2009-10-14 16:19:21 +08001339 }
Viswas G869ddbd2017-10-18 11:39:13 +05301340 rc = TMF_RESP_FUNC_COMPLETE;
jack wangdbf9bfe2009-10-14 16:19:21 +08001341 } else if (task->task_proto & SAS_PROTOCOL_SMP) {
1342 /* SMP */
jack wangdbf9bfe2009-10-14 16:19:21 +08001343 rc = pm8001_exec_internal_task_abort(pm8001_ha, pm8001_dev,
1344 pm8001_dev->sas_device, 0, tag);
1345
1346 }
1347out:
Viswas G869ddbd2017-10-18 11:39:13 +05301348 spin_lock_irqsave(&task->task_state_lock, flags);
1349 if (task->slow_task == &slow_task)
1350 task->slow_task = NULL;
1351 spin_unlock_irqrestore(&task->task_state_lock, flags);
jack wangdbf9bfe2009-10-14 16:19:21 +08001352 if (rc != TMF_RESP_FUNC_COMPLETE)
Joe Perches2ce6e202020-11-23 20:36:03 -08001353 pm8001_info(pm8001_ha, "rc= %d\n", rc);
jack wangdbf9bfe2009-10-14 16:19:21 +08001354 return rc;
1355}
1356
1357int pm8001_abort_task_set(struct domain_device *dev, u8 *lun)
1358{
jack wangdbf9bfe2009-10-14 16:19:21 +08001359 struct pm8001_tmf_task tmf_task;
1360
1361 tmf_task.tmf = TMF_ABORT_TASK_SET;
Colin Ian Kingafcd6092019-07-31 23:22:14 +01001362 return pm8001_issue_ssp_tmf(dev, lun, &tmf_task);
jack wangdbf9bfe2009-10-14 16:19:21 +08001363}
1364
1365int pm8001_clear_aca(struct domain_device *dev, u8 *lun)
1366{
jack wangdbf9bfe2009-10-14 16:19:21 +08001367 struct pm8001_tmf_task tmf_task;
1368
1369 tmf_task.tmf = TMF_CLEAR_ACA;
Colin Ian Kingafcd6092019-07-31 23:22:14 +01001370 return pm8001_issue_ssp_tmf(dev, lun, &tmf_task);
jack wangdbf9bfe2009-10-14 16:19:21 +08001371}
1372
1373int pm8001_clear_task_set(struct domain_device *dev, u8 *lun)
1374{
jack wangdbf9bfe2009-10-14 16:19:21 +08001375 struct pm8001_tmf_task tmf_task;
1376 struct pm8001_device *pm8001_dev = dev->lldd_dev;
1377 struct pm8001_hba_info *pm8001_ha = pm8001_find_ha_by_dev(dev);
1378
Joe Perches1b5d2792020-11-20 15:16:09 -08001379 pm8001_dbg(pm8001_ha, EH, "I_T_L_Q clear task set[%x]\n",
1380 pm8001_dev->device_id);
jack wangdbf9bfe2009-10-14 16:19:21 +08001381 tmf_task.tmf = TMF_CLEAR_TASK_SET;
Colin Ian Kingafcd6092019-07-31 23:22:14 +01001382 return pm8001_issue_ssp_tmf(dev, lun, &tmf_task);
jack wangdbf9bfe2009-10-14 16:19:21 +08001383}
Ajish Koshy08d0a992021-09-06 22:34:01 +05301384
1385void pm8001_port_formed(struct asd_sas_phy *sas_phy)
1386{
1387 struct sas_ha_struct *sas_ha = sas_phy->ha;
1388 struct pm8001_hba_info *pm8001_ha = sas_ha->lldd_ha;
1389 struct pm8001_phy *phy = sas_phy->lldd_phy;
1390 struct asd_sas_port *sas_port = sas_phy->port;
1391 struct pm8001_port *port = phy->port;
1392
1393 if (!sas_port) {
1394 pm8001_dbg(pm8001_ha, FAIL, "Received null port\n");
1395 return;
1396 }
1397 sas_port->lldd_port = port;
1398}