[SCSI] be2iscsi: Remove debug print in IO path
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / be2iscsi / be_main.c
blobb70b4ba72076d8e41e3ff5bb773e5b9168ecfbaf
1 /**
2 * Copyright (C) 2005 - 2010 ServerEngines
3 * All rights reserved.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation. The full GNU General
8 * Public License is included in this distribution in the file called COPYING.
10 * Written by: Jayamohan Kallickal (jayamohank@serverengines.com)
12 * Contact Information:
13 * linux-drivers@serverengines.com
15 * ServerEngines
16 * 209 N. Fair Oaks Ave
17 * Sunnyvale, CA 94085
20 #include <linux/reboot.h>
21 #include <linux/delay.h>
22 #include <linux/slab.h>
23 #include <linux/interrupt.h>
24 #include <linux/blkdev.h>
25 #include <linux/pci.h>
26 #include <linux/string.h>
27 #include <linux/kernel.h>
28 #include <linux/semaphore.h>
30 #include <scsi/libiscsi.h>
31 #include <scsi/scsi_transport_iscsi.h>
32 #include <scsi/scsi_transport.h>
33 #include <scsi/scsi_cmnd.h>
34 #include <scsi/scsi_device.h>
35 #include <scsi/scsi_host.h>
36 #include <scsi/scsi.h>
37 #include "be_main.h"
38 #include "be_iscsi.h"
39 #include "be_mgmt.h"
41 static unsigned int be_iopoll_budget = 10;
42 static unsigned int be_max_phys_size = 64;
43 static unsigned int enable_msix = 1;
44 static unsigned int gcrashmode = 0;
45 static unsigned int num_hba = 0;
47 MODULE_DEVICE_TABLE(pci, beiscsi_pci_id_table);
48 MODULE_DESCRIPTION(DRV_DESC " " BUILD_STR);
49 MODULE_AUTHOR("ServerEngines Corporation");
50 MODULE_LICENSE("GPL");
51 module_param(be_iopoll_budget, int, 0);
52 module_param(enable_msix, int, 0);
53 module_param(be_max_phys_size, uint, S_IRUGO);
54 MODULE_PARM_DESC(be_max_phys_size, "Maximum Size (In Kilobytes) of physically"
55 "contiguous memory that can be allocated."
56 "Range is 16 - 128");
58 static int beiscsi_slave_configure(struct scsi_device *sdev)
60 blk_queue_max_segment_size(sdev->request_queue, 65536);
61 return 0;
64 static int beiscsi_eh_abort(struct scsi_cmnd *sc)
66 struct iscsi_cls_session *cls_session;
67 struct iscsi_task *aborted_task = (struct iscsi_task *)sc->SCp.ptr;
68 struct beiscsi_io_task *aborted_io_task;
69 struct iscsi_conn *conn;
70 struct beiscsi_conn *beiscsi_conn;
71 struct beiscsi_hba *phba;
72 struct iscsi_session *session;
73 struct invalidate_command_table *inv_tbl;
74 unsigned int cid, tag, num_invalidate;
76 cls_session = starget_to_session(scsi_target(sc->device));
77 session = cls_session->dd_data;
79 spin_lock_bh(&session->lock);
80 if (!aborted_task || !aborted_task->sc) {
81 /* we raced */
82 spin_unlock_bh(&session->lock);
83 return SUCCESS;
86 aborted_io_task = aborted_task->dd_data;
87 if (!aborted_io_task->scsi_cmnd) {
88 /* raced or invalid command */
89 spin_unlock_bh(&session->lock);
90 return SUCCESS;
92 spin_unlock_bh(&session->lock);
93 conn = aborted_task->conn;
94 beiscsi_conn = conn->dd_data;
95 phba = beiscsi_conn->phba;
97 /* invalidate iocb */
98 cid = beiscsi_conn->beiscsi_conn_cid;
99 inv_tbl = phba->inv_tbl;
100 memset(inv_tbl, 0x0, sizeof(*inv_tbl));
101 inv_tbl->cid = cid;
102 inv_tbl->icd = aborted_io_task->psgl_handle->sgl_index;
103 num_invalidate = 1;
104 tag = mgmt_invalidate_icds(phba, inv_tbl, num_invalidate, cid);
105 if (!tag) {
106 shost_printk(KERN_WARNING, phba->shost,
107 "mgmt_invalidate_icds could not be"
108 " submitted\n");
109 return FAILED;
110 } else {
111 wait_event_interruptible(phba->ctrl.mcc_wait[tag],
112 phba->ctrl.mcc_numtag[tag]);
113 free_mcc_tag(&phba->ctrl, tag);
116 return iscsi_eh_abort(sc);
119 static int beiscsi_eh_device_reset(struct scsi_cmnd *sc)
121 struct iscsi_task *abrt_task;
122 struct beiscsi_io_task *abrt_io_task;
123 struct iscsi_conn *conn;
124 struct beiscsi_conn *beiscsi_conn;
125 struct beiscsi_hba *phba;
126 struct iscsi_session *session;
127 struct iscsi_cls_session *cls_session;
128 struct invalidate_command_table *inv_tbl;
129 unsigned int cid, tag, i, num_invalidate;
130 int rc = FAILED;
132 /* invalidate iocbs */
133 cls_session = starget_to_session(scsi_target(sc->device));
134 session = cls_session->dd_data;
135 spin_lock_bh(&session->lock);
136 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
137 goto unlock;
139 conn = session->leadconn;
140 beiscsi_conn = conn->dd_data;
141 phba = beiscsi_conn->phba;
142 cid = beiscsi_conn->beiscsi_conn_cid;
143 inv_tbl = phba->inv_tbl;
144 memset(inv_tbl, 0x0, sizeof(*inv_tbl) * BE2_CMDS_PER_CXN);
145 num_invalidate = 0;
146 for (i = 0; i < conn->session->cmds_max; i++) {
147 abrt_task = conn->session->cmds[i];
148 abrt_io_task = abrt_task->dd_data;
149 if (!abrt_task->sc || abrt_task->state == ISCSI_TASK_FREE)
150 continue;
152 if (abrt_task->sc->device->lun != abrt_task->sc->device->lun)
153 continue;
155 inv_tbl->cid = cid;
156 inv_tbl->icd = abrt_io_task->psgl_handle->sgl_index;
157 num_invalidate++;
158 inv_tbl++;
160 spin_unlock_bh(&session->lock);
161 inv_tbl = phba->inv_tbl;
163 tag = mgmt_invalidate_icds(phba, inv_tbl, num_invalidate, cid);
164 if (!tag) {
165 shost_printk(KERN_WARNING, phba->shost,
166 "mgmt_invalidate_icds could not be"
167 " submitted\n");
168 return FAILED;
169 } else {
170 wait_event_interruptible(phba->ctrl.mcc_wait[tag],
171 phba->ctrl.mcc_numtag[tag]);
172 free_mcc_tag(&phba->ctrl, tag);
175 return iscsi_eh_device_reset(sc);
176 unlock:
177 spin_unlock_bh(&session->lock);
178 return rc;
181 /*------------------- PCI Driver operations and data ----------------- */
182 static DEFINE_PCI_DEVICE_TABLE(beiscsi_pci_id_table) = {
183 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) },
184 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) },
185 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID1) },
186 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
187 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID3) },
188 { 0 }
190 MODULE_DEVICE_TABLE(pci, beiscsi_pci_id_table);
192 static struct scsi_host_template beiscsi_sht = {
193 .module = THIS_MODULE,
194 .name = "ServerEngines 10Gbe open-iscsi Initiator Driver",
195 .proc_name = DRV_NAME,
196 .queuecommand = iscsi_queuecommand,
197 .change_queue_depth = iscsi_change_queue_depth,
198 .slave_configure = beiscsi_slave_configure,
199 .target_alloc = iscsi_target_alloc,
200 .eh_abort_handler = beiscsi_eh_abort,
201 .eh_device_reset_handler = beiscsi_eh_device_reset,
202 .eh_target_reset_handler = iscsi_eh_session_reset,
203 .sg_tablesize = BEISCSI_SGLIST_ELEMENTS,
204 .can_queue = BE2_IO_DEPTH,
205 .this_id = -1,
206 .max_sectors = BEISCSI_MAX_SECTORS,
207 .cmd_per_lun = BEISCSI_CMD_PER_LUN,
208 .use_clustering = ENABLE_CLUSTERING,
211 static struct scsi_transport_template *beiscsi_scsi_transport;
213 static struct beiscsi_hba *beiscsi_hba_alloc(struct pci_dev *pcidev)
215 struct beiscsi_hba *phba;
216 struct Scsi_Host *shost;
218 shost = iscsi_host_alloc(&beiscsi_sht, sizeof(*phba), 0);
219 if (!shost) {
220 dev_err(&pcidev->dev, "beiscsi_hba_alloc -"
221 "iscsi_host_alloc failed\n");
222 return NULL;
224 shost->dma_boundary = pcidev->dma_mask;
225 shost->max_id = BE2_MAX_SESSIONS;
226 shost->max_channel = 0;
227 shost->max_cmd_len = BEISCSI_MAX_CMD_LEN;
228 shost->max_lun = BEISCSI_NUM_MAX_LUN;
229 shost->transportt = beiscsi_scsi_transport;
230 phba = iscsi_host_priv(shost);
231 memset(phba, 0, sizeof(*phba));
232 phba->shost = shost;
233 phba->pcidev = pci_dev_get(pcidev);
234 pci_set_drvdata(pcidev, phba);
236 if (iscsi_host_add(shost, &phba->pcidev->dev))
237 goto free_devices;
238 return phba;
240 free_devices:
241 pci_dev_put(phba->pcidev);
242 iscsi_host_free(phba->shost);
243 return NULL;
246 static void beiscsi_unmap_pci_function(struct beiscsi_hba *phba)
248 if (phba->csr_va) {
249 iounmap(phba->csr_va);
250 phba->csr_va = NULL;
252 if (phba->db_va) {
253 iounmap(phba->db_va);
254 phba->db_va = NULL;
256 if (phba->pci_va) {
257 iounmap(phba->pci_va);
258 phba->pci_va = NULL;
262 static int beiscsi_map_pci_bars(struct beiscsi_hba *phba,
263 struct pci_dev *pcidev)
265 u8 __iomem *addr;
266 int pcicfg_reg;
268 addr = ioremap_nocache(pci_resource_start(pcidev, 2),
269 pci_resource_len(pcidev, 2));
270 if (addr == NULL)
271 return -ENOMEM;
272 phba->ctrl.csr = addr;
273 phba->csr_va = addr;
274 phba->csr_pa.u.a64.address = pci_resource_start(pcidev, 2);
276 addr = ioremap_nocache(pci_resource_start(pcidev, 4), 128 * 1024);
277 if (addr == NULL)
278 goto pci_map_err;
279 phba->ctrl.db = addr;
280 phba->db_va = addr;
281 phba->db_pa.u.a64.address = pci_resource_start(pcidev, 4);
283 if (phba->generation == BE_GEN2)
284 pcicfg_reg = 1;
285 else
286 pcicfg_reg = 0;
288 addr = ioremap_nocache(pci_resource_start(pcidev, pcicfg_reg),
289 pci_resource_len(pcidev, pcicfg_reg));
291 if (addr == NULL)
292 goto pci_map_err;
293 phba->ctrl.pcicfg = addr;
294 phba->pci_va = addr;
295 phba->pci_pa.u.a64.address = pci_resource_start(pcidev, pcicfg_reg);
296 return 0;
298 pci_map_err:
299 beiscsi_unmap_pci_function(phba);
300 return -ENOMEM;
303 static int beiscsi_enable_pci(struct pci_dev *pcidev)
305 int ret;
307 ret = pci_enable_device(pcidev);
308 if (ret) {
309 dev_err(&pcidev->dev, "beiscsi_enable_pci - enable device "
310 "failed. Returning -ENODEV\n");
311 return ret;
314 pci_set_master(pcidev);
315 if (pci_set_consistent_dma_mask(pcidev, DMA_BIT_MASK(64))) {
316 ret = pci_set_consistent_dma_mask(pcidev, DMA_BIT_MASK(32));
317 if (ret) {
318 dev_err(&pcidev->dev, "Could not set PCI DMA Mask\n");
319 pci_disable_device(pcidev);
320 return ret;
323 return 0;
326 static int be_ctrl_init(struct beiscsi_hba *phba, struct pci_dev *pdev)
328 struct be_ctrl_info *ctrl = &phba->ctrl;
329 struct be_dma_mem *mbox_mem_alloc = &ctrl->mbox_mem_alloced;
330 struct be_dma_mem *mbox_mem_align = &ctrl->mbox_mem;
331 int status = 0;
333 ctrl->pdev = pdev;
334 status = beiscsi_map_pci_bars(phba, pdev);
335 if (status)
336 return status;
337 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
338 mbox_mem_alloc->va = pci_alloc_consistent(pdev,
339 mbox_mem_alloc->size,
340 &mbox_mem_alloc->dma);
341 if (!mbox_mem_alloc->va) {
342 beiscsi_unmap_pci_function(phba);
343 status = -ENOMEM;
344 return status;
347 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
348 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
349 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
350 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
351 spin_lock_init(&ctrl->mbox_lock);
352 spin_lock_init(&phba->ctrl.mcc_lock);
353 spin_lock_init(&phba->ctrl.mcc_cq_lock);
355 return status;
358 static void beiscsi_get_params(struct beiscsi_hba *phba)
360 phba->params.ios_per_ctrl = (phba->fw_config.iscsi_icd_count
361 - (phba->fw_config.iscsi_cid_count
362 + BE2_TMFS
363 + BE2_NOPOUT_REQ));
364 phba->params.cxns_per_ctrl = phba->fw_config.iscsi_cid_count;
365 phba->params.asyncpdus_per_ctrl = phba->fw_config.iscsi_cid_count * 2;
366 phba->params.icds_per_ctrl = phba->fw_config.iscsi_icd_count;;
367 phba->params.num_sge_per_io = BE2_SGE;
368 phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ;
369 phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ;
370 phba->params.eq_timer = 64;
371 phba->params.num_eq_entries =
372 (((BE2_CMDS_PER_CXN * 2 + phba->fw_config.iscsi_cid_count * 2
373 + BE2_TMFS) / 512) + 1) * 512;
374 phba->params.num_eq_entries = (phba->params.num_eq_entries < 1024)
375 ? 1024 : phba->params.num_eq_entries;
376 SE_DEBUG(DBG_LVL_8, "phba->params.num_eq_entries=%d\n",
377 phba->params.num_eq_entries);
378 phba->params.num_cq_entries =
379 (((BE2_CMDS_PER_CXN * 2 + phba->fw_config.iscsi_cid_count * 2
380 + BE2_TMFS) / 512) + 1) * 512;
381 phba->params.wrbs_per_cxn = 256;
384 static void hwi_ring_eq_db(struct beiscsi_hba *phba,
385 unsigned int id, unsigned int clr_interrupt,
386 unsigned int num_processed,
387 unsigned char rearm, unsigned char event)
389 u32 val = 0;
390 val |= id & DB_EQ_RING_ID_MASK;
391 if (rearm)
392 val |= 1 << DB_EQ_REARM_SHIFT;
393 if (clr_interrupt)
394 val |= 1 << DB_EQ_CLR_SHIFT;
395 if (event)
396 val |= 1 << DB_EQ_EVNT_SHIFT;
397 val |= num_processed << DB_EQ_NUM_POPPED_SHIFT;
398 iowrite32(val, phba->db_va + DB_EQ_OFFSET);
402 * be_isr_mcc - The isr routine of the driver.
403 * @irq: Not used
404 * @dev_id: Pointer to host adapter structure
406 static irqreturn_t be_isr_mcc(int irq, void *dev_id)
408 struct beiscsi_hba *phba;
409 struct be_eq_entry *eqe = NULL;
410 struct be_queue_info *eq;
411 struct be_queue_info *mcc;
412 unsigned int num_eq_processed;
413 struct be_eq_obj *pbe_eq;
414 unsigned long flags;
416 pbe_eq = dev_id;
417 eq = &pbe_eq->q;
418 phba = pbe_eq->phba;
419 mcc = &phba->ctrl.mcc_obj.cq;
420 eqe = queue_tail_node(eq);
421 if (!eqe)
422 SE_DEBUG(DBG_LVL_1, "eqe is NULL\n");
424 num_eq_processed = 0;
426 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
427 & EQE_VALID_MASK) {
428 if (((eqe->dw[offsetof(struct amap_eq_entry,
429 resource_id) / 32] &
430 EQE_RESID_MASK) >> 16) == mcc->id) {
431 spin_lock_irqsave(&phba->isr_lock, flags);
432 phba->todo_mcc_cq = 1;
433 spin_unlock_irqrestore(&phba->isr_lock, flags);
435 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
436 queue_tail_inc(eq);
437 eqe = queue_tail_node(eq);
438 num_eq_processed++;
440 if (phba->todo_mcc_cq)
441 queue_work(phba->wq, &phba->work_cqs);
442 if (num_eq_processed)
443 hwi_ring_eq_db(phba, eq->id, 1, num_eq_processed, 1, 1);
445 return IRQ_HANDLED;
449 * be_isr_msix - The isr routine of the driver.
450 * @irq: Not used
451 * @dev_id: Pointer to host adapter structure
453 static irqreturn_t be_isr_msix(int irq, void *dev_id)
455 struct beiscsi_hba *phba;
456 struct be_eq_entry *eqe = NULL;
457 struct be_queue_info *eq;
458 struct be_queue_info *cq;
459 unsigned int num_eq_processed;
460 struct be_eq_obj *pbe_eq;
461 unsigned long flags;
463 pbe_eq = dev_id;
464 eq = &pbe_eq->q;
465 cq = pbe_eq->cq;
466 eqe = queue_tail_node(eq);
467 if (!eqe)
468 SE_DEBUG(DBG_LVL_1, "eqe is NULL\n");
470 phba = pbe_eq->phba;
471 num_eq_processed = 0;
472 if (blk_iopoll_enabled) {
473 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
474 & EQE_VALID_MASK) {
475 if (!blk_iopoll_sched_prep(&pbe_eq->iopoll))
476 blk_iopoll_sched(&pbe_eq->iopoll);
478 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
479 queue_tail_inc(eq);
480 eqe = queue_tail_node(eq);
481 num_eq_processed++;
483 if (num_eq_processed)
484 hwi_ring_eq_db(phba, eq->id, 1, num_eq_processed, 0, 1);
486 return IRQ_HANDLED;
487 } else {
488 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
489 & EQE_VALID_MASK) {
490 spin_lock_irqsave(&phba->isr_lock, flags);
491 phba->todo_cq = 1;
492 spin_unlock_irqrestore(&phba->isr_lock, flags);
493 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
494 queue_tail_inc(eq);
495 eqe = queue_tail_node(eq);
496 num_eq_processed++;
498 if (phba->todo_cq)
499 queue_work(phba->wq, &phba->work_cqs);
501 if (num_eq_processed)
502 hwi_ring_eq_db(phba, eq->id, 1, num_eq_processed, 1, 1);
504 return IRQ_HANDLED;
509 * be_isr - The isr routine of the driver.
510 * @irq: Not used
511 * @dev_id: Pointer to host adapter structure
513 static irqreturn_t be_isr(int irq, void *dev_id)
515 struct beiscsi_hba *phba;
516 struct hwi_controller *phwi_ctrlr;
517 struct hwi_context_memory *phwi_context;
518 struct be_eq_entry *eqe = NULL;
519 struct be_queue_info *eq;
520 struct be_queue_info *cq;
521 struct be_queue_info *mcc;
522 unsigned long flags, index;
523 unsigned int num_mcceq_processed, num_ioeq_processed;
524 struct be_ctrl_info *ctrl;
525 struct be_eq_obj *pbe_eq;
526 int isr;
528 phba = dev_id;
529 ctrl = &phba->ctrl;;
530 isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET +
531 (PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE));
532 if (!isr)
533 return IRQ_NONE;
535 phwi_ctrlr = phba->phwi_ctrlr;
536 phwi_context = phwi_ctrlr->phwi_ctxt;
537 pbe_eq = &phwi_context->be_eq[0];
539 eq = &phwi_context->be_eq[0].q;
540 mcc = &phba->ctrl.mcc_obj.cq;
541 index = 0;
542 eqe = queue_tail_node(eq);
543 if (!eqe)
544 SE_DEBUG(DBG_LVL_1, "eqe is NULL\n");
546 num_ioeq_processed = 0;
547 num_mcceq_processed = 0;
548 if (blk_iopoll_enabled) {
549 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
550 & EQE_VALID_MASK) {
551 if (((eqe->dw[offsetof(struct amap_eq_entry,
552 resource_id) / 32] &
553 EQE_RESID_MASK) >> 16) == mcc->id) {
554 spin_lock_irqsave(&phba->isr_lock, flags);
555 phba->todo_mcc_cq = 1;
556 spin_unlock_irqrestore(&phba->isr_lock, flags);
557 num_mcceq_processed++;
558 } else {
559 if (!blk_iopoll_sched_prep(&pbe_eq->iopoll))
560 blk_iopoll_sched(&pbe_eq->iopoll);
561 num_ioeq_processed++;
563 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
564 queue_tail_inc(eq);
565 eqe = queue_tail_node(eq);
567 if (num_ioeq_processed || num_mcceq_processed) {
568 if (phba->todo_mcc_cq)
569 queue_work(phba->wq, &phba->work_cqs);
571 if ((num_mcceq_processed) && (!num_ioeq_processed))
572 hwi_ring_eq_db(phba, eq->id, 0,
573 (num_ioeq_processed +
574 num_mcceq_processed) , 1, 1);
575 else
576 hwi_ring_eq_db(phba, eq->id, 0,
577 (num_ioeq_processed +
578 num_mcceq_processed), 0, 1);
580 return IRQ_HANDLED;
581 } else
582 return IRQ_NONE;
583 } else {
584 cq = &phwi_context->be_cq[0];
585 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
586 & EQE_VALID_MASK) {
588 if (((eqe->dw[offsetof(struct amap_eq_entry,
589 resource_id) / 32] &
590 EQE_RESID_MASK) >> 16) != cq->id) {
591 spin_lock_irqsave(&phba->isr_lock, flags);
592 phba->todo_mcc_cq = 1;
593 spin_unlock_irqrestore(&phba->isr_lock, flags);
594 } else {
595 spin_lock_irqsave(&phba->isr_lock, flags);
596 phba->todo_cq = 1;
597 spin_unlock_irqrestore(&phba->isr_lock, flags);
599 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
600 queue_tail_inc(eq);
601 eqe = queue_tail_node(eq);
602 num_ioeq_processed++;
604 if (phba->todo_cq || phba->todo_mcc_cq)
605 queue_work(phba->wq, &phba->work_cqs);
607 if (num_ioeq_processed) {
608 hwi_ring_eq_db(phba, eq->id, 0,
609 num_ioeq_processed, 1, 1);
610 return IRQ_HANDLED;
611 } else
612 return IRQ_NONE;
616 static int beiscsi_init_irqs(struct beiscsi_hba *phba)
618 struct pci_dev *pcidev = phba->pcidev;
619 struct hwi_controller *phwi_ctrlr;
620 struct hwi_context_memory *phwi_context;
621 int ret, msix_vec, i, j;
622 char desc[32];
624 phwi_ctrlr = phba->phwi_ctrlr;
625 phwi_context = phwi_ctrlr->phwi_ctxt;
627 if (phba->msix_enabled) {
628 for (i = 0; i < phba->num_cpus; i++) {
629 sprintf(desc, "beiscsi_msix_%04x", i);
630 msix_vec = phba->msix_entries[i].vector;
631 ret = request_irq(msix_vec, be_isr_msix, 0, desc,
632 &phwi_context->be_eq[i]);
633 if (ret) {
634 shost_printk(KERN_ERR, phba->shost,
635 "beiscsi_init_irqs-Failed to"
636 "register msix for i = %d\n", i);
637 if (!i)
638 return ret;
639 goto free_msix_irqs;
642 msix_vec = phba->msix_entries[i].vector;
643 ret = request_irq(msix_vec, be_isr_mcc, 0, "beiscsi_msix_mcc",
644 &phwi_context->be_eq[i]);
645 if (ret) {
646 shost_printk(KERN_ERR, phba->shost, "beiscsi_init_irqs-"
647 "Failed to register beiscsi_msix_mcc\n");
648 i++;
649 goto free_msix_irqs;
652 } else {
653 ret = request_irq(pcidev->irq, be_isr, IRQF_SHARED,
654 "beiscsi", phba);
655 if (ret) {
656 shost_printk(KERN_ERR, phba->shost, "beiscsi_init_irqs-"
657 "Failed to register irq\\n");
658 return ret;
661 return 0;
662 free_msix_irqs:
663 for (j = i - 1; j == 0; j++)
664 free_irq(msix_vec, &phwi_context->be_eq[j]);
665 return ret;
668 static void hwi_ring_cq_db(struct beiscsi_hba *phba,
669 unsigned int id, unsigned int num_processed,
670 unsigned char rearm, unsigned char event)
672 u32 val = 0;
673 val |= id & DB_CQ_RING_ID_MASK;
674 if (rearm)
675 val |= 1 << DB_CQ_REARM_SHIFT;
676 val |= num_processed << DB_CQ_NUM_POPPED_SHIFT;
677 iowrite32(val, phba->db_va + DB_CQ_OFFSET);
680 static unsigned int
681 beiscsi_process_async_pdu(struct beiscsi_conn *beiscsi_conn,
682 struct beiscsi_hba *phba,
683 unsigned short cid,
684 struct pdu_base *ppdu,
685 unsigned long pdu_len,
686 void *pbuffer, unsigned long buf_len)
688 struct iscsi_conn *conn = beiscsi_conn->conn;
689 struct iscsi_session *session = conn->session;
690 struct iscsi_task *task;
691 struct beiscsi_io_task *io_task;
692 struct iscsi_hdr *login_hdr;
694 switch (ppdu->dw[offsetof(struct amap_pdu_base, opcode) / 32] &
695 PDUBASE_OPCODE_MASK) {
696 case ISCSI_OP_NOOP_IN:
697 pbuffer = NULL;
698 buf_len = 0;
699 break;
700 case ISCSI_OP_ASYNC_EVENT:
701 break;
702 case ISCSI_OP_REJECT:
703 WARN_ON(!pbuffer);
704 WARN_ON(!(buf_len == 48));
705 SE_DEBUG(DBG_LVL_1, "In ISCSI_OP_REJECT\n");
706 break;
707 case ISCSI_OP_LOGIN_RSP:
708 case ISCSI_OP_TEXT_RSP:
709 task = conn->login_task;
710 io_task = task->dd_data;
711 login_hdr = (struct iscsi_hdr *)ppdu;
712 login_hdr->itt = io_task->libiscsi_itt;
713 break;
714 default:
715 shost_printk(KERN_WARNING, phba->shost,
716 "Unrecognized opcode 0x%x in async msg\n",
717 (ppdu->
718 dw[offsetof(struct amap_pdu_base, opcode) / 32]
719 & PDUBASE_OPCODE_MASK));
720 return 1;
723 spin_lock_bh(&session->lock);
724 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)ppdu, pbuffer, buf_len);
725 spin_unlock_bh(&session->lock);
726 return 0;
729 static struct sgl_handle *alloc_io_sgl_handle(struct beiscsi_hba *phba)
731 struct sgl_handle *psgl_handle;
733 if (phba->io_sgl_hndl_avbl) {
734 SE_DEBUG(DBG_LVL_8,
735 "In alloc_io_sgl_handle,io_sgl_alloc_index=%d\n",
736 phba->io_sgl_alloc_index);
737 psgl_handle = phba->io_sgl_hndl_base[phba->
738 io_sgl_alloc_index];
739 phba->io_sgl_hndl_base[phba->io_sgl_alloc_index] = NULL;
740 phba->io_sgl_hndl_avbl--;
741 if (phba->io_sgl_alloc_index == (phba->params.
742 ios_per_ctrl - 1))
743 phba->io_sgl_alloc_index = 0;
744 else
745 phba->io_sgl_alloc_index++;
746 } else
747 psgl_handle = NULL;
748 return psgl_handle;
751 static void
752 free_io_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
754 SE_DEBUG(DBG_LVL_8, "In free_,io_sgl_free_index=%d\n",
755 phba->io_sgl_free_index);
756 if (phba->io_sgl_hndl_base[phba->io_sgl_free_index]) {
758 * this can happen if clean_task is called on a task that
759 * failed in xmit_task or alloc_pdu.
761 SE_DEBUG(DBG_LVL_8,
762 "Double Free in IO SGL io_sgl_free_index=%d,"
763 "value there=%p\n", phba->io_sgl_free_index,
764 phba->io_sgl_hndl_base[phba->io_sgl_free_index]);
765 return;
767 phba->io_sgl_hndl_base[phba->io_sgl_free_index] = psgl_handle;
768 phba->io_sgl_hndl_avbl++;
769 if (phba->io_sgl_free_index == (phba->params.ios_per_ctrl - 1))
770 phba->io_sgl_free_index = 0;
771 else
772 phba->io_sgl_free_index++;
776 * alloc_wrb_handle - To allocate a wrb handle
777 * @phba: The hba pointer
778 * @cid: The cid to use for allocation
780 * This happens under session_lock until submission to chip
782 struct wrb_handle *alloc_wrb_handle(struct beiscsi_hba *phba, unsigned int cid)
784 struct hwi_wrb_context *pwrb_context;
785 struct hwi_controller *phwi_ctrlr;
786 struct wrb_handle *pwrb_handle, *pwrb_handle_tmp;
788 phwi_ctrlr = phba->phwi_ctrlr;
789 pwrb_context = &phwi_ctrlr->wrb_context[cid];
790 if (pwrb_context->wrb_handles_available >= 2) {
791 pwrb_handle = pwrb_context->pwrb_handle_base[
792 pwrb_context->alloc_index];
793 pwrb_context->wrb_handles_available--;
794 if (pwrb_context->alloc_index ==
795 (phba->params.wrbs_per_cxn - 1))
796 pwrb_context->alloc_index = 0;
797 else
798 pwrb_context->alloc_index++;
799 pwrb_handle_tmp = pwrb_context->pwrb_handle_base[
800 pwrb_context->alloc_index];
801 pwrb_handle->nxt_wrb_index = pwrb_handle_tmp->wrb_index;
802 } else
803 pwrb_handle = NULL;
804 return pwrb_handle;
808 * free_wrb_handle - To free the wrb handle back to pool
809 * @phba: The hba pointer
810 * @pwrb_context: The context to free from
811 * @pwrb_handle: The wrb_handle to free
813 * This happens under session_lock until submission to chip
815 static void
816 free_wrb_handle(struct beiscsi_hba *phba, struct hwi_wrb_context *pwrb_context,
817 struct wrb_handle *pwrb_handle)
819 pwrb_context->pwrb_handle_base[pwrb_context->free_index] = pwrb_handle;
820 pwrb_context->wrb_handles_available++;
821 if (pwrb_context->free_index == (phba->params.wrbs_per_cxn - 1))
822 pwrb_context->free_index = 0;
823 else
824 pwrb_context->free_index++;
826 SE_DEBUG(DBG_LVL_8,
827 "FREE WRB: pwrb_handle=%p free_index=0x%x"
828 "wrb_handles_available=%d\n",
829 pwrb_handle, pwrb_context->free_index,
830 pwrb_context->wrb_handles_available);
833 static struct sgl_handle *alloc_mgmt_sgl_handle(struct beiscsi_hba *phba)
835 struct sgl_handle *psgl_handle;
837 if (phba->eh_sgl_hndl_avbl) {
838 psgl_handle = phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index];
839 phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index] = NULL;
840 SE_DEBUG(DBG_LVL_8, "mgmt_sgl_alloc_index=%d=0x%x\n",
841 phba->eh_sgl_alloc_index, phba->eh_sgl_alloc_index);
842 phba->eh_sgl_hndl_avbl--;
843 if (phba->eh_sgl_alloc_index ==
844 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl -
846 phba->eh_sgl_alloc_index = 0;
847 else
848 phba->eh_sgl_alloc_index++;
849 } else
850 psgl_handle = NULL;
851 return psgl_handle;
854 void
855 free_mgmt_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
858 SE_DEBUG(DBG_LVL_8, "In free_mgmt_sgl_handle,eh_sgl_free_index=%d\n",
859 phba->eh_sgl_free_index);
860 if (phba->eh_sgl_hndl_base[phba->eh_sgl_free_index]) {
862 * this can happen if clean_task is called on a task that
863 * failed in xmit_task or alloc_pdu.
865 SE_DEBUG(DBG_LVL_8,
866 "Double Free in eh SGL ,eh_sgl_free_index=%d\n",
867 phba->eh_sgl_free_index);
868 return;
870 phba->eh_sgl_hndl_base[phba->eh_sgl_free_index] = psgl_handle;
871 phba->eh_sgl_hndl_avbl++;
872 if (phba->eh_sgl_free_index ==
873 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl - 1))
874 phba->eh_sgl_free_index = 0;
875 else
876 phba->eh_sgl_free_index++;
879 static void
880 be_complete_io(struct beiscsi_conn *beiscsi_conn,
881 struct iscsi_task *task, struct sol_cqe *psol)
883 struct beiscsi_io_task *io_task = task->dd_data;
884 struct be_status_bhs *sts_bhs =
885 (struct be_status_bhs *)io_task->cmd_bhs;
886 struct iscsi_conn *conn = beiscsi_conn->conn;
887 unsigned int sense_len;
888 unsigned char *sense;
889 u32 resid = 0, exp_cmdsn, max_cmdsn;
890 u8 rsp, status, flags;
892 exp_cmdsn = (psol->
893 dw[offsetof(struct amap_sol_cqe, i_exp_cmd_sn) / 32]
894 & SOL_EXP_CMD_SN_MASK);
895 max_cmdsn = ((psol->
896 dw[offsetof(struct amap_sol_cqe, i_exp_cmd_sn) / 32]
897 & SOL_EXP_CMD_SN_MASK) +
898 ((psol->dw[offsetof(struct amap_sol_cqe, i_cmd_wnd)
899 / 32] & SOL_CMD_WND_MASK) >> 24) - 1);
900 rsp = ((psol->dw[offsetof(struct amap_sol_cqe, i_resp) / 32]
901 & SOL_RESP_MASK) >> 16);
902 status = ((psol->dw[offsetof(struct amap_sol_cqe, i_sts) / 32]
903 & SOL_STS_MASK) >> 8);
904 flags = ((psol->dw[offsetof(struct amap_sol_cqe, i_flags) / 32]
905 & SOL_FLAGS_MASK) >> 24) | 0x80;
907 task->sc->result = (DID_OK << 16) | status;
908 if (rsp != ISCSI_STATUS_CMD_COMPLETED) {
909 task->sc->result = DID_ERROR << 16;
910 goto unmap;
913 /* bidi not initially supported */
914 if (flags & (ISCSI_FLAG_CMD_UNDERFLOW | ISCSI_FLAG_CMD_OVERFLOW)) {
915 resid = (psol->dw[offsetof(struct amap_sol_cqe, i_res_cnt) /
916 32] & SOL_RES_CNT_MASK);
918 if (!status && (flags & ISCSI_FLAG_CMD_OVERFLOW))
919 task->sc->result = DID_ERROR << 16;
921 if (flags & ISCSI_FLAG_CMD_UNDERFLOW) {
922 scsi_set_resid(task->sc, resid);
923 if (!status && (scsi_bufflen(task->sc) - resid <
924 task->sc->underflow))
925 task->sc->result = DID_ERROR << 16;
929 if (status == SAM_STAT_CHECK_CONDITION) {
930 unsigned short *slen = (unsigned short *)sts_bhs->sense_info;
931 sense = sts_bhs->sense_info + sizeof(unsigned short);
932 sense_len = cpu_to_be16(*slen);
933 memcpy(task->sc->sense_buffer, sense,
934 min_t(u16, sense_len, SCSI_SENSE_BUFFERSIZE));
937 if (io_task->cmd_bhs->iscsi_hdr.flags & ISCSI_FLAG_CMD_READ) {
938 if (psol->dw[offsetof(struct amap_sol_cqe, i_res_cnt) / 32]
939 & SOL_RES_CNT_MASK)
940 conn->rxdata_octets += (psol->
941 dw[offsetof(struct amap_sol_cqe, i_res_cnt) / 32]
942 & SOL_RES_CNT_MASK);
944 unmap:
945 scsi_dma_unmap(io_task->scsi_cmnd);
946 iscsi_complete_scsi_task(task, exp_cmdsn, max_cmdsn);
949 static void
950 be_complete_logout(struct beiscsi_conn *beiscsi_conn,
951 struct iscsi_task *task, struct sol_cqe *psol)
953 struct iscsi_logout_rsp *hdr;
954 struct beiscsi_io_task *io_task = task->dd_data;
955 struct iscsi_conn *conn = beiscsi_conn->conn;
957 hdr = (struct iscsi_logout_rsp *)task->hdr;
958 hdr->opcode = ISCSI_OP_LOGOUT_RSP;
959 hdr->t2wait = 5;
960 hdr->t2retain = 0;
961 hdr->flags = ((psol->dw[offsetof(struct amap_sol_cqe, i_flags) / 32]
962 & SOL_FLAGS_MASK) >> 24) | 0x80;
963 hdr->response = (psol->dw[offsetof(struct amap_sol_cqe, i_resp) /
964 32] & SOL_RESP_MASK);
965 hdr->exp_cmdsn = cpu_to_be32(psol->
966 dw[offsetof(struct amap_sol_cqe, i_exp_cmd_sn) / 32]
967 & SOL_EXP_CMD_SN_MASK);
968 hdr->max_cmdsn = be32_to_cpu((psol->
969 dw[offsetof(struct amap_sol_cqe, i_exp_cmd_sn) / 32]
970 & SOL_EXP_CMD_SN_MASK) +
971 ((psol->dw[offsetof(struct amap_sol_cqe, i_cmd_wnd)
972 / 32] & SOL_CMD_WND_MASK) >> 24) - 1);
973 hdr->dlength[0] = 0;
974 hdr->dlength[1] = 0;
975 hdr->dlength[2] = 0;
976 hdr->hlength = 0;
977 hdr->itt = io_task->libiscsi_itt;
978 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
981 static void
982 be_complete_tmf(struct beiscsi_conn *beiscsi_conn,
983 struct iscsi_task *task, struct sol_cqe *psol)
985 struct iscsi_tm_rsp *hdr;
986 struct iscsi_conn *conn = beiscsi_conn->conn;
987 struct beiscsi_io_task *io_task = task->dd_data;
989 hdr = (struct iscsi_tm_rsp *)task->hdr;
990 hdr->opcode = ISCSI_OP_SCSI_TMFUNC_RSP;
991 hdr->flags = ((psol->dw[offsetof(struct amap_sol_cqe, i_flags) / 32]
992 & SOL_FLAGS_MASK) >> 24) | 0x80;
993 hdr->response = (psol->dw[offsetof(struct amap_sol_cqe, i_resp) /
994 32] & SOL_RESP_MASK);
995 hdr->exp_cmdsn = cpu_to_be32(psol->dw[offsetof(struct amap_sol_cqe,
996 i_exp_cmd_sn) / 32] & SOL_EXP_CMD_SN_MASK);
997 hdr->max_cmdsn = be32_to_cpu((psol->dw[offsetof(struct amap_sol_cqe,
998 i_exp_cmd_sn) / 32] & SOL_EXP_CMD_SN_MASK) +
999 ((psol->dw[offsetof(struct amap_sol_cqe, i_cmd_wnd)
1000 / 32] & SOL_CMD_WND_MASK) >> 24) - 1);
1001 hdr->itt = io_task->libiscsi_itt;
1002 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1005 static void
1006 hwi_complete_drvr_msgs(struct beiscsi_conn *beiscsi_conn,
1007 struct beiscsi_hba *phba, struct sol_cqe *psol)
1009 struct hwi_wrb_context *pwrb_context;
1010 struct wrb_handle *pwrb_handle = NULL;
1011 struct hwi_controller *phwi_ctrlr;
1012 struct iscsi_task *task;
1013 struct beiscsi_io_task *io_task;
1014 struct iscsi_conn *conn = beiscsi_conn->conn;
1015 struct iscsi_session *session = conn->session;
1017 phwi_ctrlr = phba->phwi_ctrlr;
1018 pwrb_context = &phwi_ctrlr->wrb_context[((psol->
1019 dw[offsetof(struct amap_sol_cqe, cid) / 32] &
1020 SOL_CID_MASK) >> 6) -
1021 phba->fw_config.iscsi_cid_start];
1022 pwrb_handle = pwrb_context->pwrb_handle_basestd[((psol->
1023 dw[offsetof(struct amap_sol_cqe, wrb_index) /
1024 32] & SOL_WRB_INDEX_MASK) >> 16)];
1025 task = pwrb_handle->pio_handle;
1027 io_task = task->dd_data;
1028 spin_lock(&phba->mgmt_sgl_lock);
1029 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
1030 spin_unlock(&phba->mgmt_sgl_lock);
1031 spin_lock_bh(&session->lock);
1032 free_wrb_handle(phba, pwrb_context, pwrb_handle);
1033 spin_unlock_bh(&session->lock);
1036 static void
1037 be_complete_nopin_resp(struct beiscsi_conn *beiscsi_conn,
1038 struct iscsi_task *task, struct sol_cqe *psol)
1040 struct iscsi_nopin *hdr;
1041 struct iscsi_conn *conn = beiscsi_conn->conn;
1042 struct beiscsi_io_task *io_task = task->dd_data;
1044 hdr = (struct iscsi_nopin *)task->hdr;
1045 hdr->flags = ((psol->dw[offsetof(struct amap_sol_cqe, i_flags) / 32]
1046 & SOL_FLAGS_MASK) >> 24) | 0x80;
1047 hdr->exp_cmdsn = cpu_to_be32(psol->dw[offsetof(struct amap_sol_cqe,
1048 i_exp_cmd_sn) / 32] & SOL_EXP_CMD_SN_MASK);
1049 hdr->max_cmdsn = be32_to_cpu((psol->dw[offsetof(struct amap_sol_cqe,
1050 i_exp_cmd_sn) / 32] & SOL_EXP_CMD_SN_MASK) +
1051 ((psol->dw[offsetof(struct amap_sol_cqe, i_cmd_wnd)
1052 / 32] & SOL_CMD_WND_MASK) >> 24) - 1);
1053 hdr->opcode = ISCSI_OP_NOOP_IN;
1054 hdr->itt = io_task->libiscsi_itt;
1055 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1058 static void hwi_complete_cmd(struct beiscsi_conn *beiscsi_conn,
1059 struct beiscsi_hba *phba, struct sol_cqe *psol)
1061 struct hwi_wrb_context *pwrb_context;
1062 struct wrb_handle *pwrb_handle;
1063 struct iscsi_wrb *pwrb = NULL;
1064 struct hwi_controller *phwi_ctrlr;
1065 struct iscsi_task *task;
1066 unsigned int type;
1067 struct iscsi_conn *conn = beiscsi_conn->conn;
1068 struct iscsi_session *session = conn->session;
1070 phwi_ctrlr = phba->phwi_ctrlr;
1071 pwrb_context = &phwi_ctrlr->wrb_context[((psol->dw[offsetof
1072 (struct amap_sol_cqe, cid) / 32]
1073 & SOL_CID_MASK) >> 6) -
1074 phba->fw_config.iscsi_cid_start];
1075 pwrb_handle = pwrb_context->pwrb_handle_basestd[((psol->
1076 dw[offsetof(struct amap_sol_cqe, wrb_index) /
1077 32] & SOL_WRB_INDEX_MASK) >> 16)];
1078 task = pwrb_handle->pio_handle;
1079 pwrb = pwrb_handle->pwrb;
1080 type = (pwrb->dw[offsetof(struct amap_iscsi_wrb, type) / 32] &
1081 WRB_TYPE_MASK) >> 28;
1083 spin_lock_bh(&session->lock);
1084 switch (type) {
1085 case HWH_TYPE_IO:
1086 case HWH_TYPE_IO_RD:
1087 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) ==
1088 ISCSI_OP_NOOP_OUT)
1089 be_complete_nopin_resp(beiscsi_conn, task, psol);
1090 else
1091 be_complete_io(beiscsi_conn, task, psol);
1092 break;
1094 case HWH_TYPE_LOGOUT:
1095 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
1096 be_complete_logout(beiscsi_conn, task, psol);
1097 else
1098 be_complete_tmf(beiscsi_conn, task, psol);
1100 break;
1102 case HWH_TYPE_LOGIN:
1103 SE_DEBUG(DBG_LVL_1,
1104 "\t\t No HWH_TYPE_LOGIN Expected in hwi_complete_cmd"
1105 "- Solicited path\n");
1106 break;
1108 case HWH_TYPE_NOP:
1109 be_complete_nopin_resp(beiscsi_conn, task, psol);
1110 break;
1112 default:
1113 shost_printk(KERN_WARNING, phba->shost,
1114 "In hwi_complete_cmd, unknown type = %d"
1115 "wrb_index 0x%x CID 0x%x\n", type,
1116 ((psol->dw[offsetof(struct amap_iscsi_wrb,
1117 type) / 32] & SOL_WRB_INDEX_MASK) >> 16),
1118 ((psol->dw[offsetof(struct amap_sol_cqe,
1119 cid) / 32] & SOL_CID_MASK) >> 6));
1120 break;
1123 spin_unlock_bh(&session->lock);
1126 static struct list_head *hwi_get_async_busy_list(struct hwi_async_pdu_context
1127 *pasync_ctx, unsigned int is_header,
1128 unsigned int host_write_ptr)
1130 if (is_header)
1131 return &pasync_ctx->async_entry[host_write_ptr].
1132 header_busy_list;
1133 else
1134 return &pasync_ctx->async_entry[host_write_ptr].data_busy_list;
1137 static struct async_pdu_handle *
1138 hwi_get_async_handle(struct beiscsi_hba *phba,
1139 struct beiscsi_conn *beiscsi_conn,
1140 struct hwi_async_pdu_context *pasync_ctx,
1141 struct i_t_dpdu_cqe *pdpdu_cqe, unsigned int *pcq_index)
1143 struct be_bus_address phys_addr;
1144 struct list_head *pbusy_list;
1145 struct async_pdu_handle *pasync_handle = NULL;
1146 int buffer_len = 0;
1147 unsigned char buffer_index = -1;
1148 unsigned char is_header = 0;
1150 phys_addr.u.a32.address_lo =
1151 pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe, db_addr_lo) / 32] -
1152 ((pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe, dpl) / 32]
1153 & PDUCQE_DPL_MASK) >> 16);
1154 phys_addr.u.a32.address_hi =
1155 pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe, db_addr_hi) / 32];
1157 phys_addr.u.a64.address =
1158 *((unsigned long long *)(&phys_addr.u.a64.address));
1160 switch (pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe, code) / 32]
1161 & PDUCQE_CODE_MASK) {
1162 case UNSOL_HDR_NOTIFY:
1163 is_header = 1;
1165 pbusy_list = hwi_get_async_busy_list(pasync_ctx, 1,
1166 (pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe,
1167 index) / 32] & PDUCQE_INDEX_MASK));
1169 buffer_len = (unsigned int)(phys_addr.u.a64.address -
1170 pasync_ctx->async_header.pa_base.u.a64.address);
1172 buffer_index = buffer_len /
1173 pasync_ctx->async_header.buffer_size;
1175 break;
1176 case UNSOL_DATA_NOTIFY:
1177 pbusy_list = hwi_get_async_busy_list(pasync_ctx, 0, (pdpdu_cqe->
1178 dw[offsetof(struct amap_i_t_dpdu_cqe,
1179 index) / 32] & PDUCQE_INDEX_MASK));
1180 buffer_len = (unsigned long)(phys_addr.u.a64.address -
1181 pasync_ctx->async_data.pa_base.u.
1182 a64.address);
1183 buffer_index = buffer_len / pasync_ctx->async_data.buffer_size;
1184 break;
1185 default:
1186 pbusy_list = NULL;
1187 shost_printk(KERN_WARNING, phba->shost,
1188 "Unexpected code=%d\n",
1189 pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe,
1190 code) / 32] & PDUCQE_CODE_MASK);
1191 return NULL;
1194 WARN_ON(!(buffer_index <= pasync_ctx->async_data.num_entries));
1195 WARN_ON(list_empty(pbusy_list));
1196 list_for_each_entry(pasync_handle, pbusy_list, link) {
1197 WARN_ON(pasync_handle->consumed);
1198 if (pasync_handle->index == buffer_index)
1199 break;
1202 WARN_ON(!pasync_handle);
1204 pasync_handle->cri = (unsigned short)beiscsi_conn->beiscsi_conn_cid -
1205 phba->fw_config.iscsi_cid_start;
1206 pasync_handle->is_header = is_header;
1207 pasync_handle->buffer_len = ((pdpdu_cqe->
1208 dw[offsetof(struct amap_i_t_dpdu_cqe, dpl) / 32]
1209 & PDUCQE_DPL_MASK) >> 16);
1211 *pcq_index = (pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe,
1212 index) / 32] & PDUCQE_INDEX_MASK);
1213 return pasync_handle;
1216 static unsigned int
1217 hwi_update_async_writables(struct hwi_async_pdu_context *pasync_ctx,
1218 unsigned int is_header, unsigned int cq_index)
1220 struct list_head *pbusy_list;
1221 struct async_pdu_handle *pasync_handle;
1222 unsigned int num_entries, writables = 0;
1223 unsigned int *pep_read_ptr, *pwritables;
1226 if (is_header) {
1227 pep_read_ptr = &pasync_ctx->async_header.ep_read_ptr;
1228 pwritables = &pasync_ctx->async_header.writables;
1229 num_entries = pasync_ctx->async_header.num_entries;
1230 } else {
1231 pep_read_ptr = &pasync_ctx->async_data.ep_read_ptr;
1232 pwritables = &pasync_ctx->async_data.writables;
1233 num_entries = pasync_ctx->async_data.num_entries;
1236 while ((*pep_read_ptr) != cq_index) {
1237 (*pep_read_ptr)++;
1238 *pep_read_ptr = (*pep_read_ptr) % num_entries;
1240 pbusy_list = hwi_get_async_busy_list(pasync_ctx, is_header,
1241 *pep_read_ptr);
1242 if (writables == 0)
1243 WARN_ON(list_empty(pbusy_list));
1245 if (!list_empty(pbusy_list)) {
1246 pasync_handle = list_entry(pbusy_list->next,
1247 struct async_pdu_handle,
1248 link);
1249 WARN_ON(!pasync_handle);
1250 pasync_handle->consumed = 1;
1253 writables++;
1256 if (!writables) {
1257 SE_DEBUG(DBG_LVL_1,
1258 "Duplicate notification received - index 0x%x!!\n",
1259 cq_index);
1260 WARN_ON(1);
1263 *pwritables = *pwritables + writables;
1264 return 0;
1267 static unsigned int hwi_free_async_msg(struct beiscsi_hba *phba,
1268 unsigned int cri)
1270 struct hwi_controller *phwi_ctrlr;
1271 struct hwi_async_pdu_context *pasync_ctx;
1272 struct async_pdu_handle *pasync_handle, *tmp_handle;
1273 struct list_head *plist;
1274 unsigned int i = 0;
1276 phwi_ctrlr = phba->phwi_ctrlr;
1277 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr);
1279 plist = &pasync_ctx->async_entry[cri].wait_queue.list;
1281 list_for_each_entry_safe(pasync_handle, tmp_handle, plist, link) {
1282 list_del(&pasync_handle->link);
1284 if (i == 0) {
1285 list_add_tail(&pasync_handle->link,
1286 &pasync_ctx->async_header.free_list);
1287 pasync_ctx->async_header.free_entries++;
1288 i++;
1289 } else {
1290 list_add_tail(&pasync_handle->link,
1291 &pasync_ctx->async_data.free_list);
1292 pasync_ctx->async_data.free_entries++;
1293 i++;
1297 INIT_LIST_HEAD(&pasync_ctx->async_entry[cri].wait_queue.list);
1298 pasync_ctx->async_entry[cri].wait_queue.hdr_received = 0;
1299 pasync_ctx->async_entry[cri].wait_queue.bytes_received = 0;
1300 return 0;
1303 static struct phys_addr *
1304 hwi_get_ring_address(struct hwi_async_pdu_context *pasync_ctx,
1305 unsigned int is_header, unsigned int host_write_ptr)
1307 struct phys_addr *pasync_sge = NULL;
1309 if (is_header)
1310 pasync_sge = pasync_ctx->async_header.ring_base;
1311 else
1312 pasync_sge = pasync_ctx->async_data.ring_base;
1314 return pasync_sge + host_write_ptr;
1317 static void hwi_post_async_buffers(struct beiscsi_hba *phba,
1318 unsigned int is_header)
1320 struct hwi_controller *phwi_ctrlr;
1321 struct hwi_async_pdu_context *pasync_ctx;
1322 struct async_pdu_handle *pasync_handle;
1323 struct list_head *pfree_link, *pbusy_list;
1324 struct phys_addr *pasync_sge;
1325 unsigned int ring_id, num_entries;
1326 unsigned int host_write_num;
1327 unsigned int writables;
1328 unsigned int i = 0;
1329 u32 doorbell = 0;
1331 phwi_ctrlr = phba->phwi_ctrlr;
1332 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr);
1334 if (is_header) {
1335 num_entries = pasync_ctx->async_header.num_entries;
1336 writables = min(pasync_ctx->async_header.writables,
1337 pasync_ctx->async_header.free_entries);
1338 pfree_link = pasync_ctx->async_header.free_list.next;
1339 host_write_num = pasync_ctx->async_header.host_write_ptr;
1340 ring_id = phwi_ctrlr->default_pdu_hdr.id;
1341 } else {
1342 num_entries = pasync_ctx->async_data.num_entries;
1343 writables = min(pasync_ctx->async_data.writables,
1344 pasync_ctx->async_data.free_entries);
1345 pfree_link = pasync_ctx->async_data.free_list.next;
1346 host_write_num = pasync_ctx->async_data.host_write_ptr;
1347 ring_id = phwi_ctrlr->default_pdu_data.id;
1350 writables = (writables / 8) * 8;
1351 if (writables) {
1352 for (i = 0; i < writables; i++) {
1353 pbusy_list =
1354 hwi_get_async_busy_list(pasync_ctx, is_header,
1355 host_write_num);
1356 pasync_handle =
1357 list_entry(pfree_link, struct async_pdu_handle,
1358 link);
1359 WARN_ON(!pasync_handle);
1360 pasync_handle->consumed = 0;
1362 pfree_link = pfree_link->next;
1364 pasync_sge = hwi_get_ring_address(pasync_ctx,
1365 is_header, host_write_num);
1367 pasync_sge->hi = pasync_handle->pa.u.a32.address_lo;
1368 pasync_sge->lo = pasync_handle->pa.u.a32.address_hi;
1370 list_move(&pasync_handle->link, pbusy_list);
1372 host_write_num++;
1373 host_write_num = host_write_num % num_entries;
1376 if (is_header) {
1377 pasync_ctx->async_header.host_write_ptr =
1378 host_write_num;
1379 pasync_ctx->async_header.free_entries -= writables;
1380 pasync_ctx->async_header.writables -= writables;
1381 pasync_ctx->async_header.busy_entries += writables;
1382 } else {
1383 pasync_ctx->async_data.host_write_ptr = host_write_num;
1384 pasync_ctx->async_data.free_entries -= writables;
1385 pasync_ctx->async_data.writables -= writables;
1386 pasync_ctx->async_data.busy_entries += writables;
1389 doorbell |= ring_id & DB_DEF_PDU_RING_ID_MASK;
1390 doorbell |= 1 << DB_DEF_PDU_REARM_SHIFT;
1391 doorbell |= 0 << DB_DEF_PDU_EVENT_SHIFT;
1392 doorbell |= (writables & DB_DEF_PDU_CQPROC_MASK)
1393 << DB_DEF_PDU_CQPROC_SHIFT;
1395 iowrite32(doorbell, phba->db_va + DB_RXULP0_OFFSET);
1399 static void hwi_flush_default_pdu_buffer(struct beiscsi_hba *phba,
1400 struct beiscsi_conn *beiscsi_conn,
1401 struct i_t_dpdu_cqe *pdpdu_cqe)
1403 struct hwi_controller *phwi_ctrlr;
1404 struct hwi_async_pdu_context *pasync_ctx;
1405 struct async_pdu_handle *pasync_handle = NULL;
1406 unsigned int cq_index = -1;
1408 phwi_ctrlr = phba->phwi_ctrlr;
1409 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr);
1411 pasync_handle = hwi_get_async_handle(phba, beiscsi_conn, pasync_ctx,
1412 pdpdu_cqe, &cq_index);
1413 BUG_ON(pasync_handle->is_header != 0);
1414 if (pasync_handle->consumed == 0)
1415 hwi_update_async_writables(pasync_ctx, pasync_handle->is_header,
1416 cq_index);
1418 hwi_free_async_msg(phba, pasync_handle->cri);
1419 hwi_post_async_buffers(phba, pasync_handle->is_header);
1422 static unsigned int
1423 hwi_fwd_async_msg(struct beiscsi_conn *beiscsi_conn,
1424 struct beiscsi_hba *phba,
1425 struct hwi_async_pdu_context *pasync_ctx, unsigned short cri)
1427 struct list_head *plist;
1428 struct async_pdu_handle *pasync_handle;
1429 void *phdr = NULL;
1430 unsigned int hdr_len = 0, buf_len = 0;
1431 unsigned int status, index = 0, offset = 0;
1432 void *pfirst_buffer = NULL;
1433 unsigned int num_buf = 0;
1435 plist = &pasync_ctx->async_entry[cri].wait_queue.list;
1437 list_for_each_entry(pasync_handle, plist, link) {
1438 if (index == 0) {
1439 phdr = pasync_handle->pbuffer;
1440 hdr_len = pasync_handle->buffer_len;
1441 } else {
1442 buf_len = pasync_handle->buffer_len;
1443 if (!num_buf) {
1444 pfirst_buffer = pasync_handle->pbuffer;
1445 num_buf++;
1447 memcpy(pfirst_buffer + offset,
1448 pasync_handle->pbuffer, buf_len);
1449 offset = buf_len;
1451 index++;
1454 status = beiscsi_process_async_pdu(beiscsi_conn, phba,
1455 (beiscsi_conn->beiscsi_conn_cid -
1456 phba->fw_config.iscsi_cid_start),
1457 phdr, hdr_len, pfirst_buffer,
1458 buf_len);
1460 if (status == 0)
1461 hwi_free_async_msg(phba, cri);
1462 return 0;
1465 static unsigned int
1466 hwi_gather_async_pdu(struct beiscsi_conn *beiscsi_conn,
1467 struct beiscsi_hba *phba,
1468 struct async_pdu_handle *pasync_handle)
1470 struct hwi_async_pdu_context *pasync_ctx;
1471 struct hwi_controller *phwi_ctrlr;
1472 unsigned int bytes_needed = 0, status = 0;
1473 unsigned short cri = pasync_handle->cri;
1474 struct pdu_base *ppdu;
1476 phwi_ctrlr = phba->phwi_ctrlr;
1477 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr);
1479 list_del(&pasync_handle->link);
1480 if (pasync_handle->is_header) {
1481 pasync_ctx->async_header.busy_entries--;
1482 if (pasync_ctx->async_entry[cri].wait_queue.hdr_received) {
1483 hwi_free_async_msg(phba, cri);
1484 BUG();
1487 pasync_ctx->async_entry[cri].wait_queue.bytes_received = 0;
1488 pasync_ctx->async_entry[cri].wait_queue.hdr_received = 1;
1489 pasync_ctx->async_entry[cri].wait_queue.hdr_len =
1490 (unsigned short)pasync_handle->buffer_len;
1491 list_add_tail(&pasync_handle->link,
1492 &pasync_ctx->async_entry[cri].wait_queue.list);
1494 ppdu = pasync_handle->pbuffer;
1495 bytes_needed = ((((ppdu->dw[offsetof(struct amap_pdu_base,
1496 data_len_hi) / 32] & PDUBASE_DATALENHI_MASK) << 8) &
1497 0xFFFF0000) | ((be16_to_cpu((ppdu->
1498 dw[offsetof(struct amap_pdu_base, data_len_lo) / 32]
1499 & PDUBASE_DATALENLO_MASK) >> 16)) & 0x0000FFFF));
1501 if (status == 0) {
1502 pasync_ctx->async_entry[cri].wait_queue.bytes_needed =
1503 bytes_needed;
1505 if (bytes_needed == 0)
1506 status = hwi_fwd_async_msg(beiscsi_conn, phba,
1507 pasync_ctx, cri);
1509 } else {
1510 pasync_ctx->async_data.busy_entries--;
1511 if (pasync_ctx->async_entry[cri].wait_queue.hdr_received) {
1512 list_add_tail(&pasync_handle->link,
1513 &pasync_ctx->async_entry[cri].wait_queue.
1514 list);
1515 pasync_ctx->async_entry[cri].wait_queue.
1516 bytes_received +=
1517 (unsigned short)pasync_handle->buffer_len;
1519 if (pasync_ctx->async_entry[cri].wait_queue.
1520 bytes_received >=
1521 pasync_ctx->async_entry[cri].wait_queue.
1522 bytes_needed)
1523 status = hwi_fwd_async_msg(beiscsi_conn, phba,
1524 pasync_ctx, cri);
1527 return status;
1530 static void hwi_process_default_pdu_ring(struct beiscsi_conn *beiscsi_conn,
1531 struct beiscsi_hba *phba,
1532 struct i_t_dpdu_cqe *pdpdu_cqe)
1534 struct hwi_controller *phwi_ctrlr;
1535 struct hwi_async_pdu_context *pasync_ctx;
1536 struct async_pdu_handle *pasync_handle = NULL;
1537 unsigned int cq_index = -1;
1539 phwi_ctrlr = phba->phwi_ctrlr;
1540 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr);
1541 pasync_handle = hwi_get_async_handle(phba, beiscsi_conn, pasync_ctx,
1542 pdpdu_cqe, &cq_index);
1544 if (pasync_handle->consumed == 0)
1545 hwi_update_async_writables(pasync_ctx, pasync_handle->is_header,
1546 cq_index);
1547 hwi_gather_async_pdu(beiscsi_conn, phba, pasync_handle);
1548 hwi_post_async_buffers(phba, pasync_handle->is_header);
1551 static void beiscsi_process_mcc_isr(struct beiscsi_hba *phba)
1553 struct be_queue_info *mcc_cq;
1554 struct be_mcc_compl *mcc_compl;
1555 unsigned int num_processed = 0;
1557 mcc_cq = &phba->ctrl.mcc_obj.cq;
1558 mcc_compl = queue_tail_node(mcc_cq);
1559 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
1560 while (mcc_compl->flags & CQE_FLAGS_VALID_MASK) {
1562 if (num_processed >= 32) {
1563 hwi_ring_cq_db(phba, mcc_cq->id,
1564 num_processed, 0, 0);
1565 num_processed = 0;
1567 if (mcc_compl->flags & CQE_FLAGS_ASYNC_MASK) {
1568 /* Interpret flags as an async trailer */
1569 if (is_link_state_evt(mcc_compl->flags))
1570 /* Interpret compl as a async link evt */
1571 beiscsi_async_link_state_process(phba,
1572 (struct be_async_event_link_state *) mcc_compl);
1573 else
1574 SE_DEBUG(DBG_LVL_1,
1575 " Unsupported Async Event, flags"
1576 " = 0x%08x\n", mcc_compl->flags);
1577 } else if (mcc_compl->flags & CQE_FLAGS_COMPLETED_MASK) {
1578 be_mcc_compl_process_isr(&phba->ctrl, mcc_compl);
1579 atomic_dec(&phba->ctrl.mcc_obj.q.used);
1582 mcc_compl->flags = 0;
1583 queue_tail_inc(mcc_cq);
1584 mcc_compl = queue_tail_node(mcc_cq);
1585 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
1586 num_processed++;
1589 if (num_processed > 0)
1590 hwi_ring_cq_db(phba, mcc_cq->id, num_processed, 1, 0);
1594 static unsigned int beiscsi_process_cq(struct be_eq_obj *pbe_eq)
1596 struct be_queue_info *cq;
1597 struct sol_cqe *sol;
1598 struct dmsg_cqe *dmsg;
1599 unsigned int num_processed = 0;
1600 unsigned int tot_nump = 0;
1601 struct beiscsi_conn *beiscsi_conn;
1602 struct beiscsi_endpoint *beiscsi_ep;
1603 struct iscsi_endpoint *ep;
1604 struct beiscsi_hba *phba;
1606 cq = pbe_eq->cq;
1607 sol = queue_tail_node(cq);
1608 phba = pbe_eq->phba;
1610 while (sol->dw[offsetof(struct amap_sol_cqe, valid) / 32] &
1611 CQE_VALID_MASK) {
1612 be_dws_le_to_cpu(sol, sizeof(struct sol_cqe));
1614 ep = phba->ep_array[(u32) ((sol->
1615 dw[offsetof(struct amap_sol_cqe, cid) / 32] &
1616 SOL_CID_MASK) >> 6) -
1617 phba->fw_config.iscsi_cid_start];
1619 beiscsi_ep = ep->dd_data;
1620 beiscsi_conn = beiscsi_ep->conn;
1622 if (num_processed >= 32) {
1623 hwi_ring_cq_db(phba, cq->id,
1624 num_processed, 0, 0);
1625 tot_nump += num_processed;
1626 num_processed = 0;
1629 switch ((u32) sol->dw[offsetof(struct amap_sol_cqe, code) /
1630 32] & CQE_CODE_MASK) {
1631 case SOL_CMD_COMPLETE:
1632 hwi_complete_cmd(beiscsi_conn, phba, sol);
1633 break;
1634 case DRIVERMSG_NOTIFY:
1635 SE_DEBUG(DBG_LVL_8, "Received DRIVERMSG_NOTIFY\n");
1636 dmsg = (struct dmsg_cqe *)sol;
1637 hwi_complete_drvr_msgs(beiscsi_conn, phba, sol);
1638 break;
1639 case UNSOL_HDR_NOTIFY:
1640 SE_DEBUG(DBG_LVL_8, "Received UNSOL_HDR_ NOTIFY\n");
1641 hwi_process_default_pdu_ring(beiscsi_conn, phba,
1642 (struct i_t_dpdu_cqe *)sol);
1643 break;
1644 case UNSOL_DATA_NOTIFY:
1645 SE_DEBUG(DBG_LVL_8, "Received UNSOL_DATA_NOTIFY\n");
1646 hwi_process_default_pdu_ring(beiscsi_conn, phba,
1647 (struct i_t_dpdu_cqe *)sol);
1648 break;
1649 case CXN_INVALIDATE_INDEX_NOTIFY:
1650 case CMD_INVALIDATED_NOTIFY:
1651 case CXN_INVALIDATE_NOTIFY:
1652 SE_DEBUG(DBG_LVL_1,
1653 "Ignoring CQ Error notification for cmd/cxn"
1654 "invalidate\n");
1655 break;
1656 case SOL_CMD_KILLED_DATA_DIGEST_ERR:
1657 case CMD_KILLED_INVALID_STATSN_RCVD:
1658 case CMD_KILLED_INVALID_R2T_RCVD:
1659 case CMD_CXN_KILLED_LUN_INVALID:
1660 case CMD_CXN_KILLED_ICD_INVALID:
1661 case CMD_CXN_KILLED_ITT_INVALID:
1662 case CMD_CXN_KILLED_SEQ_OUTOFORDER:
1663 case CMD_CXN_KILLED_INVALID_DATASN_RCVD:
1664 SE_DEBUG(DBG_LVL_1,
1665 "CQ Error notification for cmd.. "
1666 "code %d cid 0x%x\n",
1667 sol->dw[offsetof(struct amap_sol_cqe, code) /
1668 32] & CQE_CODE_MASK,
1669 (sol->dw[offsetof(struct amap_sol_cqe, cid) /
1670 32] & SOL_CID_MASK));
1671 break;
1672 case UNSOL_DATA_DIGEST_ERROR_NOTIFY:
1673 SE_DEBUG(DBG_LVL_1,
1674 "Digest error on def pdu ring, dropping..\n");
1675 hwi_flush_default_pdu_buffer(phba, beiscsi_conn,
1676 (struct i_t_dpdu_cqe *) sol);
1677 break;
1678 case CXN_KILLED_PDU_SIZE_EXCEEDS_DSL:
1679 case CXN_KILLED_BURST_LEN_MISMATCH:
1680 case CXN_KILLED_AHS_RCVD:
1681 case CXN_KILLED_HDR_DIGEST_ERR:
1682 case CXN_KILLED_UNKNOWN_HDR:
1683 case CXN_KILLED_STALE_ITT_TTT_RCVD:
1684 case CXN_KILLED_INVALID_ITT_TTT_RCVD:
1685 case CXN_KILLED_TIMED_OUT:
1686 case CXN_KILLED_FIN_RCVD:
1687 case CXN_KILLED_BAD_UNSOL_PDU_RCVD:
1688 case CXN_KILLED_BAD_WRB_INDEX_ERROR:
1689 case CXN_KILLED_OVER_RUN_RESIDUAL:
1690 case CXN_KILLED_UNDER_RUN_RESIDUAL:
1691 case CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN:
1692 SE_DEBUG(DBG_LVL_1, "CQ Error %d, reset CID "
1693 "0x%x...\n",
1694 sol->dw[offsetof(struct amap_sol_cqe, code) /
1695 32] & CQE_CODE_MASK,
1696 (sol->dw[offsetof(struct amap_sol_cqe, cid) /
1697 32] & CQE_CID_MASK));
1698 iscsi_conn_failure(beiscsi_conn->conn,
1699 ISCSI_ERR_CONN_FAILED);
1700 break;
1701 case CXN_KILLED_RST_SENT:
1702 case CXN_KILLED_RST_RCVD:
1703 SE_DEBUG(DBG_LVL_1, "CQ Error %d, reset"
1704 "received/sent on CID 0x%x...\n",
1705 sol->dw[offsetof(struct amap_sol_cqe, code) /
1706 32] & CQE_CODE_MASK,
1707 (sol->dw[offsetof(struct amap_sol_cqe, cid) /
1708 32] & CQE_CID_MASK));
1709 iscsi_conn_failure(beiscsi_conn->conn,
1710 ISCSI_ERR_CONN_FAILED);
1711 break;
1712 default:
1713 SE_DEBUG(DBG_LVL_1, "CQ Error Invalid code= %d "
1714 "received on CID 0x%x...\n",
1715 sol->dw[offsetof(struct amap_sol_cqe, code) /
1716 32] & CQE_CODE_MASK,
1717 (sol->dw[offsetof(struct amap_sol_cqe, cid) /
1718 32] & CQE_CID_MASK));
1719 break;
1722 AMAP_SET_BITS(struct amap_sol_cqe, valid, sol, 0);
1723 queue_tail_inc(cq);
1724 sol = queue_tail_node(cq);
1725 num_processed++;
1728 if (num_processed > 0) {
1729 tot_nump += num_processed;
1730 hwi_ring_cq_db(phba, cq->id, num_processed, 1, 0);
1732 return tot_nump;
1735 void beiscsi_process_all_cqs(struct work_struct *work)
1737 unsigned long flags;
1738 struct hwi_controller *phwi_ctrlr;
1739 struct hwi_context_memory *phwi_context;
1740 struct be_eq_obj *pbe_eq;
1741 struct beiscsi_hba *phba =
1742 container_of(work, struct beiscsi_hba, work_cqs);
1744 phwi_ctrlr = phba->phwi_ctrlr;
1745 phwi_context = phwi_ctrlr->phwi_ctxt;
1746 if (phba->msix_enabled)
1747 pbe_eq = &phwi_context->be_eq[phba->num_cpus];
1748 else
1749 pbe_eq = &phwi_context->be_eq[0];
1751 if (phba->todo_mcc_cq) {
1752 spin_lock_irqsave(&phba->isr_lock, flags);
1753 phba->todo_mcc_cq = 0;
1754 spin_unlock_irqrestore(&phba->isr_lock, flags);
1755 beiscsi_process_mcc_isr(phba);
1758 if (phba->todo_cq) {
1759 spin_lock_irqsave(&phba->isr_lock, flags);
1760 phba->todo_cq = 0;
1761 spin_unlock_irqrestore(&phba->isr_lock, flags);
1762 beiscsi_process_cq(pbe_eq);
1766 static int be_iopoll(struct blk_iopoll *iop, int budget)
1768 static unsigned int ret;
1769 struct beiscsi_hba *phba;
1770 struct be_eq_obj *pbe_eq;
1772 pbe_eq = container_of(iop, struct be_eq_obj, iopoll);
1773 ret = beiscsi_process_cq(pbe_eq);
1774 if (ret < budget) {
1775 phba = pbe_eq->phba;
1776 blk_iopoll_complete(iop);
1777 SE_DEBUG(DBG_LVL_8, "rearm pbe_eq->q.id =%d\n", pbe_eq->q.id);
1778 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1);
1780 return ret;
1783 static void
1784 hwi_write_sgl(struct iscsi_wrb *pwrb, struct scatterlist *sg,
1785 unsigned int num_sg, struct beiscsi_io_task *io_task)
1787 struct iscsi_sge *psgl;
1788 unsigned short sg_len, index;
1789 unsigned int sge_len = 0;
1790 unsigned long long addr;
1791 struct scatterlist *l_sg;
1792 unsigned int offset;
1794 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
1795 io_task->bhs_pa.u.a32.address_lo);
1796 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
1797 io_task->bhs_pa.u.a32.address_hi);
1799 l_sg = sg;
1800 for (index = 0; (index < num_sg) && (index < 2); index++,
1801 sg = sg_next(sg)) {
1802 if (index == 0) {
1803 sg_len = sg_dma_len(sg);
1804 addr = (u64) sg_dma_address(sg);
1805 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
1806 ((u32)(addr & 0xFFFFFFFF)));
1807 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
1808 ((u32)(addr >> 32)));
1809 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
1810 sg_len);
1811 sge_len = sg_len;
1812 } else {
1813 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_r2t_offset,
1814 pwrb, sge_len);
1815 sg_len = sg_dma_len(sg);
1816 addr = (u64) sg_dma_address(sg);
1817 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_lo, pwrb,
1818 ((u32)(addr & 0xFFFFFFFF)));
1819 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_hi, pwrb,
1820 ((u32)(addr >> 32)));
1821 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_len, pwrb,
1822 sg_len);
1825 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
1826 memset(psgl, 0, sizeof(*psgl) * BE2_SGE);
1828 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2);
1830 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
1831 io_task->bhs_pa.u.a32.address_hi);
1832 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
1833 io_task->bhs_pa.u.a32.address_lo);
1835 if (num_sg == 1) {
1836 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
1838 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
1840 } else if (num_sg == 2) {
1841 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
1843 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
1845 } else {
1846 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
1848 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
1851 sg = l_sg;
1852 psgl++;
1853 psgl++;
1854 offset = 0;
1855 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) {
1856 sg_len = sg_dma_len(sg);
1857 addr = (u64) sg_dma_address(sg);
1858 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
1859 (addr & 0xFFFFFFFF));
1860 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
1861 (addr >> 32));
1862 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len);
1863 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset);
1864 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
1865 offset += sg_len;
1867 psgl--;
1868 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
1871 static void hwi_write_buffer(struct iscsi_wrb *pwrb, struct iscsi_task *task)
1873 struct iscsi_sge *psgl;
1874 unsigned long long addr;
1875 struct beiscsi_io_task *io_task = task->dd_data;
1876 struct beiscsi_conn *beiscsi_conn = io_task->conn;
1877 struct beiscsi_hba *phba = beiscsi_conn->phba;
1879 io_task->bhs_len = sizeof(struct be_nonio_bhs) - 2;
1880 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
1881 io_task->bhs_pa.u.a32.address_lo);
1882 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
1883 io_task->bhs_pa.u.a32.address_hi);
1885 if (task->data) {
1886 if (task->data_count) {
1887 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 1);
1888 addr = (u64) pci_map_single(phba->pcidev,
1889 task->data,
1890 task->data_count, 1);
1891 } else {
1892 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
1893 addr = 0;
1895 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
1896 ((u32)(addr & 0xFFFFFFFF)));
1897 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
1898 ((u32)(addr >> 32)));
1899 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
1900 task->data_count);
1902 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 1);
1903 } else {
1904 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
1905 addr = 0;
1908 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
1910 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len);
1912 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
1913 io_task->bhs_pa.u.a32.address_hi);
1914 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
1915 io_task->bhs_pa.u.a32.address_lo);
1916 if (task->data) {
1917 psgl++;
1918 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 0);
1919 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 0);
1920 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0);
1921 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, 0);
1922 AMAP_SET_BITS(struct amap_iscsi_sge, rsvd0, psgl, 0);
1923 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
1925 psgl++;
1926 if (task->data) {
1927 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
1928 ((u32)(addr & 0xFFFFFFFF)));
1929 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
1930 ((u32)(addr >> 32)));
1932 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0x106);
1934 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
1937 static void beiscsi_find_mem_req(struct beiscsi_hba *phba)
1939 unsigned int num_cq_pages, num_async_pdu_buf_pages;
1940 unsigned int num_async_pdu_data_pages, wrb_sz_per_cxn;
1941 unsigned int num_async_pdu_buf_sgl_pages, num_async_pdu_data_sgl_pages;
1943 num_cq_pages = PAGES_REQUIRED(phba->params.num_cq_entries * \
1944 sizeof(struct sol_cqe));
1945 num_async_pdu_buf_pages =
1946 PAGES_REQUIRED(phba->params.asyncpdus_per_ctrl * \
1947 phba->params.defpdu_hdr_sz);
1948 num_async_pdu_buf_sgl_pages =
1949 PAGES_REQUIRED(phba->params.asyncpdus_per_ctrl * \
1950 sizeof(struct phys_addr));
1951 num_async_pdu_data_pages =
1952 PAGES_REQUIRED(phba->params.asyncpdus_per_ctrl * \
1953 phba->params.defpdu_data_sz);
1954 num_async_pdu_data_sgl_pages =
1955 PAGES_REQUIRED(phba->params.asyncpdus_per_ctrl * \
1956 sizeof(struct phys_addr));
1958 phba->params.hwi_ws_sz = sizeof(struct hwi_controller);
1960 phba->mem_req[ISCSI_MEM_GLOBAL_HEADER] = 2 *
1961 BE_ISCSI_PDU_HEADER_SIZE;
1962 phba->mem_req[HWI_MEM_ADDN_CONTEXT] =
1963 sizeof(struct hwi_context_memory);
1966 phba->mem_req[HWI_MEM_WRB] = sizeof(struct iscsi_wrb)
1967 * (phba->params.wrbs_per_cxn)
1968 * phba->params.cxns_per_ctrl;
1969 wrb_sz_per_cxn = sizeof(struct wrb_handle) *
1970 (phba->params.wrbs_per_cxn);
1971 phba->mem_req[HWI_MEM_WRBH] = roundup_pow_of_two((wrb_sz_per_cxn) *
1972 phba->params.cxns_per_ctrl);
1974 phba->mem_req[HWI_MEM_SGLH] = sizeof(struct sgl_handle) *
1975 phba->params.icds_per_ctrl;
1976 phba->mem_req[HWI_MEM_SGE] = sizeof(struct iscsi_sge) *
1977 phba->params.num_sge_per_io * phba->params.icds_per_ctrl;
1979 phba->mem_req[HWI_MEM_ASYNC_HEADER_BUF] =
1980 num_async_pdu_buf_pages * PAGE_SIZE;
1981 phba->mem_req[HWI_MEM_ASYNC_DATA_BUF] =
1982 num_async_pdu_data_pages * PAGE_SIZE;
1983 phba->mem_req[HWI_MEM_ASYNC_HEADER_RING] =
1984 num_async_pdu_buf_sgl_pages * PAGE_SIZE;
1985 phba->mem_req[HWI_MEM_ASYNC_DATA_RING] =
1986 num_async_pdu_data_sgl_pages * PAGE_SIZE;
1987 phba->mem_req[HWI_MEM_ASYNC_HEADER_HANDLE] =
1988 phba->params.asyncpdus_per_ctrl *
1989 sizeof(struct async_pdu_handle);
1990 phba->mem_req[HWI_MEM_ASYNC_DATA_HANDLE] =
1991 phba->params.asyncpdus_per_ctrl *
1992 sizeof(struct async_pdu_handle);
1993 phba->mem_req[HWI_MEM_ASYNC_PDU_CONTEXT] =
1994 sizeof(struct hwi_async_pdu_context) +
1995 (phba->params.cxns_per_ctrl * sizeof(struct hwi_async_entry));
1998 static int beiscsi_alloc_mem(struct beiscsi_hba *phba)
2000 struct be_mem_descriptor *mem_descr;
2001 dma_addr_t bus_add;
2002 struct mem_array *mem_arr, *mem_arr_orig;
2003 unsigned int i, j, alloc_size, curr_alloc_size;
2005 phba->phwi_ctrlr = kmalloc(phba->params.hwi_ws_sz, GFP_KERNEL);
2006 if (!phba->phwi_ctrlr)
2007 return -ENOMEM;
2009 phba->init_mem = kcalloc(SE_MEM_MAX, sizeof(*mem_descr),
2010 GFP_KERNEL);
2011 if (!phba->init_mem) {
2012 kfree(phba->phwi_ctrlr);
2013 return -ENOMEM;
2016 mem_arr_orig = kmalloc(sizeof(*mem_arr_orig) * BEISCSI_MAX_FRAGS_INIT,
2017 GFP_KERNEL);
2018 if (!mem_arr_orig) {
2019 kfree(phba->init_mem);
2020 kfree(phba->phwi_ctrlr);
2021 return -ENOMEM;
2024 mem_descr = phba->init_mem;
2025 for (i = 0; i < SE_MEM_MAX; i++) {
2026 j = 0;
2027 mem_arr = mem_arr_orig;
2028 alloc_size = phba->mem_req[i];
2029 memset(mem_arr, 0, sizeof(struct mem_array) *
2030 BEISCSI_MAX_FRAGS_INIT);
2031 curr_alloc_size = min(be_max_phys_size * 1024, alloc_size);
2032 do {
2033 mem_arr->virtual_address = pci_alloc_consistent(
2034 phba->pcidev,
2035 curr_alloc_size,
2036 &bus_add);
2037 if (!mem_arr->virtual_address) {
2038 if (curr_alloc_size <= BE_MIN_MEM_SIZE)
2039 goto free_mem;
2040 if (curr_alloc_size -
2041 rounddown_pow_of_two(curr_alloc_size))
2042 curr_alloc_size = rounddown_pow_of_two
2043 (curr_alloc_size);
2044 else
2045 curr_alloc_size = curr_alloc_size / 2;
2046 } else {
2047 mem_arr->bus_address.u.
2048 a64.address = (__u64) bus_add;
2049 mem_arr->size = curr_alloc_size;
2050 alloc_size -= curr_alloc_size;
2051 curr_alloc_size = min(be_max_phys_size *
2052 1024, alloc_size);
2053 j++;
2054 mem_arr++;
2056 } while (alloc_size);
2057 mem_descr->num_elements = j;
2058 mem_descr->size_in_bytes = phba->mem_req[i];
2059 mem_descr->mem_array = kmalloc(sizeof(*mem_arr) * j,
2060 GFP_KERNEL);
2061 if (!mem_descr->mem_array)
2062 goto free_mem;
2064 memcpy(mem_descr->mem_array, mem_arr_orig,
2065 sizeof(struct mem_array) * j);
2066 mem_descr++;
2068 kfree(mem_arr_orig);
2069 return 0;
2070 free_mem:
2071 mem_descr->num_elements = j;
2072 while ((i) || (j)) {
2073 for (j = mem_descr->num_elements; j > 0; j--) {
2074 pci_free_consistent(phba->pcidev,
2075 mem_descr->mem_array[j - 1].size,
2076 mem_descr->mem_array[j - 1].
2077 virtual_address,
2078 (unsigned long)mem_descr->
2079 mem_array[j - 1].
2080 bus_address.u.a64.address);
2082 if (i) {
2083 i--;
2084 kfree(mem_descr->mem_array);
2085 mem_descr--;
2088 kfree(mem_arr_orig);
2089 kfree(phba->init_mem);
2090 kfree(phba->phwi_ctrlr);
2091 return -ENOMEM;
2094 static int beiscsi_get_memory(struct beiscsi_hba *phba)
2096 beiscsi_find_mem_req(phba);
2097 return beiscsi_alloc_mem(phba);
2100 static void iscsi_init_global_templates(struct beiscsi_hba *phba)
2102 struct pdu_data_out *pdata_out;
2103 struct pdu_nop_out *pnop_out;
2104 struct be_mem_descriptor *mem_descr;
2106 mem_descr = phba->init_mem;
2107 mem_descr += ISCSI_MEM_GLOBAL_HEADER;
2108 pdata_out =
2109 (struct pdu_data_out *)mem_descr->mem_array[0].virtual_address;
2110 memset(pdata_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2112 AMAP_SET_BITS(struct amap_pdu_data_out, opcode, pdata_out,
2113 IIOC_SCSI_DATA);
2115 pnop_out =
2116 (struct pdu_nop_out *)((unsigned char *)mem_descr->mem_array[0].
2117 virtual_address + BE_ISCSI_PDU_HEADER_SIZE);
2119 memset(pnop_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2120 AMAP_SET_BITS(struct amap_pdu_nop_out, ttt, pnop_out, 0xFFFFFFFF);
2121 AMAP_SET_BITS(struct amap_pdu_nop_out, f_bit, pnop_out, 1);
2122 AMAP_SET_BITS(struct amap_pdu_nop_out, i_bit, pnop_out, 0);
2125 static void beiscsi_init_wrb_handle(struct beiscsi_hba *phba)
2127 struct be_mem_descriptor *mem_descr_wrbh, *mem_descr_wrb;
2128 struct wrb_handle *pwrb_handle;
2129 struct hwi_controller *phwi_ctrlr;
2130 struct hwi_wrb_context *pwrb_context;
2131 struct iscsi_wrb *pwrb;
2132 unsigned int num_cxn_wrbh;
2133 unsigned int num_cxn_wrb, j, idx, index;
2135 mem_descr_wrbh = phba->init_mem;
2136 mem_descr_wrbh += HWI_MEM_WRBH;
2138 mem_descr_wrb = phba->init_mem;
2139 mem_descr_wrb += HWI_MEM_WRB;
2141 idx = 0;
2142 pwrb_handle = mem_descr_wrbh->mem_array[idx].virtual_address;
2143 num_cxn_wrbh = ((mem_descr_wrbh->mem_array[idx].size) /
2144 ((sizeof(struct wrb_handle)) *
2145 phba->params.wrbs_per_cxn));
2146 phwi_ctrlr = phba->phwi_ctrlr;
2148 for (index = 0; index < phba->params.cxns_per_ctrl * 2; index += 2) {
2149 pwrb_context = &phwi_ctrlr->wrb_context[index];
2150 pwrb_context->pwrb_handle_base =
2151 kzalloc(sizeof(struct wrb_handle *) *
2152 phba->params.wrbs_per_cxn, GFP_KERNEL);
2153 pwrb_context->pwrb_handle_basestd =
2154 kzalloc(sizeof(struct wrb_handle *) *
2155 phba->params.wrbs_per_cxn, GFP_KERNEL);
2156 if (num_cxn_wrbh) {
2157 pwrb_context->alloc_index = 0;
2158 pwrb_context->wrb_handles_available = 0;
2159 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2160 pwrb_context->pwrb_handle_base[j] = pwrb_handle;
2161 pwrb_context->pwrb_handle_basestd[j] =
2162 pwrb_handle;
2163 pwrb_context->wrb_handles_available++;
2164 pwrb_handle->wrb_index = j;
2165 pwrb_handle++;
2167 pwrb_context->free_index = 0;
2168 num_cxn_wrbh--;
2169 } else {
2170 idx++;
2171 pwrb_handle =
2172 mem_descr_wrbh->mem_array[idx].virtual_address;
2173 num_cxn_wrbh =
2174 ((mem_descr_wrbh->mem_array[idx].size) /
2175 ((sizeof(struct wrb_handle)) *
2176 phba->params.wrbs_per_cxn));
2177 pwrb_context->alloc_index = 0;
2178 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2179 pwrb_context->pwrb_handle_base[j] = pwrb_handle;
2180 pwrb_context->pwrb_handle_basestd[j] =
2181 pwrb_handle;
2182 pwrb_context->wrb_handles_available++;
2183 pwrb_handle->wrb_index = j;
2184 pwrb_handle++;
2186 pwrb_context->free_index = 0;
2187 num_cxn_wrbh--;
2190 idx = 0;
2191 pwrb = mem_descr_wrb->mem_array[idx].virtual_address;
2192 num_cxn_wrb = (mem_descr_wrb->mem_array[idx].size) /
2193 ((sizeof(struct iscsi_wrb) *
2194 phba->params.wrbs_per_cxn));
2195 for (index = 0; index < phba->params.cxns_per_ctrl * 2; index += 2) {
2196 pwrb_context = &phwi_ctrlr->wrb_context[index];
2197 if (num_cxn_wrb) {
2198 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2199 pwrb_handle = pwrb_context->pwrb_handle_base[j];
2200 pwrb_handle->pwrb = pwrb;
2201 pwrb++;
2203 num_cxn_wrb--;
2204 } else {
2205 idx++;
2206 pwrb = mem_descr_wrb->mem_array[idx].virtual_address;
2207 num_cxn_wrb = (mem_descr_wrb->mem_array[idx].size) /
2208 ((sizeof(struct iscsi_wrb) *
2209 phba->params.wrbs_per_cxn));
2210 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2211 pwrb_handle = pwrb_context->pwrb_handle_base[j];
2212 pwrb_handle->pwrb = pwrb;
2213 pwrb++;
2215 num_cxn_wrb--;
2220 static void hwi_init_async_pdu_ctx(struct beiscsi_hba *phba)
2222 struct hwi_controller *phwi_ctrlr;
2223 struct hba_parameters *p = &phba->params;
2224 struct hwi_async_pdu_context *pasync_ctx;
2225 struct async_pdu_handle *pasync_header_h, *pasync_data_h;
2226 unsigned int index;
2227 struct be_mem_descriptor *mem_descr;
2229 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2230 mem_descr += HWI_MEM_ASYNC_PDU_CONTEXT;
2232 phwi_ctrlr = phba->phwi_ctrlr;
2233 phwi_ctrlr->phwi_ctxt->pasync_ctx = (struct hwi_async_pdu_context *)
2234 mem_descr->mem_array[0].virtual_address;
2235 pasync_ctx = phwi_ctrlr->phwi_ctxt->pasync_ctx;
2236 memset(pasync_ctx, 0, sizeof(*pasync_ctx));
2238 pasync_ctx->async_header.num_entries = p->asyncpdus_per_ctrl;
2239 pasync_ctx->async_header.buffer_size = p->defpdu_hdr_sz;
2240 pasync_ctx->async_data.buffer_size = p->defpdu_data_sz;
2241 pasync_ctx->async_data.num_entries = p->asyncpdus_per_ctrl;
2243 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2244 mem_descr += HWI_MEM_ASYNC_HEADER_BUF;
2245 if (mem_descr->mem_array[0].virtual_address) {
2246 SE_DEBUG(DBG_LVL_8,
2247 "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_HEADER_BUF"
2248 "va=%p\n", mem_descr->mem_array[0].virtual_address);
2249 } else
2250 shost_printk(KERN_WARNING, phba->shost,
2251 "No Virtual address\n");
2253 pasync_ctx->async_header.va_base =
2254 mem_descr->mem_array[0].virtual_address;
2256 pasync_ctx->async_header.pa_base.u.a64.address =
2257 mem_descr->mem_array[0].bus_address.u.a64.address;
2259 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2260 mem_descr += HWI_MEM_ASYNC_HEADER_RING;
2261 if (mem_descr->mem_array[0].virtual_address) {
2262 SE_DEBUG(DBG_LVL_8,
2263 "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_HEADER_RING"
2264 "va=%p\n", mem_descr->mem_array[0].virtual_address);
2265 } else
2266 shost_printk(KERN_WARNING, phba->shost,
2267 "No Virtual address\n");
2268 pasync_ctx->async_header.ring_base =
2269 mem_descr->mem_array[0].virtual_address;
2271 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2272 mem_descr += HWI_MEM_ASYNC_HEADER_HANDLE;
2273 if (mem_descr->mem_array[0].virtual_address) {
2274 SE_DEBUG(DBG_LVL_8,
2275 "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_HEADER_HANDLE"
2276 "va=%p\n", mem_descr->mem_array[0].virtual_address);
2277 } else
2278 shost_printk(KERN_WARNING, phba->shost,
2279 "No Virtual address\n");
2281 pasync_ctx->async_header.handle_base =
2282 mem_descr->mem_array[0].virtual_address;
2283 pasync_ctx->async_header.writables = 0;
2284 INIT_LIST_HEAD(&pasync_ctx->async_header.free_list);
2286 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2287 mem_descr += HWI_MEM_ASYNC_DATA_BUF;
2288 if (mem_descr->mem_array[0].virtual_address) {
2289 SE_DEBUG(DBG_LVL_8,
2290 "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_DATA_BUF"
2291 "va=%p\n", mem_descr->mem_array[0].virtual_address);
2292 } else
2293 shost_printk(KERN_WARNING, phba->shost,
2294 "No Virtual address\n");
2295 pasync_ctx->async_data.va_base =
2296 mem_descr->mem_array[0].virtual_address;
2297 pasync_ctx->async_data.pa_base.u.a64.address =
2298 mem_descr->mem_array[0].bus_address.u.a64.address;
2300 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2301 mem_descr += HWI_MEM_ASYNC_DATA_RING;
2302 if (mem_descr->mem_array[0].virtual_address) {
2303 SE_DEBUG(DBG_LVL_8,
2304 "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_DATA_RING"
2305 "va=%p\n", mem_descr->mem_array[0].virtual_address);
2306 } else
2307 shost_printk(KERN_WARNING, phba->shost,
2308 "No Virtual address\n");
2310 pasync_ctx->async_data.ring_base =
2311 mem_descr->mem_array[0].virtual_address;
2313 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2314 mem_descr += HWI_MEM_ASYNC_DATA_HANDLE;
2315 if (!mem_descr->mem_array[0].virtual_address)
2316 shost_printk(KERN_WARNING, phba->shost,
2317 "No Virtual address\n");
2319 pasync_ctx->async_data.handle_base =
2320 mem_descr->mem_array[0].virtual_address;
2321 pasync_ctx->async_data.writables = 0;
2322 INIT_LIST_HEAD(&pasync_ctx->async_data.free_list);
2324 pasync_header_h =
2325 (struct async_pdu_handle *)pasync_ctx->async_header.handle_base;
2326 pasync_data_h =
2327 (struct async_pdu_handle *)pasync_ctx->async_data.handle_base;
2329 for (index = 0; index < p->asyncpdus_per_ctrl; index++) {
2330 pasync_header_h->cri = -1;
2331 pasync_header_h->index = (char)index;
2332 INIT_LIST_HEAD(&pasync_header_h->link);
2333 pasync_header_h->pbuffer =
2334 (void *)((unsigned long)
2335 (pasync_ctx->async_header.va_base) +
2336 (p->defpdu_hdr_sz * index));
2338 pasync_header_h->pa.u.a64.address =
2339 pasync_ctx->async_header.pa_base.u.a64.address +
2340 (p->defpdu_hdr_sz * index);
2342 list_add_tail(&pasync_header_h->link,
2343 &pasync_ctx->async_header.free_list);
2344 pasync_header_h++;
2345 pasync_ctx->async_header.free_entries++;
2346 pasync_ctx->async_header.writables++;
2348 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].wait_queue.list);
2349 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].
2350 header_busy_list);
2351 pasync_data_h->cri = -1;
2352 pasync_data_h->index = (char)index;
2353 INIT_LIST_HEAD(&pasync_data_h->link);
2354 pasync_data_h->pbuffer =
2355 (void *)((unsigned long)
2356 (pasync_ctx->async_data.va_base) +
2357 (p->defpdu_data_sz * index));
2359 pasync_data_h->pa.u.a64.address =
2360 pasync_ctx->async_data.pa_base.u.a64.address +
2361 (p->defpdu_data_sz * index);
2363 list_add_tail(&pasync_data_h->link,
2364 &pasync_ctx->async_data.free_list);
2365 pasync_data_h++;
2366 pasync_ctx->async_data.free_entries++;
2367 pasync_ctx->async_data.writables++;
2369 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].data_busy_list);
2372 pasync_ctx->async_header.host_write_ptr = 0;
2373 pasync_ctx->async_header.ep_read_ptr = -1;
2374 pasync_ctx->async_data.host_write_ptr = 0;
2375 pasync_ctx->async_data.ep_read_ptr = -1;
2378 static int
2379 be_sgl_create_contiguous(void *virtual_address,
2380 u64 physical_address, u32 length,
2381 struct be_dma_mem *sgl)
2383 WARN_ON(!virtual_address);
2384 WARN_ON(!physical_address);
2385 WARN_ON(!length > 0);
2386 WARN_ON(!sgl);
2388 sgl->va = virtual_address;
2389 sgl->dma = (unsigned long)physical_address;
2390 sgl->size = length;
2392 return 0;
2395 static void be_sgl_destroy_contiguous(struct be_dma_mem *sgl)
2397 memset(sgl, 0, sizeof(*sgl));
2400 static void
2401 hwi_build_be_sgl_arr(struct beiscsi_hba *phba,
2402 struct mem_array *pmem, struct be_dma_mem *sgl)
2404 if (sgl->va)
2405 be_sgl_destroy_contiguous(sgl);
2407 be_sgl_create_contiguous(pmem->virtual_address,
2408 pmem->bus_address.u.a64.address,
2409 pmem->size, sgl);
2412 static void
2413 hwi_build_be_sgl_by_offset(struct beiscsi_hba *phba,
2414 struct mem_array *pmem, struct be_dma_mem *sgl)
2416 if (sgl->va)
2417 be_sgl_destroy_contiguous(sgl);
2419 be_sgl_create_contiguous((unsigned char *)pmem->virtual_address,
2420 pmem->bus_address.u.a64.address,
2421 pmem->size, sgl);
2424 static int be_fill_queue(struct be_queue_info *q,
2425 u16 len, u16 entry_size, void *vaddress)
2427 struct be_dma_mem *mem = &q->dma_mem;
2429 memset(q, 0, sizeof(*q));
2430 q->len = len;
2431 q->entry_size = entry_size;
2432 mem->size = len * entry_size;
2433 mem->va = vaddress;
2434 if (!mem->va)
2435 return -ENOMEM;
2436 memset(mem->va, 0, mem->size);
2437 return 0;
2440 static int beiscsi_create_eqs(struct beiscsi_hba *phba,
2441 struct hwi_context_memory *phwi_context)
2443 unsigned int i, num_eq_pages;
2444 int ret, eq_for_mcc;
2445 struct be_queue_info *eq;
2446 struct be_dma_mem *mem;
2447 void *eq_vaddress;
2448 dma_addr_t paddr;
2450 num_eq_pages = PAGES_REQUIRED(phba->params.num_eq_entries * \
2451 sizeof(struct be_eq_entry));
2453 if (phba->msix_enabled)
2454 eq_for_mcc = 1;
2455 else
2456 eq_for_mcc = 0;
2457 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
2458 eq = &phwi_context->be_eq[i].q;
2459 mem = &eq->dma_mem;
2460 phwi_context->be_eq[i].phba = phba;
2461 eq_vaddress = pci_alloc_consistent(phba->pcidev,
2462 num_eq_pages * PAGE_SIZE,
2463 &paddr);
2464 if (!eq_vaddress)
2465 goto create_eq_error;
2467 mem->va = eq_vaddress;
2468 ret = be_fill_queue(eq, phba->params.num_eq_entries,
2469 sizeof(struct be_eq_entry), eq_vaddress);
2470 if (ret) {
2471 shost_printk(KERN_ERR, phba->shost,
2472 "be_fill_queue Failed for EQ\n");
2473 goto create_eq_error;
2476 mem->dma = paddr;
2477 ret = beiscsi_cmd_eq_create(&phba->ctrl, eq,
2478 phwi_context->cur_eqd);
2479 if (ret) {
2480 shost_printk(KERN_ERR, phba->shost,
2481 "beiscsi_cmd_eq_create"
2482 "Failedfor EQ\n");
2483 goto create_eq_error;
2485 SE_DEBUG(DBG_LVL_8, "eqid = %d\n", phwi_context->be_eq[i].q.id);
2487 return 0;
2488 create_eq_error:
2489 for (i = 0; i < (phba->num_cpus + 1); i++) {
2490 eq = &phwi_context->be_eq[i].q;
2491 mem = &eq->dma_mem;
2492 if (mem->va)
2493 pci_free_consistent(phba->pcidev, num_eq_pages
2494 * PAGE_SIZE,
2495 mem->va, mem->dma);
2497 return ret;
2500 static int beiscsi_create_cqs(struct beiscsi_hba *phba,
2501 struct hwi_context_memory *phwi_context)
2503 unsigned int i, num_cq_pages;
2504 int ret;
2505 struct be_queue_info *cq, *eq;
2506 struct be_dma_mem *mem;
2507 struct be_eq_obj *pbe_eq;
2508 void *cq_vaddress;
2509 dma_addr_t paddr;
2511 num_cq_pages = PAGES_REQUIRED(phba->params.num_cq_entries * \
2512 sizeof(struct sol_cqe));
2514 for (i = 0; i < phba->num_cpus; i++) {
2515 cq = &phwi_context->be_cq[i];
2516 eq = &phwi_context->be_eq[i].q;
2517 pbe_eq = &phwi_context->be_eq[i];
2518 pbe_eq->cq = cq;
2519 pbe_eq->phba = phba;
2520 mem = &cq->dma_mem;
2521 cq_vaddress = pci_alloc_consistent(phba->pcidev,
2522 num_cq_pages * PAGE_SIZE,
2523 &paddr);
2524 if (!cq_vaddress)
2525 goto create_cq_error;
2526 ret = be_fill_queue(cq, phba->params.num_cq_entries,
2527 sizeof(struct sol_cqe), cq_vaddress);
2528 if (ret) {
2529 shost_printk(KERN_ERR, phba->shost,
2530 "be_fill_queue Failed for ISCSI CQ\n");
2531 goto create_cq_error;
2534 mem->dma = paddr;
2535 ret = beiscsi_cmd_cq_create(&phba->ctrl, cq, eq, false,
2536 false, 0);
2537 if (ret) {
2538 shost_printk(KERN_ERR, phba->shost,
2539 "beiscsi_cmd_eq_create"
2540 "Failed for ISCSI CQ\n");
2541 goto create_cq_error;
2543 SE_DEBUG(DBG_LVL_8, "iscsi cq_id is %d for eq_id %d\n",
2544 cq->id, eq->id);
2545 SE_DEBUG(DBG_LVL_8, "ISCSI CQ CREATED\n");
2547 return 0;
2549 create_cq_error:
2550 for (i = 0; i < phba->num_cpus; i++) {
2551 cq = &phwi_context->be_cq[i];
2552 mem = &cq->dma_mem;
2553 if (mem->va)
2554 pci_free_consistent(phba->pcidev, num_cq_pages
2555 * PAGE_SIZE,
2556 mem->va, mem->dma);
2558 return ret;
2562 static int
2563 beiscsi_create_def_hdr(struct beiscsi_hba *phba,
2564 struct hwi_context_memory *phwi_context,
2565 struct hwi_controller *phwi_ctrlr,
2566 unsigned int def_pdu_ring_sz)
2568 unsigned int idx;
2569 int ret;
2570 struct be_queue_info *dq, *cq;
2571 struct be_dma_mem *mem;
2572 struct be_mem_descriptor *mem_descr;
2573 void *dq_vaddress;
2575 idx = 0;
2576 dq = &phwi_context->be_def_hdrq;
2577 cq = &phwi_context->be_cq[0];
2578 mem = &dq->dma_mem;
2579 mem_descr = phba->init_mem;
2580 mem_descr += HWI_MEM_ASYNC_HEADER_RING;
2581 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
2582 ret = be_fill_queue(dq, mem_descr->mem_array[0].size /
2583 sizeof(struct phys_addr),
2584 sizeof(struct phys_addr), dq_vaddress);
2585 if (ret) {
2586 shost_printk(KERN_ERR, phba->shost,
2587 "be_fill_queue Failed for DEF PDU HDR\n");
2588 return ret;
2590 mem->dma = (unsigned long)mem_descr->mem_array[idx].
2591 bus_address.u.a64.address;
2592 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dq,
2593 def_pdu_ring_sz,
2594 phba->params.defpdu_hdr_sz);
2595 if (ret) {
2596 shost_printk(KERN_ERR, phba->shost,
2597 "be_cmd_create_default_pdu_queue Failed DEFHDR\n");
2598 return ret;
2600 phwi_ctrlr->default_pdu_hdr.id = phwi_context->be_def_hdrq.id;
2601 SE_DEBUG(DBG_LVL_8, "iscsi def pdu id is %d\n",
2602 phwi_context->be_def_hdrq.id);
2603 hwi_post_async_buffers(phba, 1);
2604 return 0;
2607 static int
2608 beiscsi_create_def_data(struct beiscsi_hba *phba,
2609 struct hwi_context_memory *phwi_context,
2610 struct hwi_controller *phwi_ctrlr,
2611 unsigned int def_pdu_ring_sz)
2613 unsigned int idx;
2614 int ret;
2615 struct be_queue_info *dataq, *cq;
2616 struct be_dma_mem *mem;
2617 struct be_mem_descriptor *mem_descr;
2618 void *dq_vaddress;
2620 idx = 0;
2621 dataq = &phwi_context->be_def_dataq;
2622 cq = &phwi_context->be_cq[0];
2623 mem = &dataq->dma_mem;
2624 mem_descr = phba->init_mem;
2625 mem_descr += HWI_MEM_ASYNC_DATA_RING;
2626 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
2627 ret = be_fill_queue(dataq, mem_descr->mem_array[0].size /
2628 sizeof(struct phys_addr),
2629 sizeof(struct phys_addr), dq_vaddress);
2630 if (ret) {
2631 shost_printk(KERN_ERR, phba->shost,
2632 "be_fill_queue Failed for DEF PDU DATA\n");
2633 return ret;
2635 mem->dma = (unsigned long)mem_descr->mem_array[idx].
2636 bus_address.u.a64.address;
2637 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dataq,
2638 def_pdu_ring_sz,
2639 phba->params.defpdu_data_sz);
2640 if (ret) {
2641 shost_printk(KERN_ERR, phba->shost,
2642 "be_cmd_create_default_pdu_queue Failed"
2643 " for DEF PDU DATA\n");
2644 return ret;
2646 phwi_ctrlr->default_pdu_data.id = phwi_context->be_def_dataq.id;
2647 SE_DEBUG(DBG_LVL_8, "iscsi def data id is %d\n",
2648 phwi_context->be_def_dataq.id);
2649 hwi_post_async_buffers(phba, 0);
2650 SE_DEBUG(DBG_LVL_8, "DEFAULT PDU DATA RING CREATED\n");
2651 return 0;
2654 static int
2655 beiscsi_post_pages(struct beiscsi_hba *phba)
2657 struct be_mem_descriptor *mem_descr;
2658 struct mem_array *pm_arr;
2659 unsigned int page_offset, i;
2660 struct be_dma_mem sgl;
2661 int status;
2663 mem_descr = phba->init_mem;
2664 mem_descr += HWI_MEM_SGE;
2665 pm_arr = mem_descr->mem_array;
2667 page_offset = (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io *
2668 phba->fw_config.iscsi_icd_start) / PAGE_SIZE;
2669 for (i = 0; i < mem_descr->num_elements; i++) {
2670 hwi_build_be_sgl_arr(phba, pm_arr, &sgl);
2671 status = be_cmd_iscsi_post_sgl_pages(&phba->ctrl, &sgl,
2672 page_offset,
2673 (pm_arr->size / PAGE_SIZE));
2674 page_offset += pm_arr->size / PAGE_SIZE;
2675 if (status != 0) {
2676 shost_printk(KERN_ERR, phba->shost,
2677 "post sgl failed.\n");
2678 return status;
2680 pm_arr++;
2682 SE_DEBUG(DBG_LVL_8, "POSTED PAGES\n");
2683 return 0;
2686 static void be_queue_free(struct beiscsi_hba *phba, struct be_queue_info *q)
2688 struct be_dma_mem *mem = &q->dma_mem;
2689 if (mem->va)
2690 pci_free_consistent(phba->pcidev, mem->size,
2691 mem->va, mem->dma);
2694 static int be_queue_alloc(struct beiscsi_hba *phba, struct be_queue_info *q,
2695 u16 len, u16 entry_size)
2697 struct be_dma_mem *mem = &q->dma_mem;
2699 memset(q, 0, sizeof(*q));
2700 q->len = len;
2701 q->entry_size = entry_size;
2702 mem->size = len * entry_size;
2703 mem->va = pci_alloc_consistent(phba->pcidev, mem->size, &mem->dma);
2704 if (!mem->va)
2705 return -ENOMEM;
2706 memset(mem->va, 0, mem->size);
2707 return 0;
2710 static int
2711 beiscsi_create_wrb_rings(struct beiscsi_hba *phba,
2712 struct hwi_context_memory *phwi_context,
2713 struct hwi_controller *phwi_ctrlr)
2715 unsigned int wrb_mem_index, offset, size, num_wrb_rings;
2716 u64 pa_addr_lo;
2717 unsigned int idx, num, i;
2718 struct mem_array *pwrb_arr;
2719 void *wrb_vaddr;
2720 struct be_dma_mem sgl;
2721 struct be_mem_descriptor *mem_descr;
2722 int status;
2724 idx = 0;
2725 mem_descr = phba->init_mem;
2726 mem_descr += HWI_MEM_WRB;
2727 pwrb_arr = kmalloc(sizeof(*pwrb_arr) * phba->params.cxns_per_ctrl,
2728 GFP_KERNEL);
2729 if (!pwrb_arr) {
2730 shost_printk(KERN_ERR, phba->shost,
2731 "Memory alloc failed in create wrb ring.\n");
2732 return -ENOMEM;
2734 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
2735 pa_addr_lo = mem_descr->mem_array[idx].bus_address.u.a64.address;
2736 num_wrb_rings = mem_descr->mem_array[idx].size /
2737 (phba->params.wrbs_per_cxn * sizeof(struct iscsi_wrb));
2739 for (num = 0; num < phba->params.cxns_per_ctrl; num++) {
2740 if (num_wrb_rings) {
2741 pwrb_arr[num].virtual_address = wrb_vaddr;
2742 pwrb_arr[num].bus_address.u.a64.address = pa_addr_lo;
2743 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
2744 sizeof(struct iscsi_wrb);
2745 wrb_vaddr += pwrb_arr[num].size;
2746 pa_addr_lo += pwrb_arr[num].size;
2747 num_wrb_rings--;
2748 } else {
2749 idx++;
2750 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
2751 pa_addr_lo = mem_descr->mem_array[idx].\
2752 bus_address.u.a64.address;
2753 num_wrb_rings = mem_descr->mem_array[idx].size /
2754 (phba->params.wrbs_per_cxn *
2755 sizeof(struct iscsi_wrb));
2756 pwrb_arr[num].virtual_address = wrb_vaddr;
2757 pwrb_arr[num].bus_address.u.a64.address\
2758 = pa_addr_lo;
2759 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
2760 sizeof(struct iscsi_wrb);
2761 wrb_vaddr += pwrb_arr[num].size;
2762 pa_addr_lo += pwrb_arr[num].size;
2763 num_wrb_rings--;
2766 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
2767 wrb_mem_index = 0;
2768 offset = 0;
2769 size = 0;
2771 hwi_build_be_sgl_by_offset(phba, &pwrb_arr[i], &sgl);
2772 status = be_cmd_wrbq_create(&phba->ctrl, &sgl,
2773 &phwi_context->be_wrbq[i]);
2774 if (status != 0) {
2775 shost_printk(KERN_ERR, phba->shost,
2776 "wrbq create failed.");
2777 kfree(pwrb_arr);
2778 return status;
2780 phwi_ctrlr->wrb_context[i * 2].cid = phwi_context->be_wrbq[i].
2783 kfree(pwrb_arr);
2784 return 0;
2787 static void free_wrb_handles(struct beiscsi_hba *phba)
2789 unsigned int index;
2790 struct hwi_controller *phwi_ctrlr;
2791 struct hwi_wrb_context *pwrb_context;
2793 phwi_ctrlr = phba->phwi_ctrlr;
2794 for (index = 0; index < phba->params.cxns_per_ctrl * 2; index += 2) {
2795 pwrb_context = &phwi_ctrlr->wrb_context[index];
2796 kfree(pwrb_context->pwrb_handle_base);
2797 kfree(pwrb_context->pwrb_handle_basestd);
2801 static void be_mcc_queues_destroy(struct beiscsi_hba *phba)
2803 struct be_queue_info *q;
2804 struct be_ctrl_info *ctrl = &phba->ctrl;
2806 q = &phba->ctrl.mcc_obj.q;
2807 if (q->created)
2808 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_MCCQ);
2809 be_queue_free(phba, q);
2811 q = &phba->ctrl.mcc_obj.cq;
2812 if (q->created)
2813 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
2814 be_queue_free(phba, q);
2817 static void hwi_cleanup(struct beiscsi_hba *phba)
2819 struct be_queue_info *q;
2820 struct be_ctrl_info *ctrl = &phba->ctrl;
2821 struct hwi_controller *phwi_ctrlr;
2822 struct hwi_context_memory *phwi_context;
2823 int i, eq_num;
2825 phwi_ctrlr = phba->phwi_ctrlr;
2826 phwi_context = phwi_ctrlr->phwi_ctxt;
2827 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
2828 q = &phwi_context->be_wrbq[i];
2829 if (q->created)
2830 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_WRBQ);
2832 free_wrb_handles(phba);
2834 q = &phwi_context->be_def_hdrq;
2835 if (q->created)
2836 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
2838 q = &phwi_context->be_def_dataq;
2839 if (q->created)
2840 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
2842 beiscsi_cmd_q_destroy(ctrl, NULL, QTYPE_SGL);
2844 for (i = 0; i < (phba->num_cpus); i++) {
2845 q = &phwi_context->be_cq[i];
2846 if (q->created)
2847 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
2849 if (phba->msix_enabled)
2850 eq_num = 1;
2851 else
2852 eq_num = 0;
2853 for (i = 0; i < (phba->num_cpus + eq_num); i++) {
2854 q = &phwi_context->be_eq[i].q;
2855 if (q->created)
2856 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_EQ);
2858 be_mcc_queues_destroy(phba);
2861 static int be_mcc_queues_create(struct beiscsi_hba *phba,
2862 struct hwi_context_memory *phwi_context)
2864 struct be_queue_info *q, *cq;
2865 struct be_ctrl_info *ctrl = &phba->ctrl;
2867 /* Alloc MCC compl queue */
2868 cq = &phba->ctrl.mcc_obj.cq;
2869 if (be_queue_alloc(phba, cq, MCC_CQ_LEN,
2870 sizeof(struct be_mcc_compl)))
2871 goto err;
2872 /* Ask BE to create MCC compl queue; */
2873 if (phba->msix_enabled) {
2874 if (beiscsi_cmd_cq_create(ctrl, cq, &phwi_context->be_eq
2875 [phba->num_cpus].q, false, true, 0))
2876 goto mcc_cq_free;
2877 } else {
2878 if (beiscsi_cmd_cq_create(ctrl, cq, &phwi_context->be_eq[0].q,
2879 false, true, 0))
2880 goto mcc_cq_free;
2883 /* Alloc MCC queue */
2884 q = &phba->ctrl.mcc_obj.q;
2885 if (be_queue_alloc(phba, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
2886 goto mcc_cq_destroy;
2888 /* Ask BE to create MCC queue */
2889 if (beiscsi_cmd_mccq_create(phba, q, cq))
2890 goto mcc_q_free;
2892 return 0;
2894 mcc_q_free:
2895 be_queue_free(phba, q);
2896 mcc_cq_destroy:
2897 beiscsi_cmd_q_destroy(ctrl, cq, QTYPE_CQ);
2898 mcc_cq_free:
2899 be_queue_free(phba, cq);
2900 err:
2901 return -ENOMEM;
2904 static int find_num_cpus(void)
2906 int num_cpus = 0;
2908 num_cpus = num_online_cpus();
2909 if (num_cpus >= MAX_CPUS)
2910 num_cpus = MAX_CPUS - 1;
2912 SE_DEBUG(DBG_LVL_8, "num_cpus = %d\n", num_cpus);
2913 return num_cpus;
2916 static int hwi_init_port(struct beiscsi_hba *phba)
2918 struct hwi_controller *phwi_ctrlr;
2919 struct hwi_context_memory *phwi_context;
2920 unsigned int def_pdu_ring_sz;
2921 struct be_ctrl_info *ctrl = &phba->ctrl;
2922 int status;
2924 def_pdu_ring_sz =
2925 phba->params.asyncpdus_per_ctrl * sizeof(struct phys_addr);
2926 phwi_ctrlr = phba->phwi_ctrlr;
2927 phwi_context = phwi_ctrlr->phwi_ctxt;
2928 phwi_context->max_eqd = 0;
2929 phwi_context->min_eqd = 0;
2930 phwi_context->cur_eqd = 64;
2931 be_cmd_fw_initialize(&phba->ctrl);
2933 status = beiscsi_create_eqs(phba, phwi_context);
2934 if (status != 0) {
2935 shost_printk(KERN_ERR, phba->shost, "EQ not created\n");
2936 goto error;
2939 status = be_mcc_queues_create(phba, phwi_context);
2940 if (status != 0)
2941 goto error;
2943 status = mgmt_check_supported_fw(ctrl, phba);
2944 if (status != 0) {
2945 shost_printk(KERN_ERR, phba->shost,
2946 "Unsupported fw version\n");
2947 goto error;
2950 status = beiscsi_create_cqs(phba, phwi_context);
2951 if (status != 0) {
2952 shost_printk(KERN_ERR, phba->shost, "CQ not created\n");
2953 goto error;
2956 status = beiscsi_create_def_hdr(phba, phwi_context, phwi_ctrlr,
2957 def_pdu_ring_sz);
2958 if (status != 0) {
2959 shost_printk(KERN_ERR, phba->shost,
2960 "Default Header not created\n");
2961 goto error;
2964 status = beiscsi_create_def_data(phba, phwi_context,
2965 phwi_ctrlr, def_pdu_ring_sz);
2966 if (status != 0) {
2967 shost_printk(KERN_ERR, phba->shost,
2968 "Default Data not created\n");
2969 goto error;
2972 status = beiscsi_post_pages(phba);
2973 if (status != 0) {
2974 shost_printk(KERN_ERR, phba->shost, "Post SGL Pages Failed\n");
2975 goto error;
2978 status = beiscsi_create_wrb_rings(phba, phwi_context, phwi_ctrlr);
2979 if (status != 0) {
2980 shost_printk(KERN_ERR, phba->shost,
2981 "WRB Rings not created\n");
2982 goto error;
2985 SE_DEBUG(DBG_LVL_8, "hwi_init_port success\n");
2986 return 0;
2988 error:
2989 shost_printk(KERN_ERR, phba->shost, "hwi_init_port failed");
2990 hwi_cleanup(phba);
2991 return -ENOMEM;
2994 static int hwi_init_controller(struct beiscsi_hba *phba)
2996 struct hwi_controller *phwi_ctrlr;
2998 phwi_ctrlr = phba->phwi_ctrlr;
2999 if (1 == phba->init_mem[HWI_MEM_ADDN_CONTEXT].num_elements) {
3000 phwi_ctrlr->phwi_ctxt = (struct hwi_context_memory *)phba->
3001 init_mem[HWI_MEM_ADDN_CONTEXT].mem_array[0].virtual_address;
3002 SE_DEBUG(DBG_LVL_8, " phwi_ctrlr->phwi_ctxt=%p\n",
3003 phwi_ctrlr->phwi_ctxt);
3004 } else {
3005 shost_printk(KERN_ERR, phba->shost,
3006 "HWI_MEM_ADDN_CONTEXT is more than one element."
3007 "Failing to load\n");
3008 return -ENOMEM;
3011 iscsi_init_global_templates(phba);
3012 beiscsi_init_wrb_handle(phba);
3013 hwi_init_async_pdu_ctx(phba);
3014 if (hwi_init_port(phba) != 0) {
3015 shost_printk(KERN_ERR, phba->shost,
3016 "hwi_init_controller failed\n");
3017 return -ENOMEM;
3019 return 0;
3022 static void beiscsi_free_mem(struct beiscsi_hba *phba)
3024 struct be_mem_descriptor *mem_descr;
3025 int i, j;
3027 mem_descr = phba->init_mem;
3028 i = 0;
3029 j = 0;
3030 for (i = 0; i < SE_MEM_MAX; i++) {
3031 for (j = mem_descr->num_elements; j > 0; j--) {
3032 pci_free_consistent(phba->pcidev,
3033 mem_descr->mem_array[j - 1].size,
3034 mem_descr->mem_array[j - 1].virtual_address,
3035 (unsigned long)mem_descr->mem_array[j - 1].
3036 bus_address.u.a64.address);
3038 kfree(mem_descr->mem_array);
3039 mem_descr++;
3041 kfree(phba->init_mem);
3042 kfree(phba->phwi_ctrlr);
3045 static int beiscsi_init_controller(struct beiscsi_hba *phba)
3047 int ret = -ENOMEM;
3049 ret = beiscsi_get_memory(phba);
3050 if (ret < 0) {
3051 shost_printk(KERN_ERR, phba->shost, "beiscsi_dev_probe -"
3052 "Failed in beiscsi_alloc_memory\n");
3053 return ret;
3056 ret = hwi_init_controller(phba);
3057 if (ret)
3058 goto free_init;
3059 SE_DEBUG(DBG_LVL_8, "Return success from beiscsi_init_controller");
3060 return 0;
3062 free_init:
3063 beiscsi_free_mem(phba);
3064 return -ENOMEM;
3067 static int beiscsi_init_sgl_handle(struct beiscsi_hba *phba)
3069 struct be_mem_descriptor *mem_descr_sglh, *mem_descr_sg;
3070 struct sgl_handle *psgl_handle;
3071 struct iscsi_sge *pfrag;
3072 unsigned int arr_index, i, idx;
3074 phba->io_sgl_hndl_avbl = 0;
3075 phba->eh_sgl_hndl_avbl = 0;
3077 mem_descr_sglh = phba->init_mem;
3078 mem_descr_sglh += HWI_MEM_SGLH;
3079 if (1 == mem_descr_sglh->num_elements) {
3080 phba->io_sgl_hndl_base = kzalloc(sizeof(struct sgl_handle *) *
3081 phba->params.ios_per_ctrl,
3082 GFP_KERNEL);
3083 if (!phba->io_sgl_hndl_base) {
3084 shost_printk(KERN_ERR, phba->shost,
3085 "Mem Alloc Failed. Failing to load\n");
3086 return -ENOMEM;
3088 phba->eh_sgl_hndl_base = kzalloc(sizeof(struct sgl_handle *) *
3089 (phba->params.icds_per_ctrl -
3090 phba->params.ios_per_ctrl),
3091 GFP_KERNEL);
3092 if (!phba->eh_sgl_hndl_base) {
3093 kfree(phba->io_sgl_hndl_base);
3094 shost_printk(KERN_ERR, phba->shost,
3095 "Mem Alloc Failed. Failing to load\n");
3096 return -ENOMEM;
3098 } else {
3099 shost_printk(KERN_ERR, phba->shost,
3100 "HWI_MEM_SGLH is more than one element."
3101 "Failing to load\n");
3102 return -ENOMEM;
3105 arr_index = 0;
3106 idx = 0;
3107 while (idx < mem_descr_sglh->num_elements) {
3108 psgl_handle = mem_descr_sglh->mem_array[idx].virtual_address;
3110 for (i = 0; i < (mem_descr_sglh->mem_array[idx].size /
3111 sizeof(struct sgl_handle)); i++) {
3112 if (arr_index < phba->params.ios_per_ctrl) {
3113 phba->io_sgl_hndl_base[arr_index] = psgl_handle;
3114 phba->io_sgl_hndl_avbl++;
3115 arr_index++;
3116 } else {
3117 phba->eh_sgl_hndl_base[arr_index -
3118 phba->params.ios_per_ctrl] =
3119 psgl_handle;
3120 arr_index++;
3121 phba->eh_sgl_hndl_avbl++;
3123 psgl_handle++;
3125 idx++;
3127 SE_DEBUG(DBG_LVL_8,
3128 "phba->io_sgl_hndl_avbl=%d"
3129 "phba->eh_sgl_hndl_avbl=%d\n",
3130 phba->io_sgl_hndl_avbl,
3131 phba->eh_sgl_hndl_avbl);
3132 mem_descr_sg = phba->init_mem;
3133 mem_descr_sg += HWI_MEM_SGE;
3134 SE_DEBUG(DBG_LVL_8, "\n mem_descr_sg->num_elements=%d\n",
3135 mem_descr_sg->num_elements);
3136 arr_index = 0;
3137 idx = 0;
3138 while (idx < mem_descr_sg->num_elements) {
3139 pfrag = mem_descr_sg->mem_array[idx].virtual_address;
3141 for (i = 0;
3142 i < (mem_descr_sg->mem_array[idx].size) /
3143 (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io);
3144 i++) {
3145 if (arr_index < phba->params.ios_per_ctrl)
3146 psgl_handle = phba->io_sgl_hndl_base[arr_index];
3147 else
3148 psgl_handle = phba->eh_sgl_hndl_base[arr_index -
3149 phba->params.ios_per_ctrl];
3150 psgl_handle->pfrag = pfrag;
3151 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, pfrag, 0);
3152 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, pfrag, 0);
3153 pfrag += phba->params.num_sge_per_io;
3154 psgl_handle->sgl_index =
3155 phba->fw_config.iscsi_icd_start + arr_index++;
3157 idx++;
3159 phba->io_sgl_free_index = 0;
3160 phba->io_sgl_alloc_index = 0;
3161 phba->eh_sgl_free_index = 0;
3162 phba->eh_sgl_alloc_index = 0;
3163 return 0;
3166 static int hba_setup_cid_tbls(struct beiscsi_hba *phba)
3168 int i, new_cid;
3170 phba->cid_array = kzalloc(sizeof(void *) * phba->params.cxns_per_ctrl,
3171 GFP_KERNEL);
3172 if (!phba->cid_array) {
3173 shost_printk(KERN_ERR, phba->shost,
3174 "Failed to allocate memory in "
3175 "hba_setup_cid_tbls\n");
3176 return -ENOMEM;
3178 phba->ep_array = kzalloc(sizeof(struct iscsi_endpoint *) *
3179 phba->params.cxns_per_ctrl * 2, GFP_KERNEL);
3180 if (!phba->ep_array) {
3181 shost_printk(KERN_ERR, phba->shost,
3182 "Failed to allocate memory in "
3183 "hba_setup_cid_tbls\n");
3184 kfree(phba->cid_array);
3185 return -ENOMEM;
3187 new_cid = phba->fw_config.iscsi_cid_start;
3188 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
3189 phba->cid_array[i] = new_cid;
3190 new_cid += 2;
3192 phba->avlbl_cids = phba->params.cxns_per_ctrl;
3193 return 0;
3196 static void hwi_enable_intr(struct beiscsi_hba *phba)
3198 struct be_ctrl_info *ctrl = &phba->ctrl;
3199 struct hwi_controller *phwi_ctrlr;
3200 struct hwi_context_memory *phwi_context;
3201 struct be_queue_info *eq;
3202 u8 __iomem *addr;
3203 u32 reg, i;
3204 u32 enabled;
3206 phwi_ctrlr = phba->phwi_ctrlr;
3207 phwi_context = phwi_ctrlr->phwi_ctxt;
3209 addr = (u8 __iomem *) ((u8 __iomem *) ctrl->pcicfg +
3210 PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET);
3211 reg = ioread32(addr);
3212 SE_DEBUG(DBG_LVL_8, "reg =x%08x\n", reg);
3214 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
3215 if (!enabled) {
3216 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
3217 SE_DEBUG(DBG_LVL_8, "reg =x%08x addr=%p\n", reg, addr);
3218 iowrite32(reg, addr);
3219 if (!phba->msix_enabled) {
3220 eq = &phwi_context->be_eq[0].q;
3221 SE_DEBUG(DBG_LVL_8, "eq->id=%d\n", eq->id);
3222 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
3223 } else {
3224 for (i = 0; i <= phba->num_cpus; i++) {
3225 eq = &phwi_context->be_eq[i].q;
3226 SE_DEBUG(DBG_LVL_8, "eq->id=%d\n", eq->id);
3227 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
3233 static void hwi_disable_intr(struct beiscsi_hba *phba)
3235 struct be_ctrl_info *ctrl = &phba->ctrl;
3237 u8 __iomem *addr = ctrl->pcicfg + PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET;
3238 u32 reg = ioread32(addr);
3240 u32 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
3241 if (enabled) {
3242 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
3243 iowrite32(reg, addr);
3244 } else
3245 shost_printk(KERN_WARNING, phba->shost,
3246 "In hwi_disable_intr, Already Disabled\n");
3249 static int beiscsi_init_port(struct beiscsi_hba *phba)
3251 int ret;
3253 ret = beiscsi_init_controller(phba);
3254 if (ret < 0) {
3255 shost_printk(KERN_ERR, phba->shost,
3256 "beiscsi_dev_probe - Failed in"
3257 "beiscsi_init_controller\n");
3258 return ret;
3260 ret = beiscsi_init_sgl_handle(phba);
3261 if (ret < 0) {
3262 shost_printk(KERN_ERR, phba->shost,
3263 "beiscsi_dev_probe - Failed in"
3264 "beiscsi_init_sgl_handle\n");
3265 goto do_cleanup_ctrlr;
3268 if (hba_setup_cid_tbls(phba)) {
3269 shost_printk(KERN_ERR, phba->shost,
3270 "Failed in hba_setup_cid_tbls\n");
3271 kfree(phba->io_sgl_hndl_base);
3272 kfree(phba->eh_sgl_hndl_base);
3273 goto do_cleanup_ctrlr;
3276 return ret;
3278 do_cleanup_ctrlr:
3279 hwi_cleanup(phba);
3280 return ret;
3283 static void hwi_purge_eq(struct beiscsi_hba *phba)
3285 struct hwi_controller *phwi_ctrlr;
3286 struct hwi_context_memory *phwi_context;
3287 struct be_queue_info *eq;
3288 struct be_eq_entry *eqe = NULL;
3289 int i, eq_msix;
3290 unsigned int num_processed;
3292 phwi_ctrlr = phba->phwi_ctrlr;
3293 phwi_context = phwi_ctrlr->phwi_ctxt;
3294 if (phba->msix_enabled)
3295 eq_msix = 1;
3296 else
3297 eq_msix = 0;
3299 for (i = 0; i < (phba->num_cpus + eq_msix); i++) {
3300 eq = &phwi_context->be_eq[i].q;
3301 eqe = queue_tail_node(eq);
3302 num_processed = 0;
3303 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
3304 & EQE_VALID_MASK) {
3305 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
3306 queue_tail_inc(eq);
3307 eqe = queue_tail_node(eq);
3308 num_processed++;
3311 if (num_processed)
3312 hwi_ring_eq_db(phba, eq->id, 1, num_processed, 1, 1);
3316 static void beiscsi_clean_port(struct beiscsi_hba *phba)
3318 int mgmt_status;
3320 mgmt_status = mgmt_epfw_cleanup(phba, CMD_CONNECTION_CHUTE_0);
3321 if (mgmt_status)
3322 shost_printk(KERN_WARNING, phba->shost,
3323 "mgmt_epfw_cleanup FAILED\n");
3325 hwi_purge_eq(phba);
3326 hwi_cleanup(phba);
3327 kfree(phba->io_sgl_hndl_base);
3328 kfree(phba->eh_sgl_hndl_base);
3329 kfree(phba->cid_array);
3330 kfree(phba->ep_array);
3333 void
3334 beiscsi_offload_connection(struct beiscsi_conn *beiscsi_conn,
3335 struct beiscsi_offload_params *params)
3337 struct wrb_handle *pwrb_handle;
3338 struct iscsi_target_context_update_wrb *pwrb = NULL;
3339 struct be_mem_descriptor *mem_descr;
3340 struct beiscsi_hba *phba = beiscsi_conn->phba;
3341 u32 doorbell = 0;
3344 * We can always use 0 here because it is reserved by libiscsi for
3345 * login/startup related tasks.
3347 pwrb_handle = alloc_wrb_handle(phba, (beiscsi_conn->beiscsi_conn_cid -
3348 phba->fw_config.iscsi_cid_start));
3349 pwrb = (struct iscsi_target_context_update_wrb *)pwrb_handle->pwrb;
3350 memset(pwrb, 0, sizeof(*pwrb));
3351 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb,
3352 max_burst_length, pwrb, params->dw[offsetof
3353 (struct amap_beiscsi_offload_params,
3354 max_burst_length) / 32]);
3355 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb,
3356 max_send_data_segment_length, pwrb,
3357 params->dw[offsetof(struct amap_beiscsi_offload_params,
3358 max_send_data_segment_length) / 32]);
3359 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb,
3360 first_burst_length,
3361 pwrb,
3362 params->dw[offsetof(struct amap_beiscsi_offload_params,
3363 first_burst_length) / 32]);
3365 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, erl, pwrb,
3366 (params->dw[offsetof(struct amap_beiscsi_offload_params,
3367 erl) / 32] & OFFLD_PARAMS_ERL));
3368 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, dde, pwrb,
3369 (params->dw[offsetof(struct amap_beiscsi_offload_params,
3370 dde) / 32] & OFFLD_PARAMS_DDE) >> 2);
3371 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, hde, pwrb,
3372 (params->dw[offsetof(struct amap_beiscsi_offload_params,
3373 hde) / 32] & OFFLD_PARAMS_HDE) >> 3);
3374 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, ir2t, pwrb,
3375 (params->dw[offsetof(struct amap_beiscsi_offload_params,
3376 ir2t) / 32] & OFFLD_PARAMS_IR2T) >> 4);
3377 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, imd, pwrb,
3378 (params->dw[offsetof(struct amap_beiscsi_offload_params,
3379 imd) / 32] & OFFLD_PARAMS_IMD) >> 5);
3380 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, stat_sn,
3381 pwrb,
3382 (params->dw[offsetof(struct amap_beiscsi_offload_params,
3383 exp_statsn) / 32] + 1));
3384 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, type, pwrb,
3385 0x7);
3386 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, wrb_idx,
3387 pwrb, pwrb_handle->wrb_index);
3388 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, ptr2nextwrb,
3389 pwrb, pwrb_handle->nxt_wrb_index);
3390 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb,
3391 session_state, pwrb, 0);
3392 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, compltonack,
3393 pwrb, 1);
3394 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, notpredblq,
3395 pwrb, 0);
3396 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb, mode, pwrb,
3399 mem_descr = phba->init_mem;
3400 mem_descr += ISCSI_MEM_GLOBAL_HEADER;
3402 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb,
3403 pad_buffer_addr_hi, pwrb,
3404 mem_descr->mem_array[0].bus_address.u.a32.address_hi);
3405 AMAP_SET_BITS(struct amap_iscsi_target_context_update_wrb,
3406 pad_buffer_addr_lo, pwrb,
3407 mem_descr->mem_array[0].bus_address.u.a32.address_lo);
3409 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_target_context_update_wrb));
3411 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
3412 doorbell |= (pwrb_handle->wrb_index & DB_DEF_PDU_WRB_INDEX_MASK)
3413 << DB_DEF_PDU_WRB_INDEX_SHIFT;
3414 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
3416 iowrite32(doorbell, phba->db_va + DB_TXULP0_OFFSET);
3419 static void beiscsi_parse_pdu(struct iscsi_conn *conn, itt_t itt,
3420 int *index, int *age)
3422 *index = (int)itt;
3423 if (age)
3424 *age = conn->session->age;
3428 * beiscsi_alloc_pdu - allocates pdu and related resources
3429 * @task: libiscsi task
3430 * @opcode: opcode of pdu for task
3432 * This is called with the session lock held. It will allocate
3433 * the wrb and sgl if needed for the command. And it will prep
3434 * the pdu's itt. beiscsi_parse_pdu will later translate
3435 * the pdu itt to the libiscsi task itt.
3437 static int beiscsi_alloc_pdu(struct iscsi_task *task, uint8_t opcode)
3439 struct beiscsi_io_task *io_task = task->dd_data;
3440 struct iscsi_conn *conn = task->conn;
3441 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
3442 struct beiscsi_hba *phba = beiscsi_conn->phba;
3443 struct hwi_wrb_context *pwrb_context;
3444 struct hwi_controller *phwi_ctrlr;
3445 itt_t itt;
3446 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
3447 dma_addr_t paddr;
3449 io_task->cmd_bhs = pci_pool_alloc(beiscsi_sess->bhs_pool,
3450 GFP_KERNEL, &paddr);
3451 if (!io_task->cmd_bhs)
3452 return -ENOMEM;
3453 io_task->bhs_pa.u.a64.address = paddr;
3454 io_task->libiscsi_itt = (itt_t)task->itt;
3455 io_task->conn = beiscsi_conn;
3457 task->hdr = (struct iscsi_hdr *)&io_task->cmd_bhs->iscsi_hdr;
3458 task->hdr_max = sizeof(struct be_cmd_bhs);
3459 io_task->psgl_handle = NULL;
3460 io_task->psgl_handle = NULL;
3462 if (task->sc) {
3463 spin_lock(&phba->io_sgl_lock);
3464 io_task->psgl_handle = alloc_io_sgl_handle(phba);
3465 spin_unlock(&phba->io_sgl_lock);
3466 if (!io_task->psgl_handle)
3467 goto free_hndls;
3468 io_task->pwrb_handle = alloc_wrb_handle(phba,
3469 beiscsi_conn->beiscsi_conn_cid -
3470 phba->fw_config.iscsi_cid_start);
3471 if (!io_task->pwrb_handle)
3472 goto free_io_hndls;
3473 } else {
3474 io_task->scsi_cmnd = NULL;
3475 if ((opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGIN) {
3476 if (!beiscsi_conn->login_in_progress) {
3477 spin_lock(&phba->mgmt_sgl_lock);
3478 io_task->psgl_handle = (struct sgl_handle *)
3479 alloc_mgmt_sgl_handle(phba);
3480 spin_unlock(&phba->mgmt_sgl_lock);
3481 if (!io_task->psgl_handle)
3482 goto free_hndls;
3484 beiscsi_conn->login_in_progress = 1;
3485 beiscsi_conn->plogin_sgl_handle =
3486 io_task->psgl_handle;
3487 io_task->pwrb_handle =
3488 alloc_wrb_handle(phba,
3489 beiscsi_conn->beiscsi_conn_cid -
3490 phba->fw_config.iscsi_cid_start);
3491 if (!io_task->pwrb_handle)
3492 goto free_io_hndls;
3493 beiscsi_conn->plogin_wrb_handle =
3494 io_task->pwrb_handle;
3496 } else {
3497 io_task->psgl_handle =
3498 beiscsi_conn->plogin_sgl_handle;
3499 io_task->pwrb_handle =
3500 beiscsi_conn->plogin_wrb_handle;
3502 } else {
3503 spin_lock(&phba->mgmt_sgl_lock);
3504 io_task->psgl_handle = alloc_mgmt_sgl_handle(phba);
3505 spin_unlock(&phba->mgmt_sgl_lock);
3506 if (!io_task->psgl_handle)
3507 goto free_hndls;
3508 io_task->pwrb_handle =
3509 alloc_wrb_handle(phba,
3510 beiscsi_conn->beiscsi_conn_cid -
3511 phba->fw_config.iscsi_cid_start);
3512 if (!io_task->pwrb_handle)
3513 goto free_mgmt_hndls;
3517 itt = (itt_t) cpu_to_be32(((unsigned int)io_task->pwrb_handle->
3518 wrb_index << 16) | (unsigned int)
3519 (io_task->psgl_handle->sgl_index));
3520 io_task->pwrb_handle->pio_handle = task;
3522 io_task->cmd_bhs->iscsi_hdr.itt = itt;
3523 return 0;
3525 free_io_hndls:
3526 spin_lock(&phba->io_sgl_lock);
3527 free_io_sgl_handle(phba, io_task->psgl_handle);
3528 spin_unlock(&phba->io_sgl_lock);
3529 goto free_hndls;
3530 free_mgmt_hndls:
3531 spin_lock(&phba->mgmt_sgl_lock);
3532 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
3533 spin_unlock(&phba->mgmt_sgl_lock);
3534 free_hndls:
3535 phwi_ctrlr = phba->phwi_ctrlr;
3536 pwrb_context = &phwi_ctrlr->wrb_context[
3537 beiscsi_conn->beiscsi_conn_cid -
3538 phba->fw_config.iscsi_cid_start];
3539 if (io_task->pwrb_handle)
3540 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle);
3541 io_task->pwrb_handle = NULL;
3542 pci_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
3543 io_task->bhs_pa.u.a64.address);
3544 SE_DEBUG(DBG_LVL_1, "Alloc of SGL_ICD Failed\n");
3545 return -ENOMEM;
3548 static void beiscsi_cleanup_task(struct iscsi_task *task)
3550 struct beiscsi_io_task *io_task = task->dd_data;
3551 struct iscsi_conn *conn = task->conn;
3552 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
3553 struct beiscsi_hba *phba = beiscsi_conn->phba;
3554 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
3555 struct hwi_wrb_context *pwrb_context;
3556 struct hwi_controller *phwi_ctrlr;
3558 phwi_ctrlr = phba->phwi_ctrlr;
3559 pwrb_context = &phwi_ctrlr->wrb_context[beiscsi_conn->beiscsi_conn_cid
3560 - phba->fw_config.iscsi_cid_start];
3561 if (io_task->pwrb_handle) {
3562 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle);
3563 io_task->pwrb_handle = NULL;
3566 if (io_task->cmd_bhs) {
3567 pci_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
3568 io_task->bhs_pa.u.a64.address);
3571 if (task->sc) {
3572 if (io_task->psgl_handle) {
3573 spin_lock(&phba->io_sgl_lock);
3574 free_io_sgl_handle(phba, io_task->psgl_handle);
3575 spin_unlock(&phba->io_sgl_lock);
3576 io_task->psgl_handle = NULL;
3578 } else {
3579 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGIN)
3580 return;
3581 if (io_task->psgl_handle) {
3582 spin_lock(&phba->mgmt_sgl_lock);
3583 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
3584 spin_unlock(&phba->mgmt_sgl_lock);
3585 io_task->psgl_handle = NULL;
3590 static int beiscsi_iotask(struct iscsi_task *task, struct scatterlist *sg,
3591 unsigned int num_sg, unsigned int xferlen,
3592 unsigned int writedir)
3595 struct beiscsi_io_task *io_task = task->dd_data;
3596 struct iscsi_conn *conn = task->conn;
3597 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
3598 struct beiscsi_hba *phba = beiscsi_conn->phba;
3599 struct iscsi_wrb *pwrb = NULL;
3600 unsigned int doorbell = 0;
3602 pwrb = io_task->pwrb_handle->pwrb;
3603 io_task->cmd_bhs->iscsi_hdr.exp_statsn = 0;
3604 io_task->bhs_len = sizeof(struct be_cmd_bhs);
3606 if (writedir) {
3607 memset(&io_task->cmd_bhs->iscsi_data_pdu, 0, 48);
3608 AMAP_SET_BITS(struct amap_pdu_data_out, itt,
3609 &io_task->cmd_bhs->iscsi_data_pdu,
3610 (unsigned int)io_task->cmd_bhs->iscsi_hdr.itt);
3611 AMAP_SET_BITS(struct amap_pdu_data_out, opcode,
3612 &io_task->cmd_bhs->iscsi_data_pdu,
3613 ISCSI_OPCODE_SCSI_DATA_OUT);
3614 AMAP_SET_BITS(struct amap_pdu_data_out, final_bit,
3615 &io_task->cmd_bhs->iscsi_data_pdu, 1);
3616 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
3617 INI_WR_CMD);
3618 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 1);
3619 } else {
3620 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
3621 INI_RD_CMD);
3622 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
3624 memcpy(&io_task->cmd_bhs->iscsi_data_pdu.
3625 dw[offsetof(struct amap_pdu_data_out, lun) / 32],
3626 io_task->cmd_bhs->iscsi_hdr.lun, sizeof(struct scsi_lun));
3628 AMAP_SET_BITS(struct amap_iscsi_wrb, lun, pwrb,
3629 cpu_to_be16((unsigned short)io_task->cmd_bhs->iscsi_hdr.
3630 lun[0]));
3631 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, xferlen);
3632 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
3633 io_task->pwrb_handle->wrb_index);
3634 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
3635 be32_to_cpu(task->cmdsn));
3636 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
3637 io_task->psgl_handle->sgl_index);
3639 hwi_write_sgl(pwrb, sg, num_sg, io_task);
3641 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
3642 io_task->pwrb_handle->nxt_wrb_index);
3643 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
3645 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
3646 doorbell |= (io_task->pwrb_handle->wrb_index &
3647 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
3648 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
3650 iowrite32(doorbell, phba->db_va + DB_TXULP0_OFFSET);
3651 return 0;
3654 static int beiscsi_mtask(struct iscsi_task *task)
3656 struct beiscsi_io_task *io_task = task->dd_data;
3657 struct iscsi_conn *conn = task->conn;
3658 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
3659 struct beiscsi_hba *phba = beiscsi_conn->phba;
3660 struct iscsi_wrb *pwrb = NULL;
3661 unsigned int doorbell = 0;
3662 unsigned int cid;
3664 cid = beiscsi_conn->beiscsi_conn_cid;
3665 pwrb = io_task->pwrb_handle->pwrb;
3666 memset(pwrb, 0, sizeof(*pwrb));
3667 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
3668 be32_to_cpu(task->cmdsn));
3669 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
3670 io_task->pwrb_handle->wrb_index);
3671 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
3672 io_task->psgl_handle->sgl_index);
3674 switch (task->hdr->opcode & ISCSI_OPCODE_MASK) {
3675 case ISCSI_OP_LOGIN:
3676 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
3677 TGT_DM_CMD);
3678 AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 0);
3679 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb, 1);
3680 hwi_write_buffer(pwrb, task);
3681 break;
3682 case ISCSI_OP_NOOP_OUT:
3683 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
3684 INI_RD_CMD);
3685 if (task->hdr->ttt == ISCSI_RESERVED_TAG)
3686 AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 0);
3687 else
3688 AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 1);
3689 hwi_write_buffer(pwrb, task);
3690 break;
3691 case ISCSI_OP_TEXT:
3692 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
3693 TGT_DM_CMD);
3694 AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 0);
3695 hwi_write_buffer(pwrb, task);
3696 break;
3697 case ISCSI_OP_SCSI_TMFUNC:
3698 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
3699 INI_TMF_CMD);
3700 AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 0);
3701 hwi_write_buffer(pwrb, task);
3702 break;
3703 case ISCSI_OP_LOGOUT:
3704 AMAP_SET_BITS(struct amap_iscsi_wrb, dmsg, pwrb, 0);
3705 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
3706 HWH_TYPE_LOGOUT);
3707 hwi_write_buffer(pwrb, task);
3708 break;
3710 default:
3711 SE_DEBUG(DBG_LVL_1, "opcode =%d Not supported\n",
3712 task->hdr->opcode & ISCSI_OPCODE_MASK);
3713 return -EINVAL;
3716 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb,
3717 task->data_count);
3718 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
3719 io_task->pwrb_handle->nxt_wrb_index);
3720 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
3722 doorbell |= cid & DB_WRB_POST_CID_MASK;
3723 doorbell |= (io_task->pwrb_handle->wrb_index &
3724 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
3725 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
3726 iowrite32(doorbell, phba->db_va + DB_TXULP0_OFFSET);
3727 return 0;
3730 static int beiscsi_task_xmit(struct iscsi_task *task)
3732 struct beiscsi_io_task *io_task = task->dd_data;
3733 struct scsi_cmnd *sc = task->sc;
3734 struct scatterlist *sg;
3735 int num_sg;
3736 unsigned int writedir = 0, xferlen = 0;
3738 if (!sc)
3739 return beiscsi_mtask(task);
3741 io_task->scsi_cmnd = sc;
3742 num_sg = scsi_dma_map(sc);
3743 if (num_sg < 0) {
3744 SE_DEBUG(DBG_LVL_1, " scsi_dma_map Failed\n")
3745 return num_sg;
3747 xferlen = scsi_bufflen(sc);
3748 sg = scsi_sglist(sc);
3749 if (sc->sc_data_direction == DMA_TO_DEVICE) {
3750 writedir = 1;
3751 SE_DEBUG(DBG_LVL_4, "task->imm_count=0x%08x\n",
3752 task->imm_count);
3753 } else
3754 writedir = 0;
3755 return beiscsi_iotask(task, sg, num_sg, xferlen, writedir);
3758 static void beiscsi_remove(struct pci_dev *pcidev)
3760 struct beiscsi_hba *phba = NULL;
3761 struct hwi_controller *phwi_ctrlr;
3762 struct hwi_context_memory *phwi_context;
3763 struct be_eq_obj *pbe_eq;
3764 unsigned int i, msix_vec;
3765 u8 *real_offset = 0;
3766 u32 value = 0;
3768 phba = (struct beiscsi_hba *)pci_get_drvdata(pcidev);
3769 if (!phba) {
3770 dev_err(&pcidev->dev, "beiscsi_remove called with no phba\n");
3771 return;
3774 phwi_ctrlr = phba->phwi_ctrlr;
3775 phwi_context = phwi_ctrlr->phwi_ctxt;
3776 hwi_disable_intr(phba);
3777 if (phba->msix_enabled) {
3778 for (i = 0; i <= phba->num_cpus; i++) {
3779 msix_vec = phba->msix_entries[i].vector;
3780 free_irq(msix_vec, &phwi_context->be_eq[i]);
3782 } else
3783 if (phba->pcidev->irq)
3784 free_irq(phba->pcidev->irq, phba);
3785 pci_disable_msix(phba->pcidev);
3786 destroy_workqueue(phba->wq);
3787 if (blk_iopoll_enabled)
3788 for (i = 0; i < phba->num_cpus; i++) {
3789 pbe_eq = &phwi_context->be_eq[i];
3790 blk_iopoll_disable(&pbe_eq->iopoll);
3793 beiscsi_clean_port(phba);
3794 beiscsi_free_mem(phba);
3795 real_offset = (u8 *)phba->csr_va + MPU_EP_SEMAPHORE;
3797 value = readl((void *)real_offset);
3799 if (value & 0x00010000) {
3800 value &= 0xfffeffff;
3801 writel(value, (void *)real_offset);
3803 beiscsi_unmap_pci_function(phba);
3804 pci_free_consistent(phba->pcidev,
3805 phba->ctrl.mbox_mem_alloced.size,
3806 phba->ctrl.mbox_mem_alloced.va,
3807 phba->ctrl.mbox_mem_alloced.dma);
3808 iscsi_host_remove(phba->shost);
3809 pci_dev_put(phba->pcidev);
3810 iscsi_host_free(phba->shost);
3813 static void beiscsi_msix_enable(struct beiscsi_hba *phba)
3815 int i, status;
3817 for (i = 0; i <= phba->num_cpus; i++)
3818 phba->msix_entries[i].entry = i;
3820 status = pci_enable_msix(phba->pcidev, phba->msix_entries,
3821 (phba->num_cpus + 1));
3822 if (!status)
3823 phba->msix_enabled = true;
3825 return;
3828 static int __devinit beiscsi_dev_probe(struct pci_dev *pcidev,
3829 const struct pci_device_id *id)
3831 struct beiscsi_hba *phba = NULL;
3832 struct hwi_controller *phwi_ctrlr;
3833 struct hwi_context_memory *phwi_context;
3834 struct be_eq_obj *pbe_eq;
3835 int ret, num_cpus, i;
3836 u8 *real_offset = 0;
3837 u32 value = 0;
3839 ret = beiscsi_enable_pci(pcidev);
3840 if (ret < 0) {
3841 dev_err(&pcidev->dev, "beiscsi_dev_probe-"
3842 " Failed to enable pci device\n");
3843 return ret;
3846 phba = beiscsi_hba_alloc(pcidev);
3847 if (!phba) {
3848 dev_err(&pcidev->dev, "beiscsi_dev_probe-"
3849 " Failed in beiscsi_hba_alloc\n");
3850 goto disable_pci;
3853 switch (pcidev->device) {
3854 case BE_DEVICE_ID1:
3855 case OC_DEVICE_ID1:
3856 case OC_DEVICE_ID2:
3857 phba->generation = BE_GEN2;
3858 break;
3859 case BE_DEVICE_ID2:
3860 case OC_DEVICE_ID3:
3861 phba->generation = BE_GEN3;
3862 break;
3863 default:
3864 phba->generation = 0;
3867 if (enable_msix)
3868 num_cpus = find_num_cpus();
3869 else
3870 num_cpus = 1;
3871 phba->num_cpus = num_cpus;
3872 SE_DEBUG(DBG_LVL_8, "num_cpus = %d\n", phba->num_cpus);
3874 if (enable_msix)
3875 beiscsi_msix_enable(phba);
3876 ret = be_ctrl_init(phba, pcidev);
3877 if (ret) {
3878 shost_printk(KERN_ERR, phba->shost, "beiscsi_dev_probe-"
3879 "Failed in be_ctrl_init\n");
3880 goto hba_free;
3883 if (!num_hba) {
3884 real_offset = (u8 *)phba->csr_va + MPU_EP_SEMAPHORE;
3885 value = readl((void *)real_offset);
3886 if (value & 0x00010000) {
3887 gcrashmode++;
3888 shost_printk(KERN_ERR, phba->shost,
3889 "Loading Driver in crashdump mode\n");
3890 ret = beiscsi_pci_soft_reset(phba);
3891 if (ret) {
3892 shost_printk(KERN_ERR, phba->shost,
3893 "Reset Failed. Aborting Crashdump\n");
3894 goto hba_free;
3896 ret = be_chk_reset_complete(phba);
3897 if (ret) {
3898 shost_printk(KERN_ERR, phba->shost,
3899 "Failed to get out of reset."
3900 "Aborting Crashdump\n");
3901 goto hba_free;
3903 } else {
3904 value |= 0x00010000;
3905 writel(value, (void *)real_offset);
3906 num_hba++;
3910 spin_lock_init(&phba->io_sgl_lock);
3911 spin_lock_init(&phba->mgmt_sgl_lock);
3912 spin_lock_init(&phba->isr_lock);
3913 ret = mgmt_get_fw_config(&phba->ctrl, phba);
3914 if (ret != 0) {
3915 shost_printk(KERN_ERR, phba->shost,
3916 "Error getting fw config\n");
3917 goto free_port;
3919 phba->shost->max_id = phba->fw_config.iscsi_cid_count;
3920 beiscsi_get_params(phba);
3921 phba->shost->can_queue = phba->params.ios_per_ctrl;
3922 ret = beiscsi_init_port(phba);
3923 if (ret < 0) {
3924 shost_printk(KERN_ERR, phba->shost, "beiscsi_dev_probe-"
3925 "Failed in beiscsi_init_port\n");
3926 goto free_port;
3929 for (i = 0; i < MAX_MCC_CMD ; i++) {
3930 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]);
3931 phba->ctrl.mcc_tag[i] = i + 1;
3932 phba->ctrl.mcc_numtag[i + 1] = 0;
3933 phba->ctrl.mcc_tag_available++;
3936 phba->ctrl.mcc_alloc_index = phba->ctrl.mcc_free_index = 0;
3938 snprintf(phba->wq_name, sizeof(phba->wq_name), "beiscsi_q_irq%u",
3939 phba->shost->host_no);
3940 phba->wq = create_workqueue(phba->wq_name);
3941 if (!phba->wq) {
3942 shost_printk(KERN_ERR, phba->shost, "beiscsi_dev_probe-"
3943 "Failed to allocate work queue\n");
3944 goto free_twq;
3947 INIT_WORK(&phba->work_cqs, beiscsi_process_all_cqs);
3949 phwi_ctrlr = phba->phwi_ctrlr;
3950 phwi_context = phwi_ctrlr->phwi_ctxt;
3951 if (blk_iopoll_enabled) {
3952 for (i = 0; i < phba->num_cpus; i++) {
3953 pbe_eq = &phwi_context->be_eq[i];
3954 blk_iopoll_init(&pbe_eq->iopoll, be_iopoll_budget,
3955 be_iopoll);
3956 blk_iopoll_enable(&pbe_eq->iopoll);
3959 ret = beiscsi_init_irqs(phba);
3960 if (ret < 0) {
3961 shost_printk(KERN_ERR, phba->shost, "beiscsi_dev_probe-"
3962 "Failed to beiscsi_init_irqs\n");
3963 goto free_blkenbld;
3965 hwi_enable_intr(phba);
3966 SE_DEBUG(DBG_LVL_8, "\n\n\n SUCCESS - DRIVER LOADED\n\n\n");
3967 return 0;
3969 free_blkenbld:
3970 destroy_workqueue(phba->wq);
3971 if (blk_iopoll_enabled)
3972 for (i = 0; i < phba->num_cpus; i++) {
3973 pbe_eq = &phwi_context->be_eq[i];
3974 blk_iopoll_disable(&pbe_eq->iopoll);
3976 free_twq:
3977 beiscsi_clean_port(phba);
3978 beiscsi_free_mem(phba);
3979 free_port:
3980 real_offset = (u8 *)phba->csr_va + MPU_EP_SEMAPHORE;
3982 value = readl((void *)real_offset);
3984 if (value & 0x00010000) {
3985 value &= 0xfffeffff;
3986 writel(value, (void *)real_offset);
3989 pci_free_consistent(phba->pcidev,
3990 phba->ctrl.mbox_mem_alloced.size,
3991 phba->ctrl.mbox_mem_alloced.va,
3992 phba->ctrl.mbox_mem_alloced.dma);
3993 beiscsi_unmap_pci_function(phba);
3994 hba_free:
3995 if (phba->msix_enabled)
3996 pci_disable_msix(phba->pcidev);
3997 iscsi_host_remove(phba->shost);
3998 pci_dev_put(phba->pcidev);
3999 iscsi_host_free(phba->shost);
4000 disable_pci:
4001 pci_disable_device(pcidev);
4002 return ret;
4005 struct iscsi_transport beiscsi_iscsi_transport = {
4006 .owner = THIS_MODULE,
4007 .name = DRV_NAME,
4008 .caps = CAP_RECOVERY_L0 | CAP_HDRDGST | CAP_TEXT_NEGO |
4009 CAP_MULTI_R2T | CAP_DATADGST | CAP_DATA_PATH_OFFLOAD,
4010 .param_mask = ISCSI_MAX_RECV_DLENGTH |
4011 ISCSI_MAX_XMIT_DLENGTH |
4012 ISCSI_HDRDGST_EN |
4013 ISCSI_DATADGST_EN |
4014 ISCSI_INITIAL_R2T_EN |
4015 ISCSI_MAX_R2T |
4016 ISCSI_IMM_DATA_EN |
4017 ISCSI_FIRST_BURST |
4018 ISCSI_MAX_BURST |
4019 ISCSI_PDU_INORDER_EN |
4020 ISCSI_DATASEQ_INORDER_EN |
4021 ISCSI_ERL |
4022 ISCSI_CONN_PORT |
4023 ISCSI_CONN_ADDRESS |
4024 ISCSI_EXP_STATSN |
4025 ISCSI_PERSISTENT_PORT |
4026 ISCSI_PERSISTENT_ADDRESS |
4027 ISCSI_TARGET_NAME | ISCSI_TPGT |
4028 ISCSI_USERNAME | ISCSI_PASSWORD |
4029 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
4030 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
4031 ISCSI_LU_RESET_TMO |
4032 ISCSI_PING_TMO | ISCSI_RECV_TMO |
4033 ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME,
4034 .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS |
4035 ISCSI_HOST_INITIATOR_NAME,
4036 .create_session = beiscsi_session_create,
4037 .destroy_session = beiscsi_session_destroy,
4038 .create_conn = beiscsi_conn_create,
4039 .bind_conn = beiscsi_conn_bind,
4040 .destroy_conn = iscsi_conn_teardown,
4041 .set_param = beiscsi_set_param,
4042 .get_conn_param = beiscsi_conn_get_param,
4043 .get_session_param = iscsi_session_get_param,
4044 .get_host_param = beiscsi_get_host_param,
4045 .start_conn = beiscsi_conn_start,
4046 .stop_conn = iscsi_conn_stop,
4047 .send_pdu = iscsi_conn_send_pdu,
4048 .xmit_task = beiscsi_task_xmit,
4049 .cleanup_task = beiscsi_cleanup_task,
4050 .alloc_pdu = beiscsi_alloc_pdu,
4051 .parse_pdu_itt = beiscsi_parse_pdu,
4052 .get_stats = beiscsi_conn_get_stats,
4053 .ep_connect = beiscsi_ep_connect,
4054 .ep_poll = beiscsi_ep_poll,
4055 .ep_disconnect = beiscsi_ep_disconnect,
4056 .session_recovery_timedout = iscsi_session_recovery_timedout,
4059 static struct pci_driver beiscsi_pci_driver = {
4060 .name = DRV_NAME,
4061 .probe = beiscsi_dev_probe,
4062 .remove = beiscsi_remove,
4063 .id_table = beiscsi_pci_id_table
4067 static int __init beiscsi_module_init(void)
4069 int ret;
4071 beiscsi_scsi_transport =
4072 iscsi_register_transport(&beiscsi_iscsi_transport);
4073 if (!beiscsi_scsi_transport) {
4074 SE_DEBUG(DBG_LVL_1,
4075 "beiscsi_module_init - Unable to register beiscsi"
4076 "transport.\n");
4077 return -ENOMEM;
4079 SE_DEBUG(DBG_LVL_8, "In beiscsi_module_init, tt=%p\n",
4080 &beiscsi_iscsi_transport);
4082 ret = pci_register_driver(&beiscsi_pci_driver);
4083 if (ret) {
4084 SE_DEBUG(DBG_LVL_1,
4085 "beiscsi_module_init - Unable to register"
4086 "beiscsi pci driver.\n");
4087 goto unregister_iscsi_transport;
4089 return 0;
4091 unregister_iscsi_transport:
4092 iscsi_unregister_transport(&beiscsi_iscsi_transport);
4093 return ret;
4096 static void __exit beiscsi_module_exit(void)
4098 pci_unregister_driver(&beiscsi_pci_driver);
4099 iscsi_unregister_transport(&beiscsi_iscsi_transport);
4102 module_init(beiscsi_module_init);
4103 module_exit(beiscsi_module_exit);