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
);
25 static struct hisi_hba
*dev_to_hisi_hba(struct domain_device
*device
)
27 return device
->port
->ha
->lldd_ha
;
30 static void hisi_sas_slot_index_clear(struct hisi_hba
*hisi_hba
, int slot_idx
)
32 void *bitmap
= hisi_hba
->slot_index_tags
;
34 clear_bit(slot_idx
, bitmap
);
37 static void hisi_sas_slot_index_free(struct hisi_hba
*hisi_hba
, int slot_idx
)
39 hisi_sas_slot_index_clear(hisi_hba
, slot_idx
);
42 static void hisi_sas_slot_index_set(struct hisi_hba
*hisi_hba
, int slot_idx
)
44 void *bitmap
= hisi_hba
->slot_index_tags
;
46 set_bit(slot_idx
, bitmap
);
49 static int hisi_sas_slot_index_alloc(struct hisi_hba
*hisi_hba
, int *slot_idx
)
52 void *bitmap
= hisi_hba
->slot_index_tags
;
54 index
= find_first_zero_bit(bitmap
, hisi_hba
->slot_index_count
);
55 if (index
>= hisi_hba
->slot_index_count
)
56 return -SAS_QUEUE_FULL
;
57 hisi_sas_slot_index_set(hisi_hba
, index
);
62 static void hisi_sas_slot_index_init(struct hisi_hba
*hisi_hba
)
66 for (i
= 0; i
< hisi_hba
->slot_index_count
; ++i
)
67 hisi_sas_slot_index_clear(hisi_hba
, i
);
70 void hisi_sas_slot_task_free(struct hisi_hba
*hisi_hba
, struct sas_task
*task
,
71 struct hisi_sas_slot
*slot
)
73 struct device
*dev
= &hisi_hba
->pdev
->dev
;
78 if (!sas_protocol_ata(task
->task_proto
))
80 dma_unmap_sg(dev
, task
->scatter
, slot
->n_elem
,
83 if (slot
->command_table
)
84 dma_pool_free(hisi_hba
->command_table_pool
,
85 slot
->command_table
, slot
->command_table_dma
);
87 if (slot
->status_buffer
)
88 dma_pool_free(hisi_hba
->status_buffer_pool
,
89 slot
->status_buffer
, slot
->status_buffer_dma
);
92 dma_pool_free(hisi_hba
->sge_page_pool
, slot
->sge_page
,
95 list_del_init(&slot
->entry
);
96 task
->lldd_task
= NULL
;
99 hisi_sas_slot_index_free(hisi_hba
, slot
->idx
);
100 /* slot memory is fully zeroed when it is reused */
102 EXPORT_SYMBOL_GPL(hisi_sas_slot_task_free
);
104 static int hisi_sas_task_prep_smp(struct hisi_hba
*hisi_hba
,
105 struct hisi_sas_slot
*slot
)
107 return hisi_hba
->hw
->prep_smp(hisi_hba
, slot
);
110 static int hisi_sas_task_prep_ssp(struct hisi_hba
*hisi_hba
,
111 struct hisi_sas_slot
*slot
, int is_tmf
,
112 struct hisi_sas_tmf_task
*tmf
)
114 return hisi_hba
->hw
->prep_ssp(hisi_hba
, slot
, is_tmf
, tmf
);
117 static int hisi_sas_task_prep_ata(struct hisi_hba
*hisi_hba
,
118 struct hisi_sas_slot
*slot
)
120 return hisi_hba
->hw
->prep_stp(hisi_hba
, slot
);
123 static int hisi_sas_task_prep_abort(struct hisi_hba
*hisi_hba
,
124 struct hisi_sas_slot
*slot
,
125 int device_id
, int abort_flag
, int tag_to_abort
)
127 return hisi_hba
->hw
->prep_abort(hisi_hba
, slot
,
128 device_id
, abort_flag
, tag_to_abort
);
132 * This function will issue an abort TMF regardless of whether the
133 * task is in the sdev or not. Then it will do the task complete
134 * cleanup and callbacks.
136 static void hisi_sas_slot_abort(struct work_struct
*work
)
138 struct hisi_sas_slot
*abort_slot
=
139 container_of(work
, struct hisi_sas_slot
, abort_slot
);
140 struct sas_task
*task
= abort_slot
->task
;
141 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(task
->dev
);
142 struct scsi_cmnd
*cmnd
= task
->uldd_task
;
143 struct hisi_sas_tmf_task tmf_task
;
144 struct domain_device
*device
= task
->dev
;
145 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
147 struct device
*dev
= &hisi_hba
->pdev
->dev
;
148 int tag
= abort_slot
->idx
;
150 if (!(task
->task_proto
& SAS_PROTOCOL_SSP
)) {
151 dev_err(dev
, "cannot abort slot for non-ssp task\n");
155 int_to_scsilun(cmnd
->device
->lun
, &lun
);
156 tmf_task
.tmf
= TMF_ABORT_TASK
;
157 tmf_task
.tag_of_task_to_be_managed
= cpu_to_le16(tag
);
159 hisi_sas_debug_issue_ssp_tmf(task
->dev
, lun
.scsi_lun
, &tmf_task
);
161 /* Do cleanup for this task */
162 hisi_sas_slot_task_free(hisi_hba
, task
, abort_slot
);
164 task
->task_done(task
);
165 if (sas_dev
&& sas_dev
->running_req
)
166 sas_dev
->running_req
--;
169 static int hisi_sas_task_prep(struct sas_task
*task
, struct hisi_hba
*hisi_hba
,
170 int is_tmf
, struct hisi_sas_tmf_task
*tmf
,
173 struct domain_device
*device
= task
->dev
;
174 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
175 struct hisi_sas_port
*port
;
176 struct hisi_sas_slot
*slot
;
177 struct hisi_sas_cmd_hdr
*cmd_hdr_base
;
178 struct device
*dev
= &hisi_hba
->pdev
->dev
;
179 int dlvry_queue_slot
, dlvry_queue
, n_elem
= 0, rc
, slot_idx
;
182 struct task_status_struct
*ts
= &task
->task_status
;
184 ts
->resp
= SAS_TASK_UNDELIVERED
;
185 ts
->stat
= SAS_PHY_DOWN
;
187 * libsas will use dev->port, should
188 * not call task_done for sata
190 if (device
->dev_type
!= SAS_SATA_DEV
)
191 task
->task_done(task
);
195 if (DEV_IS_GONE(sas_dev
)) {
197 dev_info(dev
, "task prep: device %llu not ready\n",
200 dev_info(dev
, "task prep: device %016llx not ready\n",
201 SAS_ADDR(device
->sas_addr
));
206 port
= device
->port
->lldd_port
;
207 if (port
&& !port
->port_attached
) {
208 dev_info(dev
, "task prep: %s port%d not attach device\n",
209 (sas_protocol_ata(task
->task_proto
)) ?
216 if (!sas_protocol_ata(task
->task_proto
)) {
217 if (task
->num_scatter
) {
218 n_elem
= dma_map_sg(dev
, task
->scatter
,
219 task
->num_scatter
, task
->data_dir
);
226 n_elem
= task
->num_scatter
;
228 if (hisi_hba
->hw
->slot_index_alloc
)
229 rc
= hisi_hba
->hw
->slot_index_alloc(hisi_hba
, &slot_idx
,
232 rc
= hisi_sas_slot_index_alloc(hisi_hba
, &slot_idx
);
235 rc
= hisi_hba
->hw
->get_free_slot(hisi_hba
, sas_dev
->device_id
,
236 &dlvry_queue
, &dlvry_queue_slot
);
240 slot
= &hisi_hba
->slot_info
[slot_idx
];
241 memset(slot
, 0, sizeof(struct hisi_sas_slot
));
243 slot
->idx
= slot_idx
;
244 slot
->n_elem
= n_elem
;
245 slot
->dlvry_queue
= dlvry_queue
;
246 slot
->dlvry_queue_slot
= dlvry_queue_slot
;
247 cmd_hdr_base
= hisi_hba
->cmd_hdr
[dlvry_queue
];
248 slot
->cmd_hdr
= &cmd_hdr_base
[dlvry_queue_slot
];
251 task
->lldd_task
= slot
;
252 INIT_WORK(&slot
->abort_slot
, hisi_sas_slot_abort
);
254 slot
->status_buffer
= dma_pool_alloc(hisi_hba
->status_buffer_pool
,
256 &slot
->status_buffer_dma
);
257 if (!slot
->status_buffer
) {
259 goto err_out_slot_buf
;
261 memset(slot
->status_buffer
, 0, HISI_SAS_STATUS_BUF_SZ
);
263 slot
->command_table
= dma_pool_alloc(hisi_hba
->command_table_pool
,
265 &slot
->command_table_dma
);
266 if (!slot
->command_table
) {
268 goto err_out_status_buf
;
270 memset(slot
->command_table
, 0, HISI_SAS_COMMAND_TABLE_SZ
);
271 memset(slot
->cmd_hdr
, 0, sizeof(struct hisi_sas_cmd_hdr
));
273 switch (task
->task_proto
) {
274 case SAS_PROTOCOL_SMP
:
275 rc
= hisi_sas_task_prep_smp(hisi_hba
, slot
);
277 case SAS_PROTOCOL_SSP
:
278 rc
= hisi_sas_task_prep_ssp(hisi_hba
, slot
, is_tmf
, tmf
);
280 case SAS_PROTOCOL_SATA
:
281 case SAS_PROTOCOL_STP
:
282 case SAS_PROTOCOL_SATA
| SAS_PROTOCOL_STP
:
283 rc
= hisi_sas_task_prep_ata(hisi_hba
, slot
);
286 dev_err(dev
, "task prep: unknown/unsupported proto (0x%x)\n",
293 dev_err(dev
, "task prep: rc = 0x%x\n", rc
);
296 goto err_out_command_table
;
299 list_add_tail(&slot
->entry
, &port
->list
);
300 spin_lock(&task
->task_state_lock
);
301 task
->task_state_flags
|= SAS_TASK_AT_INITIATOR
;
302 spin_unlock(&task
->task_state_lock
);
304 hisi_hba
->slot_prep
= slot
;
306 sas_dev
->running_req
++;
312 dma_pool_free(hisi_hba
->sge_page_pool
, slot
->sge_page
,
314 err_out_command_table
:
315 dma_pool_free(hisi_hba
->command_table_pool
, slot
->command_table
,
316 slot
->command_table_dma
);
318 dma_pool_free(hisi_hba
->status_buffer_pool
, slot
->status_buffer
,
319 slot
->status_buffer_dma
);
321 /* Nothing to be done */
323 hisi_sas_slot_index_free(hisi_hba
, slot_idx
);
325 dev_err(dev
, "task prep: failed[%d]!\n", rc
);
326 if (!sas_protocol_ata(task
->task_proto
))
328 dma_unmap_sg(dev
, task
->scatter
, n_elem
,
334 static int hisi_sas_task_exec(struct sas_task
*task
, gfp_t gfp_flags
,
335 int is_tmf
, struct hisi_sas_tmf_task
*tmf
)
340 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(task
->dev
);
341 struct device
*dev
= &hisi_hba
->pdev
->dev
;
343 /* protect task_prep and start_delivery sequence */
344 spin_lock_irqsave(&hisi_hba
->lock
, flags
);
345 rc
= hisi_sas_task_prep(task
, hisi_hba
, is_tmf
, tmf
, &pass
);
347 dev_err(dev
, "task exec: failed[%d]!\n", rc
);
350 hisi_hba
->hw
->start_delivery(hisi_hba
);
351 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
356 static void hisi_sas_bytes_dmaed(struct hisi_hba
*hisi_hba
, int phy_no
)
358 struct hisi_sas_phy
*phy
= &hisi_hba
->phy
[phy_no
];
359 struct asd_sas_phy
*sas_phy
= &phy
->sas_phy
;
360 struct sas_ha_struct
*sas_ha
;
362 if (!phy
->phy_attached
)
365 sas_ha
= &hisi_hba
->sha
;
366 sas_ha
->notify_phy_event(sas_phy
, PHYE_OOB_DONE
);
369 struct sas_phy
*sphy
= sas_phy
->phy
;
371 sphy
->negotiated_linkrate
= sas_phy
->linkrate
;
372 sphy
->minimum_linkrate
= phy
->minimum_linkrate
;
373 sphy
->minimum_linkrate_hw
= SAS_LINK_RATE_1_5_GBPS
;
374 sphy
->maximum_linkrate
= phy
->maximum_linkrate
;
377 if (phy
->phy_type
& PORT_TYPE_SAS
) {
378 struct sas_identify_frame
*id
;
380 id
= (struct sas_identify_frame
*)phy
->frame_rcvd
;
381 id
->dev_type
= phy
->identify
.device_type
;
382 id
->initiator_bits
= SAS_PROTOCOL_ALL
;
383 id
->target_bits
= phy
->identify
.target_port_protocols
;
384 } else if (phy
->phy_type
& PORT_TYPE_SATA
) {
388 sas_phy
->frame_rcvd_size
= phy
->frame_rcvd_size
;
389 sas_ha
->notify_port_event(sas_phy
, PORTE_BYTES_DMAED
);
392 static struct hisi_sas_device
*hisi_sas_alloc_dev(struct domain_device
*device
)
394 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(device
);
395 struct hisi_sas_device
*sas_dev
= NULL
;
398 spin_lock(&hisi_hba
->lock
);
399 for (i
= 0; i
< HISI_SAS_MAX_DEVICES
; i
++) {
400 if (hisi_hba
->devices
[i
].dev_type
== SAS_PHY_UNUSED
) {
401 hisi_hba
->devices
[i
].device_id
= i
;
402 sas_dev
= &hisi_hba
->devices
[i
];
403 sas_dev
->dev_status
= HISI_SAS_DEV_NORMAL
;
404 sas_dev
->dev_type
= device
->dev_type
;
405 sas_dev
->hisi_hba
= hisi_hba
;
406 sas_dev
->sas_device
= device
;
410 spin_unlock(&hisi_hba
->lock
);
415 static int hisi_sas_dev_found(struct domain_device
*device
)
417 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(device
);
418 struct domain_device
*parent_dev
= device
->parent
;
419 struct hisi_sas_device
*sas_dev
;
420 struct device
*dev
= &hisi_hba
->pdev
->dev
;
422 if (hisi_hba
->hw
->alloc_dev
)
423 sas_dev
= hisi_hba
->hw
->alloc_dev(device
);
425 sas_dev
= hisi_sas_alloc_dev(device
);
427 dev_err(dev
, "fail alloc dev: max support %d devices\n",
428 HISI_SAS_MAX_DEVICES
);
432 device
->lldd_dev
= sas_dev
;
433 hisi_hba
->hw
->setup_itct(hisi_hba
, sas_dev
);
435 if (parent_dev
&& DEV_IS_EXPANDER(parent_dev
->dev_type
)) {
437 u8 phy_num
= parent_dev
->ex_dev
.num_phys
;
440 for (phy_no
= 0; phy_no
< phy_num
; phy_no
++) {
441 phy
= &parent_dev
->ex_dev
.ex_phy
[phy_no
];
442 if (SAS_ADDR(phy
->attached_sas_addr
) ==
443 SAS_ADDR(device
->sas_addr
)) {
444 sas_dev
->attached_phy
= phy_no
;
449 if (phy_no
== phy_num
) {
450 dev_info(dev
, "dev found: no attached "
451 "dev:%016llx at ex:%016llx\n",
452 SAS_ADDR(device
->sas_addr
),
453 SAS_ADDR(parent_dev
->sas_addr
));
461 static int hisi_sas_slave_configure(struct scsi_device
*sdev
)
463 struct domain_device
*dev
= sdev_to_domain_dev(sdev
);
464 int ret
= sas_slave_configure(sdev
);
468 if (!dev_is_sata(dev
))
469 sas_change_queue_depth(sdev
, 64);
474 static void hisi_sas_scan_start(struct Scsi_Host
*shost
)
476 struct hisi_hba
*hisi_hba
= shost_priv(shost
);
479 for (i
= 0; i
< hisi_hba
->n_phy
; ++i
)
480 hisi_sas_bytes_dmaed(hisi_hba
, i
);
482 hisi_hba
->scan_finished
= 1;
485 static int hisi_sas_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
487 struct hisi_hba
*hisi_hba
= shost_priv(shost
);
488 struct sas_ha_struct
*sha
= &hisi_hba
->sha
;
490 if (hisi_hba
->scan_finished
== 0)
497 static void hisi_sas_phyup_work(struct work_struct
*work
)
499 struct hisi_sas_phy
*phy
=
500 container_of(work
, struct hisi_sas_phy
, phyup_ws
);
501 struct hisi_hba
*hisi_hba
= phy
->hisi_hba
;
502 struct asd_sas_phy
*sas_phy
= &phy
->sas_phy
;
503 int phy_no
= sas_phy
->id
;
505 hisi_hba
->hw
->sl_notify(hisi_hba
, phy_no
); /* This requires a sleep */
506 hisi_sas_bytes_dmaed(hisi_hba
, phy_no
);
509 static void hisi_sas_phy_init(struct hisi_hba
*hisi_hba
, int phy_no
)
511 struct hisi_sas_phy
*phy
= &hisi_hba
->phy
[phy_no
];
512 struct asd_sas_phy
*sas_phy
= &phy
->sas_phy
;
514 phy
->hisi_hba
= hisi_hba
;
516 init_timer(&phy
->timer
);
517 sas_phy
->enabled
= (phy_no
< hisi_hba
->n_phy
) ? 1 : 0;
518 sas_phy
->class = SAS
;
519 sas_phy
->iproto
= SAS_PROTOCOL_ALL
;
521 sas_phy
->type
= PHY_TYPE_PHYSICAL
;
522 sas_phy
->role
= PHY_ROLE_INITIATOR
;
523 sas_phy
->oob_mode
= OOB_NOT_CONNECTED
;
524 sas_phy
->linkrate
= SAS_LINK_RATE_UNKNOWN
;
525 sas_phy
->id
= phy_no
;
526 sas_phy
->sas_addr
= &hisi_hba
->sas_addr
[0];
527 sas_phy
->frame_rcvd
= &phy
->frame_rcvd
[0];
528 sas_phy
->ha
= (struct sas_ha_struct
*)hisi_hba
->shost
->hostdata
;
529 sas_phy
->lldd_phy
= phy
;
531 INIT_WORK(&phy
->phyup_ws
, hisi_sas_phyup_work
);
534 static void hisi_sas_port_notify_formed(struct asd_sas_phy
*sas_phy
)
536 struct sas_ha_struct
*sas_ha
= sas_phy
->ha
;
537 struct hisi_hba
*hisi_hba
= sas_ha
->lldd_ha
;
538 struct hisi_sas_phy
*phy
= sas_phy
->lldd_phy
;
539 struct asd_sas_port
*sas_port
= sas_phy
->port
;
540 struct hisi_sas_port
*port
= &hisi_hba
->port
[phy
->port_id
];
546 spin_lock_irqsave(&hisi_hba
->lock
, flags
);
547 port
->port_attached
= 1;
548 port
->id
= phy
->port_id
;
550 sas_port
->lldd_port
= port
;
551 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
554 static void hisi_sas_do_release_task(struct hisi_hba
*hisi_hba
, int phy_no
,
555 struct domain_device
*device
)
557 struct hisi_sas_phy
*phy
;
558 struct hisi_sas_port
*port
;
559 struct hisi_sas_slot
*slot
, *slot2
;
560 struct device
*dev
= &hisi_hba
->pdev
->dev
;
562 phy
= &hisi_hba
->phy
[phy_no
];
567 list_for_each_entry_safe(slot
, slot2
, &port
->list
, entry
) {
568 struct sas_task
*task
;
571 if (device
&& task
->dev
!= device
)
574 dev_info(dev
, "Release slot [%d:%d], task [%p]:\n",
575 slot
->dlvry_queue
, slot
->dlvry_queue_slot
, task
);
576 hisi_hba
->hw
->slot_complete(hisi_hba
, slot
, 1);
580 static void hisi_sas_port_notify_deformed(struct asd_sas_phy
*sas_phy
)
582 struct domain_device
*device
;
583 struct hisi_sas_phy
*phy
= sas_phy
->lldd_phy
;
584 struct asd_sas_port
*sas_port
= sas_phy
->port
;
586 list_for_each_entry(device
, &sas_port
->dev_list
, dev_list_node
)
587 hisi_sas_do_release_task(phy
->hisi_hba
, sas_phy
->id
, device
);
590 static void hisi_sas_release_task(struct hisi_hba
*hisi_hba
,
591 struct domain_device
*device
)
593 struct asd_sas_port
*port
= device
->port
;
594 struct asd_sas_phy
*sas_phy
;
596 list_for_each_entry(sas_phy
, &port
->phy_list
, port_phy_el
)
597 hisi_sas_do_release_task(hisi_hba
, sas_phy
->id
, device
);
600 static void hisi_sas_dev_gone(struct domain_device
*device
)
602 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
603 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(device
);
604 struct device
*dev
= &hisi_hba
->pdev
->dev
;
605 u64 dev_id
= sas_dev
->device_id
;
607 dev_info(dev
, "found dev[%lld:%x] is gone\n",
608 sas_dev
->device_id
, sas_dev
->dev_type
);
610 hisi_sas_internal_task_abort(hisi_hba
, device
,
611 HISI_SAS_INT_ABT_DEV
, 0);
613 hisi_hba
->hw
->free_device(hisi_hba
, sas_dev
);
614 device
->lldd_dev
= NULL
;
615 memset(sas_dev
, 0, sizeof(*sas_dev
));
616 sas_dev
->device_id
= dev_id
;
617 sas_dev
->dev_type
= SAS_PHY_UNUSED
;
618 sas_dev
->dev_status
= HISI_SAS_DEV_NORMAL
;
621 static int hisi_sas_queue_command(struct sas_task
*task
, gfp_t gfp_flags
)
623 return hisi_sas_task_exec(task
, gfp_flags
, 0, NULL
);
626 static int hisi_sas_control_phy(struct asd_sas_phy
*sas_phy
, enum phy_func func
,
629 struct sas_ha_struct
*sas_ha
= sas_phy
->ha
;
630 struct hisi_hba
*hisi_hba
= sas_ha
->lldd_ha
;
631 int phy_no
= sas_phy
->id
;
634 case PHY_FUNC_HARD_RESET
:
635 hisi_hba
->hw
->phy_hard_reset(hisi_hba
, phy_no
);
638 case PHY_FUNC_LINK_RESET
:
639 hisi_hba
->hw
->phy_enable(hisi_hba
, phy_no
);
640 hisi_hba
->hw
->phy_hard_reset(hisi_hba
, phy_no
);
643 case PHY_FUNC_DISABLE
:
644 hisi_hba
->hw
->phy_disable(hisi_hba
, phy_no
);
647 case PHY_FUNC_SET_LINK_RATE
:
648 case PHY_FUNC_RELEASE_SPINUP_HOLD
:
655 static void hisi_sas_task_done(struct sas_task
*task
)
657 if (!del_timer(&task
->slow_task
->timer
))
659 complete(&task
->slow_task
->completion
);
662 static void hisi_sas_tmf_timedout(unsigned long data
)
664 struct sas_task
*task
= (struct sas_task
*)data
;
666 task
->task_state_flags
|= SAS_TASK_STATE_ABORTED
;
667 complete(&task
->slow_task
->completion
);
670 #define TASK_TIMEOUT 20
672 static int hisi_sas_exec_internal_tmf_task(struct domain_device
*device
,
673 void *parameter
, u32 para_len
,
674 struct hisi_sas_tmf_task
*tmf
)
676 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
677 struct hisi_hba
*hisi_hba
= sas_dev
->hisi_hba
;
678 struct device
*dev
= &hisi_hba
->pdev
->dev
;
679 struct sas_task
*task
;
682 for (retry
= 0; retry
< TASK_RETRY
; retry
++) {
683 task
= sas_alloc_slow_task(GFP_KERNEL
);
688 task
->task_proto
= device
->tproto
;
690 memcpy(&task
->ssp_task
, parameter
, para_len
);
691 task
->task_done
= hisi_sas_task_done
;
693 task
->slow_task
->timer
.data
= (unsigned long) task
;
694 task
->slow_task
->timer
.function
= hisi_sas_tmf_timedout
;
695 task
->slow_task
->timer
.expires
= jiffies
+ TASK_TIMEOUT
*HZ
;
696 add_timer(&task
->slow_task
->timer
);
698 res
= hisi_sas_task_exec(task
, GFP_KERNEL
, 1, tmf
);
701 del_timer(&task
->slow_task
->timer
);
702 dev_err(dev
, "abort tmf: executing internal task failed: %d\n",
707 wait_for_completion(&task
->slow_task
->completion
);
708 res
= TMF_RESP_FUNC_FAILED
;
709 /* Even TMF timed out, return direct. */
710 if ((task
->task_state_flags
& SAS_TASK_STATE_ABORTED
)) {
711 if (!(task
->task_state_flags
& SAS_TASK_STATE_DONE
)) {
712 dev_err(dev
, "abort tmf: TMF task[%d] timeout\n",
713 tmf
->tag_of_task_to_be_managed
);
714 if (task
->lldd_task
) {
715 struct hisi_sas_slot
*slot
=
718 hisi_sas_slot_task_free(hisi_hba
,
726 if (task
->task_status
.resp
== SAS_TASK_COMPLETE
&&
727 task
->task_status
.stat
== TMF_RESP_FUNC_COMPLETE
) {
728 res
= TMF_RESP_FUNC_COMPLETE
;
732 if (task
->task_status
.resp
== SAS_TASK_COMPLETE
&&
733 task
->task_status
.stat
== TMF_RESP_FUNC_SUCC
) {
734 res
= TMF_RESP_FUNC_SUCC
;
738 if (task
->task_status
.resp
== SAS_TASK_COMPLETE
&&
739 task
->task_status
.stat
== SAS_DATA_UNDERRUN
) {
740 /* no error, but return the number of bytes of
743 dev_warn(dev
, "abort tmf: task to dev %016llx "
744 "resp: 0x%x sts 0x%x underrun\n",
745 SAS_ADDR(device
->sas_addr
),
746 task
->task_status
.resp
,
747 task
->task_status
.stat
);
748 res
= task
->task_status
.residual
;
752 if (task
->task_status
.resp
== SAS_TASK_COMPLETE
&&
753 task
->task_status
.stat
== SAS_DATA_OVERRUN
) {
754 dev_warn(dev
, "abort tmf: blocked task error\n");
759 dev_warn(dev
, "abort tmf: task to dev "
760 "%016llx resp: 0x%x status 0x%x\n",
761 SAS_ADDR(device
->sas_addr
), task
->task_status
.resp
,
762 task
->task_status
.stat
);
767 if (retry
== TASK_RETRY
)
768 dev_warn(dev
, "abort tmf: executing internal task failed!\n");
773 static int hisi_sas_debug_issue_ssp_tmf(struct domain_device
*device
,
774 u8
*lun
, struct hisi_sas_tmf_task
*tmf
)
776 struct sas_ssp_task ssp_task
;
778 if (!(device
->tproto
& SAS_PROTOCOL_SSP
))
779 return TMF_RESP_FUNC_ESUPP
;
781 memcpy(ssp_task
.LUN
, lun
, 8);
783 return hisi_sas_exec_internal_tmf_task(device
, &ssp_task
,
784 sizeof(ssp_task
), tmf
);
787 static int hisi_sas_abort_task(struct sas_task
*task
)
790 struct hisi_sas_tmf_task tmf_task
;
791 struct domain_device
*device
= task
->dev
;
792 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
793 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(task
->dev
);
794 struct device
*dev
= &hisi_hba
->pdev
->dev
;
795 int rc
= TMF_RESP_FUNC_FAILED
;
799 dev_warn(dev
, "Device has been removed\n");
800 return TMF_RESP_FUNC_FAILED
;
803 spin_lock_irqsave(&task
->task_state_lock
, flags
);
804 if (task
->task_state_flags
& SAS_TASK_STATE_DONE
) {
805 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
806 rc
= TMF_RESP_FUNC_COMPLETE
;
810 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
811 sas_dev
->dev_status
= HISI_SAS_DEV_EH
;
812 if (task
->lldd_task
&& task
->task_proto
& SAS_PROTOCOL_SSP
) {
813 struct scsi_cmnd
*cmnd
= task
->uldd_task
;
814 struct hisi_sas_slot
*slot
= task
->lldd_task
;
817 int_to_scsilun(cmnd
->device
->lun
, &lun
);
818 tmf_task
.tmf
= TMF_ABORT_TASK
;
819 tmf_task
.tag_of_task_to_be_managed
= cpu_to_le16(tag
);
821 rc
= hisi_sas_debug_issue_ssp_tmf(task
->dev
, lun
.scsi_lun
,
824 /* if successful, clear the task and callback forwards.*/
825 if (rc
== TMF_RESP_FUNC_COMPLETE
) {
826 if (task
->lldd_task
) {
827 struct hisi_sas_slot
*slot
;
829 slot
= &hisi_hba
->slot_info
830 [tmf_task
.tag_of_task_to_be_managed
];
831 spin_lock_irqsave(&hisi_hba
->lock
, flags
);
832 hisi_hba
->hw
->slot_complete(hisi_hba
, slot
, 1);
833 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
837 hisi_sas_internal_task_abort(hisi_hba
, device
,
838 HISI_SAS_INT_ABT_CMD
, tag
);
839 } else if (task
->task_proto
& SAS_PROTOCOL_SATA
||
840 task
->task_proto
& SAS_PROTOCOL_STP
) {
841 if (task
->dev
->dev_type
== SAS_SATA_DEV
) {
842 hisi_sas_internal_task_abort(hisi_hba
, device
,
843 HISI_SAS_INT_ABT_DEV
, 0);
844 rc
= TMF_RESP_FUNC_COMPLETE
;
846 } else if (task
->task_proto
& SAS_PROTOCOL_SMP
) {
848 struct hisi_sas_slot
*slot
= task
->lldd_task
;
851 hisi_sas_internal_task_abort(hisi_hba
, device
,
852 HISI_SAS_INT_ABT_CMD
, tag
);
856 if (rc
!= TMF_RESP_FUNC_COMPLETE
)
857 dev_notice(dev
, "abort task: rc=%d\n", rc
);
861 static int hisi_sas_abort_task_set(struct domain_device
*device
, u8
*lun
)
863 struct hisi_sas_tmf_task tmf_task
;
864 int rc
= TMF_RESP_FUNC_FAILED
;
866 tmf_task
.tmf
= TMF_ABORT_TASK_SET
;
867 rc
= hisi_sas_debug_issue_ssp_tmf(device
, lun
, &tmf_task
);
872 static int hisi_sas_clear_aca(struct domain_device
*device
, u8
*lun
)
874 int rc
= TMF_RESP_FUNC_FAILED
;
875 struct hisi_sas_tmf_task tmf_task
;
877 tmf_task
.tmf
= TMF_CLEAR_ACA
;
878 rc
= hisi_sas_debug_issue_ssp_tmf(device
, lun
, &tmf_task
);
883 static int hisi_sas_debug_I_T_nexus_reset(struct domain_device
*device
)
885 struct sas_phy
*phy
= sas_get_local_phy(device
);
886 int rc
, reset_type
= (device
->dev_type
== SAS_SATA_DEV
||
887 (device
->tproto
& SAS_PROTOCOL_STP
)) ? 0 : 1;
888 rc
= sas_phy_reset(phy
, reset_type
);
889 sas_put_local_phy(phy
);
894 static int hisi_sas_I_T_nexus_reset(struct domain_device
*device
)
896 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
897 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(device
);
899 int rc
= TMF_RESP_FUNC_FAILED
;
901 if (sas_dev
->dev_status
!= HISI_SAS_DEV_EH
)
902 return TMF_RESP_FUNC_FAILED
;
903 sas_dev
->dev_status
= HISI_SAS_DEV_NORMAL
;
905 rc
= hisi_sas_debug_I_T_nexus_reset(device
);
907 spin_lock_irqsave(&hisi_hba
->lock
, flags
);
908 hisi_sas_release_task(hisi_hba
, device
);
909 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
914 static int hisi_sas_lu_reset(struct domain_device
*device
, u8
*lun
)
916 struct hisi_sas_tmf_task tmf_task
;
917 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
918 struct hisi_hba
*hisi_hba
= dev_to_hisi_hba(device
);
919 struct device
*dev
= &hisi_hba
->pdev
->dev
;
921 int rc
= TMF_RESP_FUNC_FAILED
;
923 tmf_task
.tmf
= TMF_LU_RESET
;
924 sas_dev
->dev_status
= HISI_SAS_DEV_EH
;
925 rc
= hisi_sas_debug_issue_ssp_tmf(device
, lun
, &tmf_task
);
926 if (rc
== TMF_RESP_FUNC_COMPLETE
) {
927 spin_lock_irqsave(&hisi_hba
->lock
, flags
);
928 hisi_sas_release_task(hisi_hba
, device
);
929 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
932 /* If failed, fall-through I_T_Nexus reset */
933 dev_err(dev
, "lu_reset: for device[%llx]:rc= %d\n",
934 sas_dev
->device_id
, rc
);
938 static int hisi_sas_query_task(struct sas_task
*task
)
941 struct hisi_sas_tmf_task tmf_task
;
942 int rc
= TMF_RESP_FUNC_FAILED
;
944 if (task
->lldd_task
&& task
->task_proto
& SAS_PROTOCOL_SSP
) {
945 struct scsi_cmnd
*cmnd
= task
->uldd_task
;
946 struct domain_device
*device
= task
->dev
;
947 struct hisi_sas_slot
*slot
= task
->lldd_task
;
950 int_to_scsilun(cmnd
->device
->lun
, &lun
);
951 tmf_task
.tmf
= TMF_QUERY_TASK
;
952 tmf_task
.tag_of_task_to_be_managed
= cpu_to_le16(tag
);
954 rc
= hisi_sas_debug_issue_ssp_tmf(device
,
958 /* The task is still in Lun, release it then */
959 case TMF_RESP_FUNC_SUCC
:
960 /* The task is not in Lun or failed, reset the phy */
961 case TMF_RESP_FUNC_FAILED
:
962 case TMF_RESP_FUNC_COMPLETE
:
970 hisi_sas_internal_abort_task_exec(struct hisi_hba
*hisi_hba
, u64 device_id
,
971 struct sas_task
*task
, int abort_flag
,
974 struct domain_device
*device
= task
->dev
;
975 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
976 struct device
*dev
= &hisi_hba
->pdev
->dev
;
977 struct hisi_sas_port
*port
;
978 struct hisi_sas_slot
*slot
;
979 struct hisi_sas_cmd_hdr
*cmd_hdr_base
;
980 int dlvry_queue_slot
, dlvry_queue
, n_elem
= 0, rc
, slot_idx
;
985 port
= device
->port
->lldd_port
;
987 /* simply get a slot and send abort command */
988 rc
= hisi_sas_slot_index_alloc(hisi_hba
, &slot_idx
);
991 rc
= hisi_hba
->hw
->get_free_slot(hisi_hba
, sas_dev
->device_id
,
992 &dlvry_queue
, &dlvry_queue_slot
);
996 slot
= &hisi_hba
->slot_info
[slot_idx
];
997 memset(slot
, 0, sizeof(struct hisi_sas_slot
));
999 slot
->idx
= slot_idx
;
1000 slot
->n_elem
= n_elem
;
1001 slot
->dlvry_queue
= dlvry_queue
;
1002 slot
->dlvry_queue_slot
= dlvry_queue_slot
;
1003 cmd_hdr_base
= hisi_hba
->cmd_hdr
[dlvry_queue
];
1004 slot
->cmd_hdr
= &cmd_hdr_base
[dlvry_queue_slot
];
1007 task
->lldd_task
= slot
;
1009 memset(slot
->cmd_hdr
, 0, sizeof(struct hisi_sas_cmd_hdr
));
1011 rc
= hisi_sas_task_prep_abort(hisi_hba
, slot
, device_id
,
1012 abort_flag
, task_tag
);
1016 /* Port structure is static for the HBA, so
1017 * even if the port is deformed it is ok
1020 list_add_tail(&slot
->entry
, &port
->list
);
1021 spin_lock(&task
->task_state_lock
);
1022 task
->task_state_flags
|= SAS_TASK_AT_INITIATOR
;
1023 spin_unlock(&task
->task_state_lock
);
1025 hisi_hba
->slot_prep
= slot
;
1027 sas_dev
->running_req
++;
1028 /* send abort command to our chip */
1029 hisi_hba
->hw
->start_delivery(hisi_hba
);
1034 hisi_sas_slot_index_free(hisi_hba
, slot_idx
);
1036 dev_err(dev
, "internal abort task prep: failed[%d]!\n", rc
);
1042 * hisi_sas_internal_task_abort -- execute an internal
1043 * abort command for single IO command or a device
1044 * @hisi_hba: host controller struct
1045 * @device: domain device
1046 * @abort_flag: mode of operation, device or single IO
1047 * @tag: tag of IO to be aborted (only relevant to single
1051 hisi_sas_internal_task_abort(struct hisi_hba
*hisi_hba
,
1052 struct domain_device
*device
,
1053 int abort_flag
, int tag
)
1055 struct sas_task
*task
;
1056 struct hisi_sas_device
*sas_dev
= device
->lldd_dev
;
1057 struct device
*dev
= &hisi_hba
->pdev
->dev
;
1059 unsigned long flags
;
1061 if (!hisi_hba
->hw
->prep_abort
)
1064 task
= sas_alloc_slow_task(GFP_KERNEL
);
1069 task
->task_proto
= device
->tproto
;
1070 task
->task_done
= hisi_sas_task_done
;
1071 task
->slow_task
->timer
.data
= (unsigned long)task
;
1072 task
->slow_task
->timer
.function
= hisi_sas_tmf_timedout
;
1073 task
->slow_task
->timer
.expires
= jiffies
+ 20*HZ
;
1074 add_timer(&task
->slow_task
->timer
);
1076 /* Lock as we are alloc'ing a slot, which cannot be interrupted */
1077 spin_lock_irqsave(&hisi_hba
->lock
, flags
);
1078 res
= hisi_sas_internal_abort_task_exec(hisi_hba
, sas_dev
->device_id
,
1079 task
, abort_flag
, tag
);
1080 spin_unlock_irqrestore(&hisi_hba
->lock
, flags
);
1082 del_timer(&task
->slow_task
->timer
);
1083 dev_err(dev
, "internal task abort: executing internal task failed: %d\n",
1087 wait_for_completion(&task
->slow_task
->completion
);
1088 res
= TMF_RESP_FUNC_FAILED
;
1090 if (task
->task_status
.resp
== SAS_TASK_COMPLETE
&&
1091 task
->task_status
.stat
== TMF_RESP_FUNC_COMPLETE
) {
1092 res
= TMF_RESP_FUNC_COMPLETE
;
1096 /* TMF timed out, return direct. */
1097 if ((task
->task_state_flags
& SAS_TASK_STATE_ABORTED
)) {
1098 if (!(task
->task_state_flags
& SAS_TASK_STATE_DONE
)) {
1099 dev_err(dev
, "internal task abort: timeout.\n");
1100 if (task
->lldd_task
) {
1101 struct hisi_sas_slot
*slot
= task
->lldd_task
;
1103 hisi_sas_slot_task_free(hisi_hba
, task
, slot
);
1109 dev_info(dev
, "internal task abort: task to dev %016llx task=%p "
1110 "resp: 0x%x sts 0x%x\n",
1111 SAS_ADDR(device
->sas_addr
),
1113 task
->task_status
.resp
, /* 0 is complete, -1 is undelivered */
1114 task
->task_status
.stat
);
1115 sas_free_task(task
);
1120 static void hisi_sas_port_formed(struct asd_sas_phy
*sas_phy
)
1122 hisi_sas_port_notify_formed(sas_phy
);
1125 static void hisi_sas_port_deformed(struct asd_sas_phy
*sas_phy
)
1127 hisi_sas_port_notify_deformed(sas_phy
);
1130 static void hisi_sas_phy_disconnected(struct hisi_sas_phy
*phy
)
1132 phy
->phy_attached
= 0;
1137 void hisi_sas_phy_down(struct hisi_hba
*hisi_hba
, int phy_no
, int rdy
)
1139 struct hisi_sas_phy
*phy
= &hisi_hba
->phy
[phy_no
];
1140 struct asd_sas_phy
*sas_phy
= &phy
->sas_phy
;
1141 struct sas_ha_struct
*sas_ha
= &hisi_hba
->sha
;
1144 /* Phy down but ready */
1145 hisi_sas_bytes_dmaed(hisi_hba
, phy_no
);
1146 hisi_sas_port_notify_formed(sas_phy
);
1148 struct hisi_sas_port
*port
= phy
->port
;
1150 /* Phy down and not ready */
1151 sas_ha
->notify_phy_event(sas_phy
, PHYE_LOSS_OF_SIGNAL
);
1152 sas_phy_disconnected(sas_phy
);
1155 if (phy
->phy_type
& PORT_TYPE_SAS
) {
1156 int port_id
= port
->id
;
1158 if (!hisi_hba
->hw
->get_wideport_bitmap(hisi_hba
,
1160 port
->port_attached
= 0;
1161 } else if (phy
->phy_type
& PORT_TYPE_SATA
)
1162 port
->port_attached
= 0;
1164 hisi_sas_phy_disconnected(phy
);
1167 EXPORT_SYMBOL_GPL(hisi_sas_phy_down
);
1169 static struct scsi_transport_template
*hisi_sas_stt
;
1171 static struct scsi_host_template hisi_sas_sht
= {
1172 .module
= THIS_MODULE
,
1174 .queuecommand
= sas_queuecommand
,
1175 .target_alloc
= sas_target_alloc
,
1176 .slave_configure
= hisi_sas_slave_configure
,
1177 .scan_finished
= hisi_sas_scan_finished
,
1178 .scan_start
= hisi_sas_scan_start
,
1179 .change_queue_depth
= sas_change_queue_depth
,
1180 .bios_param
= sas_bios_param
,
1183 .sg_tablesize
= SG_ALL
,
1184 .max_sectors
= SCSI_DEFAULT_MAX_SECTORS
,
1185 .use_clustering
= ENABLE_CLUSTERING
,
1186 .eh_device_reset_handler
= sas_eh_device_reset_handler
,
1187 .eh_bus_reset_handler
= sas_eh_bus_reset_handler
,
1188 .target_destroy
= sas_target_destroy
,
1192 static struct sas_domain_function_template hisi_sas_transport_ops
= {
1193 .lldd_dev_found
= hisi_sas_dev_found
,
1194 .lldd_dev_gone
= hisi_sas_dev_gone
,
1195 .lldd_execute_task
= hisi_sas_queue_command
,
1196 .lldd_control_phy
= hisi_sas_control_phy
,
1197 .lldd_abort_task
= hisi_sas_abort_task
,
1198 .lldd_abort_task_set
= hisi_sas_abort_task_set
,
1199 .lldd_clear_aca
= hisi_sas_clear_aca
,
1200 .lldd_I_T_nexus_reset
= hisi_sas_I_T_nexus_reset
,
1201 .lldd_lu_reset
= hisi_sas_lu_reset
,
1202 .lldd_query_task
= hisi_sas_query_task
,
1203 .lldd_port_formed
= hisi_sas_port_formed
,
1204 .lldd_port_deformed
= hisi_sas_port_deformed
,
1207 static int hisi_sas_alloc(struct hisi_hba
*hisi_hba
, struct Scsi_Host
*shost
)
1209 struct platform_device
*pdev
= hisi_hba
->pdev
;
1210 struct device
*dev
= &pdev
->dev
;
1211 int i
, s
, max_command_entries
= hisi_hba
->hw
->max_command_entries
;
1213 spin_lock_init(&hisi_hba
->lock
);
1214 for (i
= 0; i
< hisi_hba
->n_phy
; i
++) {
1215 hisi_sas_phy_init(hisi_hba
, i
);
1216 hisi_hba
->port
[i
].port_attached
= 0;
1217 hisi_hba
->port
[i
].id
= -1;
1218 INIT_LIST_HEAD(&hisi_hba
->port
[i
].list
);
1221 for (i
= 0; i
< HISI_SAS_MAX_DEVICES
; i
++) {
1222 hisi_hba
->devices
[i
].dev_type
= SAS_PHY_UNUSED
;
1223 hisi_hba
->devices
[i
].device_id
= i
;
1224 hisi_hba
->devices
[i
].dev_status
= HISI_SAS_DEV_NORMAL
;
1227 for (i
= 0; i
< hisi_hba
->queue_count
; i
++) {
1228 struct hisi_sas_cq
*cq
= &hisi_hba
->cq
[i
];
1229 struct hisi_sas_dq
*dq
= &hisi_hba
->dq
[i
];
1231 /* Completion queue structure */
1233 cq
->hisi_hba
= hisi_hba
;
1235 /* Delivery queue structure */
1237 dq
->hisi_hba
= hisi_hba
;
1239 /* Delivery queue */
1240 s
= sizeof(struct hisi_sas_cmd_hdr
) * HISI_SAS_QUEUE_SLOTS
;
1241 hisi_hba
->cmd_hdr
[i
] = dma_alloc_coherent(dev
, s
,
1242 &hisi_hba
->cmd_hdr_dma
[i
], GFP_KERNEL
);
1243 if (!hisi_hba
->cmd_hdr
[i
])
1245 memset(hisi_hba
->cmd_hdr
[i
], 0, s
);
1247 /* Completion queue */
1248 s
= hisi_hba
->hw
->complete_hdr_size
* HISI_SAS_QUEUE_SLOTS
;
1249 hisi_hba
->complete_hdr
[i
] = dma_alloc_coherent(dev
, s
,
1250 &hisi_hba
->complete_hdr_dma
[i
], GFP_KERNEL
);
1251 if (!hisi_hba
->complete_hdr
[i
])
1253 memset(hisi_hba
->complete_hdr
[i
], 0, s
);
1256 s
= HISI_SAS_STATUS_BUF_SZ
;
1257 hisi_hba
->status_buffer_pool
= dma_pool_create("status_buffer",
1259 if (!hisi_hba
->status_buffer_pool
)
1262 s
= HISI_SAS_COMMAND_TABLE_SZ
;
1263 hisi_hba
->command_table_pool
= dma_pool_create("command_table",
1265 if (!hisi_hba
->command_table_pool
)
1268 s
= HISI_SAS_MAX_ITCT_ENTRIES
* sizeof(struct hisi_sas_itct
);
1269 hisi_hba
->itct
= dma_alloc_coherent(dev
, s
, &hisi_hba
->itct_dma
,
1271 if (!hisi_hba
->itct
)
1274 memset(hisi_hba
->itct
, 0, s
);
1276 hisi_hba
->slot_info
= devm_kcalloc(dev
, max_command_entries
,
1277 sizeof(struct hisi_sas_slot
),
1279 if (!hisi_hba
->slot_info
)
1282 s
= max_command_entries
* sizeof(struct hisi_sas_iost
);
1283 hisi_hba
->iost
= dma_alloc_coherent(dev
, s
, &hisi_hba
->iost_dma
,
1285 if (!hisi_hba
->iost
)
1288 memset(hisi_hba
->iost
, 0, s
);
1290 s
= max_command_entries
* sizeof(struct hisi_sas_breakpoint
);
1291 hisi_hba
->breakpoint
= dma_alloc_coherent(dev
, s
,
1292 &hisi_hba
->breakpoint_dma
, GFP_KERNEL
);
1293 if (!hisi_hba
->breakpoint
)
1296 memset(hisi_hba
->breakpoint
, 0, s
);
1298 hisi_hba
->slot_index_count
= max_command_entries
;
1299 s
= hisi_hba
->slot_index_count
/ BITS_PER_BYTE
;
1300 hisi_hba
->slot_index_tags
= devm_kzalloc(dev
, s
, GFP_KERNEL
);
1301 if (!hisi_hba
->slot_index_tags
)
1304 hisi_hba
->sge_page_pool
= dma_pool_create("status_sge", dev
,
1305 sizeof(struct hisi_sas_sge_page
), 16, 0);
1306 if (!hisi_hba
->sge_page_pool
)
1309 s
= sizeof(struct hisi_sas_initial_fis
) * HISI_SAS_MAX_PHYS
;
1310 hisi_hba
->initial_fis
= dma_alloc_coherent(dev
, s
,
1311 &hisi_hba
->initial_fis_dma
, GFP_KERNEL
);
1312 if (!hisi_hba
->initial_fis
)
1314 memset(hisi_hba
->initial_fis
, 0, s
);
1316 s
= max_command_entries
* sizeof(struct hisi_sas_breakpoint
) * 2;
1317 hisi_hba
->sata_breakpoint
= dma_alloc_coherent(dev
, s
,
1318 &hisi_hba
->sata_breakpoint_dma
, GFP_KERNEL
);
1319 if (!hisi_hba
->sata_breakpoint
)
1321 memset(hisi_hba
->sata_breakpoint
, 0, s
);
1323 hisi_sas_slot_index_init(hisi_hba
);
1325 hisi_hba
->wq
= create_singlethread_workqueue(dev_name(dev
));
1326 if (!hisi_hba
->wq
) {
1327 dev_err(dev
, "sas_alloc: failed to create workqueue\n");
1336 static void hisi_sas_free(struct hisi_hba
*hisi_hba
)
1338 struct device
*dev
= &hisi_hba
->pdev
->dev
;
1339 int i
, s
, max_command_entries
= hisi_hba
->hw
->max_command_entries
;
1341 for (i
= 0; i
< hisi_hba
->queue_count
; i
++) {
1342 s
= sizeof(struct hisi_sas_cmd_hdr
) * HISI_SAS_QUEUE_SLOTS
;
1343 if (hisi_hba
->cmd_hdr
[i
])
1344 dma_free_coherent(dev
, s
,
1345 hisi_hba
->cmd_hdr
[i
],
1346 hisi_hba
->cmd_hdr_dma
[i
]);
1348 s
= hisi_hba
->hw
->complete_hdr_size
* HISI_SAS_QUEUE_SLOTS
;
1349 if (hisi_hba
->complete_hdr
[i
])
1350 dma_free_coherent(dev
, s
,
1351 hisi_hba
->complete_hdr
[i
],
1352 hisi_hba
->complete_hdr_dma
[i
]);
1355 dma_pool_destroy(hisi_hba
->status_buffer_pool
);
1356 dma_pool_destroy(hisi_hba
->command_table_pool
);
1357 dma_pool_destroy(hisi_hba
->sge_page_pool
);
1359 s
= HISI_SAS_MAX_ITCT_ENTRIES
* sizeof(struct hisi_sas_itct
);
1361 dma_free_coherent(dev
, s
,
1362 hisi_hba
->itct
, hisi_hba
->itct_dma
);
1364 s
= max_command_entries
* sizeof(struct hisi_sas_iost
);
1366 dma_free_coherent(dev
, s
,
1367 hisi_hba
->iost
, hisi_hba
->iost_dma
);
1369 s
= max_command_entries
* sizeof(struct hisi_sas_breakpoint
);
1370 if (hisi_hba
->breakpoint
)
1371 dma_free_coherent(dev
, s
,
1372 hisi_hba
->breakpoint
,
1373 hisi_hba
->breakpoint_dma
);
1376 s
= sizeof(struct hisi_sas_initial_fis
) * HISI_SAS_MAX_PHYS
;
1377 if (hisi_hba
->initial_fis
)
1378 dma_free_coherent(dev
, s
,
1379 hisi_hba
->initial_fis
,
1380 hisi_hba
->initial_fis_dma
);
1382 s
= max_command_entries
* sizeof(struct hisi_sas_breakpoint
) * 2;
1383 if (hisi_hba
->sata_breakpoint
)
1384 dma_free_coherent(dev
, s
,
1385 hisi_hba
->sata_breakpoint
,
1386 hisi_hba
->sata_breakpoint_dma
);
1389 destroy_workqueue(hisi_hba
->wq
);
1392 static struct Scsi_Host
*hisi_sas_shost_alloc(struct platform_device
*pdev
,
1393 const struct hisi_sas_hw
*hw
)
1395 struct resource
*res
;
1396 struct Scsi_Host
*shost
;
1397 struct hisi_hba
*hisi_hba
;
1398 struct device
*dev
= &pdev
->dev
;
1399 struct device_node
*np
= pdev
->dev
.of_node
;
1402 shost
= scsi_host_alloc(&hisi_sas_sht
, sizeof(*hisi_hba
));
1405 hisi_hba
= shost_priv(shost
);
1408 hisi_hba
->pdev
= pdev
;
1409 hisi_hba
->shost
= shost
;
1410 SHOST_TO_SAS_HA(shost
) = &hisi_hba
->sha
;
1412 init_timer(&hisi_hba
->timer
);
1414 if (device_property_read_u8_array(dev
, "sas-addr", hisi_hba
->sas_addr
,
1419 hisi_hba
->ctrl
= syscon_regmap_lookup_by_phandle(np
,
1420 "hisilicon,sas-syscon");
1421 if (IS_ERR(hisi_hba
->ctrl
))
1424 if (device_property_read_u32(dev
, "ctrl-reset-reg",
1425 &hisi_hba
->ctrl_reset_reg
))
1428 if (device_property_read_u32(dev
, "ctrl-reset-sts-reg",
1429 &hisi_hba
->ctrl_reset_sts_reg
))
1432 if (device_property_read_u32(dev
, "ctrl-clock-ena-reg",
1433 &hisi_hba
->ctrl_clock_ena_reg
))
1437 refclk
= devm_clk_get(&pdev
->dev
, NULL
);
1439 dev_info(dev
, "no ref clk property\n");
1441 hisi_hba
->refclk_frequency_mhz
= clk_get_rate(refclk
) / 1000000;
1443 if (device_property_read_u32(dev
, "phy-count", &hisi_hba
->n_phy
))
1446 if (device_property_read_u32(dev
, "queue-count",
1447 &hisi_hba
->queue_count
))
1450 if (dma_set_mask_and_coherent(dev
, DMA_BIT_MASK(64)) &&
1451 dma_set_mask_and_coherent(dev
, DMA_BIT_MASK(32))) {
1452 dev_err(dev
, "No usable DMA addressing method\n");
1456 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1457 hisi_hba
->regs
= devm_ioremap_resource(dev
, res
);
1458 if (IS_ERR(hisi_hba
->regs
))
1461 if (hisi_sas_alloc(hisi_hba
, shost
)) {
1462 hisi_sas_free(hisi_hba
);
1468 dev_err(dev
, "shost alloc failed\n");
1472 static void hisi_sas_init_add(struct hisi_hba
*hisi_hba
)
1476 for (i
= 0; i
< hisi_hba
->n_phy
; i
++)
1477 memcpy(&hisi_hba
->phy
[i
].dev_sas_addr
,
1482 int hisi_sas_probe(struct platform_device
*pdev
,
1483 const struct hisi_sas_hw
*hw
)
1485 struct Scsi_Host
*shost
;
1486 struct hisi_hba
*hisi_hba
;
1487 struct device
*dev
= &pdev
->dev
;
1488 struct asd_sas_phy
**arr_phy
;
1489 struct asd_sas_port
**arr_port
;
1490 struct sas_ha_struct
*sha
;
1491 int rc
, phy_nr
, port_nr
, i
;
1493 shost
= hisi_sas_shost_alloc(pdev
, hw
);
1499 sha
= SHOST_TO_SAS_HA(shost
);
1500 hisi_hba
= shost_priv(shost
);
1501 platform_set_drvdata(pdev
, sha
);
1503 phy_nr
= port_nr
= hisi_hba
->n_phy
;
1505 arr_phy
= devm_kcalloc(dev
, phy_nr
, sizeof(void *), GFP_KERNEL
);
1506 arr_port
= devm_kcalloc(dev
, port_nr
, sizeof(void *), GFP_KERNEL
);
1507 if (!arr_phy
|| !arr_port
)
1510 sha
->sas_phy
= arr_phy
;
1511 sha
->sas_port
= arr_port
;
1512 sha
->core
.shost
= shost
;
1513 sha
->lldd_ha
= hisi_hba
;
1515 shost
->transportt
= hisi_sas_stt
;
1516 shost
->max_id
= HISI_SAS_MAX_DEVICES
;
1517 shost
->max_lun
= ~0;
1518 shost
->max_channel
= 1;
1519 shost
->max_cmd_len
= 16;
1520 shost
->sg_tablesize
= min_t(u16
, SG_ALL
, HISI_SAS_SGE_PAGE_CNT
);
1521 shost
->can_queue
= hisi_hba
->hw
->max_command_entries
;
1522 shost
->cmd_per_lun
= hisi_hba
->hw
->max_command_entries
;
1524 sha
->sas_ha_name
= DRV_NAME
;
1525 sha
->dev
= &hisi_hba
->pdev
->dev
;
1526 sha
->lldd_module
= THIS_MODULE
;
1527 sha
->sas_addr
= &hisi_hba
->sas_addr
[0];
1528 sha
->num_phys
= hisi_hba
->n_phy
;
1529 sha
->core
.shost
= hisi_hba
->shost
;
1531 for (i
= 0; i
< hisi_hba
->n_phy
; i
++) {
1532 sha
->sas_phy
[i
] = &hisi_hba
->phy
[i
].sas_phy
;
1533 sha
->sas_port
[i
] = &hisi_hba
->port
[i
].sas_port
;
1536 hisi_sas_init_add(hisi_hba
);
1538 rc
= hisi_hba
->hw
->hw_init(hisi_hba
);
1542 rc
= scsi_add_host(shost
, &pdev
->dev
);
1546 rc
= sas_register_ha(sha
);
1548 goto err_out_register_ha
;
1550 scsi_scan_host(shost
);
1554 err_out_register_ha
:
1555 scsi_remove_host(shost
);
1560 EXPORT_SYMBOL_GPL(hisi_sas_probe
);
1562 int hisi_sas_remove(struct platform_device
*pdev
)
1564 struct sas_ha_struct
*sha
= platform_get_drvdata(pdev
);
1565 struct hisi_hba
*hisi_hba
= sha
->lldd_ha
;
1567 scsi_remove_host(sha
->core
.shost
);
1568 sas_unregister_ha(sha
);
1569 sas_remove_host(sha
->core
.shost
);
1571 hisi_sas_free(hisi_hba
);
1574 EXPORT_SYMBOL_GPL(hisi_sas_remove
);
1576 static __init
int hisi_sas_init(void)
1578 pr_info("hisi_sas: driver version %s\n", DRV_VERSION
);
1580 hisi_sas_stt
= sas_domain_attach_transport(&hisi_sas_transport_ops
);
1587 static __exit
void hisi_sas_exit(void)
1589 sas_release_transport(hisi_sas_stt
);
1592 module_init(hisi_sas_init
);
1593 module_exit(hisi_sas_exit
);
1595 MODULE_VERSION(DRV_VERSION
);
1596 MODULE_LICENSE("GPL");
1597 MODULE_AUTHOR("John Garry <john.garry@huawei.com>");
1598 MODULE_DESCRIPTION("HISILICON SAS controller driver");
1599 MODULE_ALIAS("platform:" DRV_NAME
);