hisi_sas: Add cq structure initialization
Each completion queue has a structure. This is mainly for passing to irq handler so we know which queue the irq occured on. Signed-off-by: John Garry <john.garry@huawei.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
257efd1f69
commit
9101a0792d
|
@ -45,6 +45,11 @@ struct hisi_sas_port {
|
|||
struct asd_sas_port sas_port;
|
||||
};
|
||||
|
||||
struct hisi_sas_cq {
|
||||
struct hisi_hba *hisi_hba;
|
||||
int id;
|
||||
};
|
||||
|
||||
struct hisi_sas_slot {
|
||||
};
|
||||
|
||||
|
@ -73,6 +78,8 @@ struct hisi_hba {
|
|||
/* SCSI/SAS glue */
|
||||
struct sas_ha_struct sha;
|
||||
struct Scsi_Host *shost;
|
||||
|
||||
struct hisi_sas_cq cq[HISI_SAS_MAX_QUEUES];
|
||||
struct hisi_sas_phy phy[HISI_SAS_MAX_PHYS];
|
||||
struct hisi_sas_port port[HISI_SAS_MAX_PHYS];
|
||||
|
||||
|
|
|
@ -58,6 +58,12 @@ static int hisi_sas_alloc(struct hisi_hba *hisi_hba, struct Scsi_Host *shost)
|
|||
struct device *dev = &pdev->dev;
|
||||
|
||||
for (i = 0; i < hisi_hba->queue_count; i++) {
|
||||
struct hisi_sas_cq *cq = &hisi_hba->cq[i];
|
||||
|
||||
/* Completion queue structure */
|
||||
cq->id = i;
|
||||
cq->hisi_hba = hisi_hba;
|
||||
|
||||
/* Delivery queue */
|
||||
s = sizeof(struct hisi_sas_cmd_hdr) * HISI_SAS_QUEUE_SLOTS;
|
||||
hisi_hba->cmd_hdr[i] = dma_alloc_coherent(dev, s,
|
||||
|
|
Loading…
Reference in New Issue