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.
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
);
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
,
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
:
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
;
51 case ATA_CMD_DOWNLOAD_MICRO_DMA
:
52 case ATA_CMD_PMP_READ_DMA
:
53 case ATA_CMD_PMP_WRITE_DMA
:
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
:
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
:
73 case ATA_CMD_FLUSH_EXT
:
75 case ATA_CMD_VERIFY_EXT
:
76 case ATA_CMD_SET_FEATURES
:
78 case ATA_CMD_STANDBYNOW1
:
79 case ATA_CMD_ZAC_MGMT_OUT
:
80 return HISI_SAS_SATA_PROTOCOL_NONDATA
;
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
;
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
;
127 if (qc
->tf
.command
== ATA_CMD_FPDMA_WRITE
||
128 qc
->tf
.command
== ATA_CMD_FPDMA_READ
) {
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
)
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
)
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
);
189 static void hisi_sas_slot_index_init(struct hisi_hba
*hisi_hba
)
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
)
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
)
209 task
->lldd_task
= NULL
;
211 if (!sas_protocol_ata(task
->task_proto
))
213 dma_unmap_sg(dev
, task
->scatter
,
218 atomic64_dec(&sas_dev
->running_req
);
222 dma_pool_free(hisi_hba
->buffer_pool
, slot
->buf
, slot
->buf_dma
);
224 list_del_init(&slot
->entry
);
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
;
275 struct device
*dev
= hisi_hba
->dev
;
276 int tag
= abort_slot
->idx
;
279 if (!(task
->task_proto
& SAS_PROTOCOL_SSP
)) {
280 dev_err(dev
, "cannot abort slot for non-ssp task\n");
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
);
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
);
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
,
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
;
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
);
327 if (DEV_IS_GONE(sas_dev
)) {
329 dev_info(dev
, "task prep: device %d not ready\n",
332 dev_info(dev
, "task prep: device %016llx not ready\n",
333 SAS_ADDR(device
->sas_addr
));
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
)) ?
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
);
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
,
365 rc
= hisi_sas_slot_index_alloc(hisi_hba
, &slot_idx
);
367 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
370 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
372 rc
= hisi_hba
->hw
->get_free_slot(hisi_hba
, dq
);
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
];
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
);
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
);
406 case SAS_PROTOCOL_SSP
:
407 rc
= hisi_sas_task_prep_ssp(hisi_hba
, slot
, is_tmf
, tmf
);
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
);
415 dev_err(dev
, "task prep: unknown/unsupported proto (0x%x)\n",
422 dev_err(dev
, "task prep: rc = 0x%x\n", rc
);
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
);
441 dma_pool_free(hisi_hba
->buffer_pool
, slot
->buf
,
444 /* Nothing to be done */
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
);
450 dev_err(dev
, "task prep: failed[%d]!\n", rc
);
451 if (!sas_protocol_ata(task
->task_proto
))
453 dma_unmap_sg(dev
, task
->scatter
,
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
)
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
)))
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
);
479 dev_err(dev
, "task exec: failed[%d]!\n", rc
);
482 hisi_hba
->hw
->start_delivery(dq
);
483 spin_unlock_irqrestore(&dq
->lock
, flags
);
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
)
497 sas_ha
= &hisi_hba
->sha
;
498 sas_ha
->notify_phy_event(sas_phy
, PHYE_OOB_DONE
);
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
) {
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
;
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
;
549 INIT_LIST_HEAD(&hisi_hba
->devices
[i
].list
);
553 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
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
);
568 sas_dev
= hisi_sas_alloc_dev(device
);
570 dev_err(dev
, "fail alloc dev: max support %d devices\n",
571 HISI_SAS_MAX_DEVICES
);
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
)) {
580 u8 phy_num
= parent_dev
->ex_dev
.num_phys
;
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
;
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
));
601 dev_info(dev
, "dev[%d:%x] found\n",
602 sas_dev
->device_id
, sas_dev
->dev_type
);
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
);
614 if (!dev_is_sata(dev
))
615 sas_change_queue_depth(sdev
, 64);
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 */
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
))
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
;
684 phy
->hisi_hba
= hisi_hba
;
686 sas_phy
->enabled
= (phy_no
< hisi_hba
->n_phy
) ? 1 : 0;
687 sas_phy
->class = SAS
;
688 sas_phy
->iproto
= SAS_PROTOCOL_ALL
;
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
);
716 spin_lock_irqsave(&hisi_hba
->lock
, flags
);
717 port
->port_attached
= 1;
718 port
->id
= phy
->port_id
;
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
)
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
;
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
) ||
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
,
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
;
819 case PHY_FUNC_HARD_RESET
:
820 hisi_hba
->hw
->phy_hard_reset(hisi_hba
, phy_no
);
823 case PHY_FUNC_LINK_RESET
:
824 hisi_hba
->hw
->phy_disable(hisi_hba
, phy_no
);
826 hisi_hba
->hw
->phy_start(hisi_hba
, phy_no
);
829 case PHY_FUNC_DISABLE
:
830 hisi_hba
->hw
->phy_disable(hisi_hba
, phy_no
);
833 case PHY_FUNC_SET_LINK_RATE
:
834 hisi_hba
->hw
->phy_set_linkrate(hisi_hba
, phy_no
, funcdata
);
836 case PHY_FUNC_GET_EVENTS
:
837 if (hisi_hba
->hw
->get_events
) {
838 hisi_hba
->hw
->get_events(hisi_hba
, phy_no
);
842 case PHY_FUNC_RELEASE_SPINUP_HOLD
:
849 static void hisi_sas_task_done(struct sas_task
*task
)
851 if (!del_timer(&task
->slow_task
->timer
))
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
;
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
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
;
882 for (retry
= 0; retry
< TASK_RETRY
; retry
++) {
883 task
= sas_alloc_slow_task(GFP_KERNEL
);
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
);
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
);
905 del_timer(&task
->slow_task
->timer
);
906 dev_err(dev
, "abort tmf: executing internal task failed: %d\n",
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");
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
;
933 if (task
->task_status
.resp
== SAS_TASK_COMPLETE
&&
934 task
->task_status
.stat
== TMF_RESP_FUNC_SUCC
) {
935 res
= TMF_RESP_FUNC_SUCC
;
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
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
;
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");
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
);
968 if (retry
== TASK_RETRY
)
969 dev_warn(dev
, "abort tmf: executing internal task failed!\n");
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
);
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
)
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
);
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
)
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
,
1015 if (rc
!= TMF_RESP_FUNC_COMPLETE
)
1016 dev_err(dev
, "ata disk de-reset failed\n");
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
);
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
);
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
)
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
;
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
);
1084 static void hisi_sas_rescan_topology(struct hisi_hba
*hisi_hba
, u32 old_state
,
1087 struct sas_ha_struct
*sas_ha
= &hisi_hba
->sha
;
1088 struct asd_sas_port
*_sas_port
= NULL
;
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
)
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
;
1126 if (!hisi_hba
->hw
->soft_reset
)
1129 if (test_and_set_bit(HISI_SAS_RESET_BIT
, &hisi_hba
->flags
))
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
);
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
);
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
);
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");
1161 clear_bit(HISI_SAS_RESET_BIT
, &hisi_hba
->flags
);
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
;
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
;
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
;
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
,
1201 rc2
= hisi_sas_internal_task_abort(hisi_hba
, device
,
1202 HISI_SAS_INT_ABT_CMD
, tag
);
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
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);
1228 dev_err(dev
, "abort task: internal abort failed\n");
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
) {
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
)) &&
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
);
1250 if (rc
!= TMF_RESP_FUNC_COMPLETE
)
1251 dev_notice(dev
, "abort task: rc=%d\n", 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);
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
);
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
);
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
);
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);
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
);
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);
1351 dev_err(dev
, "lu_reset: internal abort failed\n");
1354 hisi_sas_dereg_device(hisi_hba
, device
);
1356 phy
= sas_get_local_phy(device
);
1358 rc
= sas_phy_reset(phy
, 1);
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
);
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);
1372 dev_err(dev
, "lu_reset: internal abort failed\n");
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
);
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
);
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
);
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
,
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
:
1431 rc
= TMF_RESP_FUNC_FAILED
;
1439 hisi_sas_internal_abort_task_exec(struct hisi_hba
*hisi_hba
, int device_id
,
1440 struct sas_task
*task
, int abort_flag
,
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
)))
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
);
1466 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
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
);
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
];
1490 task
->lldd_task
= slot
;
1492 slot
->buf
= dma_pool_alloc(hisi_hba
->buffer_pool
,
1493 GFP_ATOMIC
, &slot
->buf_dma
);
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
);
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
);
1526 dma_pool_free(hisi_hba
->buffer_pool
, slot
->buf
,
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
);
1534 dev_err(dev
, "internal abort task prep: failed[%d]!\n", 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
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
;
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
);
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
);
1581 del_timer(&task
->slow_task
->timer
);
1582 dev_err(dev
, "internal task abort: executing internal task failed: %d\n",
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
;
1596 dev_err(dev
, "internal task abort: timeout and not done.\n");
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
;
1609 if (task
->task_status
.resp
== SAS_TASK_COMPLETE
&&
1610 task
->task_status
.stat
== TMF_RESP_FUNC_SUCC
) {
1611 res
= TMF_RESP_FUNC_SUCC
;
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
),
1620 task
->task_status
.resp
, /* 0 is complete, -1 is undelivered */
1621 task
->task_status
.stat
);
1622 sas_free_task(task
);
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
)
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;
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
;
1662 /* Phy down but ready */
1663 hisi_sas_bytes_dmaed(hisi_hba
, phy_no
);
1664 hisi_sas_port_notify_formed(sas_phy
);
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
);
1673 if (phy
->phy_type
& PORT_TYPE_SAS
) {
1674 int port_id
= port
->id
;
1676 if (!hisi_hba
->hw
->get_wideport_bitmap(hisi_hba
,
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
)
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
,
1707 static struct scsi_host_template _hisi_sas_sht
= {
1708 .module
= THIS_MODULE
,
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
,
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
,
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
);
1760 s
= hisi_hba
->hw
->complete_hdr_size
* HISI_SAS_QUEUE_SLOTS
;
1761 memset(hisi_hba
->complete_hdr
[i
], 0, s
);
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 */
1803 cq
->hisi_hba
= hisi_hba
;
1805 /* Delivery queue structure */
1806 spin_lock_init(&dq
->lock
);
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
])
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
])
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
)
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
,
1833 if (!hisi_hba
->itct
)
1836 memset(hisi_hba
->itct
, 0, s
);
1838 hisi_hba
->slot_info
= devm_kcalloc(dev
, max_command_entries
,
1839 sizeof(struct hisi_sas_slot
),
1841 if (!hisi_hba
->slot_info
)
1844 s
= max_command_entries
* sizeof(struct hisi_sas_iost
);
1845 hisi_hba
->iost
= dma_alloc_coherent(dev
, s
, &hisi_hba
->iost_dma
,
1847 if (!hisi_hba
->iost
)
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
)
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
)
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
)
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
)
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");
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
);
1912 dma_free_coherent(dev
, s
,
1913 hisi_hba
->itct
, hisi_hba
->itct_dma
);
1915 s
= max_command_entries
* sizeof(struct hisi_sas_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
);
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
))
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
;
1971 if (device_property_read_u8_array(dev
, "sas-addr", hisi_hba
->sas_addr
,
1973 dev_err(dev
, "could not get property sas-addr\n");
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");
1989 if (device_property_read_u32(dev
, "ctrl-reset-reg",
1990 &hisi_hba
->ctrl_reset_reg
)) {
1992 "could not get property ctrl-reset-reg\n");
1996 if (device_property_read_u32(dev
, "ctrl-reset-sts-reg",
1997 &hisi_hba
->ctrl_reset_sts_reg
)) {
1999 "could not get property ctrl-reset-sts-reg\n");
2003 if (device_property_read_u32(dev
, "ctrl-clock-ena-reg",
2004 &hisi_hba
->ctrl_clock_ena_reg
)) {
2006 "could not get property ctrl-clock-ena-reg\n");
2011 refclk
= devm_clk_get(dev
, NULL
);
2013 dev_dbg(dev
, "no ref clk property\n");
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");
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");
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
));
2042 dev_err(dev
, "scsi host alloc failed\n");
2045 hisi_hba
= shost_priv(shost
);
2047 INIT_WORK(&hisi_hba
->rst_work
, hisi_sas_rst_work_handler
);
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)
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");
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
))
2070 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
2072 hisi_hba
->sgpio_regs
= devm_ioremap_resource(dev
, res
);
2073 if (IS_ERR(hisi_hba
->sgpio_regs
))
2077 if (hisi_sas_alloc(hisi_hba
, shost
)) {
2078 hisi_sas_free(hisi_hba
);
2084 scsi_host_put(shost
);
2085 dev_err(dev
, "shost alloc failed\n");
2089 void hisi_sas_init_add(struct hisi_hba
*hisi_hba
)
2093 for (i
= 0; i
< hisi_hba
->n_phy
; i
++)
2094 memcpy(&hisi_hba
->phy
[i
].dev_sas_addr
,
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
);
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
) {
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
);
2159 rc
= sas_register_ha(sha
);
2161 goto err_out_register_ha
;
2163 rc
= hisi_hba
->hw
->hw_init(hisi_hba
);
2165 goto err_out_register_ha
;
2167 scsi_scan_host(shost
);
2171 err_out_register_ha
:
2172 scsi_remove_host(shost
);
2174 hisi_sas_free(hisi_hba
);
2175 scsi_host_put(shost
);
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
);
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
);
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
);