1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Enterprise Fibre Channel Host Bus Adapters. *
4 * Refer to the README file included with this package for *
5 * driver version and adapter support. *
6 * Copyright (C) 2004 Emulex Corporation. *
9 * This program is free software; you can redistribute it and/or *
10 * modify it under the terms of the GNU General Public License *
11 * as published by the Free Software Foundation; either version 2 *
12 * of the License, or (at your option) any later version. *
14 * This program is distributed in the hope that it will be useful, *
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17 * GNU General Public License for more details, a copy of which *
18 * can be found in the file COPYING included with this package. *
19 *******************************************************************/
22 * $Id: lpfc_init.c 1.233 2005/04/13 11:59:09EDT sf_support Exp $
25 #include <linux/blkdev.h>
26 #include <linux/delay.h>
27 #include <linux/dma-mapping.h>
28 #include <linux/idr.h>
29 #include <linux/interrupt.h>
30 #include <linux/kthread.h>
31 #include <linux/pci.h>
32 #include <linux/spinlock.h>
34 #include <scsi/scsi_device.h>
35 #include <scsi/scsi_host.h>
36 #include <scsi/scsi_transport_fc.h>
40 #include "lpfc_disc.h"
41 #include "lpfc_scsi.h"
43 #include "lpfc_logmsg.h"
44 #include "lpfc_crtn.h"
45 #include "lpfc_version.h"
47 static int lpfc_parse_vpd(struct lpfc_hba
*, uint8_t *);
48 static void lpfc_get_hba_model_desc(struct lpfc_hba
*, uint8_t *, uint8_t *);
49 static int lpfc_post_rcv_buf(struct lpfc_hba
*);
51 static struct scsi_transport_template
*lpfc_transport_template
= NULL
;
52 static DEFINE_IDR(lpfc_hba_index
);
54 /************************************************************************/
56 /* lpfc_config_port_prep */
57 /* This routine will do LPFC initialization prior to the */
58 /* CONFIG_PORT mailbox command. This will be initialized */
59 /* as a SLI layer callback routine. */
60 /* This routine returns 0 on success or -ERESTART if it wants */
61 /* the SLI layer to reset the HBA and try again. Any */
62 /* other return value indicates an error. */
64 /************************************************************************/
66 lpfc_config_port_prep(struct lpfc_hba
* phba
)
68 lpfc_vpd_t
*vp
= &phba
->vpd
;
72 char *lpfc_vpd_data
= NULL
;
74 static char licensed
[56] =
75 "key unlock for use with gnu public licensed code only\0";
77 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
79 phba
->hba_state
= LPFC_HBA_ERROR
;
84 phba
->hba_state
= LPFC_INIT_MBX_CMDS
;
86 if (lpfc_is_LC_HBA(phba
->pcidev
->device
)) {
87 uint32_t *ptext
= (uint32_t *) licensed
;
89 for (i
= 0; i
< 56; i
+= sizeof (uint32_t), ptext
++)
90 *ptext
= cpu_to_be32(*ptext
);
92 lpfc_read_nv(phba
, pmb
);
93 memset((char*)mb
->un
.varRDnvp
.rsvd3
, 0,
94 sizeof (mb
->un
.varRDnvp
.rsvd3
));
95 memcpy((char*)mb
->un
.varRDnvp
.rsvd3
, licensed
,
98 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
100 if (rc
!= MBX_SUCCESS
) {
101 lpfc_printf_log(phba
,
104 "%d:0324 Config Port initialization "
105 "error, mbxCmd x%x READ_NVPARM, "
108 mb
->mbxCommand
, mb
->mbxStatus
);
109 mempool_free(pmb
, phba
->mbox_mem_pool
);
112 memcpy(phba
->wwnn
, (char *)mb
->un
.varRDnvp
.nodename
,
113 sizeof (mb
->un
.varRDnvp
.nodename
));
116 /* Setup and issue mailbox READ REV command */
117 lpfc_read_rev(phba
, pmb
);
118 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
119 if (rc
!= MBX_SUCCESS
) {
120 lpfc_printf_log(phba
,
123 "%d:0439 Adapter failed to init, mbxCmd x%x "
124 "READ_REV, mbxStatus x%x\n",
126 mb
->mbxCommand
, mb
->mbxStatus
);
127 mempool_free( pmb
, phba
->mbox_mem_pool
);
131 /* The HBA's current state is provided by the ProgType and rr fields.
132 * Read and check the value of these fields before continuing to config
135 if (mb
->un
.varRdRev
.rr
== 0 || mb
->un
.varRdRev
.un
.b
.ProgType
!= 2) {
138 lpfc_printf_log(phba
,
141 "%d:0440 Adapter failed to init, mbxCmd x%x "
142 "READ_REV detected outdated firmware"
146 mempool_free(pmb
, phba
->mbox_mem_pool
);
150 vp
->rev
.sli1FwRev
= mb
->un
.varRdRev
.sli1FwRev
;
151 memcpy(vp
->rev
.sli1FwName
,
152 (char*)mb
->un
.varRdRev
.sli1FwName
, 16);
153 vp
->rev
.sli2FwRev
= mb
->un
.varRdRev
.sli2FwRev
;
154 memcpy(vp
->rev
.sli2FwName
,
155 (char *)mb
->un
.varRdRev
.sli2FwName
, 16);
158 /* Save information as VPD data */
159 vp
->rev
.biuRev
= mb
->un
.varRdRev
.biuRev
;
160 vp
->rev
.smRev
= mb
->un
.varRdRev
.smRev
;
161 vp
->rev
.smFwRev
= mb
->un
.varRdRev
.un
.smFwRev
;
162 vp
->rev
.endecRev
= mb
->un
.varRdRev
.endecRev
;
163 vp
->rev
.fcphHigh
= mb
->un
.varRdRev
.fcphHigh
;
164 vp
->rev
.fcphLow
= mb
->un
.varRdRev
.fcphLow
;
165 vp
->rev
.feaLevelHigh
= mb
->un
.varRdRev
.feaLevelHigh
;
166 vp
->rev
.feaLevelLow
= mb
->un
.varRdRev
.feaLevelLow
;
167 vp
->rev
.postKernRev
= mb
->un
.varRdRev
.postKernRev
;
168 vp
->rev
.opFwRev
= mb
->un
.varRdRev
.opFwRev
;
170 if (lpfc_is_LC_HBA(phba
->pcidev
->device
))
171 memcpy(phba
->RandomData
, (char *)&mb
->un
.varWords
[24],
172 sizeof (phba
->RandomData
));
174 /* Get the default values for Model Name and Description */
175 lpfc_get_hba_model_desc(phba
, phba
->ModelName
, phba
->ModelDesc
);
177 /* Get adapter VPD information */
178 pmb
->context2
= kmalloc(DMP_RSP_SIZE
, GFP_KERNEL
);
181 lpfc_vpd_data
= kmalloc(DMP_VPD_SIZE
, GFP_KERNEL
);
183 goto out_free_context2
;
186 lpfc_dump_mem(phba
, pmb
, offset
);
187 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
189 if (rc
!= MBX_SUCCESS
) {
190 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
191 "%d:0441 VPD not present on adapter, "
192 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
194 mb
->mbxCommand
, mb
->mbxStatus
);
195 kfree(lpfc_vpd_data
);
196 lpfc_vpd_data
= NULL
;
200 lpfc_sli_pcimem_bcopy(pmb
->context2
, lpfc_vpd_data
+ offset
,
201 mb
->un
.varDmp
.word_cnt
);
202 offset
+= mb
->un
.varDmp
.word_cnt
;
203 } while (mb
->un
.varDmp
.word_cnt
);
204 lpfc_parse_vpd(phba
, lpfc_vpd_data
);
206 kfree(lpfc_vpd_data
);
208 kfree(pmb
->context2
);
210 mempool_free(pmb
, phba
->mbox_mem_pool
);
214 /************************************************************************/
216 /* lpfc_config_port_post */
217 /* This routine will do LPFC initialization after the */
218 /* CONFIG_PORT mailbox command. This will be initialized */
219 /* as a SLI layer callback routine. */
220 /* This routine returns 0 on success. Any other return value */
221 /* indicates an error. */
223 /************************************************************************/
225 lpfc_config_port_post(struct lpfc_hba
* phba
)
229 struct lpfc_dmabuf
*mp
;
230 struct lpfc_sli
*psli
= &phba
->sli
;
231 uint32_t status
, timeout
;
234 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
236 phba
->hba_state
= LPFC_HBA_ERROR
;
241 lpfc_config_link(phba
, pmb
);
242 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
243 if (rc
!= MBX_SUCCESS
) {
244 lpfc_printf_log(phba
,
247 "%d:0447 Adapter failed init, mbxCmd x%x "
248 "CONFIG_LINK mbxStatus x%x\n",
250 mb
->mbxCommand
, mb
->mbxStatus
);
251 phba
->hba_state
= LPFC_HBA_ERROR
;
252 mempool_free( pmb
, phba
->mbox_mem_pool
);
256 /* Get login parameters for NID. */
257 lpfc_read_sparam(phba
, pmb
);
258 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
259 lpfc_printf_log(phba
,
262 "%d:0448 Adapter failed init, mbxCmd x%x "
263 "READ_SPARM mbxStatus x%x\n",
265 mb
->mbxCommand
, mb
->mbxStatus
);
266 phba
->hba_state
= LPFC_HBA_ERROR
;
267 mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
268 mempool_free( pmb
, phba
->mbox_mem_pool
);
269 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
274 mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
276 memcpy(&phba
->fc_sparam
, mp
->virt
, sizeof (struct serv_parm
));
277 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
279 pmb
->context1
= NULL
;
281 memcpy(&phba
->fc_nodename
, &phba
->fc_sparam
.nodeName
,
282 sizeof (struct lpfc_name
));
283 memcpy(&phba
->fc_portname
, &phba
->fc_sparam
.portName
,
284 sizeof (struct lpfc_name
));
285 /* If no serial number in VPD data, use low 6 bytes of WWNN */
286 /* This should be consolidated into parse_vpd ? - mr */
287 if (phba
->SerialNumber
[0] == 0) {
290 outptr
= (uint8_t *) & phba
->fc_nodename
.IEEE
[0];
291 for (i
= 0; i
< 12; i
++) {
293 j
= ((status
& 0xf0) >> 4);
295 phba
->SerialNumber
[i
] =
296 (char)((uint8_t) 0x30 + (uint8_t) j
);
298 phba
->SerialNumber
[i
] =
299 (char)((uint8_t) 0x61 + (uint8_t) (j
- 10));
303 phba
->SerialNumber
[i
] =
304 (char)((uint8_t) 0x30 + (uint8_t) j
);
306 phba
->SerialNumber
[i
] =
307 (char)((uint8_t) 0x61 + (uint8_t) (j
- 10));
311 /* This should turn on DELAYED ABTS for ELS timeouts */
312 lpfc_set_slim(phba
, pmb
, 0x052198, 0x1);
313 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
314 phba
->hba_state
= LPFC_HBA_ERROR
;
315 mempool_free( pmb
, phba
->mbox_mem_pool
);
320 lpfc_read_config(phba
, pmb
);
321 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
322 lpfc_printf_log(phba
,
325 "%d:0453 Adapter failed to init, mbxCmd x%x "
326 "READ_CONFIG, mbxStatus x%x\n",
328 mb
->mbxCommand
, mb
->mbxStatus
);
329 phba
->hba_state
= LPFC_HBA_ERROR
;
330 mempool_free( pmb
, phba
->mbox_mem_pool
);
334 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
335 if (phba
->cfg_hba_queue_depth
> (mb
->un
.varRdConfig
.max_xri
+1))
336 phba
->cfg_hba_queue_depth
=
337 mb
->un
.varRdConfig
.max_xri
+ 1;
339 phba
->lmt
= mb
->un
.varRdConfig
.lmt
;
340 /* HBA is not 4GB capable, or HBA is not 2GB capable,
341 don't let link speed ask for it */
342 if ((((phba
->lmt
& LMT_4250_10bit
) != LMT_4250_10bit
) &&
343 (phba
->cfg_link_speed
> LINK_SPEED_2G
)) ||
344 (((phba
->lmt
& LMT_2125_10bit
) != LMT_2125_10bit
) &&
345 (phba
->cfg_link_speed
> LINK_SPEED_1G
))) {
346 /* Reset link speed to auto. 1G/2GB HBA cfg'd for 4G */
347 lpfc_printf_log(phba
,
350 "%d:1302 Invalid speed for this board: "
351 "Reset link speed to auto: x%x\n",
353 phba
->cfg_link_speed
);
354 phba
->cfg_link_speed
= LINK_SPEED_AUTO
;
357 phba
->hba_state
= LPFC_LINK_DOWN
;
359 /* Only process IOCBs on ring 0 till hba_state is READY */
360 if (psli
->ring
[psli
->ip_ring
].cmdringaddr
)
361 psli
->ring
[psli
->ip_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
362 if (psli
->ring
[psli
->fcp_ring
].cmdringaddr
)
363 psli
->ring
[psli
->fcp_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
364 if (psli
->ring
[psli
->next_ring
].cmdringaddr
)
365 psli
->ring
[psli
->next_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
367 /* Post receive buffers for desired rings */
368 lpfc_post_rcv_buf(phba
);
370 /* Enable appropriate host interrupts */
371 spin_lock_irq(phba
->host
->host_lock
);
372 status
= readl(phba
->HCregaddr
);
373 status
|= HC_MBINT_ENA
| HC_ERINT_ENA
| HC_LAINT_ENA
;
374 if (psli
->num_rings
> 0)
375 status
|= HC_R0INT_ENA
;
376 if (psli
->num_rings
> 1)
377 status
|= HC_R1INT_ENA
;
378 if (psli
->num_rings
> 2)
379 status
|= HC_R2INT_ENA
;
380 if (psli
->num_rings
> 3)
381 status
|= HC_R3INT_ENA
;
383 writel(status
, phba
->HCregaddr
);
384 readl(phba
->HCregaddr
); /* flush */
385 spin_unlock_irq(phba
->host
->host_lock
);
388 * Setup the ring 0 (els) timeout handler
390 timeout
= phba
->fc_ratov
<< 1;
391 phba
->els_tmofunc
.expires
= jiffies
+ HZ
* timeout
;
392 add_timer(&phba
->els_tmofunc
);
394 lpfc_init_link(phba
, pmb
, phba
->cfg_topology
, phba
->cfg_link_speed
);
395 pmb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
396 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
) != MBX_SUCCESS
) {
397 lpfc_printf_log(phba
,
400 "%d:0454 Adapter failed to init, mbxCmd x%x "
401 "INIT_LINK, mbxStatus x%x\n",
403 mb
->mbxCommand
, mb
->mbxStatus
);
405 /* Clear all interrupt enable conditions */
406 writel(0, phba
->HCregaddr
);
407 readl(phba
->HCregaddr
); /* flush */
408 /* Clear all pending interrupts */
409 writel(0xffffffff, phba
->HAregaddr
);
410 readl(phba
->HAregaddr
); /* flush */
412 phba
->hba_state
= LPFC_HBA_ERROR
;
413 mempool_free(pmb
, phba
->mbox_mem_pool
);
416 /* MBOX buffer will be freed in mbox compl */
419 while ((phba
->hba_state
!= LPFC_HBA_READY
) ||
420 (phba
->num_disc_nodes
) || (phba
->fc_prli_sent
) ||
421 ((phba
->fc_map_cnt
== 0) && (i
<2)) ||
422 (psli
->sli_flag
& LPFC_SLI_MBOX_ACTIVE
)) {
423 /* Check every second for 30 retries. */
428 if ((i
>= 15) && (phba
->hba_state
<= LPFC_LINK_DOWN
)) {
429 /* The link is down. Set linkdown timeout */
433 /* Delay for 1 second to give discovery time to complete. */
438 /* Since num_disc_nodes keys off of PLOGI, delay a bit to let
439 * any potential PRLIs to flush thru the SLI sub-system.
446 /************************************************************************/
448 /* lpfc_hba_down_prep */
449 /* This routine will do LPFC uninitialization before the */
450 /* HBA is reset when bringing down the SLI Layer. This will be */
451 /* initialized as a SLI layer callback routine. */
452 /* This routine returns 0 on success. Any other return value */
453 /* indicates an error. */
455 /************************************************************************/
457 lpfc_hba_down_prep(struct lpfc_hba
* phba
)
459 /* Disable interrupts */
460 writel(0, phba
->HCregaddr
);
461 readl(phba
->HCregaddr
); /* flush */
463 /* Cleanup potential discovery resources */
464 lpfc_els_flush_rscn(phba
);
465 lpfc_els_flush_cmd(phba
);
466 lpfc_disc_flush_list(phba
);
471 /************************************************************************/
473 /* lpfc_handle_eratt */
474 /* This routine will handle processing a Host Attention */
475 /* Error Status event. This will be initialized */
476 /* as a SLI layer callback routine. */
478 /************************************************************************/
480 lpfc_handle_eratt(struct lpfc_hba
* phba
)
482 struct lpfc_sli
*psli
= &phba
->sli
;
483 struct lpfc_sli_ring
*pring
;
486 * If a reset is sent to the HBA restore PCI configuration registers.
488 if ( phba
->hba_state
== LPFC_INIT_START
) {
490 readl(phba
->HCregaddr
); /* flush */
491 writel(0, phba
->HCregaddr
);
492 readl(phba
->HCregaddr
); /* flush */
494 /* Restore PCI cmd register */
495 pci_write_config_word(phba
->pcidev
,
496 PCI_COMMAND
, phba
->pci_cfg_value
);
499 if (phba
->work_hs
& HS_FFER6
) {
500 /* Re-establishing Link */
501 lpfc_printf_log(phba
, KERN_INFO
, LOG_LINK_EVENT
,
502 "%d:1301 Re-establishing Link "
503 "Data: x%x x%x x%x\n",
504 phba
->brd_no
, phba
->work_hs
,
505 phba
->work_status
[0], phba
->work_status
[1]);
506 spin_lock_irq(phba
->host
->host_lock
);
507 phba
->fc_flag
|= FC_ESTABLISH_LINK
;
508 spin_unlock_irq(phba
->host
->host_lock
);
511 * Firmware stops when it triggled erratt with HS_FFER6.
512 * That could cause the I/Os dropped by the firmware.
513 * Error iocb (I/O) on txcmplq and let the SCSI layer
514 * retry it after re-establishing link.
516 pring
= &psli
->ring
[psli
->fcp_ring
];
517 lpfc_sli_abort_iocb_ring(phba
, pring
);
521 * There was a firmware error. Take the hba offline and then
522 * attempt to restart it.
525 if (lpfc_online(phba
) == 0) { /* Initialize the HBA */
526 mod_timer(&phba
->fc_estabtmo
, jiffies
+ HZ
* 60);
530 /* The if clause above forces this code path when the status
531 * failure is a value other than FFER6. Do not call the offline
532 * twice. This is the adapter hardware error path.
534 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
535 "%d:0457 Adapter Hardware Error "
536 "Data: x%x x%x x%x\n",
537 phba
->brd_no
, phba
->work_hs
,
538 phba
->work_status
[0], phba
->work_status
[1]);
543 * Restart all traffic to this host. Since the fc_transport
544 * block functions (future) were not called in lpfc_offline,
545 * don't call them here.
547 scsi_unblock_requests(phba
->host
);
551 /************************************************************************/
553 /* lpfc_handle_latt */
554 /* This routine will handle processing a Host Attention */
555 /* Link Status event. This will be initialized */
556 /* as a SLI layer callback routine. */
558 /************************************************************************/
560 lpfc_handle_latt(struct lpfc_hba
* phba
)
562 struct lpfc_sli
*psli
= &phba
->sli
;
564 volatile uint32_t control
;
565 struct lpfc_dmabuf
*mp
;
568 pmb
= (LPFC_MBOXQ_t
*)mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
570 goto lpfc_handle_latt_err_exit
;
572 mp
= kmalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
574 goto lpfc_handle_latt_free_pmb
;
576 mp
->virt
= lpfc_mbuf_alloc(phba
, 0, &mp
->phys
);
578 goto lpfc_handle_latt_free_mp
;
583 psli
->slistat
.link_event
++;
584 lpfc_read_la(phba
, pmb
, mp
);
585 pmb
->mbox_cmpl
= lpfc_mbx_cmpl_read_la
;
586 rc
= lpfc_sli_issue_mbox (phba
, pmb
, (MBX_NOWAIT
| MBX_STOP_IOCB
));
587 if (rc
== MBX_NOT_FINISHED
)
588 goto lpfc_handle_latt_free_mp
;
590 /* Clear Link Attention in HA REG */
591 spin_lock_irq(phba
->host
->host_lock
);
592 writel(HA_LATT
, phba
->HAregaddr
);
593 readl(phba
->HAregaddr
); /* flush */
594 spin_unlock_irq(phba
->host
->host_lock
);
598 lpfc_handle_latt_free_mp
:
600 lpfc_handle_latt_free_pmb
:
602 lpfc_handle_latt_err_exit
:
603 /* Enable Link attention interrupts */
604 spin_lock_irq(phba
->host
->host_lock
);
605 psli
->sli_flag
|= LPFC_PROCESS_LA
;
606 control
= readl(phba
->HCregaddr
);
607 control
|= HC_LAINT_ENA
;
608 writel(control
, phba
->HCregaddr
);
609 readl(phba
->HCregaddr
); /* flush */
611 /* Clear Link Attention in HA REG */
612 writel(HA_LATT
, phba
->HAregaddr
);
613 readl(phba
->HAregaddr
); /* flush */
614 spin_unlock_irq(phba
->host
->host_lock
);
616 phba
->hba_state
= LPFC_HBA_ERROR
;
618 /* The other case is an error from issue_mbox */
620 lpfc_printf_log(phba
,
623 "%d:0300 READ_LA: no buffers\n",
629 /************************************************************************/
632 /* This routine will parse the VPD data */
634 /************************************************************************/
636 lpfc_parse_vpd(struct lpfc_hba
* phba
, uint8_t * vpd
)
638 uint8_t lenlo
, lenhi
;
648 lpfc_printf_log(phba
,
651 "%d:0455 Vital Product Data: x%x x%x x%x x%x\n",
653 (uint32_t) vpd
[0], (uint32_t) vpd
[1], (uint32_t) vpd
[2],
656 switch (vpd
[index
]) {
663 i
= ((((unsigned short)lenhi
) << 8) + lenlo
);
672 Length
= ((((unsigned short)lenhi
) << 8) + lenlo
);
675 /* Look for Serial Number */
676 if ((vpd
[index
] == 'S') && (vpd
[index
+1] == 'N')) {
683 phba
->SerialNumber
[j
++] = vpd
[index
++];
687 phba
->SerialNumber
[j
] = 0;
690 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '1')) {
691 phba
->vpd_flag
|= VPD_MODEL_DESC
;
698 phba
->ModelDesc
[j
++] = vpd
[index
++];
702 phba
->ModelDesc
[j
] = 0;
705 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '2')) {
706 phba
->vpd_flag
|= VPD_MODEL_NAME
;
713 phba
->ModelName
[j
++] = vpd
[index
++];
717 phba
->ModelName
[j
] = 0;
720 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '3')) {
721 phba
->vpd_flag
|= VPD_PROGRAM_TYPE
;
728 phba
->ProgramType
[j
++] = vpd
[index
++];
732 phba
->ProgramType
[j
] = 0;
735 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '4')) {
736 phba
->vpd_flag
|= VPD_PORT
;
743 phba
->Port
[j
++] = vpd
[index
++];
767 } while (!finished
&& (index
< 108));
773 lpfc_get_hba_model_desc(struct lpfc_hba
* phba
, uint8_t * mdp
, uint8_t * descp
)
780 pci_read_config_dword(phba
->pcidev
, PCI_VENDOR_ID
, &id
);
782 switch ((id
>> 16) & 0xffff) {
783 case PCI_DEVICE_ID_SUPERFLY
:
784 if (vp
->rev
.biuRev
>= 1 && vp
->rev
.biuRev
<= 3)
785 strcpy(str
, "LP7000 1");
787 strcpy(str
, "LP7000E 1");
789 case PCI_DEVICE_ID_DRAGONFLY
:
790 strcpy(str
, "LP8000 1");
792 case PCI_DEVICE_ID_CENTAUR
:
793 if (FC_JEDEC_ID(vp
->rev
.biuRev
) == CENTAUR_2G_JEDEC_ID
)
794 strcpy(str
, "LP9002 2");
796 strcpy(str
, "LP9000 1");
798 case PCI_DEVICE_ID_RFLY
:
799 strcpy(str
, "LP952 2");
801 case PCI_DEVICE_ID_PEGASUS
:
802 strcpy(str
, "LP9802 2");
804 case PCI_DEVICE_ID_THOR
:
805 strcpy(str
, "LP10000 2");
807 case PCI_DEVICE_ID_VIPER
:
808 strcpy(str
, "LPX1000 10");
810 case PCI_DEVICE_ID_PFLY
:
811 strcpy(str
, "LP982 2");
813 case PCI_DEVICE_ID_TFLY
:
814 strcpy(str
, "LP1050 2");
816 case PCI_DEVICE_ID_HELIOS
:
817 strcpy(str
, "LP11000 4");
819 case PCI_DEVICE_ID_BMID
:
820 strcpy(str
, "LP1150 4");
822 case PCI_DEVICE_ID_BSMB
:
823 strcpy(str
, "LP111 4");
825 case PCI_DEVICE_ID_ZEPHYR
:
826 strcpy(str
, "LP11000e 4");
828 case PCI_DEVICE_ID_ZMID
:
829 strcpy(str
, "LP1150e 4");
831 case PCI_DEVICE_ID_ZSMB
:
832 strcpy(str
, "LP111e 4");
834 case PCI_DEVICE_ID_LP101
:
835 strcpy(str
, "LP101 2");
837 case PCI_DEVICE_ID_LP10000S
:
838 strcpy(str
, "LP10000-S 2");
842 sscanf(str
, "%s", mdp
);
844 sprintf(descp
, "Emulex LightPulse %s Gigabit PCI Fibre "
845 "Channel Adapter", str
);
848 /**************************************************/
849 /* lpfc_post_buffer */
851 /* This routine will post count buffers to the */
852 /* ring with the QUE_RING_BUF_CN command. This */
853 /* allows 3 buffers / command to be posted. */
854 /* Returns the number of buffers NOT posted. */
855 /**************************************************/
857 lpfc_post_buffer(struct lpfc_hba
* phba
, struct lpfc_sli_ring
* pring
, int cnt
,
861 struct list_head
*lpfc_iocb_list
= &phba
->lpfc_iocb_list
;
862 struct lpfc_iocbq
*iocb
= NULL
;
863 struct lpfc_dmabuf
*mp1
, *mp2
;
865 cnt
+= pring
->missbufcnt
;
867 /* While there are buffers to post */
869 /* Allocate buffer for command iocb */
870 spin_lock_irq(phba
->host
->host_lock
);
871 list_remove_head(lpfc_iocb_list
, iocb
, struct lpfc_iocbq
, list
);
872 spin_unlock_irq(phba
->host
->host_lock
);
874 pring
->missbufcnt
= cnt
;
877 memset(iocb
, 0, sizeof (struct lpfc_iocbq
));
880 /* 2 buffers can be posted per command */
881 /* Allocate buffer to post */
882 mp1
= kmalloc(sizeof (struct lpfc_dmabuf
), GFP_KERNEL
);
884 mp1
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
,
886 if (mp1
== 0 || mp1
->virt
== 0) {
889 spin_lock_irq(phba
->host
->host_lock
);
890 list_add_tail(&iocb
->list
, lpfc_iocb_list
);
891 spin_unlock_irq(phba
->host
->host_lock
);
892 pring
->missbufcnt
= cnt
;
896 INIT_LIST_HEAD(&mp1
->list
);
897 /* Allocate buffer to post */
899 mp2
= kmalloc(sizeof (struct lpfc_dmabuf
), GFP_KERNEL
);
901 mp2
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
,
903 if (mp2
== 0 || mp2
->virt
== 0) {
906 lpfc_mbuf_free(phba
, mp1
->virt
, mp1
->phys
);
908 spin_lock_irq(phba
->host
->host_lock
);
909 list_add_tail(&iocb
->list
, lpfc_iocb_list
);
910 spin_unlock_irq(phba
->host
->host_lock
);
911 pring
->missbufcnt
= cnt
;
915 INIT_LIST_HEAD(&mp2
->list
);
920 icmd
->un
.cont64
[0].addrHigh
= putPaddrHigh(mp1
->phys
);
921 icmd
->un
.cont64
[0].addrLow
= putPaddrLow(mp1
->phys
);
922 icmd
->un
.cont64
[0].tus
.f
.bdeSize
= FCELSSIZE
;
923 icmd
->ulpBdeCount
= 1;
926 icmd
->un
.cont64
[1].addrHigh
= putPaddrHigh(mp2
->phys
);
927 icmd
->un
.cont64
[1].addrLow
= putPaddrLow(mp2
->phys
);
928 icmd
->un
.cont64
[1].tus
.f
.bdeSize
= FCELSSIZE
;
930 icmd
->ulpBdeCount
= 2;
933 icmd
->ulpCommand
= CMD_QUE_RING_BUF64_CN
;
936 spin_lock_irq(phba
->host
->host_lock
);
937 if (lpfc_sli_issue_iocb(phba
, pring
, iocb
, 0) == IOCB_ERROR
) {
938 lpfc_mbuf_free(phba
, mp1
->virt
, mp1
->phys
);
942 lpfc_mbuf_free(phba
, mp2
->virt
, mp2
->phys
);
946 list_add_tail(&iocb
->list
, lpfc_iocb_list
);
947 pring
->missbufcnt
= cnt
;
948 spin_unlock_irq(phba
->host
->host_lock
);
951 spin_unlock_irq(phba
->host
->host_lock
);
952 lpfc_sli_ringpostbuf_put(phba
, pring
, mp1
);
954 lpfc_sli_ringpostbuf_put(phba
, pring
, mp2
);
957 pring
->missbufcnt
= 0;
961 /************************************************************************/
963 /* lpfc_post_rcv_buf */
964 /* This routine post initial rcv buffers to the configured rings */
966 /************************************************************************/
968 lpfc_post_rcv_buf(struct lpfc_hba
* phba
)
970 struct lpfc_sli
*psli
= &phba
->sli
;
972 /* Ring 0, ELS / CT buffers */
973 lpfc_post_buffer(phba
, &psli
->ring
[LPFC_ELS_RING
], LPFC_BUF_RING0
, 1);
974 /* Ring 2 - FCP no buffers needed */
979 #define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
981 /************************************************************************/
985 /************************************************************************/
987 lpfc_sha_init(uint32_t * HashResultPointer
)
989 HashResultPointer
[0] = 0x67452301;
990 HashResultPointer
[1] = 0xEFCDAB89;
991 HashResultPointer
[2] = 0x98BADCFE;
992 HashResultPointer
[3] = 0x10325476;
993 HashResultPointer
[4] = 0xC3D2E1F0;
996 /************************************************************************/
998 /* lpfc_sha_iterate */
1000 /************************************************************************/
1002 lpfc_sha_iterate(uint32_t * HashResultPointer
, uint32_t * HashWorkingPointer
)
1006 uint32_t A
, B
, C
, D
, E
;
1009 HashWorkingPointer
[t
] =
1011 HashWorkingPointer
[t
- 3] ^ HashWorkingPointer
[t
-
1013 HashWorkingPointer
[t
- 14] ^ HashWorkingPointer
[t
- 16]);
1014 } while (++t
<= 79);
1016 A
= HashResultPointer
[0];
1017 B
= HashResultPointer
[1];
1018 C
= HashResultPointer
[2];
1019 D
= HashResultPointer
[3];
1020 E
= HashResultPointer
[4];
1024 TEMP
= ((B
& C
) | ((~B
) & D
)) + 0x5A827999;
1025 } else if (t
< 40) {
1026 TEMP
= (B
^ C
^ D
) + 0x6ED9EBA1;
1027 } else if (t
< 60) {
1028 TEMP
= ((B
& C
) | (B
& D
) | (C
& D
)) + 0x8F1BBCDC;
1030 TEMP
= (B
^ C
^ D
) + 0xCA62C1D6;
1032 TEMP
+= S(5, A
) + E
+ HashWorkingPointer
[t
];
1038 } while (++t
<= 79);
1040 HashResultPointer
[0] += A
;
1041 HashResultPointer
[1] += B
;
1042 HashResultPointer
[2] += C
;
1043 HashResultPointer
[3] += D
;
1044 HashResultPointer
[4] += E
;
1048 /************************************************************************/
1050 /* lpfc_challenge_key */
1052 /************************************************************************/
1054 lpfc_challenge_key(uint32_t * RandomChallenge
, uint32_t * HashWorking
)
1056 *HashWorking
= (*RandomChallenge
^ *HashWorking
);
1059 /************************************************************************/
1063 /************************************************************************/
1065 lpfc_hba_init(struct lpfc_hba
*phba
, uint32_t *hbainit
)
1068 uint32_t *HashWorking
;
1069 uint32_t *pwwnn
= phba
->wwnn
;
1071 HashWorking
= kmalloc(80 * sizeof(uint32_t), GFP_KERNEL
);
1075 memset(HashWorking
, 0, (80 * sizeof(uint32_t)));
1076 HashWorking
[0] = HashWorking
[78] = *pwwnn
++;
1077 HashWorking
[1] = HashWorking
[79] = *pwwnn
;
1079 for (t
= 0; t
< 7; t
++)
1080 lpfc_challenge_key(phba
->RandomData
+ t
, HashWorking
+ t
);
1082 lpfc_sha_init(hbainit
);
1083 lpfc_sha_iterate(hbainit
, HashWorking
);
1088 lpfc_cleanup(struct lpfc_hba
* phba
, uint32_t save_bind
)
1090 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
1092 /* clean up phba - lpfc specific */
1093 lpfc_can_disctmo(phba
);
1094 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_nlpunmap_list
,
1096 lpfc_nlp_remove(phba
, ndlp
);
1099 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_nlpmap_list
,
1101 lpfc_nlp_remove(phba
, ndlp
);
1104 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_unused_list
,
1106 lpfc_nlp_list(phba
, ndlp
, NLP_NO_LIST
);
1109 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_plogi_list
,
1111 lpfc_nlp_remove(phba
, ndlp
);
1114 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_adisc_list
,
1116 lpfc_nlp_remove(phba
, ndlp
);
1119 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_reglogin_list
,
1121 lpfc_nlp_remove(phba
, ndlp
);
1124 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_prli_list
,
1126 lpfc_nlp_remove(phba
, ndlp
);
1129 list_for_each_entry_safe(ndlp
, next_ndlp
, &phba
->fc_npr_list
,
1131 lpfc_nlp_remove(phba
, ndlp
);
1134 INIT_LIST_HEAD(&phba
->fc_nlpmap_list
);
1135 INIT_LIST_HEAD(&phba
->fc_nlpunmap_list
);
1136 INIT_LIST_HEAD(&phba
->fc_unused_list
);
1137 INIT_LIST_HEAD(&phba
->fc_plogi_list
);
1138 INIT_LIST_HEAD(&phba
->fc_adisc_list
);
1139 INIT_LIST_HEAD(&phba
->fc_reglogin_list
);
1140 INIT_LIST_HEAD(&phba
->fc_prli_list
);
1141 INIT_LIST_HEAD(&phba
->fc_npr_list
);
1143 phba
->fc_map_cnt
= 0;
1144 phba
->fc_unmap_cnt
= 0;
1145 phba
->fc_plogi_cnt
= 0;
1146 phba
->fc_adisc_cnt
= 0;
1147 phba
->fc_reglogin_cnt
= 0;
1148 phba
->fc_prli_cnt
= 0;
1149 phba
->fc_npr_cnt
= 0;
1150 phba
->fc_unused_cnt
= 0;
1155 lpfc_establish_link_tmo(unsigned long ptr
)
1157 struct lpfc_hba
*phba
= (struct lpfc_hba
*)ptr
;
1158 unsigned long iflag
;
1161 /* Re-establishing Link, timer expired */
1162 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
1163 "%d:1300 Re-establishing Link, timer expired "
1165 phba
->brd_no
, phba
->fc_flag
, phba
->hba_state
);
1166 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1167 phba
->fc_flag
&= ~FC_ESTABLISH_LINK
;
1168 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1172 lpfc_stop_timer(struct lpfc_hba
* phba
)
1174 struct lpfc_sli
*psli
= &phba
->sli
;
1176 /* Instead of a timer, this has been converted to a
1177 * deferred procedding list.
1179 while (!list_empty(&phba
->freebufList
)) {
1181 struct lpfc_dmabuf
*mp
= NULL
;
1183 list_remove_head((&phba
->freebufList
), mp
,
1184 struct lpfc_dmabuf
, list
);
1186 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
1191 del_timer_sync(&phba
->fc_estabtmo
);
1192 del_timer_sync(&phba
->fc_disctmo
);
1193 del_timer_sync(&phba
->fc_fdmitmo
);
1194 del_timer_sync(&phba
->els_tmofunc
);
1196 del_timer_sync(&psli
->mbox_tmo
);
1201 lpfc_online(struct lpfc_hba
* phba
)
1206 if (!(phba
->fc_flag
& FC_OFFLINE_MODE
))
1209 lpfc_printf_log(phba
,
1212 "%d:0458 Bring Adapter online\n",
1215 if (!lpfc_sli_queue_setup(phba
))
1218 if (lpfc_sli_hba_setup(phba
)) /* Initialize the HBA */
1221 spin_lock_irq(phba
->host
->host_lock
);
1222 phba
->fc_flag
&= ~FC_OFFLINE_MODE
;
1223 spin_unlock_irq(phba
->host
->host_lock
);
1226 * Restart all traffic to this host. Since the fc_transport block
1227 * functions (future) were not called in lpfc_offline, don't call them
1230 scsi_unblock_requests(phba
->host
);
1235 lpfc_offline(struct lpfc_hba
* phba
)
1237 struct lpfc_sli_ring
*pring
;
1238 struct lpfc_sli
*psli
;
1239 unsigned long iflag
;
1245 if (phba
->fc_flag
& FC_OFFLINE_MODE
)
1249 * Don't call the fc_transport block api (future). The device is
1250 * going offline and causing a timer to fire in the midlayer is
1251 * unproductive. Just block all new requests until the driver
1252 * comes back online.
1254 scsi_block_requests(phba
->host
);
1256 pring
= &psli
->ring
[psli
->fcp_ring
];
1258 lpfc_linkdown(phba
);
1260 /* The linkdown event takes 30 seconds to timeout. */
1261 while (pring
->txcmplq_cnt
) {
1267 /* stop all timers associated with this hba */
1268 lpfc_stop_timer(phba
);
1269 phba
->work_hba_events
= 0;
1271 lpfc_printf_log(phba
,
1274 "%d:0460 Bring Adapter offline\n",
1277 /* Bring down the SLI Layer and cleanup. The HBA is offline
1279 lpfc_sli_hba_down(phba
);
1280 lpfc_cleanup(phba
, 1);
1281 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1282 phba
->fc_flag
|= FC_OFFLINE_MODE
;
1283 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1287 /******************************************************************************
1288 * Function name: lpfc_scsi_free
1290 * Description: Called from lpfc_pci_remove_one free internal driver resources
1292 ******************************************************************************/
1294 lpfc_scsi_free(struct lpfc_hba
* phba
)
1296 struct lpfc_scsi_buf
*sb
, *sb_next
;
1297 struct lpfc_iocbq
*io
, *io_next
;
1299 spin_lock_irq(phba
->host
->host_lock
);
1300 /* Release all the lpfc_scsi_bufs maintained by this host. */
1301 list_for_each_entry_safe(sb
, sb_next
, &phba
->lpfc_scsi_buf_list
, list
) {
1302 list_del(&sb
->list
);
1303 pci_pool_free(phba
->lpfc_scsi_dma_buf_pool
, sb
->data
,
1306 phba
->total_scsi_bufs
--;
1309 /* Release all the lpfc_iocbq entries maintained by this host. */
1310 list_for_each_entry_safe(io
, io_next
, &phba
->lpfc_iocb_list
, list
) {
1311 list_del(&io
->list
);
1313 phba
->total_iocbq_bufs
--;
1316 spin_unlock_irq(phba
->host
->host_lock
);
1322 static int __devinit
1323 lpfc_pci_probe_one(struct pci_dev
*pdev
, const struct pci_device_id
*pid
)
1325 struct Scsi_Host
*host
;
1326 struct lpfc_hba
*phba
;
1327 struct lpfc_sli
*psli
;
1328 struct lpfc_iocbq
*iocbq_entry
= NULL
, *iocbq_next
= NULL
;
1329 unsigned long bar0map_len
, bar2map_len
;
1330 int error
= -ENODEV
, retval
;
1334 if (pci_enable_device(pdev
))
1336 if (pci_request_regions(pdev
, LPFC_DRIVER_NAME
))
1337 goto out_disable_device
;
1339 host
= scsi_host_alloc(&lpfc_template
,
1340 sizeof (struct lpfc_hba
) + sizeof (unsigned long));
1342 goto out_release_regions
;
1344 phba
= (struct lpfc_hba
*)host
->hostdata
;
1345 memset(phba
, 0, sizeof (struct lpfc_hba
));
1346 phba
->link_stats
= (void *)&phba
[1];
1349 phba
->fc_flag
|= FC_LOADING
;
1350 phba
->pcidev
= pdev
;
1352 /* Assign an unused board number */
1353 if (!idr_pre_get(&lpfc_hba_index
, GFP_KERNEL
))
1356 error
= idr_get_new(&lpfc_hba_index
, NULL
, &phba
->brd_no
);
1360 host
->unique_id
= phba
->brd_no
;
1362 INIT_LIST_HEAD(&phba
->ctrspbuflist
);
1363 INIT_LIST_HEAD(&phba
->rnidrspbuflist
);
1364 INIT_LIST_HEAD(&phba
->freebufList
);
1366 /* Initialize timers used by driver */
1367 init_timer(&phba
->fc_estabtmo
);
1368 phba
->fc_estabtmo
.function
= lpfc_establish_link_tmo
;
1369 phba
->fc_estabtmo
.data
= (unsigned long)phba
;
1370 init_timer(&phba
->fc_disctmo
);
1371 phba
->fc_disctmo
.function
= lpfc_disc_timeout
;
1372 phba
->fc_disctmo
.data
= (unsigned long)phba
;
1374 init_timer(&phba
->fc_fdmitmo
);
1375 phba
->fc_fdmitmo
.function
= lpfc_fdmi_tmo
;
1376 phba
->fc_fdmitmo
.data
= (unsigned long)phba
;
1377 init_timer(&phba
->els_tmofunc
);
1378 phba
->els_tmofunc
.function
= lpfc_els_timeout
;
1379 phba
->els_tmofunc
.data
= (unsigned long)phba
;
1381 init_timer(&psli
->mbox_tmo
);
1382 psli
->mbox_tmo
.function
= lpfc_mbox_timeout
;
1383 psli
->mbox_tmo
.data
= (unsigned long)phba
;
1386 * Get all the module params for configuring this host and then
1387 * establish the host parameters.
1389 lpfc_get_cfgparam(phba
);
1391 host
->max_id
= LPFC_MAX_TARGET
;
1392 host
->max_lun
= phba
->cfg_max_luns
;
1395 /* Initialize all internally managed lists. */
1396 INIT_LIST_HEAD(&phba
->fc_nlpmap_list
);
1397 INIT_LIST_HEAD(&phba
->fc_nlpunmap_list
);
1398 INIT_LIST_HEAD(&phba
->fc_unused_list
);
1399 INIT_LIST_HEAD(&phba
->fc_plogi_list
);
1400 INIT_LIST_HEAD(&phba
->fc_adisc_list
);
1401 INIT_LIST_HEAD(&phba
->fc_reglogin_list
);
1402 INIT_LIST_HEAD(&phba
->fc_prli_list
);
1403 INIT_LIST_HEAD(&phba
->fc_npr_list
);
1406 pci_set_master(pdev
);
1407 retval
= pci_set_mwi(pdev
);
1409 dev_printk(KERN_WARNING
, &pdev
->dev
,
1410 "Warning: pci_set_mwi returned %d\n", retval
);
1412 if (pci_set_dma_mask(phba
->pcidev
, DMA_64BIT_MASK
) != 0)
1413 if (pci_set_dma_mask(phba
->pcidev
, DMA_32BIT_MASK
) != 0)
1414 goto out_idr_remove
;
1417 * Get the bus address of Bar0 and Bar2 and the number of bytes
1418 * required by each mapping.
1420 phba
->pci_bar0_map
= pci_resource_start(phba
->pcidev
, 0);
1421 bar0map_len
= pci_resource_len(phba
->pcidev
, 0);
1423 phba
->pci_bar2_map
= pci_resource_start(phba
->pcidev
, 2);
1424 bar2map_len
= pci_resource_len(phba
->pcidev
, 2);
1426 /* Map HBA SLIM and Control Registers to a kernel virtual address. */
1427 phba
->slim_memmap_p
= ioremap(phba
->pci_bar0_map
, bar0map_len
);
1428 phba
->ctrl_regs_memmap_p
= ioremap(phba
->pci_bar2_map
, bar2map_len
);
1430 /* Allocate memory for SLI-2 structures */
1431 phba
->slim2p
= dma_alloc_coherent(&phba
->pcidev
->dev
, SLI2_SLIM_SIZE
,
1432 &phba
->slim2p_mapping
, GFP_KERNEL
);
1437 /* Initialize the SLI Layer to run with lpfc HBAs. */
1438 lpfc_sli_setup(phba
);
1439 lpfc_sli_queue_setup(phba
);
1441 error
= lpfc_mem_alloc(phba
);
1445 /* Initialize and populate the iocb list per host. */
1446 INIT_LIST_HEAD(&phba
->lpfc_iocb_list
);
1447 for (i
= 0; i
< LPFC_IOCB_LIST_CNT
; i
++) {
1448 iocbq_entry
= kmalloc(sizeof(struct lpfc_iocbq
), GFP_KERNEL
);
1449 if (iocbq_entry
== NULL
) {
1450 printk(KERN_ERR
"%s: only allocated %d iocbs of "
1451 "expected %d count. Unloading driver.\n",
1452 __FUNCTION__
, i
, LPFC_IOCB_LIST_CNT
);
1454 goto out_free_iocbq
;
1457 memset(iocbq_entry
, 0, sizeof(struct lpfc_iocbq
));
1458 spin_lock_irq(phba
->host
->host_lock
);
1459 list_add(&iocbq_entry
->list
, &phba
->lpfc_iocb_list
);
1460 phba
->total_iocbq_bufs
++;
1461 spin_unlock_irq(phba
->host
->host_lock
);
1464 /* Initialize HBA structure */
1465 phba
->fc_edtov
= FF_DEF_EDTOV
;
1466 phba
->fc_ratov
= FF_DEF_RATOV
;
1467 phba
->fc_altov
= FF_DEF_ALTOV
;
1468 phba
->fc_arbtov
= FF_DEF_ARBTOV
;
1470 INIT_LIST_HEAD(&phba
->work_list
);
1471 phba
->work_ha_mask
= (HA_ERATT
|HA_MBATT
|HA_LATT
);
1472 phba
->work_ha_mask
|= (HA_RXMASK
<< (LPFC_ELS_RING
* 4));
1474 /* Startup the kernel thread for this host adapter. */
1475 phba
->worker_thread
= kthread_run(lpfc_do_work
, phba
,
1476 "lpfc_worker_%d", phba
->brd_no
);
1477 if (IS_ERR(phba
->worker_thread
)) {
1478 error
= PTR_ERR(phba
->worker_thread
);
1479 goto out_free_iocbq
;
1482 /* We can rely on a queue depth attribute only after SLI HBA setup */
1483 host
->can_queue
= phba
->cfg_hba_queue_depth
- 10;
1485 /* Tell the midlayer we support 16 byte commands */
1486 host
->max_cmd_len
= 16;
1488 /* Initialize the list of scsi buffers used by driver for scsi IO. */
1489 INIT_LIST_HEAD(&phba
->lpfc_scsi_buf_list
);
1491 host
->transportt
= lpfc_transport_template
;
1492 host
->hostdata
[0] = (unsigned long)phba
;
1493 pci_set_drvdata(pdev
, host
);
1494 error
= scsi_add_host(host
, &pdev
->dev
);
1496 goto out_kthread_stop
;
1498 error
= lpfc_alloc_sysfs_attr(phba
);
1500 goto out_kthread_stop
;
1502 error
= request_irq(phba
->pcidev
->irq
, lpfc_intr_handler
, SA_SHIRQ
,
1503 LPFC_DRIVER_NAME
, phba
);
1505 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
1506 "%d:0451 Enable interrupt handler failed\n",
1508 goto out_free_sysfs_attr
;
1510 phba
->MBslimaddr
= phba
->slim_memmap_p
;
1511 phba
->HAregaddr
= phba
->ctrl_regs_memmap_p
+ HA_REG_OFFSET
;
1512 phba
->CAregaddr
= phba
->ctrl_regs_memmap_p
+ CA_REG_OFFSET
;
1513 phba
->HSregaddr
= phba
->ctrl_regs_memmap_p
+ HS_REG_OFFSET
;
1514 phba
->HCregaddr
= phba
->ctrl_regs_memmap_p
+ HC_REG_OFFSET
;
1516 error
= lpfc_sli_hba_setup(phba
);
1521 * set fixed host attributes
1522 * Must done after lpfc_sli_hba_setup()
1525 memcpy(&wwname
, &phba
->fc_nodename
, sizeof(u64
));
1526 fc_host_node_name(host
) = be64_to_cpu(wwname
);
1527 memcpy(&wwname
, &phba
->fc_portname
, sizeof(u64
));
1528 fc_host_port_name(host
) = be64_to_cpu(wwname
);
1529 fc_host_supported_classes(host
) = FC_COS_CLASS3
;
1531 memset(fc_host_supported_fc4s(host
), 0,
1532 sizeof(fc_host_supported_fc4s(host
)));
1533 fc_host_supported_fc4s(host
)[2] = 1;
1534 fc_host_supported_fc4s(host
)[7] = 1;
1536 lpfc_get_hba_sym_node_name(phba
, fc_host_symbolic_name(host
));
1538 fc_host_supported_speeds(host
) = 0;
1539 switch (FC_JEDEC_ID(phba
->vpd
.rev
.biuRev
)) {
1540 case VIPER_JEDEC_ID
:
1541 fc_host_supported_speeds(host
) |= FC_PORTSPEED_10GBIT
;
1543 case HELIOS_JEDEC_ID
:
1544 fc_host_supported_speeds(host
) |= FC_PORTSPEED_4GBIT
;
1546 case CENTAUR_2G_JEDEC_ID
:
1547 case PEGASUS_JEDEC_ID
:
1549 fc_host_supported_speeds(host
) |= FC_PORTSPEED_2GBIT
;
1552 fc_host_supported_speeds(host
) = FC_PORTSPEED_1GBIT
;
1555 fc_host_maxframe_size(host
) =
1556 ((((uint32_t) phba
->fc_sparam
.cmn
.bbRcvSizeMsb
& 0x0F) << 8) |
1557 (uint32_t) phba
->fc_sparam
.cmn
.bbRcvSizeLsb
);
1559 /* This value is also unchanging */
1560 memset(fc_host_active_fc4s(host
), 0,
1561 sizeof(fc_host_active_fc4s(host
)));
1562 fc_host_active_fc4s(host
)[2] = 1;
1563 fc_host_active_fc4s(host
)[7] = 1;
1565 spin_lock_irq(phba
->host
->host_lock
);
1566 phba
->fc_flag
&= ~FC_LOADING
;
1567 spin_unlock_irq(phba
->host
->host_lock
);
1571 lpfc_stop_timer(phba
);
1572 phba
->work_hba_events
= 0;
1573 free_irq(phba
->pcidev
->irq
, phba
);
1574 out_free_sysfs_attr
:
1575 lpfc_free_sysfs_attr(phba
);
1577 kthread_stop(phba
->worker_thread
);
1579 list_for_each_entry_safe(iocbq_entry
, iocbq_next
,
1580 &phba
->lpfc_iocb_list
, list
) {
1581 spin_lock_irq(phba
->host
->host_lock
);
1583 phba
->total_iocbq_bufs
--;
1584 spin_unlock_irq(phba
->host
->host_lock
);
1586 lpfc_mem_free(phba
);
1588 dma_free_coherent(&pdev
->dev
, SLI2_SLIM_SIZE
, phba
->slim2p
,
1589 phba
->slim2p_mapping
);
1591 iounmap(phba
->ctrl_regs_memmap_p
);
1592 iounmap(phba
->slim_memmap_p
);
1594 idr_remove(&lpfc_hba_index
, phba
->brd_no
);
1596 scsi_host_put(host
);
1597 out_release_regions
:
1598 pci_release_regions(pdev
);
1600 pci_disable_device(pdev
);
1605 static void __devexit
1606 lpfc_pci_remove_one(struct pci_dev
*pdev
)
1608 struct Scsi_Host
*host
= pci_get_drvdata(pdev
);
1609 struct lpfc_hba
*phba
= (struct lpfc_hba
*)host
->hostdata
[0];
1610 unsigned long iflag
;
1612 lpfc_free_sysfs_attr(phba
);
1614 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1615 phba
->fc_flag
|= FC_UNLOADING
;
1617 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1619 fc_remove_host(phba
->host
);
1620 scsi_remove_host(phba
->host
);
1622 kthread_stop(phba
->worker_thread
);
1625 * Bring down the SLI Layer. This step disable all interrupts,
1626 * clears the rings, discards all mailbox commands, and resets
1629 lpfc_sli_hba_down(phba
);
1631 /* Release the irq reservation */
1632 free_irq(phba
->pcidev
->irq
, phba
);
1634 lpfc_cleanup(phba
, 0);
1635 lpfc_stop_timer(phba
);
1636 phba
->work_hba_events
= 0;
1639 * Call scsi_free before mem_free since scsi bufs are released to their
1640 * corresponding pools here.
1642 lpfc_scsi_free(phba
);
1643 lpfc_mem_free(phba
);
1645 /* Free resources associated with SLI2 interface */
1646 dma_free_coherent(&pdev
->dev
, SLI2_SLIM_SIZE
,
1647 phba
->slim2p
, phba
->slim2p_mapping
);
1649 /* unmap adapter SLIM and Control Registers */
1650 iounmap(phba
->ctrl_regs_memmap_p
);
1651 iounmap(phba
->slim_memmap_p
);
1653 pci_release_regions(phba
->pcidev
);
1654 pci_disable_device(phba
->pcidev
);
1656 idr_remove(&lpfc_hba_index
, phba
->brd_no
);
1657 scsi_host_put(phba
->host
);
1659 pci_set_drvdata(pdev
, NULL
);
1662 static struct pci_device_id lpfc_id_table
[] = {
1663 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_VIPER
,
1664 PCI_ANY_ID
, PCI_ANY_ID
, },
1665 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_THOR
,
1666 PCI_ANY_ID
, PCI_ANY_ID
, },
1667 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PEGASUS
,
1668 PCI_ANY_ID
, PCI_ANY_ID
, },
1669 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_CENTAUR
,
1670 PCI_ANY_ID
, PCI_ANY_ID
, },
1671 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_DRAGONFLY
,
1672 PCI_ANY_ID
, PCI_ANY_ID
, },
1673 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SUPERFLY
,
1674 PCI_ANY_ID
, PCI_ANY_ID
, },
1675 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_RFLY
,
1676 PCI_ANY_ID
, PCI_ANY_ID
, },
1677 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PFLY
,
1678 PCI_ANY_ID
, PCI_ANY_ID
, },
1679 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_HELIOS
,
1680 PCI_ANY_ID
, PCI_ANY_ID
, },
1681 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_BMID
,
1682 PCI_ANY_ID
, PCI_ANY_ID
, },
1683 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_BSMB
,
1684 PCI_ANY_ID
, PCI_ANY_ID
, },
1685 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZEPHYR
,
1686 PCI_ANY_ID
, PCI_ANY_ID
, },
1687 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZMID
,
1688 PCI_ANY_ID
, PCI_ANY_ID
, },
1689 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZSMB
,
1690 PCI_ANY_ID
, PCI_ANY_ID
, },
1691 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_TFLY
,
1692 PCI_ANY_ID
, PCI_ANY_ID
, },
1693 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LP101
,
1694 PCI_ANY_ID
, PCI_ANY_ID
, },
1695 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LP10000S
,
1696 PCI_ANY_ID
, PCI_ANY_ID
, },
1700 MODULE_DEVICE_TABLE(pci
, lpfc_id_table
);
1702 static struct pci_driver lpfc_driver
= {
1703 .name
= LPFC_DRIVER_NAME
,
1704 .id_table
= lpfc_id_table
,
1705 .probe
= lpfc_pci_probe_one
,
1706 .remove
= __devexit_p(lpfc_pci_remove_one
),
1714 printk(LPFC_MODULE_DESC
"\n");
1716 lpfc_transport_template
=
1717 fc_attach_transport(&lpfc_transport_functions
);
1718 if (!lpfc_transport_template
)
1720 error
= pci_register_driver(&lpfc_driver
);
1722 fc_release_transport(lpfc_transport_template
);
1730 pci_unregister_driver(&lpfc_driver
);
1731 fc_release_transport(lpfc_transport_template
);
1734 module_init(lpfc_init
);
1735 module_exit(lpfc_exit
);
1736 MODULE_LICENSE("GPL");
1737 MODULE_DESCRIPTION(LPFC_MODULE_DESC
);
1738 MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
1739 MODULE_VERSION("0:" LPFC_DRIVER_VERSION
);