1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2005 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
9 * This program is free software; you can redistribute it and/or *
10 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
20 *******************************************************************/
22 #include <linux/blkdev.h>
23 #include <linux/delay.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/idr.h>
26 #include <linux/interrupt.h>
27 #include <linux/kthread.h>
28 #include <linux/pci.h>
29 #include <linux/spinlock.h>
31 #include <scsi/scsi.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_host.h>
34 #include <scsi/scsi_transport_fc.h>
38 #include "lpfc_disc.h"
39 #include "lpfc_scsi.h"
41 #include "lpfc_logmsg.h"
42 #include "lpfc_crtn.h"
43 #include "lpfc_version.h"
45 static int lpfc_parse_vpd(struct lpfc_hba
*, uint8_t *);
46 static void lpfc_get_hba_model_desc(struct lpfc_hba
*, uint8_t *, uint8_t *);
47 static int lpfc_post_rcv_buf(struct lpfc_hba
*);
49 static struct scsi_transport_template
*lpfc_transport_template
= NULL
;
50 static DEFINE_IDR(lpfc_hba_index
);
52 /************************************************************************/
54 /* lpfc_config_port_prep */
55 /* This routine will do LPFC initialization prior to the */
56 /* CONFIG_PORT mailbox command. This will be initialized */
57 /* as a SLI layer callback routine. */
58 /* This routine returns 0 on success or -ERESTART if it wants */
59 /* the SLI layer to reset the HBA and try again. Any */
60 /* other return value indicates an error. */
62 /************************************************************************/
64 lpfc_config_port_prep(struct lpfc_hba
* phba
)
66 lpfc_vpd_t
*vp
= &phba
->vpd
;
70 char *lpfc_vpd_data
= NULL
;
72 static char licensed
[56] =
73 "key unlock for use with gnu public licensed code only\0";
75 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
77 phba
->hba_state
= LPFC_HBA_ERROR
;
82 phba
->hba_state
= LPFC_INIT_MBX_CMDS
;
84 if (lpfc_is_LC_HBA(phba
->pcidev
->device
)) {
85 uint32_t *ptext
= (uint32_t *) licensed
;
87 for (i
= 0; i
< 56; i
+= sizeof (uint32_t), ptext
++)
88 *ptext
= cpu_to_be32(*ptext
);
90 lpfc_read_nv(phba
, pmb
);
91 memset((char*)mb
->un
.varRDnvp
.rsvd3
, 0,
92 sizeof (mb
->un
.varRDnvp
.rsvd3
));
93 memcpy((char*)mb
->un
.varRDnvp
.rsvd3
, licensed
,
96 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
98 if (rc
!= MBX_SUCCESS
) {
102 "%d:0324 Config Port initialization "
103 "error, mbxCmd x%x READ_NVPARM, "
106 mb
->mbxCommand
, mb
->mbxStatus
);
107 mempool_free(pmb
, phba
->mbox_mem_pool
);
110 memcpy(phba
->wwnn
, (char *)mb
->un
.varRDnvp
.nodename
,
111 sizeof (mb
->un
.varRDnvp
.nodename
));
114 /* Setup and issue mailbox READ REV command */
115 lpfc_read_rev(phba
, pmb
);
116 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
117 if (rc
!= MBX_SUCCESS
) {
118 lpfc_printf_log(phba
,
121 "%d:0439 Adapter failed to init, mbxCmd x%x "
122 "READ_REV, mbxStatus x%x\n",
124 mb
->mbxCommand
, mb
->mbxStatus
);
125 mempool_free( pmb
, phba
->mbox_mem_pool
);
129 /* The HBA's current state is provided by the ProgType and rr fields.
130 * Read and check the value of these fields before continuing to config
133 if (mb
->un
.varRdRev
.rr
== 0 || mb
->un
.varRdRev
.un
.b
.ProgType
!= 2) {
136 lpfc_printf_log(phba
,
139 "%d:0440 Adapter failed to init, mbxCmd x%x "
140 "READ_REV detected outdated firmware"
144 mempool_free(pmb
, phba
->mbox_mem_pool
);
148 vp
->rev
.sli1FwRev
= mb
->un
.varRdRev
.sli1FwRev
;
149 memcpy(vp
->rev
.sli1FwName
,
150 (char*)mb
->un
.varRdRev
.sli1FwName
, 16);
151 vp
->rev
.sli2FwRev
= mb
->un
.varRdRev
.sli2FwRev
;
152 memcpy(vp
->rev
.sli2FwName
,
153 (char *)mb
->un
.varRdRev
.sli2FwName
, 16);
156 /* Save information as VPD data */
157 vp
->rev
.biuRev
= mb
->un
.varRdRev
.biuRev
;
158 vp
->rev
.smRev
= mb
->un
.varRdRev
.smRev
;
159 vp
->rev
.smFwRev
= mb
->un
.varRdRev
.un
.smFwRev
;
160 vp
->rev
.endecRev
= mb
->un
.varRdRev
.endecRev
;
161 vp
->rev
.fcphHigh
= mb
->un
.varRdRev
.fcphHigh
;
162 vp
->rev
.fcphLow
= mb
->un
.varRdRev
.fcphLow
;
163 vp
->rev
.feaLevelHigh
= mb
->un
.varRdRev
.feaLevelHigh
;
164 vp
->rev
.feaLevelLow
= mb
->un
.varRdRev
.feaLevelLow
;
165 vp
->rev
.postKernRev
= mb
->un
.varRdRev
.postKernRev
;
166 vp
->rev
.opFwRev
= mb
->un
.varRdRev
.opFwRev
;
168 if (lpfc_is_LC_HBA(phba
->pcidev
->device
))
169 memcpy(phba
->RandomData
, (char *)&mb
->un
.varWords
[24],
170 sizeof (phba
->RandomData
));
172 /* Get the default values for Model Name and Description */
173 lpfc_get_hba_model_desc(phba
, phba
->ModelName
, phba
->ModelDesc
);
175 /* Get adapter VPD information */
176 pmb
->context2
= kmalloc(DMP_RSP_SIZE
, GFP_KERNEL
);
179 lpfc_vpd_data
= kmalloc(DMP_VPD_SIZE
, GFP_KERNEL
);
181 goto out_free_context2
;
184 lpfc_dump_mem(phba
, pmb
, offset
);
185 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
187 if (rc
!= MBX_SUCCESS
) {
188 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
189 "%d:0441 VPD not present on adapter, "
190 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
192 mb
->mbxCommand
, mb
->mbxStatus
);
193 kfree(lpfc_vpd_data
);
194 lpfc_vpd_data
= NULL
;
198 lpfc_sli_pcimem_bcopy(pmb
->context2
, lpfc_vpd_data
+ offset
,
199 mb
->un
.varDmp
.word_cnt
);
200 offset
+= mb
->un
.varDmp
.word_cnt
;
201 } while (mb
->un
.varDmp
.word_cnt
);
202 lpfc_parse_vpd(phba
, lpfc_vpd_data
);
204 kfree(lpfc_vpd_data
);
206 kfree(pmb
->context2
);
208 mempool_free(pmb
, phba
->mbox_mem_pool
);
212 /************************************************************************/
214 /* lpfc_config_port_post */
215 /* This routine will do LPFC initialization after the */
216 /* CONFIG_PORT mailbox command. This will be initialized */
217 /* as a SLI layer callback routine. */
218 /* This routine returns 0 on success. Any other return value */
219 /* indicates an error. */
221 /************************************************************************/
223 lpfc_config_port_post(struct lpfc_hba
* phba
)
227 struct lpfc_dmabuf
*mp
;
228 struct lpfc_sli
*psli
= &phba
->sli
;
229 uint32_t status
, timeout
;
232 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
234 phba
->hba_state
= LPFC_HBA_ERROR
;
239 lpfc_config_link(phba
, pmb
);
240 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
241 if (rc
!= MBX_SUCCESS
) {
242 lpfc_printf_log(phba
,
245 "%d:0447 Adapter failed init, mbxCmd x%x "
246 "CONFIG_LINK mbxStatus x%x\n",
248 mb
->mbxCommand
, mb
->mbxStatus
);
249 phba
->hba_state
= LPFC_HBA_ERROR
;
250 mempool_free( pmb
, phba
->mbox_mem_pool
);
254 /* Get login parameters for NID. */
255 lpfc_read_sparam(phba
, pmb
);
256 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
257 lpfc_printf_log(phba
,
260 "%d:0448 Adapter failed init, mbxCmd x%x "
261 "READ_SPARM mbxStatus x%x\n",
263 mb
->mbxCommand
, mb
->mbxStatus
);
264 phba
->hba_state
= LPFC_HBA_ERROR
;
265 mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
266 mempool_free( pmb
, phba
->mbox_mem_pool
);
267 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
272 mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
274 memcpy(&phba
->fc_sparam
, mp
->virt
, sizeof (struct serv_parm
));
275 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
277 pmb
->context1
= NULL
;
279 memcpy(&phba
->fc_nodename
, &phba
->fc_sparam
.nodeName
,
280 sizeof (struct lpfc_name
));
281 memcpy(&phba
->fc_portname
, &phba
->fc_sparam
.portName
,
282 sizeof (struct lpfc_name
));
283 /* If no serial number in VPD data, use low 6 bytes of WWNN */
284 /* This should be consolidated into parse_vpd ? - mr */
285 if (phba
->SerialNumber
[0] == 0) {
288 outptr
= (uint8_t *) & phba
->fc_nodename
.IEEE
[0];
289 for (i
= 0; i
< 12; i
++) {
291 j
= ((status
& 0xf0) >> 4);
293 phba
->SerialNumber
[i
] =
294 (char)((uint8_t) 0x30 + (uint8_t) j
);
296 phba
->SerialNumber
[i
] =
297 (char)((uint8_t) 0x61 + (uint8_t) (j
- 10));
301 phba
->SerialNumber
[i
] =
302 (char)((uint8_t) 0x30 + (uint8_t) j
);
304 phba
->SerialNumber
[i
] =
305 (char)((uint8_t) 0x61 + (uint8_t) (j
- 10));
309 /* This should turn on DELAYED ABTS for ELS timeouts */
310 lpfc_set_slim(phba
, pmb
, 0x052198, 0x1);
311 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
312 phba
->hba_state
= LPFC_HBA_ERROR
;
313 mempool_free( pmb
, phba
->mbox_mem_pool
);
318 lpfc_read_config(phba
, pmb
);
319 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
320 lpfc_printf_log(phba
,
323 "%d:0453 Adapter failed to init, mbxCmd x%x "
324 "READ_CONFIG, mbxStatus x%x\n",
326 mb
->mbxCommand
, mb
->mbxStatus
);
327 phba
->hba_state
= LPFC_HBA_ERROR
;
328 mempool_free( pmb
, phba
->mbox_mem_pool
);
332 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
333 if (phba
->cfg_hba_queue_depth
> (mb
->un
.varRdConfig
.max_xri
+1))
334 phba
->cfg_hba_queue_depth
=
335 mb
->un
.varRdConfig
.max_xri
+ 1;
337 phba
->lmt
= mb
->un
.varRdConfig
.lmt
;
338 /* HBA is not 4GB capable, or HBA is not 2GB capable,
339 don't let link speed ask for it */
340 if ((((phba
->lmt
& LMT_4250_10bit
) != LMT_4250_10bit
) &&
341 (phba
->cfg_link_speed
> LINK_SPEED_2G
)) ||
342 (((phba
->lmt
& LMT_2125_10bit
) != LMT_2125_10bit
) &&
343 (phba
->cfg_link_speed
> LINK_SPEED_1G
))) {
344 /* Reset link speed to auto. 1G/2GB HBA cfg'd for 4G */
345 lpfc_printf_log(phba
,
348 "%d:1302 Invalid speed for this board: "
349 "Reset link speed to auto: x%x\n",
351 phba
->cfg_link_speed
);
352 phba
->cfg_link_speed
= LINK_SPEED_AUTO
;
355 phba
->hba_state
= LPFC_LINK_DOWN
;
357 /* Only process IOCBs on ring 0 till hba_state is READY */
358 if (psli
->ring
[psli
->ip_ring
].cmdringaddr
)
359 psli
->ring
[psli
->ip_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
360 if (psli
->ring
[psli
->fcp_ring
].cmdringaddr
)
361 psli
->ring
[psli
->fcp_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
362 if (psli
->ring
[psli
->next_ring
].cmdringaddr
)
363 psli
->ring
[psli
->next_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
365 /* Post receive buffers for desired rings */
366 lpfc_post_rcv_buf(phba
);
368 /* Enable appropriate host interrupts */
369 spin_lock_irq(phba
->host
->host_lock
);
370 status
= readl(phba
->HCregaddr
);
371 status
|= HC_MBINT_ENA
| HC_ERINT_ENA
| HC_LAINT_ENA
;
372 if (psli
->num_rings
> 0)
373 status
|= HC_R0INT_ENA
;
374 if (psli
->num_rings
> 1)
375 status
|= HC_R1INT_ENA
;
376 if (psli
->num_rings
> 2)
377 status
|= HC_R2INT_ENA
;
378 if (psli
->num_rings
> 3)
379 status
|= HC_R3INT_ENA
;
381 writel(status
, phba
->HCregaddr
);
382 readl(phba
->HCregaddr
); /* flush */
383 spin_unlock_irq(phba
->host
->host_lock
);
386 * Setup the ring 0 (els) timeout handler
388 timeout
= phba
->fc_ratov
<< 1;
389 phba
->els_tmofunc
.expires
= jiffies
+ HZ
* timeout
;
390 add_timer(&phba
->els_tmofunc
);
392 lpfc_init_link(phba
, pmb
, phba
->cfg_topology
, phba
->cfg_link_speed
);
393 pmb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
394 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
) != MBX_SUCCESS
) {
395 lpfc_printf_log(phba
,
398 "%d:0454 Adapter failed to init, mbxCmd x%x "
399 "INIT_LINK, mbxStatus x%x\n",
401 mb
->mbxCommand
, mb
->mbxStatus
);
403 /* Clear all interrupt enable conditions */
404 writel(0, phba
->HCregaddr
);
405 readl(phba
->HCregaddr
); /* flush */
406 /* Clear all pending interrupts */
407 writel(0xffffffff, phba
->HAregaddr
);
408 readl(phba
->HAregaddr
); /* flush */
410 phba
->hba_state
= LPFC_HBA_ERROR
;
411 mempool_free(pmb
, phba
->mbox_mem_pool
);
414 /* MBOX buffer will be freed in mbox compl */
417 while ((phba
->hba_state
!= LPFC_HBA_READY
) ||
418 (phba
->num_disc_nodes
) || (phba
->fc_prli_sent
) ||
419 ((phba
->fc_map_cnt
== 0) && (i
<2)) ||
420 (psli
->sli_flag
& LPFC_SLI_MBOX_ACTIVE
)) {
421 /* Check every second for 30 retries. */
426 if ((i
>= 15) && (phba
->hba_state
<= LPFC_LINK_DOWN
)) {
427 /* The link is down. Set linkdown timeout */
431 /* Delay for 1 second to give discovery time to complete. */
436 /* Since num_disc_nodes keys off of PLOGI, delay a bit to let
437 * any potential PRLIs to flush thru the SLI sub-system.
444 /************************************************************************/
446 /* lpfc_hba_down_prep */
447 /* This routine will do LPFC uninitialization before the */
448 /* HBA is reset when bringing down the SLI Layer. This will be */
449 /* initialized as a SLI layer callback routine. */
450 /* This routine returns 0 on success. Any other return value */
451 /* indicates an error. */
453 /************************************************************************/
455 lpfc_hba_down_prep(struct lpfc_hba
* phba
)
457 /* Disable interrupts */
458 writel(0, phba
->HCregaddr
);
459 readl(phba
->HCregaddr
); /* flush */
461 /* Cleanup potential discovery resources */
462 lpfc_els_flush_rscn(phba
);
463 lpfc_els_flush_cmd(phba
);
464 lpfc_disc_flush_list(phba
);
469 /************************************************************************/
471 /* lpfc_handle_eratt */
472 /* This routine will handle processing a Host Attention */
473 /* Error Status event. This will be initialized */
474 /* as a SLI layer callback routine. */
476 /************************************************************************/
478 lpfc_handle_eratt(struct lpfc_hba
* phba
)
480 struct lpfc_sli
*psli
= &phba
->sli
;
481 struct lpfc_sli_ring
*pring
;
484 * If a reset is sent to the HBA restore PCI configuration registers.
486 if ( phba
->hba_state
== LPFC_INIT_START
) {
488 readl(phba
->HCregaddr
); /* flush */
489 writel(0, phba
->HCregaddr
);
490 readl(phba
->HCregaddr
); /* flush */
492 /* Restore PCI cmd register */
493 pci_write_config_word(phba
->pcidev
,
494 PCI_COMMAND
, phba
->pci_cfg_value
);
497 if (phba
->work_hs
& HS_FFER6
) {
498 /* Re-establishing Link */
499 lpfc_printf_log(phba
, KERN_INFO
, LOG_LINK_EVENT
,
500 "%d:1301 Re-establishing Link "
501 "Data: x%x x%x x%x\n",
502 phba
->brd_no
, phba
->work_hs
,
503 phba
->work_status
[0], phba
->work_status
[1]);
504 spin_lock_irq(phba
->host
->host_lock
);
505 phba
->fc_flag
|= FC_ESTABLISH_LINK
;
506 spin_unlock_irq(phba
->host
->host_lock
);
509 * Firmware stops when it triggled erratt with HS_FFER6.
510 * That could cause the I/Os dropped by the firmware.
511 * Error iocb (I/O) on txcmplq and let the SCSI layer
512 * retry it after re-establishing link.
514 pring
= &psli
->ring
[psli
->fcp_ring
];
515 lpfc_sli_abort_iocb_ring(phba
, pring
);
519 * There was a firmware error. Take the hba offline and then
520 * attempt to restart it.
523 if (lpfc_online(phba
) == 0) { /* Initialize the HBA */
524 mod_timer(&phba
->fc_estabtmo
, jiffies
+ HZ
* 60);
528 /* The if clause above forces this code path when the status
529 * failure is a value other than FFER6. Do not call the offline
530 * twice. This is the adapter hardware error path.
532 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
533 "%d:0457 Adapter Hardware Error "
534 "Data: x%x x%x x%x\n",
535 phba
->brd_no
, phba
->work_hs
,
536 phba
->work_status
[0], phba
->work_status
[1]);
541 * Restart all traffic to this host. Since the fc_transport
542 * block functions (future) were not called in lpfc_offline,
543 * don't call them here.
545 scsi_unblock_requests(phba
->host
);
549 /************************************************************************/
551 /* lpfc_handle_latt */
552 /* This routine will handle processing a Host Attention */
553 /* Link Status event. This will be initialized */
554 /* as a SLI layer callback routine. */
556 /************************************************************************/
558 lpfc_handle_latt(struct lpfc_hba
* phba
)
560 struct lpfc_sli
*psli
= &phba
->sli
;
562 volatile uint32_t control
;
563 struct lpfc_dmabuf
*mp
;
566 pmb
= (LPFC_MBOXQ_t
*)mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
568 goto lpfc_handle_latt_err_exit
;
570 mp
= kmalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
572 goto lpfc_handle_latt_free_pmb
;
574 mp
->virt
= lpfc_mbuf_alloc(phba
, 0, &mp
->phys
);
576 goto lpfc_handle_latt_free_mp
;
581 psli
->slistat
.link_event
++;
582 lpfc_read_la(phba
, pmb
, mp
);
583 pmb
->mbox_cmpl
= lpfc_mbx_cmpl_read_la
;
584 rc
= lpfc_sli_issue_mbox (phba
, pmb
, (MBX_NOWAIT
| MBX_STOP_IOCB
));
585 if (rc
== MBX_NOT_FINISHED
)
586 goto lpfc_handle_latt_free_mp
;
588 /* Clear Link Attention in HA REG */
589 spin_lock_irq(phba
->host
->host_lock
);
590 writel(HA_LATT
, phba
->HAregaddr
);
591 readl(phba
->HAregaddr
); /* flush */
592 spin_unlock_irq(phba
->host
->host_lock
);
596 lpfc_handle_latt_free_mp
:
598 lpfc_handle_latt_free_pmb
:
600 lpfc_handle_latt_err_exit
:
601 /* Enable Link attention interrupts */
602 spin_lock_irq(phba
->host
->host_lock
);
603 psli
->sli_flag
|= LPFC_PROCESS_LA
;
604 control
= readl(phba
->HCregaddr
);
605 control
|= HC_LAINT_ENA
;
606 writel(control
, phba
->HCregaddr
);
607 readl(phba
->HCregaddr
); /* flush */
609 /* Clear Link Attention in HA REG */
610 writel(HA_LATT
, phba
->HAregaddr
);
611 readl(phba
->HAregaddr
); /* flush */
612 spin_unlock_irq(phba
->host
->host_lock
);
614 phba
->hba_state
= LPFC_HBA_ERROR
;
616 /* The other case is an error from issue_mbox */
618 lpfc_printf_log(phba
,
621 "%d:0300 READ_LA: no buffers\n",
627 /************************************************************************/
630 /* This routine will parse the VPD data */
632 /************************************************************************/
634 lpfc_parse_vpd(struct lpfc_hba
* phba
, uint8_t * vpd
)
636 uint8_t lenlo
, lenhi
;
646 lpfc_printf_log(phba
,
649 "%d:0455 Vital Product Data: x%x x%x x%x x%x\n",
651 (uint32_t) vpd
[0], (uint32_t) vpd
[1], (uint32_t) vpd
[2],
654 switch (vpd
[index
]) {
661 i
= ((((unsigned short)lenhi
) << 8) + lenlo
);
670 Length
= ((((unsigned short)lenhi
) << 8) + lenlo
);
673 /* Look for Serial Number */
674 if ((vpd
[index
] == 'S') && (vpd
[index
+1] == 'N')) {
681 phba
->SerialNumber
[j
++] = vpd
[index
++];
685 phba
->SerialNumber
[j
] = 0;
688 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '1')) {
689 phba
->vpd_flag
|= VPD_MODEL_DESC
;
696 phba
->ModelDesc
[j
++] = vpd
[index
++];
700 phba
->ModelDesc
[j
] = 0;
703 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '2')) {
704 phba
->vpd_flag
|= VPD_MODEL_NAME
;
711 phba
->ModelName
[j
++] = vpd
[index
++];
715 phba
->ModelName
[j
] = 0;
718 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '3')) {
719 phba
->vpd_flag
|= VPD_PROGRAM_TYPE
;
726 phba
->ProgramType
[j
++] = vpd
[index
++];
730 phba
->ProgramType
[j
] = 0;
733 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '4')) {
734 phba
->vpd_flag
|= VPD_PORT
;
741 phba
->Port
[j
++] = vpd
[index
++];
765 } while (!finished
&& (index
< 108));
771 lpfc_get_hba_model_desc(struct lpfc_hba
* phba
, uint8_t * mdp
, uint8_t * descp
)
778 pci_read_config_dword(phba
->pcidev
, PCI_VENDOR_ID
, &id
);
780 switch ((id
>> 16) & 0xffff) {
781 case PCI_DEVICE_ID_FIREFLY
:
782 strcpy(str
, "LP6000 1");
784 case PCI_DEVICE_ID_SUPERFLY
:
785 if (vp
->rev
.biuRev
>= 1 && vp
->rev
.biuRev
<= 3)
786 strcpy(str
, "LP7000 1");
788 strcpy(str
, "LP7000E 1");
790 case PCI_DEVICE_ID_DRAGONFLY
:
791 strcpy(str
, "LP8000 1");
793 case PCI_DEVICE_ID_CENTAUR
:
794 if (FC_JEDEC_ID(vp
->rev
.biuRev
) == CENTAUR_2G_JEDEC_ID
)
795 strcpy(str
, "LP9002 2");
797 strcpy(str
, "LP9000 1");
799 case PCI_DEVICE_ID_RFLY
:
800 strcpy(str
, "LP952 2");
802 case PCI_DEVICE_ID_PEGASUS
:
803 strcpy(str
, "LP9802 2");
805 case PCI_DEVICE_ID_THOR
:
806 strcpy(str
, "LP10000 2");
808 case PCI_DEVICE_ID_VIPER
:
809 strcpy(str
, "LPX1000 10");
811 case PCI_DEVICE_ID_PFLY
:
812 strcpy(str
, "LP982 2");
814 case PCI_DEVICE_ID_TFLY
:
815 strcpy(str
, "LP1050 2");
817 case PCI_DEVICE_ID_HELIOS
:
818 strcpy(str
, "LP11000 4");
820 case PCI_DEVICE_ID_BMID
:
821 strcpy(str
, "LP1150 4");
823 case PCI_DEVICE_ID_BSMB
:
824 strcpy(str
, "LP111 4");
826 case PCI_DEVICE_ID_ZEPHYR
:
827 strcpy(str
, "LP11000e 4");
829 case PCI_DEVICE_ID_ZMID
:
830 strcpy(str
, "LP1150e 4");
832 case PCI_DEVICE_ID_ZSMB
:
833 strcpy(str
, "LP111e 4");
835 case PCI_DEVICE_ID_LP101
:
836 strcpy(str
, "LP101 2");
838 case PCI_DEVICE_ID_LP10000S
:
839 strcpy(str
, "LP10000-S 2");
846 sscanf(str
, "%s", mdp
);
848 sprintf(descp
, "Emulex LightPulse %s Gigabit PCI Fibre "
849 "Channel Adapter", str
);
852 /**************************************************/
853 /* lpfc_post_buffer */
855 /* This routine will post count buffers to the */
856 /* ring with the QUE_RING_BUF_CN command. This */
857 /* allows 3 buffers / command to be posted. */
858 /* Returns the number of buffers NOT posted. */
859 /**************************************************/
861 lpfc_post_buffer(struct lpfc_hba
* phba
, struct lpfc_sli_ring
* pring
, int cnt
,
865 struct list_head
*lpfc_iocb_list
= &phba
->lpfc_iocb_list
;
866 struct lpfc_iocbq
*iocb
= NULL
;
867 struct lpfc_dmabuf
*mp1
, *mp2
;
869 cnt
+= pring
->missbufcnt
;
871 /* While there are buffers to post */
873 /* Allocate buffer for command iocb */
874 spin_lock_irq(phba
->host
->host_lock
);
875 list_remove_head(lpfc_iocb_list
, iocb
, struct lpfc_iocbq
, list
);
876 spin_unlock_irq(phba
->host
->host_lock
);
878 pring
->missbufcnt
= cnt
;
881 memset(iocb
, 0, sizeof (struct lpfc_iocbq
));
884 /* 2 buffers can be posted per command */
885 /* Allocate buffer to post */
886 mp1
= kmalloc(sizeof (struct lpfc_dmabuf
), GFP_KERNEL
);
888 mp1
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
,
890 if (mp1
== 0 || mp1
->virt
== 0) {
893 spin_lock_irq(phba
->host
->host_lock
);
894 list_add_tail(&iocb
->list
, lpfc_iocb_list
);
895 spin_unlock_irq(phba
->host
->host_lock
);
896 pring
->missbufcnt
= cnt
;
900 INIT_LIST_HEAD(&mp1
->list
);
901 /* Allocate buffer to post */
903 mp2
= kmalloc(sizeof (struct lpfc_dmabuf
), GFP_KERNEL
);
905 mp2
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
,
907 if (mp2
== 0 || mp2
->virt
== 0) {
910 lpfc_mbuf_free(phba
, mp1
->virt
, mp1
->phys
);
912 spin_lock_irq(phba
->host
->host_lock
);
913 list_add_tail(&iocb
->list
, lpfc_iocb_list
);
914 spin_unlock_irq(phba
->host
->host_lock
);
915 pring
->missbufcnt
= cnt
;
919 INIT_LIST_HEAD(&mp2
->list
);
924 icmd
->un
.cont64
[0].addrHigh
= putPaddrHigh(mp1
->phys
);
925 icmd
->un
.cont64
[0].addrLow
= putPaddrLow(mp1
->phys
);
926 icmd
->un
.cont64
[0].tus
.f
.bdeSize
= FCELSSIZE
;
927 icmd
->ulpBdeCount
= 1;
930 icmd
->un
.cont64
[1].addrHigh
= putPaddrHigh(mp2
->phys
);
931 icmd
->un
.cont64
[1].addrLow
= putPaddrLow(mp2
->phys
);
932 icmd
->un
.cont64
[1].tus
.f
.bdeSize
= FCELSSIZE
;
934 icmd
->ulpBdeCount
= 2;
937 icmd
->ulpCommand
= CMD_QUE_RING_BUF64_CN
;
940 spin_lock_irq(phba
->host
->host_lock
);
941 if (lpfc_sli_issue_iocb(phba
, pring
, iocb
, 0) == IOCB_ERROR
) {
942 lpfc_mbuf_free(phba
, mp1
->virt
, mp1
->phys
);
946 lpfc_mbuf_free(phba
, mp2
->virt
, mp2
->phys
);
950 list_add_tail(&iocb
->list
, lpfc_iocb_list
);
951 pring
->missbufcnt
= cnt
;
952 spin_unlock_irq(phba
->host
->host_lock
);
955 spin_unlock_irq(phba
->host
->host_lock
);
956 lpfc_sli_ringpostbuf_put(phba
, pring
, mp1
);
958 lpfc_sli_ringpostbuf_put(phba
, pring
, mp2
);
961 pring
->missbufcnt
= 0;
965 /************************************************************************/
967 /* lpfc_post_rcv_buf */
968 /* This routine post initial rcv buffers to the configured rings */
970 /************************************************************************/
972 lpfc_post_rcv_buf(struct lpfc_hba
* phba
)
974 struct lpfc_sli
*psli
= &phba
->sli
;
976 /* Ring 0, ELS / CT buffers */
977 lpfc_post_buffer(phba
, &psli
->ring
[LPFC_ELS_RING
], LPFC_BUF_RING0
, 1);
978 /* Ring 2 - FCP no buffers needed */
983 #define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
985 /************************************************************************/
989 /************************************************************************/
991 lpfc_sha_init(uint32_t * HashResultPointer
)
993 HashResultPointer
[0] = 0x67452301;
994 HashResultPointer
[1] = 0xEFCDAB89;
995 HashResultPointer
[2] = 0x98BADCFE;
996 HashResultPointer
[3] = 0x10325476;
997 HashResultPointer
[4] = 0xC3D2E1F0;
1000 /************************************************************************/
1002 /* lpfc_sha_iterate */
1004 /************************************************************************/
1006 lpfc_sha_iterate(uint32_t * HashResultPointer
, uint32_t * HashWorkingPointer
)
1010 uint32_t A
, B
, C
, D
, E
;
1013 HashWorkingPointer
[t
] =
1015 HashWorkingPointer
[t
- 3] ^ HashWorkingPointer
[t
-
1017 HashWorkingPointer
[t
- 14] ^ HashWorkingPointer
[t
- 16]);
1018 } while (++t
<= 79);
1020 A
= HashResultPointer
[0];
1021 B
= HashResultPointer
[1];
1022 C
= HashResultPointer
[2];
1023 D
= HashResultPointer
[3];
1024 E
= HashResultPointer
[4];
1028 TEMP
= ((B
& C
) | ((~B
) & D
)) + 0x5A827999;
1029 } else if (t
< 40) {
1030 TEMP
= (B
^ C
^ D
) + 0x6ED9EBA1;
1031 } else if (t
< 60) {
1032 TEMP
= ((B
& C
) | (B
& D
) | (C
& D
)) + 0x8F1BBCDC;
1034 TEMP
= (B
^ C
^ D
) + 0xCA62C1D6;
1036 TEMP
+= S(5, A
) + E
+ HashWorkingPointer
[t
];
1042 } while (++t
<= 79);
1044 HashResultPointer
[0] += A
;
1045 HashResultPointer
[1] += B
;
1046 HashResultPointer
[2] += C
;
1047 HashResultPointer
[3] += D
;
1048 HashResultPointer
[4] += E
;
1052 /************************************************************************/
1054 /* lpfc_challenge_key */
1056 /************************************************************************/
1058 lpfc_challenge_key(uint32_t * RandomChallenge
, uint32_t * HashWorking
)
1060 *HashWorking
= (*RandomChallenge
^ *HashWorking
);
1063 /************************************************************************/
1067 /************************************************************************/
1069 lpfc_hba_init(struct lpfc_hba
*phba
, uint32_t *hbainit
)
1072 uint32_t *HashWorking
;
1073 uint32_t *pwwnn
= phba
->wwnn
;
1075 HashWorking
= kmalloc(80 * sizeof(uint32_t), GFP_KERNEL
);
1079 memset(HashWorking
, 0, (80 * sizeof(uint32_t)));
1080 HashWorking
[0] = HashWorking
[78] = *pwwnn
++;
1081 HashWorking
[1] = HashWorking
[79] = *pwwnn
;
1083 for (t
= 0; t
< 7; t
++)
1084 lpfc_challenge_key(phba
->RandomData
+ t
, HashWorking
+ t
);
1086 lpfc_sha_init(hbainit
);
1087 lpfc_sha_iterate(hbainit
, HashWorking
);
1092 lpfc_cleanup(struct lpfc_hba
* phba
, uint32_t save_bind
)
1094 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
1096 /* clean up phba - lpfc specific */
1097 lpfc_can_disctmo(phba
);
1098 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_nlpunmap_list
,
1100 lpfc_nlp_remove(phba
, ndlp
);
1103 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_nlpmap_list
,
1105 lpfc_nlp_remove(phba
, ndlp
);
1108 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_unused_list
,
1110 lpfc_nlp_list(phba
, ndlp
, NLP_NO_LIST
);
1113 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_plogi_list
,
1115 lpfc_nlp_remove(phba
, ndlp
);
1118 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_adisc_list
,
1120 lpfc_nlp_remove(phba
, ndlp
);
1123 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_reglogin_list
,
1125 lpfc_nlp_remove(phba
, ndlp
);
1128 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_prli_list
,
1130 lpfc_nlp_remove(phba
, ndlp
);
1133 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_npr_list
,
1135 lpfc_nlp_remove(phba
, ndlp
);
1138 INIT_LIST_HEAD(&phba
->fc_nlpmap_list
);
1139 INIT_LIST_HEAD(&phba
->fc_nlpunmap_list
);
1140 INIT_LIST_HEAD(&phba
->fc_unused_list
);
1141 INIT_LIST_HEAD(&phba
->fc_plogi_list
);
1142 INIT_LIST_HEAD(&phba
->fc_adisc_list
);
1143 INIT_LIST_HEAD(&phba
->fc_reglogin_list
);
1144 INIT_LIST_HEAD(&phba
->fc_prli_list
);
1145 INIT_LIST_HEAD(&phba
->fc_npr_list
);
1147 phba
->fc_map_cnt
= 0;
1148 phba
->fc_unmap_cnt
= 0;
1149 phba
->fc_plogi_cnt
= 0;
1150 phba
->fc_adisc_cnt
= 0;
1151 phba
->fc_reglogin_cnt
= 0;
1152 phba
->fc_prli_cnt
= 0;
1153 phba
->fc_npr_cnt
= 0;
1154 phba
->fc_unused_cnt
= 0;
1159 lpfc_establish_link_tmo(unsigned long ptr
)
1161 struct lpfc_hba
*phba
= (struct lpfc_hba
*)ptr
;
1162 unsigned long iflag
;
1165 /* Re-establishing Link, timer expired */
1166 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
1167 "%d:1300 Re-establishing Link, timer expired "
1169 phba
->brd_no
, phba
->fc_flag
, phba
->hba_state
);
1170 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1171 phba
->fc_flag
&= ~FC_ESTABLISH_LINK
;
1172 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1176 lpfc_stop_timer(struct lpfc_hba
* phba
)
1178 struct lpfc_sli
*psli
= &phba
->sli
;
1180 /* Instead of a timer, this has been converted to a
1181 * deferred procedding list.
1183 while (!list_empty(&phba
->freebufList
)) {
1185 struct lpfc_dmabuf
*mp
= NULL
;
1187 list_remove_head((&phba
->freebufList
), mp
,
1188 struct lpfc_dmabuf
, list
);
1190 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
1195 del_timer_sync(&phba
->fc_estabtmo
);
1196 del_timer_sync(&phba
->fc_disctmo
);
1197 del_timer_sync(&phba
->fc_fdmitmo
);
1198 del_timer_sync(&phba
->els_tmofunc
);
1200 del_timer_sync(&psli
->mbox_tmo
);
1205 lpfc_online(struct lpfc_hba
* phba
)
1210 if (!(phba
->fc_flag
& FC_OFFLINE_MODE
))
1213 lpfc_printf_log(phba
,
1216 "%d:0458 Bring Adapter online\n",
1219 if (!lpfc_sli_queue_setup(phba
))
1222 if (lpfc_sli_hba_setup(phba
)) /* Initialize the HBA */
1225 spin_lock_irq(phba
->host
->host_lock
);
1226 phba
->fc_flag
&= ~FC_OFFLINE_MODE
;
1227 spin_unlock_irq(phba
->host
->host_lock
);
1230 * Restart all traffic to this host. Since the fc_transport block
1231 * functions (future) were not called in lpfc_offline, don't call them
1234 scsi_unblock_requests(phba
->host
);
1239 lpfc_offline(struct lpfc_hba
* phba
)
1241 struct lpfc_sli_ring
*pring
;
1242 struct lpfc_sli
*psli
;
1243 unsigned long iflag
;
1249 if (phba
->fc_flag
& FC_OFFLINE_MODE
)
1253 * Don't call the fc_transport block api (future). The device is
1254 * going offline and causing a timer to fire in the midlayer is
1255 * unproductive. Just block all new requests until the driver
1256 * comes back online.
1258 scsi_block_requests(phba
->host
);
1260 pring
= &psli
->ring
[psli
->fcp_ring
];
1262 lpfc_linkdown(phba
);
1264 /* The linkdown event takes 30 seconds to timeout. */
1265 while (pring
->txcmplq_cnt
) {
1271 /* stop all timers associated with this hba */
1272 lpfc_stop_timer(phba
);
1273 phba
->work_hba_events
= 0;
1275 lpfc_printf_log(phba
,
1278 "%d:0460 Bring Adapter offline\n",
1281 /* Bring down the SLI Layer and cleanup. The HBA is offline
1283 lpfc_sli_hba_down(phba
);
1284 lpfc_cleanup(phba
, 1);
1285 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1286 phba
->fc_flag
|= FC_OFFLINE_MODE
;
1287 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1291 /******************************************************************************
1292 * Function name: lpfc_scsi_free
1294 * Description: Called from lpfc_pci_remove_one free internal driver resources
1296 ******************************************************************************/
1298 lpfc_scsi_free(struct lpfc_hba
* phba
)
1300 struct lpfc_scsi_buf
*sb
, *sb_next
;
1301 struct lpfc_iocbq
*io
, *io_next
;
1303 spin_lock_irq(phba
->host
->host_lock
);
1304 /* Release all the lpfc_scsi_bufs maintained by this host. */
1305 list_for_each_entry_safe(sb
, sb_next
, &phba
->lpfc_scsi_buf_list
, list
) {
1306 list_del(&sb
->list
);
1307 pci_pool_free(phba
->lpfc_scsi_dma_buf_pool
, sb
->data
,
1310 phba
->total_scsi_bufs
--;
1313 /* Release all the lpfc_iocbq entries maintained by this host. */
1314 list_for_each_entry_safe(io
, io_next
, &phba
->lpfc_iocb_list
, list
) {
1315 list_del(&io
->list
);
1317 phba
->total_iocbq_bufs
--;
1320 spin_unlock_irq(phba
->host
->host_lock
);
1326 static int __devinit
1327 lpfc_pci_probe_one(struct pci_dev
*pdev
, const struct pci_device_id
*pid
)
1329 struct Scsi_Host
*host
;
1330 struct lpfc_hba
*phba
;
1331 struct lpfc_sli
*psli
;
1332 struct lpfc_iocbq
*iocbq_entry
= NULL
, *iocbq_next
= NULL
;
1333 unsigned long bar0map_len
, bar2map_len
;
1334 int error
= -ENODEV
, retval
;
1338 if (pci_enable_device(pdev
))
1340 if (pci_request_regions(pdev
, LPFC_DRIVER_NAME
))
1341 goto out_disable_device
;
1343 host
= scsi_host_alloc(&lpfc_template
, sizeof (struct lpfc_hba
));
1345 goto out_release_regions
;
1347 phba
= (struct lpfc_hba
*)host
->hostdata
;
1348 memset(phba
, 0, sizeof (struct lpfc_hba
));
1351 phba
->fc_flag
|= FC_LOADING
;
1352 phba
->pcidev
= pdev
;
1354 /* Assign an unused board number */
1355 if (!idr_pre_get(&lpfc_hba_index
, GFP_KERNEL
))
1358 error
= idr_get_new(&lpfc_hba_index
, NULL
, &phba
->brd_no
);
1362 host
->unique_id
= phba
->brd_no
;
1364 INIT_LIST_HEAD(&phba
->ctrspbuflist
);
1365 INIT_LIST_HEAD(&phba
->rnidrspbuflist
);
1366 INIT_LIST_HEAD(&phba
->freebufList
);
1368 /* Initialize timers used by driver */
1369 init_timer(&phba
->fc_estabtmo
);
1370 phba
->fc_estabtmo
.function
= lpfc_establish_link_tmo
;
1371 phba
->fc_estabtmo
.data
= (unsigned long)phba
;
1372 init_timer(&phba
->fc_disctmo
);
1373 phba
->fc_disctmo
.function
= lpfc_disc_timeout
;
1374 phba
->fc_disctmo
.data
= (unsigned long)phba
;
1376 init_timer(&phba
->fc_fdmitmo
);
1377 phba
->fc_fdmitmo
.function
= lpfc_fdmi_tmo
;
1378 phba
->fc_fdmitmo
.data
= (unsigned long)phba
;
1379 init_timer(&phba
->els_tmofunc
);
1380 phba
->els_tmofunc
.function
= lpfc_els_timeout
;
1381 phba
->els_tmofunc
.data
= (unsigned long)phba
;
1383 init_timer(&psli
->mbox_tmo
);
1384 psli
->mbox_tmo
.function
= lpfc_mbox_timeout
;
1385 psli
->mbox_tmo
.data
= (unsigned long)phba
;
1388 * Get all the module params for configuring this host and then
1389 * establish the host parameters.
1391 lpfc_get_cfgparam(phba
);
1393 host
->max_id
= LPFC_MAX_TARGET
;
1394 host
->max_lun
= phba
->cfg_max_luns
;
1397 /* Initialize all internally managed lists. */
1398 INIT_LIST_HEAD(&phba
->fc_nlpmap_list
);
1399 INIT_LIST_HEAD(&phba
->fc_nlpunmap_list
);
1400 INIT_LIST_HEAD(&phba
->fc_unused_list
);
1401 INIT_LIST_HEAD(&phba
->fc_plogi_list
);
1402 INIT_LIST_HEAD(&phba
->fc_adisc_list
);
1403 INIT_LIST_HEAD(&phba
->fc_reglogin_list
);
1404 INIT_LIST_HEAD(&phba
->fc_prli_list
);
1405 INIT_LIST_HEAD(&phba
->fc_npr_list
);
1408 pci_set_master(pdev
);
1409 retval
= pci_set_mwi(pdev
);
1411 dev_printk(KERN_WARNING
, &pdev
->dev
,
1412 "Warning: pci_set_mwi returned %d\n", retval
);
1414 if (pci_set_dma_mask(phba
->pcidev
, DMA_64BIT_MASK
) != 0)
1415 if (pci_set_dma_mask(phba
->pcidev
, DMA_32BIT_MASK
) != 0)
1416 goto out_idr_remove
;
1419 * Get the bus address of Bar0 and Bar2 and the number of bytes
1420 * required by each mapping.
1422 phba
->pci_bar0_map
= pci_resource_start(phba
->pcidev
, 0);
1423 bar0map_len
= pci_resource_len(phba
->pcidev
, 0);
1425 phba
->pci_bar2_map
= pci_resource_start(phba
->pcidev
, 2);
1426 bar2map_len
= pci_resource_len(phba
->pcidev
, 2);
1428 /* Map HBA SLIM and Control Registers to a kernel virtual address. */
1429 phba
->slim_memmap_p
= ioremap(phba
->pci_bar0_map
, bar0map_len
);
1430 phba
->ctrl_regs_memmap_p
= ioremap(phba
->pci_bar2_map
, bar2map_len
);
1432 /* Allocate memory for SLI-2 structures */
1433 phba
->slim2p
= dma_alloc_coherent(&phba
->pcidev
->dev
, SLI2_SLIM_SIZE
,
1434 &phba
->slim2p_mapping
, GFP_KERNEL
);
1439 /* Initialize the SLI Layer to run with lpfc HBAs. */
1440 lpfc_sli_setup(phba
);
1441 lpfc_sli_queue_setup(phba
);
1443 error
= lpfc_mem_alloc(phba
);
1447 /* Initialize and populate the iocb list per host. */
1448 INIT_LIST_HEAD(&phba
->lpfc_iocb_list
);
1449 for (i
= 0; i
< LPFC_IOCB_LIST_CNT
; i
++) {
1450 iocbq_entry
= kmalloc(sizeof(struct lpfc_iocbq
), GFP_KERNEL
);
1451 if (iocbq_entry
== NULL
) {
1452 printk(KERN_ERR
"%s: only allocated %d iocbs of "
1453 "expected %d count. Unloading driver.\n",
1454 __FUNCTION__
, i
, LPFC_IOCB_LIST_CNT
);
1456 goto out_free_iocbq
;
1459 memset(iocbq_entry
, 0, sizeof(struct lpfc_iocbq
));
1460 spin_lock_irq(phba
->host
->host_lock
);
1461 list_add(&iocbq_entry
->list
, &phba
->lpfc_iocb_list
);
1462 phba
->total_iocbq_bufs
++;
1463 spin_unlock_irq(phba
->host
->host_lock
);
1466 /* Initialize HBA structure */
1467 phba
->fc_edtov
= FF_DEF_EDTOV
;
1468 phba
->fc_ratov
= FF_DEF_RATOV
;
1469 phba
->fc_altov
= FF_DEF_ALTOV
;
1470 phba
->fc_arbtov
= FF_DEF_ARBTOV
;
1472 INIT_LIST_HEAD(&phba
->work_list
);
1473 phba
->work_ha_mask
= (HA_ERATT
|HA_MBATT
|HA_LATT
);
1474 phba
->work_ha_mask
|= (HA_RXMASK
<< (LPFC_ELS_RING
* 4));
1476 /* Startup the kernel thread for this host adapter. */
1477 phba
->worker_thread
= kthread_run(lpfc_do_work
, phba
,
1478 "lpfc_worker_%d", phba
->brd_no
);
1479 if (IS_ERR(phba
->worker_thread
)) {
1480 error
= PTR_ERR(phba
->worker_thread
);
1481 goto out_free_iocbq
;
1484 /* We can rely on a queue depth attribute only after SLI HBA setup */
1485 host
->can_queue
= phba
->cfg_hba_queue_depth
- 10;
1487 /* Tell the midlayer we support 16 byte commands */
1488 host
->max_cmd_len
= 16;
1490 /* Initialize the list of scsi buffers used by driver for scsi IO. */
1491 INIT_LIST_HEAD(&phba
->lpfc_scsi_buf_list
);
1493 host
->transportt
= lpfc_transport_template
;
1494 host
->hostdata
[0] = (unsigned long)phba
;
1495 pci_set_drvdata(pdev
, host
);
1496 error
= scsi_add_host(host
, &pdev
->dev
);
1498 goto out_kthread_stop
;
1500 error
= lpfc_alloc_sysfs_attr(phba
);
1502 goto out_kthread_stop
;
1504 error
= request_irq(phba
->pcidev
->irq
, lpfc_intr_handler
, SA_SHIRQ
,
1505 LPFC_DRIVER_NAME
, phba
);
1507 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
1508 "%d:0451 Enable interrupt handler failed\n",
1510 goto out_free_sysfs_attr
;
1512 phba
->MBslimaddr
= phba
->slim_memmap_p
;
1513 phba
->HAregaddr
= phba
->ctrl_regs_memmap_p
+ HA_REG_OFFSET
;
1514 phba
->CAregaddr
= phba
->ctrl_regs_memmap_p
+ CA_REG_OFFSET
;
1515 phba
->HSregaddr
= phba
->ctrl_regs_memmap_p
+ HS_REG_OFFSET
;
1516 phba
->HCregaddr
= phba
->ctrl_regs_memmap_p
+ HC_REG_OFFSET
;
1518 error
= lpfc_sli_hba_setup(phba
);
1523 * set fixed host attributes
1524 * Must done after lpfc_sli_hba_setup()
1527 memcpy(&wwname
, &phba
->fc_nodename
, sizeof(u64
));
1528 fc_host_node_name(host
) = be64_to_cpu(wwname
);
1529 memcpy(&wwname
, &phba
->fc_portname
, sizeof(u64
));
1530 fc_host_port_name(host
) = be64_to_cpu(wwname
);
1531 fc_host_supported_classes(host
) = FC_COS_CLASS3
;
1533 memset(fc_host_supported_fc4s(host
), 0,
1534 sizeof(fc_host_supported_fc4s(host
)));
1535 fc_host_supported_fc4s(host
)[2] = 1;
1536 fc_host_supported_fc4s(host
)[7] = 1;
1538 lpfc_get_hba_sym_node_name(phba
, fc_host_symbolic_name(host
));
1540 fc_host_supported_speeds(host
) = 0;
1541 switch (FC_JEDEC_ID(phba
->vpd
.rev
.biuRev
)) {
1542 case VIPER_JEDEC_ID
:
1543 fc_host_supported_speeds(host
) |= FC_PORTSPEED_10GBIT
;
1545 case HELIOS_JEDEC_ID
:
1546 fc_host_supported_speeds(host
) |= FC_PORTSPEED_4GBIT
;
1548 case CENTAUR_2G_JEDEC_ID
:
1549 case PEGASUS_JEDEC_ID
:
1551 fc_host_supported_speeds(host
) |= FC_PORTSPEED_2GBIT
;
1554 fc_host_supported_speeds(host
) = FC_PORTSPEED_1GBIT
;
1557 fc_host_maxframe_size(host
) =
1558 ((((uint32_t) phba
->fc_sparam
.cmn
.bbRcvSizeMsb
& 0x0F) << 8) |
1559 (uint32_t) phba
->fc_sparam
.cmn
.bbRcvSizeLsb
);
1561 /* This value is also unchanging */
1562 memset(fc_host_active_fc4s(host
), 0,
1563 sizeof(fc_host_active_fc4s(host
)));
1564 fc_host_active_fc4s(host
)[2] = 1;
1565 fc_host_active_fc4s(host
)[7] = 1;
1567 spin_lock_irq(phba
->host
->host_lock
);
1568 phba
->fc_flag
&= ~FC_LOADING
;
1569 spin_unlock_irq(phba
->host
->host_lock
);
1573 lpfc_stop_timer(phba
);
1574 phba
->work_hba_events
= 0;
1575 free_irq(phba
->pcidev
->irq
, phba
);
1576 out_free_sysfs_attr
:
1577 lpfc_free_sysfs_attr(phba
);
1579 kthread_stop(phba
->worker_thread
);
1581 list_for_each_entry_safe(iocbq_entry
, iocbq_next
,
1582 &phba
->lpfc_iocb_list
, list
) {
1583 spin_lock_irq(phba
->host
->host_lock
);
1585 phba
->total_iocbq_bufs
--;
1586 spin_unlock_irq(phba
->host
->host_lock
);
1588 lpfc_mem_free(phba
);
1590 dma_free_coherent(&pdev
->dev
, SLI2_SLIM_SIZE
, phba
->slim2p
,
1591 phba
->slim2p_mapping
);
1593 iounmap(phba
->ctrl_regs_memmap_p
);
1594 iounmap(phba
->slim_memmap_p
);
1596 idr_remove(&lpfc_hba_index
, phba
->brd_no
);
1598 scsi_host_put(host
);
1599 out_release_regions
:
1600 pci_release_regions(pdev
);
1602 pci_disable_device(pdev
);
1607 static void __devexit
1608 lpfc_pci_remove_one(struct pci_dev
*pdev
)
1610 struct Scsi_Host
*host
= pci_get_drvdata(pdev
);
1611 struct lpfc_hba
*phba
= (struct lpfc_hba
*)host
->hostdata
[0];
1612 unsigned long iflag
;
1614 lpfc_free_sysfs_attr(phba
);
1616 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1617 phba
->fc_flag
|= FC_UNLOADING
;
1619 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1621 fc_remove_host(phba
->host
);
1622 scsi_remove_host(phba
->host
);
1624 kthread_stop(phba
->worker_thread
);
1627 * Bring down the SLI Layer. This step disable all interrupts,
1628 * clears the rings, discards all mailbox commands, and resets
1631 lpfc_sli_hba_down(phba
);
1633 /* Release the irq reservation */
1634 free_irq(phba
->pcidev
->irq
, phba
);
1636 lpfc_cleanup(phba
, 0);
1637 lpfc_stop_timer(phba
);
1638 phba
->work_hba_events
= 0;
1641 * Call scsi_free before mem_free since scsi bufs are released to their
1642 * corresponding pools here.
1644 lpfc_scsi_free(phba
);
1645 lpfc_mem_free(phba
);
1647 /* Free resources associated with SLI2 interface */
1648 dma_free_coherent(&pdev
->dev
, SLI2_SLIM_SIZE
,
1649 phba
->slim2p
, phba
->slim2p_mapping
);
1651 /* unmap adapter SLIM and Control Registers */
1652 iounmap(phba
->ctrl_regs_memmap_p
);
1653 iounmap(phba
->slim_memmap_p
);
1655 pci_release_regions(phba
->pcidev
);
1656 pci_disable_device(phba
->pcidev
);
1658 idr_remove(&lpfc_hba_index
, phba
->brd_no
);
1659 scsi_host_put(phba
->host
);
1661 pci_set_drvdata(pdev
, NULL
);
1664 static struct pci_device_id lpfc_id_table
[] = {
1665 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_VIPER
,
1666 PCI_ANY_ID
, PCI_ANY_ID
, },
1667 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_FIREFLY
,
1668 PCI_ANY_ID
, PCI_ANY_ID
, },
1669 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_THOR
,
1670 PCI_ANY_ID
, PCI_ANY_ID
, },
1671 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PEGASUS
,
1672 PCI_ANY_ID
, PCI_ANY_ID
, },
1673 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_CENTAUR
,
1674 PCI_ANY_ID
, PCI_ANY_ID
, },
1675 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_DRAGONFLY
,
1676 PCI_ANY_ID
, PCI_ANY_ID
, },
1677 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SUPERFLY
,
1678 PCI_ANY_ID
, PCI_ANY_ID
, },
1679 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_RFLY
,
1680 PCI_ANY_ID
, PCI_ANY_ID
, },
1681 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PFLY
,
1682 PCI_ANY_ID
, PCI_ANY_ID
, },
1683 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_HELIOS
,
1684 PCI_ANY_ID
, PCI_ANY_ID
, },
1685 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_BMID
,
1686 PCI_ANY_ID
, PCI_ANY_ID
, },
1687 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_BSMB
,
1688 PCI_ANY_ID
, PCI_ANY_ID
, },
1689 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZEPHYR
,
1690 PCI_ANY_ID
, PCI_ANY_ID
, },
1691 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZMID
,
1692 PCI_ANY_ID
, PCI_ANY_ID
, },
1693 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZSMB
,
1694 PCI_ANY_ID
, PCI_ANY_ID
, },
1695 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_TFLY
,
1696 PCI_ANY_ID
, PCI_ANY_ID
, },
1697 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LP101
,
1698 PCI_ANY_ID
, PCI_ANY_ID
, },
1699 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LP10000S
,
1700 PCI_ANY_ID
, PCI_ANY_ID
, },
1704 MODULE_DEVICE_TABLE(pci
, lpfc_id_table
);
1706 static struct pci_driver lpfc_driver
= {
1707 .name
= LPFC_DRIVER_NAME
,
1708 .id_table
= lpfc_id_table
,
1709 .probe
= lpfc_pci_probe_one
,
1710 .remove
= __devexit_p(lpfc_pci_remove_one
),
1718 printk(LPFC_MODULE_DESC
"\n");
1719 printk(LPFC_COPYRIGHT
"\n");
1721 lpfc_transport_template
=
1722 fc_attach_transport(&lpfc_transport_functions
);
1723 if (!lpfc_transport_template
)
1725 error
= pci_register_driver(&lpfc_driver
);
1727 fc_release_transport(lpfc_transport_template
);
1735 pci_unregister_driver(&lpfc_driver
);
1736 fc_release_transport(lpfc_transport_template
);
1739 module_init(lpfc_init
);
1740 module_exit(lpfc_exit
);
1741 MODULE_LICENSE("GPL");
1742 MODULE_DESCRIPTION(LPFC_MODULE_DESC
);
1743 MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
1744 MODULE_VERSION("0:" LPFC_DRIVER_VERSION
);