Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / scsi / hisi_sas / hisi_sas_main.c
blob2d4dbed03ee36d2cd86efe34ac1174ce86f062fa
1 /*
2 * Copyright (c) 2015 Linaro Ltd.
3 * Copyright (c) 2015 Hisilicon Limited.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
12 #include "hisi_sas.h"
13 #define DRV_NAME "hisi_sas"
15 #define DEV_IS_GONE(dev) \
16 ((!dev) || (dev->dev_type == SAS_PHY_UNUSED))
18 static int hisi_sas_debug_issue_ssp_tmf(struct domain_device *device,
19 u8 *lun, struct hisi_sas_tmf_task *tmf);
20 static int
21 hisi_sas_internal_task_abort(struct hisi_hba *hisi_hba,
22 struct domain_device *device,
23 int abort_flag, int tag);
24 static int hisi_sas_softreset_ata_disk(struct domain_device *device);
25 static int hisi_sas_control_phy(struct asd_sas_phy *sas_phy, enum phy_func func,
26 void *funcdata);
28 u8 hisi_sas_get_ata_protocol(struct host_to_dev_fis *fis, int direction)
30 switch (fis->command) {
31 case ATA_CMD_FPDMA_WRITE:
32 case ATA_CMD_FPDMA_READ:
33 case ATA_CMD_FPDMA_RECV:
34 case ATA_CMD_FPDMA_SEND:
35 case ATA_CMD_NCQ_NON_DATA:
36 return HISI_SAS_SATA_PROTOCOL_FPDMA;
38 case ATA_CMD_DOWNLOAD_MICRO:
39 case ATA_CMD_ID_ATA:
40 case ATA_CMD_PMP_READ:
41 case ATA_CMD_READ_LOG_EXT:
42 case ATA_CMD_PIO_READ:
43 case ATA_CMD_PIO_READ_EXT:
44 case ATA_CMD_PMP_WRITE:
45 case ATA_CMD_WRITE_LOG_EXT:
46 case ATA_CMD_PIO_WRITE:
47 case ATA_CMD_PIO_WRITE_EXT:
48 return HISI_SAS_SATA_PROTOCOL_PIO;
50 case ATA_CMD_DSM:
51 case ATA_CMD_DOWNLOAD_MICRO_DMA:
52 case ATA_CMD_PMP_READ_DMA:
53 case ATA_CMD_PMP_WRITE_DMA:
54 case ATA_CMD_READ:
55 case ATA_CMD_READ_EXT:
56 case ATA_CMD_READ_LOG_DMA_EXT:
57 case ATA_CMD_READ_STREAM_DMA_EXT:
58 case ATA_CMD_TRUSTED_RCV_DMA:
59 case ATA_CMD_TRUSTED_SND_DMA:
60 case ATA_CMD_WRITE:
61 case ATA_CMD_WRITE_EXT:
62 case ATA_CMD_WRITE_FUA_EXT:
63 case ATA_CMD_WRITE_QUEUED:
64 case ATA_CMD_WRITE_LOG_DMA_EXT:
65 case ATA_CMD_WRITE_STREAM_DMA_EXT:
66 case ATA_CMD_ZAC_MGMT_IN:
67 return HISI_SAS_SATA_PROTOCOL_DMA;
69 case ATA_CMD_CHK_POWER:
70 case ATA_CMD_DEV_RESET:
71 case ATA_CMD_EDD:
72 case ATA_CMD_FLUSH:
73 case ATA_CMD_FLUSH_EXT:
74 case ATA_CMD_VERIFY:
75 case ATA_CMD_VERIFY_EXT:
76 case ATA_CMD_SET_FEATURES:
77 case ATA_CMD_STANDBY:
78 case ATA_CMD_STANDBYNOW1:
79 case ATA_CMD_ZAC_MGMT_OUT:
80 return HISI_SAS_SATA_PROTOCOL_NONDATA;
81 default:
83 if (fis->command == ATA_CMD_SET_MAX) {
84 switch (fis->features) {
85 case ATA_SET_MAX_PASSWD:
86 case ATA_SET_MAX_LOCK:
87 return HISI_SAS_SATA_PROTOCOL_PIO;
89 case ATA_SET_MAX_PASSWD_DMA:
90 case ATA_SET_MAX_UNLOCK_DMA:
91 return HISI_SAS_SATA_PROTOCOL_DMA;
93 default:
94 return HISI_SAS_SATA_PROTOCOL_NONDATA;
97 if (direction == DMA_NONE)
98 return HISI_SAS_SATA_PROTOCOL_NONDATA;
99 return HISI_SAS_SATA_PROTOCOL_PIO;
103 EXPORT_SYMBOL_GPL(hisi_sas_get_ata_protocol);
105 void hisi_sas_sata_done(struct sas_task *task,
106 struct hisi_sas_slot *slot)
108 struct task_status_struct *ts = &task->task_status;
109 struct ata_task_resp *resp = (struct ata_task_resp *)ts->buf;
110 struct hisi_sas_status_buffer *status_buf =
111 hisi_sas_status_buf_addr_mem(slot);
112 u8 *iu = &status_buf->iu[0];
113 struct dev_to_host_fis *d2h = (struct dev_to_host_fis *)iu;
115 resp->frame_len = sizeof(struct dev_to_host_fis);
116 memcpy(&resp->ending_fis[0], d2h, sizeof(struct dev_to_host_fis));
118 ts->buf_valid_size = sizeof(*resp);
120 EXPORT_SYMBOL_GPL(hisi_sas_sata_done);
122 int hisi_sas_get_ncq_tag(struct sas_task *task, u32 *tag)
124 struct ata_queued_cmd *qc = task->uldd_task;
126 if (qc) {
127 if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
128 qc->tf.command == ATA_CMD_FPDMA_READ) {
129 *tag = qc->tag;
130 return 1;
133 return 0;
135 EXPORT_SYMBOL_GPL(hisi_sas_get_ncq_tag);
137 static struct hisi_hba *dev_to_hisi_hba(struct domain_device *device)
139 return device->port->ha->lldd_ha;
142 struct hisi_sas_port *to_hisi_sas_port(struct asd_sas_port *sas_port)
144 return container_of(sas_port, struct hisi_sas_port, sas_port);
146 EXPORT_SYMBOL_GPL(to_hisi_sas_port);
148 void hisi_sas_stop_phys(struct hisi_hba *hisi_hba)
150 int phy_no;
152 for (phy_no = 0; phy_no < hisi_hba->n_phy; phy_no++)
153 hisi_hba->hw->phy_disable(hisi_hba, phy_no);
155 EXPORT_SYMBOL_GPL(hisi_sas_stop_phys);
157 static void hisi_sas_slot_index_clear(struct hisi_hba *hisi_hba, int slot_idx)
159 void *bitmap = hisi_hba->slot_index_tags;
161 clear_bit(slot_idx, bitmap);
164 static void hisi_sas_slot_index_free(struct hisi_hba *hisi_hba, int slot_idx)
166 hisi_sas_slot_index_clear(hisi_hba, slot_idx);
169 static void hisi_sas_slot_index_set(struct hisi_hba *hisi_hba, int slot_idx)
171 void *bitmap = hisi_hba->slot_index_tags;
173 set_bit(slot_idx, bitmap);
176 static int hisi_sas_slot_index_alloc(struct hisi_hba *hisi_hba, int *slot_idx)
178 unsigned int index;
179 void *bitmap = hisi_hba->slot_index_tags;
181 index = find_first_zero_bit(bitmap, hisi_hba->slot_index_count);
182 if (index >= hisi_hba->slot_index_count)
183 return -SAS_QUEUE_FULL;
184 hisi_sas_slot_index_set(hisi_hba, index);
185 *slot_idx = index;
186 return 0;
189 static void hisi_sas_slot_index_init(struct hisi_hba *hisi_hba)
191 int i;
193 for (i = 0; i < hisi_hba->slot_index_count; ++i)
194 hisi_sas_slot_index_clear(hisi_hba, i);
197 void hisi_sas_slot_task_free(struct hisi_hba *hisi_hba, struct sas_task *task,
198 struct hisi_sas_slot *slot)
201 if (task) {
202 struct device *dev = hisi_hba->dev;
203 struct domain_device *device = task->dev;
204 struct hisi_sas_device *sas_dev = device->lldd_dev;
206 if (!task->lldd_task)
207 return;
209 task->lldd_task = NULL;
211 if (!sas_protocol_ata(task->task_proto))
212 if (slot->n_elem)
213 dma_unmap_sg(dev, task->scatter,
214 task->num_scatter,
215 task->data_dir);
217 if (sas_dev)
218 atomic64_dec(&sas_dev->running_req);
221 if (slot->buf)
222 dma_pool_free(hisi_hba->buffer_pool, slot->buf, slot->buf_dma);
224 list_del_init(&slot->entry);
225 slot->buf = NULL;
226 slot->task = NULL;
227 slot->port = NULL;
228 hisi_sas_slot_index_free(hisi_hba, slot->idx);
230 /* slot memory is fully zeroed when it is reused */
232 EXPORT_SYMBOL_GPL(hisi_sas_slot_task_free);
234 static int hisi_sas_task_prep_smp(struct hisi_hba *hisi_hba,
235 struct hisi_sas_slot *slot)
237 return hisi_hba->hw->prep_smp(hisi_hba, slot);
240 static int hisi_sas_task_prep_ssp(struct hisi_hba *hisi_hba,
241 struct hisi_sas_slot *slot, int is_tmf,
242 struct hisi_sas_tmf_task *tmf)
244 return hisi_hba->hw->prep_ssp(hisi_hba, slot, is_tmf, tmf);
247 static int hisi_sas_task_prep_ata(struct hisi_hba *hisi_hba,
248 struct hisi_sas_slot *slot)
250 return hisi_hba->hw->prep_stp(hisi_hba, slot);
253 static int hisi_sas_task_prep_abort(struct hisi_hba *hisi_hba,
254 struct hisi_sas_slot *slot,
255 int device_id, int abort_flag, int tag_to_abort)
257 return hisi_hba->hw->prep_abort(hisi_hba, slot,
258 device_id, abort_flag, tag_to_abort);
262 * This function will issue an abort TMF regardless of whether the
263 * task is in the sdev or not. Then it will do the task complete
264 * cleanup and callbacks.
266 static void hisi_sas_slot_abort(struct work_struct *work)
268 struct hisi_sas_slot *abort_slot =
269 container_of(work, struct hisi_sas_slot, abort_slot);
270 struct sas_task *task = abort_slot->task;
271 struct hisi_hba *hisi_hba = dev_to_hisi_hba(task->dev);
272 struct scsi_cmnd *cmnd = task->uldd_task;
273 struct hisi_sas_tmf_task tmf_task;
274 struct scsi_lun lun;
275 struct device *dev = hisi_hba->dev;
276 int tag = abort_slot->idx;
277 unsigned long flags;
279 if (!(task->task_proto & SAS_PROTOCOL_SSP)) {
280 dev_err(dev, "cannot abort slot for non-ssp task\n");
281 goto out;
284 int_to_scsilun(cmnd->device->lun, &lun);
285 tmf_task.tmf = TMF_ABORT_TASK;
286 tmf_task.tag_of_task_to_be_managed = cpu_to_le16(tag);
288 hisi_sas_debug_issue_ssp_tmf(task->dev, lun.scsi_lun, &tmf_task);
289 out:
290 /* Do cleanup for this task */
291 spin_lock_irqsave(&hisi_hba->lock, flags);
292 hisi_sas_slot_task_free(hisi_hba, task, abort_slot);
293 spin_unlock_irqrestore(&hisi_hba->lock, flags);
294 if (task->task_done)
295 task->task_done(task);
298 static int hisi_sas_task_prep(struct sas_task *task, struct hisi_sas_dq
299 *dq, int is_tmf, struct hisi_sas_tmf_task *tmf,
300 int *pass)
302 struct hisi_hba *hisi_hba = dq->hisi_hba;
303 struct domain_device *device = task->dev;
304 struct hisi_sas_device *sas_dev = device->lldd_dev;
305 struct hisi_sas_port *port;
306 struct hisi_sas_slot *slot;
307 struct hisi_sas_cmd_hdr *cmd_hdr_base;
308 struct asd_sas_port *sas_port = device->port;
309 struct device *dev = hisi_hba->dev;
310 int dlvry_queue_slot, dlvry_queue, n_elem = 0, rc, slot_idx;
311 unsigned long flags;
313 if (!sas_port) {
314 struct task_status_struct *ts = &task->task_status;
316 ts->resp = SAS_TASK_UNDELIVERED;
317 ts->stat = SAS_PHY_DOWN;
319 * libsas will use dev->port, should
320 * not call task_done for sata
322 if (device->dev_type != SAS_SATA_DEV)
323 task->task_done(task);
324 return SAS_PHY_DOWN;
327 if (DEV_IS_GONE(sas_dev)) {
328 if (sas_dev)
329 dev_info(dev, "task prep: device %d not ready\n",
330 sas_dev->device_id);
331 else
332 dev_info(dev, "task prep: device %016llx not ready\n",
333 SAS_ADDR(device->sas_addr));
335 return SAS_PHY_DOWN;
338 port = to_hisi_sas_port(sas_port);
339 if (port && !port->port_attached) {
340 dev_info(dev, "task prep: %s port%d not attach device\n",
341 (dev_is_sata(device)) ?
342 "SATA/STP" : "SAS",
343 device->port->id);
345 return SAS_PHY_DOWN;
348 if (!sas_protocol_ata(task->task_proto)) {
349 if (task->num_scatter) {
350 n_elem = dma_map_sg(dev, task->scatter,
351 task->num_scatter, task->data_dir);
352 if (!n_elem) {
353 rc = -ENOMEM;
354 goto prep_out;
357 } else
358 n_elem = task->num_scatter;
360 spin_lock_irqsave(&hisi_hba->lock, flags);
361 if (hisi_hba->hw->slot_index_alloc)
362 rc = hisi_hba->hw->slot_index_alloc(hisi_hba, &slot_idx,
363 device);
364 else
365 rc = hisi_sas_slot_index_alloc(hisi_hba, &slot_idx);
366 if (rc) {
367 spin_unlock_irqrestore(&hisi_hba->lock, flags);
368 goto err_out;
370 spin_unlock_irqrestore(&hisi_hba->lock, flags);
372 rc = hisi_hba->hw->get_free_slot(hisi_hba, dq);
373 if (rc)
374 goto err_out_tag;
376 dlvry_queue = dq->id;
377 dlvry_queue_slot = dq->wr_point;
378 slot = &hisi_hba->slot_info[slot_idx];
379 memset(slot, 0, sizeof(struct hisi_sas_slot));
381 slot->idx = slot_idx;
382 slot->n_elem = n_elem;
383 slot->dlvry_queue = dlvry_queue;
384 slot->dlvry_queue_slot = dlvry_queue_slot;
385 cmd_hdr_base = hisi_hba->cmd_hdr[dlvry_queue];
386 slot->cmd_hdr = &cmd_hdr_base[dlvry_queue_slot];
387 slot->task = task;
388 slot->port = port;
389 task->lldd_task = slot;
390 INIT_WORK(&slot->abort_slot, hisi_sas_slot_abort);
392 slot->buf = dma_pool_alloc(hisi_hba->buffer_pool,
393 GFP_ATOMIC, &slot->buf_dma);
394 if (!slot->buf) {
395 rc = -ENOMEM;
396 goto err_out_slot_buf;
398 memset(slot->cmd_hdr, 0, sizeof(struct hisi_sas_cmd_hdr));
399 memset(hisi_sas_cmd_hdr_addr_mem(slot), 0, HISI_SAS_COMMAND_TABLE_SZ);
400 memset(hisi_sas_status_buf_addr_mem(slot), 0, HISI_SAS_STATUS_BUF_SZ);
402 switch (task->task_proto) {
403 case SAS_PROTOCOL_SMP:
404 rc = hisi_sas_task_prep_smp(hisi_hba, slot);
405 break;
406 case SAS_PROTOCOL_SSP:
407 rc = hisi_sas_task_prep_ssp(hisi_hba, slot, is_tmf, tmf);
408 break;
409 case SAS_PROTOCOL_SATA:
410 case SAS_PROTOCOL_STP:
411 case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP:
412 rc = hisi_sas_task_prep_ata(hisi_hba, slot);
413 break;
414 default:
415 dev_err(dev, "task prep: unknown/unsupported proto (0x%x)\n",
416 task->task_proto);
417 rc = -EINVAL;
418 break;
421 if (rc) {
422 dev_err(dev, "task prep: rc = 0x%x\n", rc);
423 goto err_out_buf;
426 spin_lock_irqsave(&hisi_hba->lock, flags);
427 list_add_tail(&slot->entry, &sas_dev->list);
428 spin_unlock_irqrestore(&hisi_hba->lock, flags);
429 spin_lock_irqsave(&task->task_state_lock, flags);
430 task->task_state_flags |= SAS_TASK_AT_INITIATOR;
431 spin_unlock_irqrestore(&task->task_state_lock, flags);
433 dq->slot_prep = slot;
435 atomic64_inc(&sas_dev->running_req);
436 ++(*pass);
438 return 0;
440 err_out_buf:
441 dma_pool_free(hisi_hba->buffer_pool, slot->buf,
442 slot->buf_dma);
443 err_out_slot_buf:
444 /* Nothing to be done */
445 err_out_tag:
446 spin_lock_irqsave(&hisi_hba->lock, flags);
447 hisi_sas_slot_index_free(hisi_hba, slot_idx);
448 spin_unlock_irqrestore(&hisi_hba->lock, flags);
449 err_out:
450 dev_err(dev, "task prep: failed[%d]!\n", rc);
451 if (!sas_protocol_ata(task->task_proto))
452 if (n_elem)
453 dma_unmap_sg(dev, task->scatter,
454 task->num_scatter,
455 task->data_dir);
456 prep_out:
457 return rc;
460 static int hisi_sas_task_exec(struct sas_task *task, gfp_t gfp_flags,
461 int is_tmf, struct hisi_sas_tmf_task *tmf)
463 u32 rc;
464 u32 pass = 0;
465 unsigned long flags;
466 struct hisi_hba *hisi_hba = dev_to_hisi_hba(task->dev);
467 struct device *dev = hisi_hba->dev;
468 struct domain_device *device = task->dev;
469 struct hisi_sas_device *sas_dev = device->lldd_dev;
470 struct hisi_sas_dq *dq = sas_dev->dq;
472 if (unlikely(test_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags)))
473 return -EINVAL;
475 /* protect task_prep and start_delivery sequence */
476 spin_lock_irqsave(&dq->lock, flags);
477 rc = hisi_sas_task_prep(task, dq, is_tmf, tmf, &pass);
478 if (rc)
479 dev_err(dev, "task exec: failed[%d]!\n", rc);
481 if (likely(pass))
482 hisi_hba->hw->start_delivery(dq);
483 spin_unlock_irqrestore(&dq->lock, flags);
485 return rc;
488 static void hisi_sas_bytes_dmaed(struct hisi_hba *hisi_hba, int phy_no)
490 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no];
491 struct asd_sas_phy *sas_phy = &phy->sas_phy;
492 struct sas_ha_struct *sas_ha;
494 if (!phy->phy_attached)
495 return;
497 sas_ha = &hisi_hba->sha;
498 sas_ha->notify_phy_event(sas_phy, PHYE_OOB_DONE);
500 if (sas_phy->phy) {
501 struct sas_phy *sphy = sas_phy->phy;
503 sphy->negotiated_linkrate = sas_phy->linkrate;
504 sphy->minimum_linkrate_hw = SAS_LINK_RATE_1_5_GBPS;
505 sphy->maximum_linkrate_hw =
506 hisi_hba->hw->phy_get_max_linkrate();
507 if (sphy->minimum_linkrate == SAS_LINK_RATE_UNKNOWN)
508 sphy->minimum_linkrate = phy->minimum_linkrate;
510 if (sphy->maximum_linkrate == SAS_LINK_RATE_UNKNOWN)
511 sphy->maximum_linkrate = phy->maximum_linkrate;
514 if (phy->phy_type & PORT_TYPE_SAS) {
515 struct sas_identify_frame *id;
517 id = (struct sas_identify_frame *)phy->frame_rcvd;
518 id->dev_type = phy->identify.device_type;
519 id->initiator_bits = SAS_PROTOCOL_ALL;
520 id->target_bits = phy->identify.target_port_protocols;
521 } else if (phy->phy_type & PORT_TYPE_SATA) {
522 /*Nothing*/
525 sas_phy->frame_rcvd_size = phy->frame_rcvd_size;
526 sas_ha->notify_port_event(sas_phy, PORTE_BYTES_DMAED);
529 static struct hisi_sas_device *hisi_sas_alloc_dev(struct domain_device *device)
531 struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
532 struct hisi_sas_device *sas_dev = NULL;
533 unsigned long flags;
534 int i;
536 spin_lock_irqsave(&hisi_hba->lock, flags);
537 for (i = 0; i < HISI_SAS_MAX_DEVICES; i++) {
538 if (hisi_hba->devices[i].dev_type == SAS_PHY_UNUSED) {
539 int queue = i % hisi_hba->queue_count;
540 struct hisi_sas_dq *dq = &hisi_hba->dq[queue];
542 hisi_hba->devices[i].device_id = i;
543 sas_dev = &hisi_hba->devices[i];
544 sas_dev->dev_status = HISI_SAS_DEV_NORMAL;
545 sas_dev->dev_type = device->dev_type;
546 sas_dev->hisi_hba = hisi_hba;
547 sas_dev->sas_device = device;
548 sas_dev->dq = dq;
549 INIT_LIST_HEAD(&hisi_hba->devices[i].list);
550 break;
553 spin_unlock_irqrestore(&hisi_hba->lock, flags);
555 return sas_dev;
558 static int hisi_sas_dev_found(struct domain_device *device)
560 struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
561 struct domain_device *parent_dev = device->parent;
562 struct hisi_sas_device *sas_dev;
563 struct device *dev = hisi_hba->dev;
565 if (hisi_hba->hw->alloc_dev)
566 sas_dev = hisi_hba->hw->alloc_dev(device);
567 else
568 sas_dev = hisi_sas_alloc_dev(device);
569 if (!sas_dev) {
570 dev_err(dev, "fail alloc dev: max support %d devices\n",
571 HISI_SAS_MAX_DEVICES);
572 return -EINVAL;
575 device->lldd_dev = sas_dev;
576 hisi_hba->hw->setup_itct(hisi_hba, sas_dev);
578 if (parent_dev && DEV_IS_EXPANDER(parent_dev->dev_type)) {
579 int phy_no;
580 u8 phy_num = parent_dev->ex_dev.num_phys;
581 struct ex_phy *phy;
583 for (phy_no = 0; phy_no < phy_num; phy_no++) {
584 phy = &parent_dev->ex_dev.ex_phy[phy_no];
585 if (SAS_ADDR(phy->attached_sas_addr) ==
586 SAS_ADDR(device->sas_addr)) {
587 sas_dev->attached_phy = phy_no;
588 break;
592 if (phy_no == phy_num) {
593 dev_info(dev, "dev found: no attached "
594 "dev:%016llx at ex:%016llx\n",
595 SAS_ADDR(device->sas_addr),
596 SAS_ADDR(parent_dev->sas_addr));
597 return -EINVAL;
601 dev_info(dev, "dev[%d:%x] found\n",
602 sas_dev->device_id, sas_dev->dev_type);
604 return 0;
607 static int hisi_sas_slave_configure(struct scsi_device *sdev)
609 struct domain_device *dev = sdev_to_domain_dev(sdev);
610 int ret = sas_slave_configure(sdev);
612 if (ret)
613 return ret;
614 if (!dev_is_sata(dev))
615 sas_change_queue_depth(sdev, 64);
617 return 0;
620 static void hisi_sas_scan_start(struct Scsi_Host *shost)
622 struct hisi_hba *hisi_hba = shost_priv(shost);
624 hisi_hba->hw->phys_init(hisi_hba);
627 static int hisi_sas_scan_finished(struct Scsi_Host *shost, unsigned long time)
629 struct hisi_hba *hisi_hba = shost_priv(shost);
630 struct sas_ha_struct *sha = &hisi_hba->sha;
632 /* Wait for PHY up interrupt to occur */
633 if (time < HZ)
634 return 0;
636 sas_drain_work(sha);
637 return 1;
640 static void hisi_sas_phyup_work(struct work_struct *work)
642 struct hisi_sas_phy *phy =
643 container_of(work, typeof(*phy), works[HISI_PHYE_PHY_UP]);
644 struct hisi_hba *hisi_hba = phy->hisi_hba;
645 struct asd_sas_phy *sas_phy = &phy->sas_phy;
646 int phy_no = sas_phy->id;
648 hisi_hba->hw->sl_notify(hisi_hba, phy_no); /* This requires a sleep */
649 hisi_sas_bytes_dmaed(hisi_hba, phy_no);
652 static void hisi_sas_linkreset_work(struct work_struct *work)
654 struct hisi_sas_phy *phy =
655 container_of(work, typeof(*phy), works[HISI_PHYE_LINK_RESET]);
656 struct asd_sas_phy *sas_phy = &phy->sas_phy;
658 hisi_sas_control_phy(sas_phy, PHY_FUNC_LINK_RESET, NULL);
661 static const work_func_t hisi_sas_phye_fns[HISI_PHYES_NUM] = {
662 [HISI_PHYE_PHY_UP] = hisi_sas_phyup_work,
663 [HISI_PHYE_LINK_RESET] = hisi_sas_linkreset_work,
666 bool hisi_sas_notify_phy_event(struct hisi_sas_phy *phy,
667 enum hisi_sas_phy_event event)
669 struct hisi_hba *hisi_hba = phy->hisi_hba;
671 if (WARN_ON(event >= HISI_PHYES_NUM))
672 return false;
674 return queue_work(hisi_hba->wq, &phy->works[event]);
676 EXPORT_SYMBOL_GPL(hisi_sas_notify_phy_event);
678 static void hisi_sas_phy_init(struct hisi_hba *hisi_hba, int phy_no)
680 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no];
681 struct asd_sas_phy *sas_phy = &phy->sas_phy;
682 int i;
684 phy->hisi_hba = hisi_hba;
685 phy->port = NULL;
686 sas_phy->enabled = (phy_no < hisi_hba->n_phy) ? 1 : 0;
687 sas_phy->class = SAS;
688 sas_phy->iproto = SAS_PROTOCOL_ALL;
689 sas_phy->tproto = 0;
690 sas_phy->type = PHY_TYPE_PHYSICAL;
691 sas_phy->role = PHY_ROLE_INITIATOR;
692 sas_phy->oob_mode = OOB_NOT_CONNECTED;
693 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
694 sas_phy->id = phy_no;
695 sas_phy->sas_addr = &hisi_hba->sas_addr[0];
696 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
697 sas_phy->ha = (struct sas_ha_struct *)hisi_hba->shost->hostdata;
698 sas_phy->lldd_phy = phy;
700 for (i = 0; i < HISI_PHYES_NUM; i++)
701 INIT_WORK(&phy->works[i], hisi_sas_phye_fns[i]);
704 static void hisi_sas_port_notify_formed(struct asd_sas_phy *sas_phy)
706 struct sas_ha_struct *sas_ha = sas_phy->ha;
707 struct hisi_hba *hisi_hba = sas_ha->lldd_ha;
708 struct hisi_sas_phy *phy = sas_phy->lldd_phy;
709 struct asd_sas_port *sas_port = sas_phy->port;
710 struct hisi_sas_port *port = to_hisi_sas_port(sas_port);
711 unsigned long flags;
713 if (!sas_port)
714 return;
716 spin_lock_irqsave(&hisi_hba->lock, flags);
717 port->port_attached = 1;
718 port->id = phy->port_id;
719 phy->port = port;
720 sas_port->lldd_port = port;
721 spin_unlock_irqrestore(&hisi_hba->lock, flags);
724 static void hisi_sas_do_release_task(struct hisi_hba *hisi_hba, struct sas_task *task,
725 struct hisi_sas_slot *slot)
727 if (task) {
728 unsigned long flags;
729 struct task_status_struct *ts;
731 ts = &task->task_status;
733 ts->resp = SAS_TASK_COMPLETE;
734 ts->stat = SAS_ABORTED_TASK;
735 spin_lock_irqsave(&task->task_state_lock, flags);
736 task->task_state_flags &=
737 ~(SAS_TASK_STATE_PENDING | SAS_TASK_AT_INITIATOR);
738 task->task_state_flags |= SAS_TASK_STATE_DONE;
739 spin_unlock_irqrestore(&task->task_state_lock, flags);
742 hisi_sas_slot_task_free(hisi_hba, task, slot);
745 /* hisi_hba.lock should be locked */
746 static void hisi_sas_release_task(struct hisi_hba *hisi_hba,
747 struct domain_device *device)
749 struct hisi_sas_slot *slot, *slot2;
750 struct hisi_sas_device *sas_dev = device->lldd_dev;
752 list_for_each_entry_safe(slot, slot2, &sas_dev->list, entry)
753 hisi_sas_do_release_task(hisi_hba, slot->task, slot);
756 void hisi_sas_release_tasks(struct hisi_hba *hisi_hba)
758 struct hisi_sas_device *sas_dev;
759 struct domain_device *device;
760 int i;
762 for (i = 0; i < HISI_SAS_MAX_DEVICES; i++) {
763 sas_dev = &hisi_hba->devices[i];
764 device = sas_dev->sas_device;
766 if ((sas_dev->dev_type == SAS_PHY_UNUSED) ||
767 !device)
768 continue;
770 hisi_sas_release_task(hisi_hba, device);
773 EXPORT_SYMBOL_GPL(hisi_sas_release_tasks);
775 static void hisi_sas_dereg_device(struct hisi_hba *hisi_hba,
776 struct domain_device *device)
778 if (hisi_hba->hw->dereg_device)
779 hisi_hba->hw->dereg_device(hisi_hba, device);
782 static void hisi_sas_dev_gone(struct domain_device *device)
784 struct hisi_sas_device *sas_dev = device->lldd_dev;
785 struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
786 struct device *dev = hisi_hba->dev;
788 dev_info(dev, "dev[%d:%x] is gone\n",
789 sas_dev->device_id, sas_dev->dev_type);
791 if (!test_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) {
792 hisi_sas_internal_task_abort(hisi_hba, device,
793 HISI_SAS_INT_ABT_DEV, 0);
795 hisi_sas_dereg_device(hisi_hba, device);
797 hisi_hba->hw->clear_itct(hisi_hba, sas_dev);
798 device->lldd_dev = NULL;
801 if (hisi_hba->hw->free_device)
802 hisi_hba->hw->free_device(sas_dev);
803 sas_dev->dev_type = SAS_PHY_UNUSED;
806 static int hisi_sas_queue_command(struct sas_task *task, gfp_t gfp_flags)
808 return hisi_sas_task_exec(task, gfp_flags, 0, NULL);
811 static int hisi_sas_control_phy(struct asd_sas_phy *sas_phy, enum phy_func func,
812 void *funcdata)
814 struct sas_ha_struct *sas_ha = sas_phy->ha;
815 struct hisi_hba *hisi_hba = sas_ha->lldd_ha;
816 int phy_no = sas_phy->id;
818 switch (func) {
819 case PHY_FUNC_HARD_RESET:
820 hisi_hba->hw->phy_hard_reset(hisi_hba, phy_no);
821 break;
823 case PHY_FUNC_LINK_RESET:
824 hisi_hba->hw->phy_disable(hisi_hba, phy_no);
825 msleep(100);
826 hisi_hba->hw->phy_start(hisi_hba, phy_no);
827 break;
829 case PHY_FUNC_DISABLE:
830 hisi_hba->hw->phy_disable(hisi_hba, phy_no);
831 break;
833 case PHY_FUNC_SET_LINK_RATE:
834 hisi_hba->hw->phy_set_linkrate(hisi_hba, phy_no, funcdata);
835 break;
836 case PHY_FUNC_GET_EVENTS:
837 if (hisi_hba->hw->get_events) {
838 hisi_hba->hw->get_events(hisi_hba, phy_no);
839 break;
841 /* fallthru */
842 case PHY_FUNC_RELEASE_SPINUP_HOLD:
843 default:
844 return -EOPNOTSUPP;
846 return 0;
849 static void hisi_sas_task_done(struct sas_task *task)
851 if (!del_timer(&task->slow_task->timer))
852 return;
853 complete(&task->slow_task->completion);
856 static void hisi_sas_tmf_timedout(struct timer_list *t)
858 struct sas_task_slow *slow = from_timer(slow, t, timer);
859 struct sas_task *task = slow->task;
860 unsigned long flags;
862 spin_lock_irqsave(&task->task_state_lock, flags);
863 if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
864 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
865 spin_unlock_irqrestore(&task->task_state_lock, flags);
867 complete(&task->slow_task->completion);
870 #define TASK_TIMEOUT 20
871 #define TASK_RETRY 3
872 static int hisi_sas_exec_internal_tmf_task(struct domain_device *device,
873 void *parameter, u32 para_len,
874 struct hisi_sas_tmf_task *tmf)
876 struct hisi_sas_device *sas_dev = device->lldd_dev;
877 struct hisi_hba *hisi_hba = sas_dev->hisi_hba;
878 struct device *dev = hisi_hba->dev;
879 struct sas_task *task;
880 int res, retry;
882 for (retry = 0; retry < TASK_RETRY; retry++) {
883 task = sas_alloc_slow_task(GFP_KERNEL);
884 if (!task)
885 return -ENOMEM;
887 task->dev = device;
888 task->task_proto = device->tproto;
890 if (dev_is_sata(device)) {
891 task->ata_task.device_control_reg_update = 1;
892 memcpy(&task->ata_task.fis, parameter, para_len);
893 } else {
894 memcpy(&task->ssp_task, parameter, para_len);
896 task->task_done = hisi_sas_task_done;
898 task->slow_task->timer.function = hisi_sas_tmf_timedout;
899 task->slow_task->timer.expires = jiffies + TASK_TIMEOUT*HZ;
900 add_timer(&task->slow_task->timer);
902 res = hisi_sas_task_exec(task, GFP_KERNEL, 1, tmf);
904 if (res) {
905 del_timer(&task->slow_task->timer);
906 dev_err(dev, "abort tmf: executing internal task failed: %d\n",
907 res);
908 goto ex_err;
911 wait_for_completion(&task->slow_task->completion);
912 res = TMF_RESP_FUNC_FAILED;
913 /* Even TMF timed out, return direct. */
914 if ((task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
915 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
916 struct hisi_sas_slot *slot = task->lldd_task;
918 dev_err(dev, "abort tmf: TMF task timeout and not done\n");
919 if (slot)
920 slot->task = NULL;
922 goto ex_err;
923 } else
924 dev_err(dev, "abort tmf: TMF task timeout\n");
927 if (task->task_status.resp == SAS_TASK_COMPLETE &&
928 task->task_status.stat == TMF_RESP_FUNC_COMPLETE) {
929 res = TMF_RESP_FUNC_COMPLETE;
930 break;
933 if (task->task_status.resp == SAS_TASK_COMPLETE &&
934 task->task_status.stat == TMF_RESP_FUNC_SUCC) {
935 res = TMF_RESP_FUNC_SUCC;
936 break;
939 if (task->task_status.resp == SAS_TASK_COMPLETE &&
940 task->task_status.stat == SAS_DATA_UNDERRUN) {
941 /* no error, but return the number of bytes of
942 * underrun
944 dev_warn(dev, "abort tmf: task to dev %016llx "
945 "resp: 0x%x sts 0x%x underrun\n",
946 SAS_ADDR(device->sas_addr),
947 task->task_status.resp,
948 task->task_status.stat);
949 res = task->task_status.residual;
950 break;
953 if (task->task_status.resp == SAS_TASK_COMPLETE &&
954 task->task_status.stat == SAS_DATA_OVERRUN) {
955 dev_warn(dev, "abort tmf: blocked task error\n");
956 res = -EMSGSIZE;
957 break;
960 dev_warn(dev, "abort tmf: task to dev "
961 "%016llx resp: 0x%x status 0x%x\n",
962 SAS_ADDR(device->sas_addr), task->task_status.resp,
963 task->task_status.stat);
964 sas_free_task(task);
965 task = NULL;
967 ex_err:
968 if (retry == TASK_RETRY)
969 dev_warn(dev, "abort tmf: executing internal task failed!\n");
970 sas_free_task(task);
971 return res;
974 static void hisi_sas_fill_ata_reset_cmd(struct ata_device *dev,
975 bool reset, int pmp, u8 *fis)
977 struct ata_taskfile tf;
979 ata_tf_init(dev, &tf);
980 if (reset)
981 tf.ctl |= ATA_SRST;
982 else
983 tf.ctl &= ~ATA_SRST;
984 tf.command = ATA_CMD_DEV_RESET;
985 ata_tf_to_fis(&tf, pmp, 0, fis);
988 static int hisi_sas_softreset_ata_disk(struct domain_device *device)
990 u8 fis[20] = {0};
991 struct ata_port *ap = device->sata_dev.ap;
992 struct ata_link *link;
993 int rc = TMF_RESP_FUNC_FAILED;
994 struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
995 struct device *dev = hisi_hba->dev;
996 int s = sizeof(struct host_to_dev_fis);
997 unsigned long flags;
999 ata_for_each_link(link, ap, EDGE) {
1000 int pmp = sata_srst_pmp(link);
1002 hisi_sas_fill_ata_reset_cmd(link->device, 1, pmp, fis);
1003 rc = hisi_sas_exec_internal_tmf_task(device, fis, s, NULL);
1004 if (rc != TMF_RESP_FUNC_COMPLETE)
1005 break;
1008 if (rc == TMF_RESP_FUNC_COMPLETE) {
1009 ata_for_each_link(link, ap, EDGE) {
1010 int pmp = sata_srst_pmp(link);
1012 hisi_sas_fill_ata_reset_cmd(link->device, 0, pmp, fis);
1013 rc = hisi_sas_exec_internal_tmf_task(device, fis,
1014 s, NULL);
1015 if (rc != TMF_RESP_FUNC_COMPLETE)
1016 dev_err(dev, "ata disk de-reset failed\n");
1018 } else {
1019 dev_err(dev, "ata disk reset failed\n");
1022 if (rc == TMF_RESP_FUNC_COMPLETE) {
1023 spin_lock_irqsave(&hisi_hba->lock, flags);
1024 hisi_sas_release_task(hisi_hba, device);
1025 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1028 return rc;
1031 static int hisi_sas_debug_issue_ssp_tmf(struct domain_device *device,
1032 u8 *lun, struct hisi_sas_tmf_task *tmf)
1034 struct sas_ssp_task ssp_task;
1036 if (!(device->tproto & SAS_PROTOCOL_SSP))
1037 return TMF_RESP_FUNC_ESUPP;
1039 memcpy(ssp_task.LUN, lun, 8);
1041 return hisi_sas_exec_internal_tmf_task(device, &ssp_task,
1042 sizeof(ssp_task), tmf);
1045 static void hisi_sas_refresh_port_id(struct hisi_hba *hisi_hba)
1047 u32 state = hisi_hba->hw->get_phys_state(hisi_hba);
1048 int i;
1050 for (i = 0; i < HISI_SAS_MAX_DEVICES; i++) {
1051 struct hisi_sas_device *sas_dev = &hisi_hba->devices[i];
1052 struct domain_device *device = sas_dev->sas_device;
1053 struct asd_sas_port *sas_port;
1054 struct hisi_sas_port *port;
1055 struct hisi_sas_phy *phy = NULL;
1056 struct asd_sas_phy *sas_phy;
1058 if ((sas_dev->dev_type == SAS_PHY_UNUSED)
1059 || !device || !device->port)
1060 continue;
1062 sas_port = device->port;
1063 port = to_hisi_sas_port(sas_port);
1065 list_for_each_entry(sas_phy, &sas_port->phy_list, port_phy_el)
1066 if (state & BIT(sas_phy->id)) {
1067 phy = sas_phy->lldd_phy;
1068 break;
1071 if (phy) {
1072 port->id = phy->port_id;
1074 /* Update linkrate of directly attached device. */
1075 if (!device->parent)
1076 device->linkrate = phy->sas_phy.linkrate;
1078 hisi_hba->hw->setup_itct(hisi_hba, sas_dev);
1079 } else
1080 port->id = 0xff;
1084 static void hisi_sas_rescan_topology(struct hisi_hba *hisi_hba, u32 old_state,
1085 u32 state)
1087 struct sas_ha_struct *sas_ha = &hisi_hba->sha;
1088 struct asd_sas_port *_sas_port = NULL;
1089 int phy_no;
1091 for (phy_no = 0; phy_no < hisi_hba->n_phy; phy_no++) {
1092 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no];
1093 struct asd_sas_phy *sas_phy = &phy->sas_phy;
1094 struct asd_sas_port *sas_port = sas_phy->port;
1095 bool do_port_check = !!(_sas_port != sas_port);
1097 if (!sas_phy->phy->enabled)
1098 continue;
1100 /* Report PHY state change to libsas */
1101 if (state & BIT(phy_no)) {
1102 if (do_port_check && sas_port && sas_port->port_dev) {
1103 struct domain_device *dev = sas_port->port_dev;
1105 _sas_port = sas_port;
1107 if (DEV_IS_EXPANDER(dev->dev_type))
1108 sas_ha->notify_port_event(sas_phy,
1109 PORTE_BROADCAST_RCVD);
1111 } else if (old_state & (1 << phy_no))
1112 /* PHY down but was up before */
1113 hisi_sas_phy_down(hisi_hba, phy_no, 0);
1118 static int hisi_sas_controller_reset(struct hisi_hba *hisi_hba)
1120 struct device *dev = hisi_hba->dev;
1121 struct Scsi_Host *shost = hisi_hba->shost;
1122 u32 old_state, state;
1123 unsigned long flags;
1124 int rc;
1126 if (!hisi_hba->hw->soft_reset)
1127 return -1;
1129 if (test_and_set_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags))
1130 return -1;
1132 dev_info(dev, "controller resetting...\n");
1133 old_state = hisi_hba->hw->get_phys_state(hisi_hba);
1135 scsi_block_requests(shost);
1136 set_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags);
1137 rc = hisi_hba->hw->soft_reset(hisi_hba);
1138 if (rc) {
1139 dev_warn(dev, "controller reset failed (%d)\n", rc);
1140 clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags);
1141 scsi_unblock_requests(shost);
1142 goto out;
1144 spin_lock_irqsave(&hisi_hba->lock, flags);
1145 hisi_sas_release_tasks(hisi_hba);
1146 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1148 clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags);
1150 /* Init and wait for PHYs to come up and all libsas event finished. */
1151 hisi_hba->hw->phys_init(hisi_hba);
1152 msleep(1000);
1153 hisi_sas_refresh_port_id(hisi_hba);
1154 scsi_unblock_requests(shost);
1156 state = hisi_hba->hw->get_phys_state(hisi_hba);
1157 hisi_sas_rescan_topology(hisi_hba, old_state, state);
1158 dev_info(dev, "controller reset complete\n");
1160 out:
1161 clear_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags);
1163 return rc;
1166 static int hisi_sas_abort_task(struct sas_task *task)
1168 struct scsi_lun lun;
1169 struct hisi_sas_tmf_task tmf_task;
1170 struct domain_device *device = task->dev;
1171 struct hisi_sas_device *sas_dev = device->lldd_dev;
1172 struct hisi_hba *hisi_hba = dev_to_hisi_hba(task->dev);
1173 struct device *dev = hisi_hba->dev;
1174 int rc = TMF_RESP_FUNC_FAILED;
1175 unsigned long flags;
1177 if (!sas_dev) {
1178 dev_warn(dev, "Device has been removed\n");
1179 return TMF_RESP_FUNC_FAILED;
1182 if (task->task_state_flags & SAS_TASK_STATE_DONE) {
1183 rc = TMF_RESP_FUNC_COMPLETE;
1184 goto out;
1187 sas_dev->dev_status = HISI_SAS_DEV_EH;
1188 if (task->lldd_task && task->task_proto & SAS_PROTOCOL_SSP) {
1189 struct scsi_cmnd *cmnd = task->uldd_task;
1190 struct hisi_sas_slot *slot = task->lldd_task;
1191 u32 tag = slot->idx;
1192 int rc2;
1194 int_to_scsilun(cmnd->device->lun, &lun);
1195 tmf_task.tmf = TMF_ABORT_TASK;
1196 tmf_task.tag_of_task_to_be_managed = cpu_to_le16(tag);
1198 rc = hisi_sas_debug_issue_ssp_tmf(task->dev, lun.scsi_lun,
1199 &tmf_task);
1201 rc2 = hisi_sas_internal_task_abort(hisi_hba, device,
1202 HISI_SAS_INT_ABT_CMD, tag);
1203 if (rc2 < 0) {
1204 dev_err(dev, "abort task: internal abort (%d)\n", rc2);
1205 return TMF_RESP_FUNC_FAILED;
1209 * If the TMF finds that the IO is not in the device and also
1210 * the internal abort does not succeed, then it is safe to
1211 * free the slot.
1212 * Note: if the internal abort succeeds then the slot
1213 * will have already been completed
1215 if (rc == TMF_RESP_FUNC_COMPLETE && rc2 != TMF_RESP_FUNC_SUCC) {
1216 if (task->lldd_task) {
1217 spin_lock_irqsave(&hisi_hba->lock, flags);
1218 hisi_sas_do_release_task(hisi_hba, task, slot);
1219 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1222 } else if (task->task_proto & SAS_PROTOCOL_SATA ||
1223 task->task_proto & SAS_PROTOCOL_STP) {
1224 if (task->dev->dev_type == SAS_SATA_DEV) {
1225 rc = hisi_sas_internal_task_abort(hisi_hba, device,
1226 HISI_SAS_INT_ABT_DEV, 0);
1227 if (rc < 0) {
1228 dev_err(dev, "abort task: internal abort failed\n");
1229 goto out;
1231 hisi_sas_dereg_device(hisi_hba, device);
1232 rc = hisi_sas_softreset_ata_disk(device);
1234 } else if (task->lldd_task && task->task_proto & SAS_PROTOCOL_SMP) {
1235 /* SMP */
1236 struct hisi_sas_slot *slot = task->lldd_task;
1237 u32 tag = slot->idx;
1239 rc = hisi_sas_internal_task_abort(hisi_hba, device,
1240 HISI_SAS_INT_ABT_CMD, tag);
1241 if (((rc < 0) || (rc == TMF_RESP_FUNC_FAILED)) &&
1242 task->lldd_task) {
1243 spin_lock_irqsave(&hisi_hba->lock, flags);
1244 hisi_sas_do_release_task(hisi_hba, task, slot);
1245 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1249 out:
1250 if (rc != TMF_RESP_FUNC_COMPLETE)
1251 dev_notice(dev, "abort task: rc=%d\n", rc);
1252 return rc;
1255 static int hisi_sas_abort_task_set(struct domain_device *device, u8 *lun)
1257 struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
1258 struct device *dev = hisi_hba->dev;
1259 struct hisi_sas_tmf_task tmf_task;
1260 int rc = TMF_RESP_FUNC_FAILED;
1261 unsigned long flags;
1263 rc = hisi_sas_internal_task_abort(hisi_hba, device,
1264 HISI_SAS_INT_ABT_DEV, 0);
1265 if (rc < 0) {
1266 dev_err(dev, "abort task set: internal abort rc=%d\n", rc);
1267 return TMF_RESP_FUNC_FAILED;
1269 hisi_sas_dereg_device(hisi_hba, device);
1271 tmf_task.tmf = TMF_ABORT_TASK_SET;
1272 rc = hisi_sas_debug_issue_ssp_tmf(device, lun, &tmf_task);
1274 if (rc == TMF_RESP_FUNC_COMPLETE) {
1275 spin_lock_irqsave(&hisi_hba->lock, flags);
1276 hisi_sas_release_task(hisi_hba, device);
1277 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1280 return rc;
1283 static int hisi_sas_clear_aca(struct domain_device *device, u8 *lun)
1285 int rc = TMF_RESP_FUNC_FAILED;
1286 struct hisi_sas_tmf_task tmf_task;
1288 tmf_task.tmf = TMF_CLEAR_ACA;
1289 rc = hisi_sas_debug_issue_ssp_tmf(device, lun, &tmf_task);
1291 return rc;
1294 static int hisi_sas_debug_I_T_nexus_reset(struct domain_device *device)
1296 struct sas_phy *phy = sas_get_local_phy(device);
1297 int rc, reset_type = (device->dev_type == SAS_SATA_DEV ||
1298 (device->tproto & SAS_PROTOCOL_STP)) ? 0 : 1;
1299 rc = sas_phy_reset(phy, reset_type);
1300 sas_put_local_phy(phy);
1301 msleep(2000);
1302 return rc;
1305 static int hisi_sas_I_T_nexus_reset(struct domain_device *device)
1307 struct hisi_sas_device *sas_dev = device->lldd_dev;
1308 struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
1309 struct device *dev = hisi_hba->dev;
1310 int rc = TMF_RESP_FUNC_FAILED;
1311 unsigned long flags;
1313 if (sas_dev->dev_status != HISI_SAS_DEV_EH)
1314 return TMF_RESP_FUNC_FAILED;
1315 sas_dev->dev_status = HISI_SAS_DEV_NORMAL;
1317 rc = hisi_sas_internal_task_abort(hisi_hba, device,
1318 HISI_SAS_INT_ABT_DEV, 0);
1319 if (rc < 0) {
1320 dev_err(dev, "I_T nexus reset: internal abort (%d)\n", rc);
1321 return TMF_RESP_FUNC_FAILED;
1323 hisi_sas_dereg_device(hisi_hba, device);
1325 rc = hisi_sas_debug_I_T_nexus_reset(device);
1327 if ((rc == TMF_RESP_FUNC_COMPLETE) || (rc == -ENODEV)) {
1328 spin_lock_irqsave(&hisi_hba->lock, flags);
1329 hisi_sas_release_task(hisi_hba, device);
1330 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1332 return rc;
1335 static int hisi_sas_lu_reset(struct domain_device *device, u8 *lun)
1337 struct hisi_sas_device *sas_dev = device->lldd_dev;
1338 struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
1339 struct device *dev = hisi_hba->dev;
1340 unsigned long flags;
1341 int rc = TMF_RESP_FUNC_FAILED;
1343 sas_dev->dev_status = HISI_SAS_DEV_EH;
1344 if (dev_is_sata(device)) {
1345 struct sas_phy *phy;
1347 /* Clear internal IO and then hardreset */
1348 rc = hisi_sas_internal_task_abort(hisi_hba, device,
1349 HISI_SAS_INT_ABT_DEV, 0);
1350 if (rc < 0) {
1351 dev_err(dev, "lu_reset: internal abort failed\n");
1352 goto out;
1354 hisi_sas_dereg_device(hisi_hba, device);
1356 phy = sas_get_local_phy(device);
1358 rc = sas_phy_reset(phy, 1);
1360 if (rc == 0) {
1361 spin_lock_irqsave(&hisi_hba->lock, flags);
1362 hisi_sas_release_task(hisi_hba, device);
1363 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1365 sas_put_local_phy(phy);
1366 } else {
1367 struct hisi_sas_tmf_task tmf_task = { .tmf = TMF_LU_RESET };
1369 rc = hisi_sas_internal_task_abort(hisi_hba, device,
1370 HISI_SAS_INT_ABT_DEV, 0);
1371 if (rc < 0) {
1372 dev_err(dev, "lu_reset: internal abort failed\n");
1373 goto out;
1375 hisi_sas_dereg_device(hisi_hba, device);
1377 rc = hisi_sas_debug_issue_ssp_tmf(device, lun, &tmf_task);
1378 if (rc == TMF_RESP_FUNC_COMPLETE) {
1379 spin_lock_irqsave(&hisi_hba->lock, flags);
1380 hisi_sas_release_task(hisi_hba, device);
1381 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1384 out:
1385 if (rc != TMF_RESP_FUNC_COMPLETE)
1386 dev_err(dev, "lu_reset: for device[%d]:rc= %d\n",
1387 sas_dev->device_id, rc);
1388 return rc;
1391 static int hisi_sas_clear_nexus_ha(struct sas_ha_struct *sas_ha)
1393 struct hisi_hba *hisi_hba = sas_ha->lldd_ha;
1394 HISI_SAS_DECLARE_RST_WORK_ON_STACK(r);
1396 queue_work(hisi_hba->wq, &r.work);
1397 wait_for_completion(r.completion);
1398 if (r.done)
1399 return TMF_RESP_FUNC_COMPLETE;
1401 return TMF_RESP_FUNC_FAILED;
1404 static int hisi_sas_query_task(struct sas_task *task)
1406 struct scsi_lun lun;
1407 struct hisi_sas_tmf_task tmf_task;
1408 int rc = TMF_RESP_FUNC_FAILED;
1410 if (task->lldd_task && task->task_proto & SAS_PROTOCOL_SSP) {
1411 struct scsi_cmnd *cmnd = task->uldd_task;
1412 struct domain_device *device = task->dev;
1413 struct hisi_sas_slot *slot = task->lldd_task;
1414 u32 tag = slot->idx;
1416 int_to_scsilun(cmnd->device->lun, &lun);
1417 tmf_task.tmf = TMF_QUERY_TASK;
1418 tmf_task.tag_of_task_to_be_managed = cpu_to_le16(tag);
1420 rc = hisi_sas_debug_issue_ssp_tmf(device,
1421 lun.scsi_lun,
1422 &tmf_task);
1423 switch (rc) {
1424 /* The task is still in Lun, release it then */
1425 case TMF_RESP_FUNC_SUCC:
1426 /* The task is not in Lun or failed, reset the phy */
1427 case TMF_RESP_FUNC_FAILED:
1428 case TMF_RESP_FUNC_COMPLETE:
1429 break;
1430 default:
1431 rc = TMF_RESP_FUNC_FAILED;
1432 break;
1435 return rc;
1438 static int
1439 hisi_sas_internal_abort_task_exec(struct hisi_hba *hisi_hba, int device_id,
1440 struct sas_task *task, int abort_flag,
1441 int task_tag)
1443 struct domain_device *device = task->dev;
1444 struct hisi_sas_device *sas_dev = device->lldd_dev;
1445 struct device *dev = hisi_hba->dev;
1446 struct hisi_sas_port *port;
1447 struct hisi_sas_slot *slot;
1448 struct asd_sas_port *sas_port = device->port;
1449 struct hisi_sas_cmd_hdr *cmd_hdr_base;
1450 struct hisi_sas_dq *dq = sas_dev->dq;
1451 int dlvry_queue_slot, dlvry_queue, n_elem = 0, rc, slot_idx;
1452 unsigned long flags, flags_dq;
1454 if (unlikely(test_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags)))
1455 return -EINVAL;
1457 if (!device->port)
1458 return -1;
1460 port = to_hisi_sas_port(sas_port);
1462 /* simply get a slot and send abort command */
1463 spin_lock_irqsave(&hisi_hba->lock, flags);
1464 rc = hisi_sas_slot_index_alloc(hisi_hba, &slot_idx);
1465 if (rc) {
1466 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1467 goto err_out;
1469 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1471 spin_lock_irqsave(&dq->lock, flags_dq);
1472 rc = hisi_hba->hw->get_free_slot(hisi_hba, dq);
1473 if (rc)
1474 goto err_out_tag;
1476 dlvry_queue = dq->id;
1477 dlvry_queue_slot = dq->wr_point;
1479 slot = &hisi_hba->slot_info[slot_idx];
1480 memset(slot, 0, sizeof(struct hisi_sas_slot));
1482 slot->idx = slot_idx;
1483 slot->n_elem = n_elem;
1484 slot->dlvry_queue = dlvry_queue;
1485 slot->dlvry_queue_slot = dlvry_queue_slot;
1486 cmd_hdr_base = hisi_hba->cmd_hdr[dlvry_queue];
1487 slot->cmd_hdr = &cmd_hdr_base[dlvry_queue_slot];
1488 slot->task = task;
1489 slot->port = port;
1490 task->lldd_task = slot;
1492 slot->buf = dma_pool_alloc(hisi_hba->buffer_pool,
1493 GFP_ATOMIC, &slot->buf_dma);
1494 if (!slot->buf) {
1495 rc = -ENOMEM;
1496 goto err_out_tag;
1499 memset(slot->cmd_hdr, 0, sizeof(struct hisi_sas_cmd_hdr));
1500 memset(hisi_sas_cmd_hdr_addr_mem(slot), 0, HISI_SAS_COMMAND_TABLE_SZ);
1501 memset(hisi_sas_status_buf_addr_mem(slot), 0, HISI_SAS_STATUS_BUF_SZ);
1503 rc = hisi_sas_task_prep_abort(hisi_hba, slot, device_id,
1504 abort_flag, task_tag);
1505 if (rc)
1506 goto err_out_buf;
1508 spin_lock_irqsave(&hisi_hba->lock, flags);
1509 list_add_tail(&slot->entry, &sas_dev->list);
1510 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1511 spin_lock_irqsave(&task->task_state_lock, flags);
1512 task->task_state_flags |= SAS_TASK_AT_INITIATOR;
1513 spin_unlock_irqrestore(&task->task_state_lock, flags);
1515 dq->slot_prep = slot;
1517 atomic64_inc(&sas_dev->running_req);
1519 /* send abort command to the chip */
1520 hisi_hba->hw->start_delivery(dq);
1521 spin_unlock_irqrestore(&dq->lock, flags_dq);
1523 return 0;
1525 err_out_buf:
1526 dma_pool_free(hisi_hba->buffer_pool, slot->buf,
1527 slot->buf_dma);
1528 err_out_tag:
1529 spin_lock_irqsave(&hisi_hba->lock, flags);
1530 hisi_sas_slot_index_free(hisi_hba, slot_idx);
1531 spin_unlock_irqrestore(&hisi_hba->lock, flags);
1532 spin_unlock_irqrestore(&dq->lock, flags_dq);
1533 err_out:
1534 dev_err(dev, "internal abort task prep: failed[%d]!\n", rc);
1536 return rc;
1540 * hisi_sas_internal_task_abort -- execute an internal
1541 * abort command for single IO command or a device
1542 * @hisi_hba: host controller struct
1543 * @device: domain device
1544 * @abort_flag: mode of operation, device or single IO
1545 * @tag: tag of IO to be aborted (only relevant to single
1546 * IO mode)
1548 static int
1549 hisi_sas_internal_task_abort(struct hisi_hba *hisi_hba,
1550 struct domain_device *device,
1551 int abort_flag, int tag)
1553 struct sas_task *task;
1554 struct hisi_sas_device *sas_dev = device->lldd_dev;
1555 struct device *dev = hisi_hba->dev;
1556 int res;
1559 * The interface is not realized means this HW don't support internal
1560 * abort, or don't need to do internal abort. Then here, we return
1561 * TMF_RESP_FUNC_FAILED and let other steps go on, which depends that
1562 * the internal abort has been executed and returned CQ.
1564 if (!hisi_hba->hw->prep_abort)
1565 return TMF_RESP_FUNC_FAILED;
1567 task = sas_alloc_slow_task(GFP_KERNEL);
1568 if (!task)
1569 return -ENOMEM;
1571 task->dev = device;
1572 task->task_proto = device->tproto;
1573 task->task_done = hisi_sas_task_done;
1574 task->slow_task->timer.function = hisi_sas_tmf_timedout;
1575 task->slow_task->timer.expires = jiffies + msecs_to_jiffies(110);
1576 add_timer(&task->slow_task->timer);
1578 res = hisi_sas_internal_abort_task_exec(hisi_hba, sas_dev->device_id,
1579 task, abort_flag, tag);
1580 if (res) {
1581 del_timer(&task->slow_task->timer);
1582 dev_err(dev, "internal task abort: executing internal task failed: %d\n",
1583 res);
1584 goto exit;
1586 wait_for_completion(&task->slow_task->completion);
1587 res = TMF_RESP_FUNC_FAILED;
1589 /* Internal abort timed out */
1590 if ((task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1591 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
1592 struct hisi_sas_slot *slot = task->lldd_task;
1594 if (slot)
1595 slot->task = NULL;
1596 dev_err(dev, "internal task abort: timeout and not done.\n");
1597 res = -EIO;
1598 goto exit;
1599 } else
1600 dev_err(dev, "internal task abort: timeout.\n");
1603 if (task->task_status.resp == SAS_TASK_COMPLETE &&
1604 task->task_status.stat == TMF_RESP_FUNC_COMPLETE) {
1605 res = TMF_RESP_FUNC_COMPLETE;
1606 goto exit;
1609 if (task->task_status.resp == SAS_TASK_COMPLETE &&
1610 task->task_status.stat == TMF_RESP_FUNC_SUCC) {
1611 res = TMF_RESP_FUNC_SUCC;
1612 goto exit;
1615 exit:
1616 dev_dbg(dev, "internal task abort: task to dev %016llx task=%p "
1617 "resp: 0x%x sts 0x%x\n",
1618 SAS_ADDR(device->sas_addr),
1619 task,
1620 task->task_status.resp, /* 0 is complete, -1 is undelivered */
1621 task->task_status.stat);
1622 sas_free_task(task);
1624 return res;
1627 static void hisi_sas_port_formed(struct asd_sas_phy *sas_phy)
1629 hisi_sas_port_notify_formed(sas_phy);
1632 static void hisi_sas_port_deformed(struct asd_sas_phy *sas_phy)
1636 static int hisi_sas_write_gpio(struct sas_ha_struct *sha, u8 reg_type,
1637 u8 reg_index, u8 reg_count, u8 *write_data)
1639 struct hisi_hba *hisi_hba = sha->lldd_ha;
1641 if (!hisi_hba->hw->write_gpio)
1642 return -EOPNOTSUPP;
1644 return hisi_hba->hw->write_gpio(hisi_hba, reg_type,
1645 reg_index, reg_count, write_data);
1648 static void hisi_sas_phy_disconnected(struct hisi_sas_phy *phy)
1650 phy->phy_attached = 0;
1651 phy->phy_type = 0;
1652 phy->port = NULL;
1655 void hisi_sas_phy_down(struct hisi_hba *hisi_hba, int phy_no, int rdy)
1657 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no];
1658 struct asd_sas_phy *sas_phy = &phy->sas_phy;
1659 struct sas_ha_struct *sas_ha = &hisi_hba->sha;
1661 if (rdy) {
1662 /* Phy down but ready */
1663 hisi_sas_bytes_dmaed(hisi_hba, phy_no);
1664 hisi_sas_port_notify_formed(sas_phy);
1665 } else {
1666 struct hisi_sas_port *port = phy->port;
1668 /* Phy down and not ready */
1669 sas_ha->notify_phy_event(sas_phy, PHYE_LOSS_OF_SIGNAL);
1670 sas_phy_disconnected(sas_phy);
1672 if (port) {
1673 if (phy->phy_type & PORT_TYPE_SAS) {
1674 int port_id = port->id;
1676 if (!hisi_hba->hw->get_wideport_bitmap(hisi_hba,
1677 port_id))
1678 port->port_attached = 0;
1679 } else if (phy->phy_type & PORT_TYPE_SATA)
1680 port->port_attached = 0;
1682 hisi_sas_phy_disconnected(phy);
1685 EXPORT_SYMBOL_GPL(hisi_sas_phy_down);
1687 void hisi_sas_kill_tasklets(struct hisi_hba *hisi_hba)
1689 int i;
1691 for (i = 0; i < hisi_hba->queue_count; i++) {
1692 struct hisi_sas_cq *cq = &hisi_hba->cq[i];
1694 tasklet_kill(&cq->tasklet);
1697 EXPORT_SYMBOL_GPL(hisi_sas_kill_tasklets);
1699 struct scsi_transport_template *hisi_sas_stt;
1700 EXPORT_SYMBOL_GPL(hisi_sas_stt);
1702 static struct device_attribute *host_attrs[] = {
1703 &dev_attr_phy_event_threshold,
1704 NULL,
1707 static struct scsi_host_template _hisi_sas_sht = {
1708 .module = THIS_MODULE,
1709 .name = DRV_NAME,
1710 .queuecommand = sas_queuecommand,
1711 .target_alloc = sas_target_alloc,
1712 .slave_configure = hisi_sas_slave_configure,
1713 .scan_finished = hisi_sas_scan_finished,
1714 .scan_start = hisi_sas_scan_start,
1715 .change_queue_depth = sas_change_queue_depth,
1716 .bios_param = sas_bios_param,
1717 .can_queue = 1,
1718 .this_id = -1,
1719 .sg_tablesize = SG_ALL,
1720 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
1721 .use_clustering = ENABLE_CLUSTERING,
1722 .eh_device_reset_handler = sas_eh_device_reset_handler,
1723 .eh_target_reset_handler = sas_eh_target_reset_handler,
1724 .target_destroy = sas_target_destroy,
1725 .ioctl = sas_ioctl,
1726 .shost_attrs = host_attrs,
1728 struct scsi_host_template *hisi_sas_sht = &_hisi_sas_sht;
1729 EXPORT_SYMBOL_GPL(hisi_sas_sht);
1731 static struct sas_domain_function_template hisi_sas_transport_ops = {
1732 .lldd_dev_found = hisi_sas_dev_found,
1733 .lldd_dev_gone = hisi_sas_dev_gone,
1734 .lldd_execute_task = hisi_sas_queue_command,
1735 .lldd_control_phy = hisi_sas_control_phy,
1736 .lldd_abort_task = hisi_sas_abort_task,
1737 .lldd_abort_task_set = hisi_sas_abort_task_set,
1738 .lldd_clear_aca = hisi_sas_clear_aca,
1739 .lldd_I_T_nexus_reset = hisi_sas_I_T_nexus_reset,
1740 .lldd_lu_reset = hisi_sas_lu_reset,
1741 .lldd_query_task = hisi_sas_query_task,
1742 .lldd_clear_nexus_ha = hisi_sas_clear_nexus_ha,
1743 .lldd_port_formed = hisi_sas_port_formed,
1744 .lldd_port_deformed = hisi_sas_port_deformed,
1745 .lldd_write_gpio = hisi_sas_write_gpio,
1748 void hisi_sas_init_mem(struct hisi_hba *hisi_hba)
1750 int i, s, max_command_entries = hisi_hba->hw->max_command_entries;
1752 for (i = 0; i < hisi_hba->queue_count; i++) {
1753 struct hisi_sas_cq *cq = &hisi_hba->cq[i];
1754 struct hisi_sas_dq *dq = &hisi_hba->dq[i];
1756 s = sizeof(struct hisi_sas_cmd_hdr) * HISI_SAS_QUEUE_SLOTS;
1757 memset(hisi_hba->cmd_hdr[i], 0, s);
1758 dq->wr_point = 0;
1760 s = hisi_hba->hw->complete_hdr_size * HISI_SAS_QUEUE_SLOTS;
1761 memset(hisi_hba->complete_hdr[i], 0, s);
1762 cq->rd_point = 0;
1765 s = sizeof(struct hisi_sas_initial_fis) * hisi_hba->n_phy;
1766 memset(hisi_hba->initial_fis, 0, s);
1768 s = max_command_entries * sizeof(struct hisi_sas_iost);
1769 memset(hisi_hba->iost, 0, s);
1771 s = max_command_entries * sizeof(struct hisi_sas_breakpoint);
1772 memset(hisi_hba->breakpoint, 0, s);
1774 s = HISI_SAS_MAX_ITCT_ENTRIES * sizeof(struct hisi_sas_sata_breakpoint);
1775 memset(hisi_hba->sata_breakpoint, 0, s);
1777 EXPORT_SYMBOL_GPL(hisi_sas_init_mem);
1779 int hisi_sas_alloc(struct hisi_hba *hisi_hba, struct Scsi_Host *shost)
1781 struct device *dev = hisi_hba->dev;
1782 int i, s, max_command_entries = hisi_hba->hw->max_command_entries;
1784 spin_lock_init(&hisi_hba->lock);
1785 for (i = 0; i < hisi_hba->n_phy; i++) {
1786 hisi_sas_phy_init(hisi_hba, i);
1787 hisi_hba->port[i].port_attached = 0;
1788 hisi_hba->port[i].id = -1;
1791 for (i = 0; i < HISI_SAS_MAX_DEVICES; i++) {
1792 hisi_hba->devices[i].dev_type = SAS_PHY_UNUSED;
1793 hisi_hba->devices[i].device_id = i;
1794 hisi_hba->devices[i].dev_status = HISI_SAS_DEV_NORMAL;
1797 for (i = 0; i < hisi_hba->queue_count; i++) {
1798 struct hisi_sas_cq *cq = &hisi_hba->cq[i];
1799 struct hisi_sas_dq *dq = &hisi_hba->dq[i];
1801 /* Completion queue structure */
1802 cq->id = i;
1803 cq->hisi_hba = hisi_hba;
1805 /* Delivery queue structure */
1806 spin_lock_init(&dq->lock);
1807 dq->id = i;
1808 dq->hisi_hba = hisi_hba;
1810 /* Delivery queue */
1811 s = sizeof(struct hisi_sas_cmd_hdr) * HISI_SAS_QUEUE_SLOTS;
1812 hisi_hba->cmd_hdr[i] = dma_alloc_coherent(dev, s,
1813 &hisi_hba->cmd_hdr_dma[i], GFP_KERNEL);
1814 if (!hisi_hba->cmd_hdr[i])
1815 goto err_out;
1817 /* Completion queue */
1818 s = hisi_hba->hw->complete_hdr_size * HISI_SAS_QUEUE_SLOTS;
1819 hisi_hba->complete_hdr[i] = dma_alloc_coherent(dev, s,
1820 &hisi_hba->complete_hdr_dma[i], GFP_KERNEL);
1821 if (!hisi_hba->complete_hdr[i])
1822 goto err_out;
1825 s = sizeof(struct hisi_sas_slot_buf_table);
1826 hisi_hba->buffer_pool = dma_pool_create("dma_buffer", dev, s, 16, 0);
1827 if (!hisi_hba->buffer_pool)
1828 goto err_out;
1830 s = HISI_SAS_MAX_ITCT_ENTRIES * sizeof(struct hisi_sas_itct);
1831 hisi_hba->itct = dma_alloc_coherent(dev, s, &hisi_hba->itct_dma,
1832 GFP_KERNEL);
1833 if (!hisi_hba->itct)
1834 goto err_out;
1836 memset(hisi_hba->itct, 0, s);
1838 hisi_hba->slot_info = devm_kcalloc(dev, max_command_entries,
1839 sizeof(struct hisi_sas_slot),
1840 GFP_KERNEL);
1841 if (!hisi_hba->slot_info)
1842 goto err_out;
1844 s = max_command_entries * sizeof(struct hisi_sas_iost);
1845 hisi_hba->iost = dma_alloc_coherent(dev, s, &hisi_hba->iost_dma,
1846 GFP_KERNEL);
1847 if (!hisi_hba->iost)
1848 goto err_out;
1850 s = max_command_entries * sizeof(struct hisi_sas_breakpoint);
1851 hisi_hba->breakpoint = dma_alloc_coherent(dev, s,
1852 &hisi_hba->breakpoint_dma, GFP_KERNEL);
1853 if (!hisi_hba->breakpoint)
1854 goto err_out;
1856 hisi_hba->slot_index_count = max_command_entries;
1857 s = hisi_hba->slot_index_count / BITS_PER_BYTE;
1858 hisi_hba->slot_index_tags = devm_kzalloc(dev, s, GFP_KERNEL);
1859 if (!hisi_hba->slot_index_tags)
1860 goto err_out;
1862 s = sizeof(struct hisi_sas_initial_fis) * HISI_SAS_MAX_PHYS;
1863 hisi_hba->initial_fis = dma_alloc_coherent(dev, s,
1864 &hisi_hba->initial_fis_dma, GFP_KERNEL);
1865 if (!hisi_hba->initial_fis)
1866 goto err_out;
1868 s = HISI_SAS_MAX_ITCT_ENTRIES * sizeof(struct hisi_sas_sata_breakpoint);
1869 hisi_hba->sata_breakpoint = dma_alloc_coherent(dev, s,
1870 &hisi_hba->sata_breakpoint_dma, GFP_KERNEL);
1871 if (!hisi_hba->sata_breakpoint)
1872 goto err_out;
1873 hisi_sas_init_mem(hisi_hba);
1875 hisi_sas_slot_index_init(hisi_hba);
1877 hisi_hba->wq = create_singlethread_workqueue(dev_name(dev));
1878 if (!hisi_hba->wq) {
1879 dev_err(dev, "sas_alloc: failed to create workqueue\n");
1880 goto err_out;
1883 return 0;
1884 err_out:
1885 return -ENOMEM;
1887 EXPORT_SYMBOL_GPL(hisi_sas_alloc);
1889 void hisi_sas_free(struct hisi_hba *hisi_hba)
1891 struct device *dev = hisi_hba->dev;
1892 int i, s, max_command_entries = hisi_hba->hw->max_command_entries;
1894 for (i = 0; i < hisi_hba->queue_count; i++) {
1895 s = sizeof(struct hisi_sas_cmd_hdr) * HISI_SAS_QUEUE_SLOTS;
1896 if (hisi_hba->cmd_hdr[i])
1897 dma_free_coherent(dev, s,
1898 hisi_hba->cmd_hdr[i],
1899 hisi_hba->cmd_hdr_dma[i]);
1901 s = hisi_hba->hw->complete_hdr_size * HISI_SAS_QUEUE_SLOTS;
1902 if (hisi_hba->complete_hdr[i])
1903 dma_free_coherent(dev, s,
1904 hisi_hba->complete_hdr[i],
1905 hisi_hba->complete_hdr_dma[i]);
1908 dma_pool_destroy(hisi_hba->buffer_pool);
1910 s = HISI_SAS_MAX_ITCT_ENTRIES * sizeof(struct hisi_sas_itct);
1911 if (hisi_hba->itct)
1912 dma_free_coherent(dev, s,
1913 hisi_hba->itct, hisi_hba->itct_dma);
1915 s = max_command_entries * sizeof(struct hisi_sas_iost);
1916 if (hisi_hba->iost)
1917 dma_free_coherent(dev, s,
1918 hisi_hba->iost, hisi_hba->iost_dma);
1920 s = max_command_entries * sizeof(struct hisi_sas_breakpoint);
1921 if (hisi_hba->breakpoint)
1922 dma_free_coherent(dev, s,
1923 hisi_hba->breakpoint,
1924 hisi_hba->breakpoint_dma);
1927 s = sizeof(struct hisi_sas_initial_fis) * HISI_SAS_MAX_PHYS;
1928 if (hisi_hba->initial_fis)
1929 dma_free_coherent(dev, s,
1930 hisi_hba->initial_fis,
1931 hisi_hba->initial_fis_dma);
1933 s = HISI_SAS_MAX_ITCT_ENTRIES * sizeof(struct hisi_sas_sata_breakpoint);
1934 if (hisi_hba->sata_breakpoint)
1935 dma_free_coherent(dev, s,
1936 hisi_hba->sata_breakpoint,
1937 hisi_hba->sata_breakpoint_dma);
1939 if (hisi_hba->wq)
1940 destroy_workqueue(hisi_hba->wq);
1942 EXPORT_SYMBOL_GPL(hisi_sas_free);
1944 void hisi_sas_rst_work_handler(struct work_struct *work)
1946 struct hisi_hba *hisi_hba =
1947 container_of(work, struct hisi_hba, rst_work);
1949 hisi_sas_controller_reset(hisi_hba);
1951 EXPORT_SYMBOL_GPL(hisi_sas_rst_work_handler);
1953 void hisi_sas_sync_rst_work_handler(struct work_struct *work)
1955 struct hisi_sas_rst *rst =
1956 container_of(work, struct hisi_sas_rst, work);
1958 if (!hisi_sas_controller_reset(rst->hisi_hba))
1959 rst->done = true;
1960 complete(rst->completion);
1962 EXPORT_SYMBOL_GPL(hisi_sas_sync_rst_work_handler);
1964 int hisi_sas_get_fw_info(struct hisi_hba *hisi_hba)
1966 struct device *dev = hisi_hba->dev;
1967 struct platform_device *pdev = hisi_hba->platform_dev;
1968 struct device_node *np = pdev ? pdev->dev.of_node : NULL;
1969 struct clk *refclk;
1971 if (device_property_read_u8_array(dev, "sas-addr", hisi_hba->sas_addr,
1972 SAS_ADDR_SIZE)) {
1973 dev_err(dev, "could not get property sas-addr\n");
1974 return -ENOENT;
1977 if (np) {
1979 * These properties are only required for platform device-based
1980 * controller with DT firmware.
1982 hisi_hba->ctrl = syscon_regmap_lookup_by_phandle(np,
1983 "hisilicon,sas-syscon");
1984 if (IS_ERR(hisi_hba->ctrl)) {
1985 dev_err(dev, "could not get syscon\n");
1986 return -ENOENT;
1989 if (device_property_read_u32(dev, "ctrl-reset-reg",
1990 &hisi_hba->ctrl_reset_reg)) {
1991 dev_err(dev,
1992 "could not get property ctrl-reset-reg\n");
1993 return -ENOENT;
1996 if (device_property_read_u32(dev, "ctrl-reset-sts-reg",
1997 &hisi_hba->ctrl_reset_sts_reg)) {
1998 dev_err(dev,
1999 "could not get property ctrl-reset-sts-reg\n");
2000 return -ENOENT;
2003 if (device_property_read_u32(dev, "ctrl-clock-ena-reg",
2004 &hisi_hba->ctrl_clock_ena_reg)) {
2005 dev_err(dev,
2006 "could not get property ctrl-clock-ena-reg\n");
2007 return -ENOENT;
2011 refclk = devm_clk_get(dev, NULL);
2012 if (IS_ERR(refclk))
2013 dev_dbg(dev, "no ref clk property\n");
2014 else
2015 hisi_hba->refclk_frequency_mhz = clk_get_rate(refclk) / 1000000;
2017 if (device_property_read_u32(dev, "phy-count", &hisi_hba->n_phy)) {
2018 dev_err(dev, "could not get property phy-count\n");
2019 return -ENOENT;
2022 if (device_property_read_u32(dev, "queue-count",
2023 &hisi_hba->queue_count)) {
2024 dev_err(dev, "could not get property queue-count\n");
2025 return -ENOENT;
2028 return 0;
2030 EXPORT_SYMBOL_GPL(hisi_sas_get_fw_info);
2032 static struct Scsi_Host *hisi_sas_shost_alloc(struct platform_device *pdev,
2033 const struct hisi_sas_hw *hw)
2035 struct resource *res;
2036 struct Scsi_Host *shost;
2037 struct hisi_hba *hisi_hba;
2038 struct device *dev = &pdev->dev;
2040 shost = scsi_host_alloc(hisi_sas_sht, sizeof(*hisi_hba));
2041 if (!shost) {
2042 dev_err(dev, "scsi host alloc failed\n");
2043 return NULL;
2045 hisi_hba = shost_priv(shost);
2047 INIT_WORK(&hisi_hba->rst_work, hisi_sas_rst_work_handler);
2048 hisi_hba->hw = hw;
2049 hisi_hba->dev = dev;
2050 hisi_hba->platform_dev = pdev;
2051 hisi_hba->shost = shost;
2052 SHOST_TO_SAS_HA(shost) = &hisi_hba->sha;
2054 timer_setup(&hisi_hba->timer, NULL, 0);
2056 if (hisi_sas_get_fw_info(hisi_hba) < 0)
2057 goto err_out;
2059 if (dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64)) &&
2060 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32))) {
2061 dev_err(dev, "No usable DMA addressing method\n");
2062 goto err_out;
2065 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2066 hisi_hba->regs = devm_ioremap_resource(dev, res);
2067 if (IS_ERR(hisi_hba->regs))
2068 goto err_out;
2070 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2071 if (res) {
2072 hisi_hba->sgpio_regs = devm_ioremap_resource(dev, res);
2073 if (IS_ERR(hisi_hba->sgpio_regs))
2074 goto err_out;
2077 if (hisi_sas_alloc(hisi_hba, shost)) {
2078 hisi_sas_free(hisi_hba);
2079 goto err_out;
2082 return shost;
2083 err_out:
2084 scsi_host_put(shost);
2085 dev_err(dev, "shost alloc failed\n");
2086 return NULL;
2089 void hisi_sas_init_add(struct hisi_hba *hisi_hba)
2091 int i;
2093 for (i = 0; i < hisi_hba->n_phy; i++)
2094 memcpy(&hisi_hba->phy[i].dev_sas_addr,
2095 hisi_hba->sas_addr,
2096 SAS_ADDR_SIZE);
2098 EXPORT_SYMBOL_GPL(hisi_sas_init_add);
2100 int hisi_sas_probe(struct platform_device *pdev,
2101 const struct hisi_sas_hw *hw)
2103 struct Scsi_Host *shost;
2104 struct hisi_hba *hisi_hba;
2105 struct device *dev = &pdev->dev;
2106 struct asd_sas_phy **arr_phy;
2107 struct asd_sas_port **arr_port;
2108 struct sas_ha_struct *sha;
2109 int rc, phy_nr, port_nr, i;
2111 shost = hisi_sas_shost_alloc(pdev, hw);
2112 if (!shost)
2113 return -ENOMEM;
2115 sha = SHOST_TO_SAS_HA(shost);
2116 hisi_hba = shost_priv(shost);
2117 platform_set_drvdata(pdev, sha);
2119 phy_nr = port_nr = hisi_hba->n_phy;
2121 arr_phy = devm_kcalloc(dev, phy_nr, sizeof(void *), GFP_KERNEL);
2122 arr_port = devm_kcalloc(dev, port_nr, sizeof(void *), GFP_KERNEL);
2123 if (!arr_phy || !arr_port) {
2124 rc = -ENOMEM;
2125 goto err_out_ha;
2128 sha->sas_phy = arr_phy;
2129 sha->sas_port = arr_port;
2130 sha->lldd_ha = hisi_hba;
2132 shost->transportt = hisi_sas_stt;
2133 shost->max_id = HISI_SAS_MAX_DEVICES;
2134 shost->max_lun = ~0;
2135 shost->max_channel = 1;
2136 shost->max_cmd_len = 16;
2137 shost->sg_tablesize = min_t(u16, SG_ALL, HISI_SAS_SGE_PAGE_CNT);
2138 shost->can_queue = hisi_hba->hw->max_command_entries;
2139 shost->cmd_per_lun = hisi_hba->hw->max_command_entries;
2141 sha->sas_ha_name = DRV_NAME;
2142 sha->dev = hisi_hba->dev;
2143 sha->lldd_module = THIS_MODULE;
2144 sha->sas_addr = &hisi_hba->sas_addr[0];
2145 sha->num_phys = hisi_hba->n_phy;
2146 sha->core.shost = hisi_hba->shost;
2148 for (i = 0; i < hisi_hba->n_phy; i++) {
2149 sha->sas_phy[i] = &hisi_hba->phy[i].sas_phy;
2150 sha->sas_port[i] = &hisi_hba->port[i].sas_port;
2153 hisi_sas_init_add(hisi_hba);
2155 rc = scsi_add_host(shost, &pdev->dev);
2156 if (rc)
2157 goto err_out_ha;
2159 rc = sas_register_ha(sha);
2160 if (rc)
2161 goto err_out_register_ha;
2163 rc = hisi_hba->hw->hw_init(hisi_hba);
2164 if (rc)
2165 goto err_out_register_ha;
2167 scsi_scan_host(shost);
2169 return 0;
2171 err_out_register_ha:
2172 scsi_remove_host(shost);
2173 err_out_ha:
2174 hisi_sas_free(hisi_hba);
2175 scsi_host_put(shost);
2176 return rc;
2178 EXPORT_SYMBOL_GPL(hisi_sas_probe);
2180 int hisi_sas_remove(struct platform_device *pdev)
2182 struct sas_ha_struct *sha = platform_get_drvdata(pdev);
2183 struct hisi_hba *hisi_hba = sha->lldd_ha;
2184 struct Scsi_Host *shost = sha->core.shost;
2186 sas_unregister_ha(sha);
2187 sas_remove_host(sha->core.shost);
2189 hisi_sas_free(hisi_hba);
2190 scsi_host_put(shost);
2191 return 0;
2193 EXPORT_SYMBOL_GPL(hisi_sas_remove);
2195 static __init int hisi_sas_init(void)
2197 hisi_sas_stt = sas_domain_attach_transport(&hisi_sas_transport_ops);
2198 if (!hisi_sas_stt)
2199 return -ENOMEM;
2201 return 0;
2204 static __exit void hisi_sas_exit(void)
2206 sas_release_transport(hisi_sas_stt);
2209 module_init(hisi_sas_init);
2210 module_exit(hisi_sas_exit);
2212 MODULE_LICENSE("GPL");
2213 MODULE_AUTHOR("John Garry <john.garry@huawei.com>");
2214 MODULE_DESCRIPTION("HISILICON SAS controller driver");
2215 MODULE_ALIAS("platform:" DRV_NAME);