[SCSI] lpfc 8.3.19: Add SLI4 FC Discovery support
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / lpfc / lpfc_mbox.c
blobb1dab92628eecc3db8b581a504bc9dfda594a18b
1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
6 * www.emulex.com *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
8 * *
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/pci.h>
24 #include <linux/slab.h>
25 #include <linux/interrupt.h>
27 #include <scsi/scsi_device.h>
28 #include <scsi/scsi_transport_fc.h>
29 #include <scsi/scsi.h>
30 #include <scsi/fc/fc_fs.h>
32 #include "lpfc_hw4.h"
33 #include "lpfc_hw.h"
34 #include "lpfc_sli.h"
35 #include "lpfc_sli4.h"
36 #include "lpfc_nl.h"
37 #include "lpfc_disc.h"
38 #include "lpfc_scsi.h"
39 #include "lpfc.h"
40 #include "lpfc_logmsg.h"
41 #include "lpfc_crtn.h"
42 #include "lpfc_compat.h"
44 /**
45 * lpfc_dump_static_vport - Dump HBA's static vport information.
46 * @phba: pointer to lpfc hba data structure.
47 * @pmb: pointer to the driver internal queue element for mailbox command.
48 * @offset: offset for dumping vport info.
50 * The dump mailbox command provides a method for the device driver to obtain
51 * various types of information from the HBA device.
53 * This routine prepares the mailbox command for dumping list of static
54 * vports to be created.
55 **/
56 int
57 lpfc_dump_static_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb,
58 uint16_t offset)
60 MAILBOX_t *mb;
61 struct lpfc_dmabuf *mp;
63 mb = &pmb->u.mb;
65 /* Setup to dump vport info region */
66 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
67 mb->mbxCommand = MBX_DUMP_MEMORY;
68 mb->un.varDmp.type = DMP_NV_PARAMS;
69 mb->un.varDmp.entry_index = offset;
70 mb->un.varDmp.region_id = DMP_REGION_VPORT;
71 mb->mbxOwner = OWN_HOST;
73 /* For SLI3 HBAs data is embedded in mailbox */
74 if (phba->sli_rev != LPFC_SLI_REV4) {
75 mb->un.varDmp.cv = 1;
76 mb->un.varDmp.word_cnt = DMP_RSP_SIZE/sizeof(uint32_t);
77 return 0;
80 /* For SLI4 HBAs driver need to allocate memory */
81 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
82 if (mp)
83 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
85 if (!mp || !mp->virt) {
86 kfree(mp);
87 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
88 "2605 lpfc_dump_static_vport: memory"
89 " allocation failed\n");
90 return 1;
92 memset(mp->virt, 0, LPFC_BPL_SIZE);
93 INIT_LIST_HEAD(&mp->list);
94 /* save address for completion */
95 pmb->context2 = (uint8_t *) mp;
96 mb->un.varWords[3] = putPaddrLow(mp->phys);
97 mb->un.varWords[4] = putPaddrHigh(mp->phys);
98 mb->un.varDmp.sli4_length = sizeof(struct static_vport_info);
100 return 0;
104 * lpfc_down_link - Bring down HBAs link.
105 * @phba: pointer to lpfc hba data structure.
106 * @pmb: pointer to the driver internal queue element for mailbox command.
108 * This routine prepares a mailbox command to bring down HBA link.
110 void
111 lpfc_down_link(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
113 MAILBOX_t *mb;
114 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
115 mb = &pmb->u.mb;
116 mb->mbxCommand = MBX_DOWN_LINK;
117 mb->mbxOwner = OWN_HOST;
121 * lpfc_dump_mem - Prepare a mailbox command for reading a region.
122 * @phba: pointer to lpfc hba data structure.
123 * @pmb: pointer to the driver internal queue element for mailbox command.
124 * @offset: offset into the region.
125 * @region_id: config region id.
127 * The dump mailbox command provides a method for the device driver to obtain
128 * various types of information from the HBA device.
130 * This routine prepares the mailbox command for dumping HBA's config region.
132 void
133 lpfc_dump_mem(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb, uint16_t offset,
134 uint16_t region_id)
136 MAILBOX_t *mb;
137 void *ctx;
139 mb = &pmb->u.mb;
140 ctx = pmb->context2;
142 /* Setup to dump VPD region */
143 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
144 mb->mbxCommand = MBX_DUMP_MEMORY;
145 mb->un.varDmp.cv = 1;
146 mb->un.varDmp.type = DMP_NV_PARAMS;
147 mb->un.varDmp.entry_index = offset;
148 mb->un.varDmp.region_id = region_id;
149 mb->un.varDmp.word_cnt = (DMP_RSP_SIZE / sizeof (uint32_t));
150 mb->un.varDmp.co = 0;
151 mb->un.varDmp.resp_offset = 0;
152 pmb->context2 = ctx;
153 mb->mbxOwner = OWN_HOST;
154 return;
158 * lpfc_dump_wakeup_param - Prepare mailbox command for retrieving wakeup params
159 * @phba: pointer to lpfc hba data structure.
160 * @pmb: pointer to the driver internal queue element for mailbox command.
162 * This function create a dump memory mailbox command to dump wake up
163 * parameters.
165 void
166 lpfc_dump_wakeup_param(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
168 MAILBOX_t *mb;
169 void *ctx;
171 mb = &pmb->u.mb;
172 /* Save context so that we can restore after memset */
173 ctx = pmb->context2;
175 /* Setup to dump VPD region */
176 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
177 mb->mbxCommand = MBX_DUMP_MEMORY;
178 mb->mbxOwner = OWN_HOST;
179 mb->un.varDmp.cv = 1;
180 mb->un.varDmp.type = DMP_NV_PARAMS;
181 mb->un.varDmp.entry_index = 0;
182 mb->un.varDmp.region_id = WAKE_UP_PARMS_REGION_ID;
183 mb->un.varDmp.word_cnt = WAKE_UP_PARMS_WORD_SIZE;
184 mb->un.varDmp.co = 0;
185 mb->un.varDmp.resp_offset = 0;
186 pmb->context2 = ctx;
187 return;
191 * lpfc_read_nv - Prepare a mailbox command for reading HBA's NVRAM param
192 * @phba: pointer to lpfc hba data structure.
193 * @pmb: pointer to the driver internal queue element for mailbox command.
195 * The read NVRAM mailbox command returns the HBA's non-volatile parameters
196 * that are used as defaults when the Fibre Channel link is brought on-line.
198 * This routine prepares the mailbox command for reading information stored
199 * in the HBA's NVRAM. Specifically, the HBA's WWNN and WWPN.
201 void
202 lpfc_read_nv(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
204 MAILBOX_t *mb;
206 mb = &pmb->u.mb;
207 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
208 mb->mbxCommand = MBX_READ_NV;
209 mb->mbxOwner = OWN_HOST;
210 return;
214 * lpfc_config_async - Prepare a mailbox command for enabling HBA async event
215 * @phba: pointer to lpfc hba data structure.
216 * @pmb: pointer to the driver internal queue element for mailbox command.
217 * @ring: ring number for the asynchronous event to be configured.
219 * The asynchronous event enable mailbox command is used to enable the
220 * asynchronous event posting via the ASYNC_STATUS_CN IOCB response and
221 * specifies the default ring to which events are posted.
223 * This routine prepares the mailbox command for enabling HBA asynchronous
224 * event support on a IOCB ring.
226 void
227 lpfc_config_async(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb,
228 uint32_t ring)
230 MAILBOX_t *mb;
232 mb = &pmb->u.mb;
233 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
234 mb->mbxCommand = MBX_ASYNCEVT_ENABLE;
235 mb->un.varCfgAsyncEvent.ring = ring;
236 mb->mbxOwner = OWN_HOST;
237 return;
241 * lpfc_heart_beat - Prepare a mailbox command for heart beat
242 * @phba: pointer to lpfc hba data structure.
243 * @pmb: pointer to the driver internal queue element for mailbox command.
245 * The heart beat mailbox command is used to detect an unresponsive HBA, which
246 * is defined as any device where no error attention is sent and both mailbox
247 * and rings are not processed.
249 * This routine prepares the mailbox command for issuing a heart beat in the
250 * form of mailbox command to the HBA. The timely completion of the heart
251 * beat mailbox command indicates the health of the HBA.
253 void
254 lpfc_heart_beat(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
256 MAILBOX_t *mb;
258 mb = &pmb->u.mb;
259 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
260 mb->mbxCommand = MBX_HEARTBEAT;
261 mb->mbxOwner = OWN_HOST;
262 return;
266 * lpfc_read_topology - Prepare a mailbox command for reading HBA topology
267 * @phba: pointer to lpfc hba data structure.
268 * @pmb: pointer to the driver internal queue element for mailbox command.
269 * @mp: DMA buffer memory for reading the link attention information into.
271 * The read topology mailbox command is issued to read the link topology
272 * information indicated by the HBA port when the Link Event bit of the Host
273 * Attention (HSTATT) register is set to 1 (For SLI-3) or when an FC Link
274 * Attention ACQE is received from the port (For SLI-4). A Link Event
275 * Attention occurs based on an exception detected at the Fibre Channel link
276 * interface.
278 * This routine prepares the mailbox command for reading HBA link topology
279 * information. A DMA memory has been set aside and address passed to the
280 * HBA through @mp for the HBA to DMA link attention information into the
281 * memory as part of the execution of the mailbox command.
283 * Return codes
284 * 0 - Success (currently always return 0)
287 lpfc_read_topology(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb,
288 struct lpfc_dmabuf *mp)
290 MAILBOX_t *mb;
291 struct lpfc_sli *psli;
293 psli = &phba->sli;
294 mb = &pmb->u.mb;
295 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
297 INIT_LIST_HEAD(&mp->list);
298 mb->mbxCommand = MBX_READ_TOPOLOGY;
299 mb->un.varReadTop.lilpBde64.tus.f.bdeSize = LPFC_ALPA_MAP_SIZE;
300 mb->un.varReadTop.lilpBde64.addrHigh = putPaddrHigh(mp->phys);
301 mb->un.varReadTop.lilpBde64.addrLow = putPaddrLow(mp->phys);
303 /* Save address for later completion and set the owner to host so that
304 * the FW knows this mailbox is available for processing.
306 pmb->context1 = (uint8_t *)mp;
307 mb->mbxOwner = OWN_HOST;
308 return (0);
312 * lpfc_clear_la - Prepare a mailbox command for clearing HBA link attention
313 * @phba: pointer to lpfc hba data structure.
314 * @pmb: pointer to the driver internal queue element for mailbox command.
316 * The clear link attention mailbox command is issued to clear the link event
317 * attention condition indicated by the Link Event bit of the Host Attention
318 * (HSTATT) register. The link event attention condition is cleared only if
319 * the event tag specified matches that of the current link event counter.
320 * The current event tag is read using the read link attention event mailbox
321 * command.
323 * This routine prepares the mailbox command for clearing HBA link attention
324 * information.
326 void
327 lpfc_clear_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
329 MAILBOX_t *mb;
331 mb = &pmb->u.mb;
332 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
334 mb->un.varClearLA.eventTag = phba->fc_eventTag;
335 mb->mbxCommand = MBX_CLEAR_LA;
336 mb->mbxOwner = OWN_HOST;
337 return;
341 * lpfc_config_link - Prepare a mailbox command for configuring link on a HBA
342 * @phba: pointer to lpfc hba data structure.
343 * @pmb: pointer to the driver internal queue element for mailbox command.
345 * The configure link mailbox command is used before the initialize link
346 * mailbox command to override default value and to configure link-oriented
347 * parameters such as DID address and various timers. Typically, this
348 * command would be used after an F_Port login to set the returned DID address
349 * and the fabric timeout values. This command is not valid before a configure
350 * port command has configured the HBA port.
352 * This routine prepares the mailbox command for configuring link on a HBA.
354 void
355 lpfc_config_link(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
357 struct lpfc_vport *vport = phba->pport;
358 MAILBOX_t *mb = &pmb->u.mb;
359 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
361 /* NEW_FEATURE
362 * SLI-2, Coalescing Response Feature.
364 if (phba->cfg_cr_delay) {
365 mb->un.varCfgLnk.cr = 1;
366 mb->un.varCfgLnk.ci = 1;
367 mb->un.varCfgLnk.cr_delay = phba->cfg_cr_delay;
368 mb->un.varCfgLnk.cr_count = phba->cfg_cr_count;
371 mb->un.varCfgLnk.myId = vport->fc_myDID;
372 mb->un.varCfgLnk.edtov = phba->fc_edtov;
373 mb->un.varCfgLnk.arbtov = phba->fc_arbtov;
374 mb->un.varCfgLnk.ratov = phba->fc_ratov;
375 mb->un.varCfgLnk.rttov = phba->fc_rttov;
376 mb->un.varCfgLnk.altov = phba->fc_altov;
377 mb->un.varCfgLnk.crtov = phba->fc_crtov;
378 mb->un.varCfgLnk.citov = phba->fc_citov;
380 if (phba->cfg_ack0)
381 mb->un.varCfgLnk.ack0_enable = 1;
383 mb->mbxCommand = MBX_CONFIG_LINK;
384 mb->mbxOwner = OWN_HOST;
385 return;
389 * lpfc_config_msi - Prepare a mailbox command for configuring msi-x
390 * @phba: pointer to lpfc hba data structure.
391 * @pmb: pointer to the driver internal queue element for mailbox command.
393 * The configure MSI-X mailbox command is used to configure the HBA's SLI-3
394 * MSI-X multi-message interrupt vector association to interrupt attention
395 * conditions.
397 * Return codes
398 * 0 - Success
399 * -EINVAL - Failure
402 lpfc_config_msi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
404 MAILBOX_t *mb = &pmb->u.mb;
405 uint32_t attentionConditions[2];
407 /* Sanity check */
408 if (phba->cfg_use_msi != 2) {
409 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
410 "0475 Not configured for supporting MSI-X "
411 "cfg_use_msi: 0x%x\n", phba->cfg_use_msi);
412 return -EINVAL;
415 if (phba->sli_rev < 3) {
416 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
417 "0476 HBA not supporting SLI-3 or later "
418 "SLI Revision: 0x%x\n", phba->sli_rev);
419 return -EINVAL;
422 /* Clear mailbox command fields */
423 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
426 * SLI-3, Message Signaled Interrupt Fearure.
429 /* Multi-message attention configuration */
430 attentionConditions[0] = (HA_R0ATT | HA_R1ATT | HA_R2ATT | HA_ERATT |
431 HA_LATT | HA_MBATT);
432 attentionConditions[1] = 0;
434 mb->un.varCfgMSI.attentionConditions[0] = attentionConditions[0];
435 mb->un.varCfgMSI.attentionConditions[1] = attentionConditions[1];
438 * Set up message number to HA bit association
440 #ifdef __BIG_ENDIAN_BITFIELD
441 /* RA0 (FCP Ring) */
442 mb->un.varCfgMSI.messageNumberByHA[HA_R0_POS] = 1;
443 /* RA1 (Other Protocol Extra Ring) */
444 mb->un.varCfgMSI.messageNumberByHA[HA_R1_POS] = 1;
445 #else /* __LITTLE_ENDIAN_BITFIELD */
446 /* RA0 (FCP Ring) */
447 mb->un.varCfgMSI.messageNumberByHA[HA_R0_POS^3] = 1;
448 /* RA1 (Other Protocol Extra Ring) */
449 mb->un.varCfgMSI.messageNumberByHA[HA_R1_POS^3] = 1;
450 #endif
451 /* Multi-message interrupt autoclear configuration*/
452 mb->un.varCfgMSI.autoClearHA[0] = attentionConditions[0];
453 mb->un.varCfgMSI.autoClearHA[1] = attentionConditions[1];
455 /* For now, HBA autoclear does not work reliably, disable it */
456 mb->un.varCfgMSI.autoClearHA[0] = 0;
457 mb->un.varCfgMSI.autoClearHA[1] = 0;
459 /* Set command and owner bit */
460 mb->mbxCommand = MBX_CONFIG_MSI;
461 mb->mbxOwner = OWN_HOST;
463 return 0;
467 * lpfc_init_link - Prepare a mailbox command for initialize link on a HBA
468 * @phba: pointer to lpfc hba data structure.
469 * @pmb: pointer to the driver internal queue element for mailbox command.
470 * @topology: the link topology for the link to be initialized to.
471 * @linkspeed: the link speed for the link to be initialized to.
473 * The initialize link mailbox command is used to initialize the Fibre
474 * Channel link. This command must follow a configure port command that
475 * establishes the mode of operation.
477 * This routine prepares the mailbox command for initializing link on a HBA
478 * with the specified link topology and speed.
480 void
481 lpfc_init_link(struct lpfc_hba * phba,
482 LPFC_MBOXQ_t * pmb, uint32_t topology, uint32_t linkspeed)
484 lpfc_vpd_t *vpd;
485 struct lpfc_sli *psli;
486 MAILBOX_t *mb;
488 mb = &pmb->u.mb;
489 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
491 psli = &phba->sli;
492 switch (topology) {
493 case FLAGS_TOPOLOGY_MODE_LOOP_PT:
494 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP;
495 mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER;
496 break;
497 case FLAGS_TOPOLOGY_MODE_PT_PT:
498 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT;
499 break;
500 case FLAGS_TOPOLOGY_MODE_LOOP:
501 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP;
502 break;
503 case FLAGS_TOPOLOGY_MODE_PT_LOOP:
504 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT;
505 mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER;
506 break;
507 case FLAGS_LOCAL_LB:
508 mb->un.varInitLnk.link_flags = FLAGS_LOCAL_LB;
509 break;
512 /* Enable asynchronous ABTS responses from firmware */
513 mb->un.varInitLnk.link_flags |= FLAGS_IMED_ABORT;
515 /* NEW_FEATURE
516 * Setting up the link speed
518 vpd = &phba->vpd;
519 if (vpd->rev.feaLevelHigh >= 0x02){
520 switch(linkspeed){
521 case LPFC_USER_LINK_SPEED_1G:
522 mb->un.varInitLnk.link_flags |= FLAGS_LINK_SPEED;
523 mb->un.varInitLnk.link_speed = LINK_SPEED_1G;
524 break;
525 case LPFC_USER_LINK_SPEED_2G:
526 mb->un.varInitLnk.link_flags |= FLAGS_LINK_SPEED;
527 mb->un.varInitLnk.link_speed = LINK_SPEED_2G;
528 break;
529 case LPFC_USER_LINK_SPEED_4G:
530 mb->un.varInitLnk.link_flags |= FLAGS_LINK_SPEED;
531 mb->un.varInitLnk.link_speed = LINK_SPEED_4G;
532 break;
533 case LPFC_USER_LINK_SPEED_8G:
534 mb->un.varInitLnk.link_flags |= FLAGS_LINK_SPEED;
535 mb->un.varInitLnk.link_speed = LINK_SPEED_8G;
536 break;
537 case LPFC_USER_LINK_SPEED_10G:
538 mb->un.varInitLnk.link_flags |= FLAGS_LINK_SPEED;
539 mb->un.varInitLnk.link_speed = LINK_SPEED_10G;
540 break;
541 case LPFC_USER_LINK_SPEED_16G:
542 mb->un.varInitLnk.link_flags |= FLAGS_LINK_SPEED;
543 mb->un.varInitLnk.link_speed = LINK_SPEED_16G;
544 break;
545 case LPFC_USER_LINK_SPEED_AUTO:
546 default:
547 mb->un.varInitLnk.link_speed = LINK_SPEED_AUTO;
548 break;
552 else
553 mb->un.varInitLnk.link_speed = LINK_SPEED_AUTO;
555 mb->mbxCommand = (volatile uint8_t)MBX_INIT_LINK;
556 mb->mbxOwner = OWN_HOST;
557 mb->un.varInitLnk.fabric_AL_PA = phba->fc_pref_ALPA;
558 return;
562 * lpfc_read_sparam - Prepare a mailbox command for reading HBA parameters
563 * @phba: pointer to lpfc hba data structure.
564 * @pmb: pointer to the driver internal queue element for mailbox command.
565 * @vpi: virtual N_Port identifier.
567 * The read service parameter mailbox command is used to read the HBA port
568 * service parameters. The service parameters are read into the buffer
569 * specified directly by a BDE in the mailbox command. These service
570 * parameters may then be used to build the payload of an N_Port/F_POrt
571 * login request and reply (LOGI/ACC).
573 * This routine prepares the mailbox command for reading HBA port service
574 * parameters. The DMA memory is allocated in this function and the addresses
575 * are populated into the mailbox command for the HBA to DMA the service
576 * parameters into.
578 * Return codes
579 * 0 - Success
580 * 1 - DMA memory allocation failed
583 lpfc_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb, int vpi)
585 struct lpfc_dmabuf *mp;
586 MAILBOX_t *mb;
587 struct lpfc_sli *psli;
589 psli = &phba->sli;
590 mb = &pmb->u.mb;
591 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
593 mb->mbxOwner = OWN_HOST;
595 /* Get a buffer to hold the HBAs Service Parameters */
597 mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
598 if (mp)
599 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
600 if (!mp || !mp->virt) {
601 kfree(mp);
602 mb->mbxCommand = MBX_READ_SPARM64;
603 /* READ_SPARAM: no buffers */
604 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
605 "0301 READ_SPARAM: no buffers\n");
606 return (1);
608 INIT_LIST_HEAD(&mp->list);
609 mb->mbxCommand = MBX_READ_SPARM64;
610 mb->un.varRdSparm.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm);
611 mb->un.varRdSparm.un.sp64.addrHigh = putPaddrHigh(mp->phys);
612 mb->un.varRdSparm.un.sp64.addrLow = putPaddrLow(mp->phys);
613 mb->un.varRdSparm.vpi = vpi + phba->vpi_base;
615 /* save address for completion */
616 pmb->context1 = mp;
618 return (0);
622 * lpfc_unreg_did - Prepare a mailbox command for unregistering DID
623 * @phba: pointer to lpfc hba data structure.
624 * @vpi: virtual N_Port identifier.
625 * @did: remote port identifier.
626 * @pmb: pointer to the driver internal queue element for mailbox command.
628 * The unregister DID mailbox command is used to unregister an N_Port/F_Port
629 * login for an unknown RPI by specifying the DID of a remote port. This
630 * command frees an RPI context in the HBA port. This has the effect of
631 * performing an implicit N_Port/F_Port logout.
633 * This routine prepares the mailbox command for unregistering a remote
634 * N_Port/F_Port (DID) login.
636 void
637 lpfc_unreg_did(struct lpfc_hba * phba, uint16_t vpi, uint32_t did,
638 LPFC_MBOXQ_t * pmb)
640 MAILBOX_t *mb;
642 mb = &pmb->u.mb;
643 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
645 mb->un.varUnregDID.did = did;
646 if (vpi != 0xffff)
647 vpi += phba->vpi_base;
648 mb->un.varUnregDID.vpi = vpi;
650 mb->mbxCommand = MBX_UNREG_D_ID;
651 mb->mbxOwner = OWN_HOST;
652 return;
656 * lpfc_read_config - Prepare a mailbox command for reading HBA configuration
657 * @phba: pointer to lpfc hba data structure.
658 * @pmb: pointer to the driver internal queue element for mailbox command.
660 * The read configuration mailbox command is used to read the HBA port
661 * configuration parameters. This mailbox command provides a method for
662 * seeing any parameters that may have changed via various configuration
663 * mailbox commands.
665 * This routine prepares the mailbox command for reading out HBA configuration
666 * parameters.
668 void
669 lpfc_read_config(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
671 MAILBOX_t *mb;
673 mb = &pmb->u.mb;
674 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
676 mb->mbxCommand = MBX_READ_CONFIG;
677 mb->mbxOwner = OWN_HOST;
678 return;
682 * lpfc_read_lnk_stat - Prepare a mailbox command for reading HBA link stats
683 * @phba: pointer to lpfc hba data structure.
684 * @pmb: pointer to the driver internal queue element for mailbox command.
686 * The read link status mailbox command is used to read the link status from
687 * the HBA. Link status includes all link-related error counters. These
688 * counters are maintained by the HBA and originated in the link hardware
689 * unit. Note that all of these counters wrap.
691 * This routine prepares the mailbox command for reading out HBA link status.
693 void
694 lpfc_read_lnk_stat(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
696 MAILBOX_t *mb;
698 mb = &pmb->u.mb;
699 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
701 mb->mbxCommand = MBX_READ_LNK_STAT;
702 mb->mbxOwner = OWN_HOST;
703 return;
707 * lpfc_reg_rpi - Prepare a mailbox command for registering remote login
708 * @phba: pointer to lpfc hba data structure.
709 * @vpi: virtual N_Port identifier.
710 * @did: remote port identifier.
711 * @param: pointer to memory holding the server parameters.
712 * @pmb: pointer to the driver internal queue element for mailbox command.
713 * @flag: action flag to be passed back for the complete function.
715 * The registration login mailbox command is used to register an N_Port or
716 * F_Port login. This registration allows the HBA to cache the remote N_Port
717 * service parameters internally and thereby make the appropriate FC-2
718 * decisions. The remote port service parameters are handed off by the driver
719 * to the HBA using a descriptor entry that directly identifies a buffer in
720 * host memory. In exchange, the HBA returns an RPI identifier.
722 * This routine prepares the mailbox command for registering remote port login.
723 * The function allocates DMA buffer for passing the service parameters to the
724 * HBA with the mailbox command.
726 * Return codes
727 * 0 - Success
728 * 1 - DMA memory allocation failed
731 lpfc_reg_rpi(struct lpfc_hba *phba, uint16_t vpi, uint32_t did,
732 uint8_t *param, LPFC_MBOXQ_t *pmb, uint32_t flag)
734 MAILBOX_t *mb = &pmb->u.mb;
735 uint8_t *sparam;
736 struct lpfc_dmabuf *mp;
738 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
740 mb->un.varRegLogin.rpi = 0;
741 if (phba->sli_rev == LPFC_SLI_REV4) {
742 mb->un.varRegLogin.rpi = lpfc_sli4_alloc_rpi(phba);
743 if (mb->un.varRegLogin.rpi == LPFC_RPI_ALLOC_ERROR)
744 return 1;
747 mb->un.varRegLogin.vpi = vpi + phba->vpi_base;
748 mb->un.varRegLogin.did = did;
749 mb->un.varWords[30] = flag; /* Set flag to issue action on cmpl */
751 mb->mbxOwner = OWN_HOST;
753 /* Get a buffer to hold NPorts Service Parameters */
754 mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
755 if (mp)
756 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
757 if (!mp || !mp->virt) {
758 kfree(mp);
759 mb->mbxCommand = MBX_REG_LOGIN64;
760 /* REG_LOGIN: no buffers */
761 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
762 "0302 REG_LOGIN: no buffers, VPI:%d DID:x%x, "
763 "flag x%x\n", vpi, did, flag);
764 return (1);
766 INIT_LIST_HEAD(&mp->list);
767 sparam = mp->virt;
769 /* Copy param's into a new buffer */
770 memcpy(sparam, param, sizeof (struct serv_parm));
772 /* save address for completion */
773 pmb->context1 = (uint8_t *) mp;
775 mb->mbxCommand = MBX_REG_LOGIN64;
776 mb->un.varRegLogin.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm);
777 mb->un.varRegLogin.un.sp64.addrHigh = putPaddrHigh(mp->phys);
778 mb->un.varRegLogin.un.sp64.addrLow = putPaddrLow(mp->phys);
780 return (0);
784 * lpfc_unreg_login - Prepare a mailbox command for unregistering remote login
785 * @phba: pointer to lpfc hba data structure.
786 * @vpi: virtual N_Port identifier.
787 * @rpi: remote port identifier
788 * @pmb: pointer to the driver internal queue element for mailbox command.
790 * The unregistration login mailbox command is used to unregister an N_Port
791 * or F_Port login. This command frees an RPI context in the HBA. It has the
792 * effect of performing an implicit N_Port/F_Port logout.
794 * This routine prepares the mailbox command for unregistering remote port
795 * login.
797 void
798 lpfc_unreg_login(struct lpfc_hba *phba, uint16_t vpi, uint32_t rpi,
799 LPFC_MBOXQ_t * pmb)
801 MAILBOX_t *mb;
803 mb = &pmb->u.mb;
804 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
806 mb->un.varUnregLogin.rpi = (uint16_t) rpi;
807 mb->un.varUnregLogin.rsvd1 = 0;
808 mb->un.varUnregLogin.vpi = vpi + phba->vpi_base;
810 mb->mbxCommand = MBX_UNREG_LOGIN;
811 mb->mbxOwner = OWN_HOST;
813 return;
817 * lpfc_sli4_unreg_all_rpis - unregister all RPIs for a vport on SLI4 HBA.
818 * @vport: pointer to a vport object.
820 * This routine sends mailbox command to unregister all active RPIs for
821 * a vport.
823 void
824 lpfc_sli4_unreg_all_rpis(struct lpfc_vport *vport)
826 struct lpfc_hba *phba = vport->phba;
827 LPFC_MBOXQ_t *mbox;
828 int rc;
830 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
831 if (mbox) {
832 lpfc_unreg_login(phba, vport->vpi,
833 vport->vpi + phba->vpi_base, mbox);
834 mbox->u.mb.un.varUnregLogin.rsvd1 = 0x4000 ;
835 mbox->vport = vport;
836 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
837 mbox->context1 = NULL;
838 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
839 if (rc == MBX_NOT_FINISHED)
840 mempool_free(mbox, phba->mbox_mem_pool);
845 * lpfc_reg_vpi - Prepare a mailbox command for registering vport identifier
846 * @phba: pointer to lpfc hba data structure.
847 * @vpi: virtual N_Port identifier.
848 * @sid: Fibre Channel S_ID (N_Port_ID assigned to a virtual N_Port).
849 * @pmb: pointer to the driver internal queue element for mailbox command.
851 * The registration vport identifier mailbox command is used to activate a
852 * virtual N_Port after it has acquired an N_Port_ID. The HBA validates the
853 * N_Port_ID against the information in the selected virtual N_Port context
854 * block and marks it active to allow normal processing of IOCB commands and
855 * received unsolicited exchanges.
857 * This routine prepares the mailbox command for registering a virtual N_Port.
859 void
860 lpfc_reg_vpi(struct lpfc_vport *vport, LPFC_MBOXQ_t *pmb)
862 MAILBOX_t *mb = &pmb->u.mb;
863 struct lpfc_hba *phba = vport->phba;
865 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
867 * Set the re-reg VPI bit for f/w to update the MAC address.
869 if ((phba->sli_rev == LPFC_SLI_REV4) &&
870 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI))
871 mb->un.varRegVpi.upd = 1;
872 mb->un.varRegVpi.vpi = vport->vpi + vport->phba->vpi_base;
873 mb->un.varRegVpi.sid = vport->fc_myDID;
874 mb->un.varRegVpi.vfi = vport->vfi + vport->phba->vfi_base;
875 memcpy(mb->un.varRegVpi.wwn, &vport->fc_portname,
876 sizeof(struct lpfc_name));
877 mb->un.varRegVpi.wwn[0] = cpu_to_le32(mb->un.varRegVpi.wwn[0]);
878 mb->un.varRegVpi.wwn[1] = cpu_to_le32(mb->un.varRegVpi.wwn[1]);
880 mb->mbxCommand = MBX_REG_VPI;
881 mb->mbxOwner = OWN_HOST;
882 return;
887 * lpfc_unreg_vpi - Prepare a mailbox command for unregistering vport id
888 * @phba: pointer to lpfc hba data structure.
889 * @vpi: virtual N_Port identifier.
890 * @pmb: pointer to the driver internal queue element for mailbox command.
892 * The unregistration vport identifier mailbox command is used to inactivate
893 * a virtual N_Port. The driver must have logged out and unregistered all
894 * remote N_Ports to abort any activity on the virtual N_Port. The HBA will
895 * unregisters any default RPIs associated with the specified vpi, aborting
896 * any active exchanges. The HBA will post the mailbox response after making
897 * the virtual N_Port inactive.
899 * This routine prepares the mailbox command for unregistering a virtual
900 * N_Port.
902 void
903 lpfc_unreg_vpi(struct lpfc_hba *phba, uint16_t vpi, LPFC_MBOXQ_t *pmb)
905 MAILBOX_t *mb = &pmb->u.mb;
906 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
908 if (phba->sli_rev < LPFC_SLI_REV4)
909 mb->un.varUnregVpi.vpi = vpi + phba->vpi_base;
910 else
911 mb->un.varUnregVpi.sli4_vpi = vpi + phba->vpi_base;
913 mb->mbxCommand = MBX_UNREG_VPI;
914 mb->mbxOwner = OWN_HOST;
915 return;
920 * lpfc_config_pcb_setup - Set up IOCB rings in the Port Control Block (PCB)
921 * @phba: pointer to lpfc hba data structure.
923 * This routine sets up and initializes the IOCB rings in the Port Control
924 * Block (PCB).
926 static void
927 lpfc_config_pcb_setup(struct lpfc_hba * phba)
929 struct lpfc_sli *psli = &phba->sli;
930 struct lpfc_sli_ring *pring;
931 PCB_t *pcbp = phba->pcb;
932 dma_addr_t pdma_addr;
933 uint32_t offset;
934 uint32_t iocbCnt = 0;
935 int i;
937 pcbp->maxRing = (psli->num_rings - 1);
939 for (i = 0; i < psli->num_rings; i++) {
940 pring = &psli->ring[i];
942 pring->sizeCiocb = phba->sli_rev == 3 ? SLI3_IOCB_CMD_SIZE:
943 SLI2_IOCB_CMD_SIZE;
944 pring->sizeRiocb = phba->sli_rev == 3 ? SLI3_IOCB_RSP_SIZE:
945 SLI2_IOCB_RSP_SIZE;
946 /* A ring MUST have both cmd and rsp entries defined to be
947 valid */
948 if ((pring->numCiocb == 0) || (pring->numRiocb == 0)) {
949 pcbp->rdsc[i].cmdEntries = 0;
950 pcbp->rdsc[i].rspEntries = 0;
951 pcbp->rdsc[i].cmdAddrHigh = 0;
952 pcbp->rdsc[i].rspAddrHigh = 0;
953 pcbp->rdsc[i].cmdAddrLow = 0;
954 pcbp->rdsc[i].rspAddrLow = 0;
955 pring->cmdringaddr = NULL;
956 pring->rspringaddr = NULL;
957 continue;
959 /* Command ring setup for ring */
960 pring->cmdringaddr = (void *)&phba->IOCBs[iocbCnt];
961 pcbp->rdsc[i].cmdEntries = pring->numCiocb;
963 offset = (uint8_t *) &phba->IOCBs[iocbCnt] -
964 (uint8_t *) phba->slim2p.virt;
965 pdma_addr = phba->slim2p.phys + offset;
966 pcbp->rdsc[i].cmdAddrHigh = putPaddrHigh(pdma_addr);
967 pcbp->rdsc[i].cmdAddrLow = putPaddrLow(pdma_addr);
968 iocbCnt += pring->numCiocb;
970 /* Response ring setup for ring */
971 pring->rspringaddr = (void *) &phba->IOCBs[iocbCnt];
973 pcbp->rdsc[i].rspEntries = pring->numRiocb;
974 offset = (uint8_t *)&phba->IOCBs[iocbCnt] -
975 (uint8_t *)phba->slim2p.virt;
976 pdma_addr = phba->slim2p.phys + offset;
977 pcbp->rdsc[i].rspAddrHigh = putPaddrHigh(pdma_addr);
978 pcbp->rdsc[i].rspAddrLow = putPaddrLow(pdma_addr);
979 iocbCnt += pring->numRiocb;
984 * lpfc_read_rev - Prepare a mailbox command for reading HBA revision
985 * @phba: pointer to lpfc hba data structure.
986 * @pmb: pointer to the driver internal queue element for mailbox command.
988 * The read revision mailbox command is used to read the revision levels of
989 * the HBA components. These components include hardware units, resident
990 * firmware, and available firmware. HBAs that supports SLI-3 mode of
991 * operation provide different response information depending on the version
992 * requested by the driver.
994 * This routine prepares the mailbox command for reading HBA revision
995 * information.
997 void
998 lpfc_read_rev(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
1000 MAILBOX_t *mb = &pmb->u.mb;
1001 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
1002 mb->un.varRdRev.cv = 1;
1003 mb->un.varRdRev.v3req = 1; /* Request SLI3 info */
1004 mb->mbxCommand = MBX_READ_REV;
1005 mb->mbxOwner = OWN_HOST;
1006 return;
1009 void
1010 lpfc_sli4_swap_str(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
1012 MAILBOX_t *mb = &pmb->u.mb;
1013 struct lpfc_mqe *mqe;
1015 switch (mb->mbxCommand) {
1016 case MBX_READ_REV:
1017 mqe = &pmb->u.mqe;
1018 lpfc_sli_pcimem_bcopy(mqe->un.read_rev.fw_name,
1019 mqe->un.read_rev.fw_name, 16);
1020 lpfc_sli_pcimem_bcopy(mqe->un.read_rev.ulp_fw_name,
1021 mqe->un.read_rev.ulp_fw_name, 16);
1022 break;
1023 default:
1024 break;
1026 return;
1030 * lpfc_build_hbq_profile2 - Set up the HBQ Selection Profile 2
1031 * @hbqmb: pointer to the HBQ configuration data structure in mailbox command.
1032 * @hbq_desc: pointer to the HBQ selection profile descriptor.
1034 * The Host Buffer Queue (HBQ) Selection Profile 2 specifies that the HBA
1035 * tests the incoming frames' R_CTL/TYPE fields with works 10:15 and performs
1036 * the Sequence Length Test using the fields in the Selection Profile 2
1037 * extension in words 20:31.
1039 static void
1040 lpfc_build_hbq_profile2(struct config_hbq_var *hbqmb,
1041 struct lpfc_hbq_init *hbq_desc)
1043 hbqmb->profiles.profile2.seqlenbcnt = hbq_desc->seqlenbcnt;
1044 hbqmb->profiles.profile2.maxlen = hbq_desc->maxlen;
1045 hbqmb->profiles.profile2.seqlenoff = hbq_desc->seqlenoff;
1049 * lpfc_build_hbq_profile3 - Set up the HBQ Selection Profile 3
1050 * @hbqmb: pointer to the HBQ configuration data structure in mailbox command.
1051 * @hbq_desc: pointer to the HBQ selection profile descriptor.
1053 * The Host Buffer Queue (HBQ) Selection Profile 3 specifies that the HBA
1054 * tests the incoming frame's R_CTL/TYPE fields with words 10:15 and performs
1055 * the Sequence Length Test and Byte Field Test using the fields in the
1056 * Selection Profile 3 extension in words 20:31.
1058 static void
1059 lpfc_build_hbq_profile3(struct config_hbq_var *hbqmb,
1060 struct lpfc_hbq_init *hbq_desc)
1062 hbqmb->profiles.profile3.seqlenbcnt = hbq_desc->seqlenbcnt;
1063 hbqmb->profiles.profile3.maxlen = hbq_desc->maxlen;
1064 hbqmb->profiles.profile3.cmdcodeoff = hbq_desc->cmdcodeoff;
1065 hbqmb->profiles.profile3.seqlenoff = hbq_desc->seqlenoff;
1066 memcpy(&hbqmb->profiles.profile3.cmdmatch, hbq_desc->cmdmatch,
1067 sizeof(hbqmb->profiles.profile3.cmdmatch));
1071 * lpfc_build_hbq_profile5 - Set up the HBQ Selection Profile 5
1072 * @hbqmb: pointer to the HBQ configuration data structure in mailbox command.
1073 * @hbq_desc: pointer to the HBQ selection profile descriptor.
1075 * The Host Buffer Queue (HBQ) Selection Profile 5 specifies a header HBQ. The
1076 * HBA tests the initial frame of an incoming sequence using the frame's
1077 * R_CTL/TYPE fields with words 10:15 and performs the Sequence Length Test
1078 * and Byte Field Test using the fields in the Selection Profile 5 extension
1079 * words 20:31.
1081 static void
1082 lpfc_build_hbq_profile5(struct config_hbq_var *hbqmb,
1083 struct lpfc_hbq_init *hbq_desc)
1085 hbqmb->profiles.profile5.seqlenbcnt = hbq_desc->seqlenbcnt;
1086 hbqmb->profiles.profile5.maxlen = hbq_desc->maxlen;
1087 hbqmb->profiles.profile5.cmdcodeoff = hbq_desc->cmdcodeoff;
1088 hbqmb->profiles.profile5.seqlenoff = hbq_desc->seqlenoff;
1089 memcpy(&hbqmb->profiles.profile5.cmdmatch, hbq_desc->cmdmatch,
1090 sizeof(hbqmb->profiles.profile5.cmdmatch));
1094 * lpfc_config_hbq - Prepare a mailbox command for configuring an HBQ
1095 * @phba: pointer to lpfc hba data structure.
1096 * @id: HBQ identifier.
1097 * @hbq_desc: pointer to the HBA descriptor data structure.
1098 * @hbq_entry_index: index of the HBQ entry data structures.
1099 * @pmb: pointer to the driver internal queue element for mailbox command.
1101 * The configure HBQ (Host Buffer Queue) mailbox command is used to configure
1102 * an HBQ. The configuration binds events that require buffers to a particular
1103 * ring and HBQ based on a selection profile.
1105 * This routine prepares the mailbox command for configuring an HBQ.
1107 void
1108 lpfc_config_hbq(struct lpfc_hba *phba, uint32_t id,
1109 struct lpfc_hbq_init *hbq_desc,
1110 uint32_t hbq_entry_index, LPFC_MBOXQ_t *pmb)
1112 int i;
1113 MAILBOX_t *mb = &pmb->u.mb;
1114 struct config_hbq_var *hbqmb = &mb->un.varCfgHbq;
1116 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
1117 hbqmb->hbqId = id;
1118 hbqmb->entry_count = hbq_desc->entry_count; /* # entries in HBQ */
1119 hbqmb->recvNotify = hbq_desc->rn; /* Receive
1120 * Notification */
1121 hbqmb->numMask = hbq_desc->mask_count; /* # R_CTL/TYPE masks
1122 * # in words 0-19 */
1123 hbqmb->profile = hbq_desc->profile; /* Selection profile:
1124 * 0 = all,
1125 * 7 = logentry */
1126 hbqmb->ringMask = hbq_desc->ring_mask; /* Binds HBQ to a ring
1127 * e.g. Ring0=b0001,
1128 * ring2=b0100 */
1129 hbqmb->headerLen = hbq_desc->headerLen; /* 0 if not profile 4
1130 * or 5 */
1131 hbqmb->logEntry = hbq_desc->logEntry; /* Set to 1 if this
1132 * HBQ will be used
1133 * for LogEntry
1134 * buffers */
1135 hbqmb->hbqaddrLow = putPaddrLow(phba->hbqslimp.phys) +
1136 hbq_entry_index * sizeof(struct lpfc_hbq_entry);
1137 hbqmb->hbqaddrHigh = putPaddrHigh(phba->hbqslimp.phys);
1139 mb->mbxCommand = MBX_CONFIG_HBQ;
1140 mb->mbxOwner = OWN_HOST;
1142 /* Copy info for profiles 2,3,5. Other
1143 * profiles this area is reserved
1145 if (hbq_desc->profile == 2)
1146 lpfc_build_hbq_profile2(hbqmb, hbq_desc);
1147 else if (hbq_desc->profile == 3)
1148 lpfc_build_hbq_profile3(hbqmb, hbq_desc);
1149 else if (hbq_desc->profile == 5)
1150 lpfc_build_hbq_profile5(hbqmb, hbq_desc);
1152 /* Return if no rctl / type masks for this HBQ */
1153 if (!hbq_desc->mask_count)
1154 return;
1156 /* Otherwise we setup specific rctl / type masks for this HBQ */
1157 for (i = 0; i < hbq_desc->mask_count; i++) {
1158 hbqmb->hbqMasks[i].tmatch = hbq_desc->hbqMasks[i].tmatch;
1159 hbqmb->hbqMasks[i].tmask = hbq_desc->hbqMasks[i].tmask;
1160 hbqmb->hbqMasks[i].rctlmatch = hbq_desc->hbqMasks[i].rctlmatch;
1161 hbqmb->hbqMasks[i].rctlmask = hbq_desc->hbqMasks[i].rctlmask;
1164 return;
1168 * lpfc_config_ring - Prepare a mailbox command for configuring an IOCB ring
1169 * @phba: pointer to lpfc hba data structure.
1170 * @ring:
1171 * @pmb: pointer to the driver internal queue element for mailbox command.
1173 * The configure ring mailbox command is used to configure an IOCB ring. This
1174 * configuration binds from one to six of HBA RC_CTL/TYPE mask entries to the
1175 * ring. This is used to map incoming sequences to a particular ring whose
1176 * RC_CTL/TYPE mask entry matches that of the sequence. The driver should not
1177 * attempt to configure a ring whose number is greater than the number
1178 * specified in the Port Control Block (PCB). It is an error to issue the
1179 * configure ring command more than once with the same ring number. The HBA
1180 * returns an error if the driver attempts this.
1182 * This routine prepares the mailbox command for configuring IOCB ring.
1184 void
1185 lpfc_config_ring(struct lpfc_hba * phba, int ring, LPFC_MBOXQ_t * pmb)
1187 int i;
1188 MAILBOX_t *mb = &pmb->u.mb;
1189 struct lpfc_sli *psli;
1190 struct lpfc_sli_ring *pring;
1192 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
1194 mb->un.varCfgRing.ring = ring;
1195 mb->un.varCfgRing.maxOrigXchg = 0;
1196 mb->un.varCfgRing.maxRespXchg = 0;
1197 mb->un.varCfgRing.recvNotify = 1;
1199 psli = &phba->sli;
1200 pring = &psli->ring[ring];
1201 mb->un.varCfgRing.numMask = pring->num_mask;
1202 mb->mbxCommand = MBX_CONFIG_RING;
1203 mb->mbxOwner = OWN_HOST;
1205 /* Is this ring configured for a specific profile */
1206 if (pring->prt[0].profile) {
1207 mb->un.varCfgRing.profile = pring->prt[0].profile;
1208 return;
1211 /* Otherwise we setup specific rctl / type masks for this ring */
1212 for (i = 0; i < pring->num_mask; i++) {
1213 mb->un.varCfgRing.rrRegs[i].rval = pring->prt[i].rctl;
1214 if (mb->un.varCfgRing.rrRegs[i].rval != FC_RCTL_ELS_REQ)
1215 mb->un.varCfgRing.rrRegs[i].rmask = 0xff;
1216 else
1217 mb->un.varCfgRing.rrRegs[i].rmask = 0xfe;
1218 mb->un.varCfgRing.rrRegs[i].tval = pring->prt[i].type;
1219 mb->un.varCfgRing.rrRegs[i].tmask = 0xff;
1222 return;
1226 * lpfc_config_port - Prepare a mailbox command for configuring port
1227 * @phba: pointer to lpfc hba data structure.
1228 * @pmb: pointer to the driver internal queue element for mailbox command.
1230 * The configure port mailbox command is used to identify the Port Control
1231 * Block (PCB) in the driver memory. After this command is issued, the
1232 * driver must not access the mailbox in the HBA without first resetting
1233 * the HBA. The HBA may copy the PCB information to internal storage for
1234 * subsequent use; the driver can not change the PCB information unless it
1235 * resets the HBA.
1237 * This routine prepares the mailbox command for configuring port.
1239 void
1240 lpfc_config_port(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
1242 MAILBOX_t __iomem *mb_slim = (MAILBOX_t __iomem *) phba->MBslimaddr;
1243 MAILBOX_t *mb = &pmb->u.mb;
1244 dma_addr_t pdma_addr;
1245 uint32_t bar_low, bar_high;
1246 size_t offset;
1247 struct lpfc_hgp hgp;
1248 int i;
1249 uint32_t pgp_offset;
1251 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
1252 mb->mbxCommand = MBX_CONFIG_PORT;
1253 mb->mbxOwner = OWN_HOST;
1255 mb->un.varCfgPort.pcbLen = sizeof(PCB_t);
1257 offset = (uint8_t *)phba->pcb - (uint8_t *)phba->slim2p.virt;
1258 pdma_addr = phba->slim2p.phys + offset;
1259 mb->un.varCfgPort.pcbLow = putPaddrLow(pdma_addr);
1260 mb->un.varCfgPort.pcbHigh = putPaddrHigh(pdma_addr);
1262 /* Always Host Group Pointer is in SLIM */
1263 mb->un.varCfgPort.hps = 1;
1265 /* If HBA supports SLI=3 ask for it */
1267 if (phba->sli_rev == LPFC_SLI_REV3 && phba->vpd.sli3Feat.cerbm) {
1268 if (phba->cfg_enable_bg)
1269 mb->un.varCfgPort.cbg = 1; /* configure BlockGuard */
1270 mb->un.varCfgPort.cdss = 1; /* Configure Security */
1271 mb->un.varCfgPort.cerbm = 1; /* Request HBQs */
1272 mb->un.varCfgPort.ccrp = 1; /* Command Ring Polling */
1273 mb->un.varCfgPort.max_hbq = lpfc_sli_hbq_count();
1274 if (phba->max_vpi && phba->cfg_enable_npiv &&
1275 phba->vpd.sli3Feat.cmv) {
1276 mb->un.varCfgPort.max_vpi = LPFC_MAX_VPI;
1277 mb->un.varCfgPort.cmv = 1;
1278 } else
1279 mb->un.varCfgPort.max_vpi = phba->max_vpi = 0;
1280 } else
1281 phba->sli_rev = LPFC_SLI_REV2;
1282 mb->un.varCfgPort.sli_mode = phba->sli_rev;
1284 /* Now setup pcb */
1285 phba->pcb->type = TYPE_NATIVE_SLI2;
1286 phba->pcb->feature = FEATURE_INITIAL_SLI2;
1288 /* Setup Mailbox pointers */
1289 phba->pcb->mailBoxSize = sizeof(MAILBOX_t) + MAILBOX_EXT_SIZE;
1290 offset = (uint8_t *)phba->mbox - (uint8_t *)phba->slim2p.virt;
1291 pdma_addr = phba->slim2p.phys + offset;
1292 phba->pcb->mbAddrHigh = putPaddrHigh(pdma_addr);
1293 phba->pcb->mbAddrLow = putPaddrLow(pdma_addr);
1296 * Setup Host Group ring pointer.
1298 * For efficiency reasons, the ring get/put pointers can be
1299 * placed in adapter memory (SLIM) rather than in host memory.
1300 * This allows firmware to avoid PCI reads/writes when updating
1301 * and checking pointers.
1303 * The firmware recognizes the use of SLIM memory by comparing
1304 * the address of the get/put pointers structure with that of
1305 * the SLIM BAR (BAR0).
1307 * Caution: be sure to use the PCI config space value of BAR0/BAR1
1308 * (the hardware's view of the base address), not the OS's
1309 * value of pci_resource_start() as the OS value may be a cookie
1310 * for ioremap/iomap.
1314 pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_0, &bar_low);
1315 pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_1, &bar_high);
1318 * Set up HGP - Port Memory
1320 * The port expects the host get/put pointers to reside in memory
1321 * following the "non-diagnostic" mode mailbox (32 words, 0x80 bytes)
1322 * area of SLIM. In SLI-2 mode, there's an additional 16 reserved
1323 * words (0x40 bytes). This area is not reserved if HBQs are
1324 * configured in SLI-3.
1326 * CR0Put - SLI2(no HBQs) = 0xc0, With HBQs = 0x80
1327 * RR0Get 0xc4 0x84
1328 * CR1Put 0xc8 0x88
1329 * RR1Get 0xcc 0x8c
1330 * CR2Put 0xd0 0x90
1331 * RR2Get 0xd4 0x94
1332 * CR3Put 0xd8 0x98
1333 * RR3Get 0xdc 0x9c
1335 * Reserved 0xa0-0xbf
1336 * If HBQs configured:
1337 * HBQ 0 Put ptr 0xc0
1338 * HBQ 1 Put ptr 0xc4
1339 * HBQ 2 Put ptr 0xc8
1340 * ......
1341 * HBQ(M-1)Put Pointer 0xc0+(M-1)*4
1345 if (phba->cfg_hostmem_hgp && phba->sli_rev != 3) {
1346 phba->host_gp = &phba->mbox->us.s2.host[0];
1347 phba->hbq_put = NULL;
1348 offset = (uint8_t *)&phba->mbox->us.s2.host -
1349 (uint8_t *)phba->slim2p.virt;
1350 pdma_addr = phba->slim2p.phys + offset;
1351 phba->pcb->hgpAddrHigh = putPaddrHigh(pdma_addr);
1352 phba->pcb->hgpAddrLow = putPaddrLow(pdma_addr);
1353 } else {
1354 /* Always Host Group Pointer is in SLIM */
1355 mb->un.varCfgPort.hps = 1;
1357 if (phba->sli_rev == 3) {
1358 phba->host_gp = &mb_slim->us.s3.host[0];
1359 phba->hbq_put = &mb_slim->us.s3.hbq_put[0];
1360 } else {
1361 phba->host_gp = &mb_slim->us.s2.host[0];
1362 phba->hbq_put = NULL;
1365 /* mask off BAR0's flag bits 0 - 3 */
1366 phba->pcb->hgpAddrLow = (bar_low & PCI_BASE_ADDRESS_MEM_MASK) +
1367 (void __iomem *)phba->host_gp -
1368 (void __iomem *)phba->MBslimaddr;
1369 if (bar_low & PCI_BASE_ADDRESS_MEM_TYPE_64)
1370 phba->pcb->hgpAddrHigh = bar_high;
1371 else
1372 phba->pcb->hgpAddrHigh = 0;
1373 /* write HGP data to SLIM at the required longword offset */
1374 memset(&hgp, 0, sizeof(struct lpfc_hgp));
1376 for (i = 0; i < phba->sli.num_rings; i++) {
1377 lpfc_memcpy_to_slim(phba->host_gp + i, &hgp,
1378 sizeof(*phba->host_gp));
1382 /* Setup Port Group offset */
1383 if (phba->sli_rev == 3)
1384 pgp_offset = offsetof(struct lpfc_sli2_slim,
1385 mbx.us.s3_pgp.port);
1386 else
1387 pgp_offset = offsetof(struct lpfc_sli2_slim, mbx.us.s2.port);
1388 pdma_addr = phba->slim2p.phys + pgp_offset;
1389 phba->pcb->pgpAddrHigh = putPaddrHigh(pdma_addr);
1390 phba->pcb->pgpAddrLow = putPaddrLow(pdma_addr);
1392 /* Use callback routine to setp rings in the pcb */
1393 lpfc_config_pcb_setup(phba);
1395 /* special handling for LC HBAs */
1396 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
1397 uint32_t hbainit[5];
1399 lpfc_hba_init(phba, hbainit);
1401 memcpy(&mb->un.varCfgPort.hbainit, hbainit, 20);
1404 /* Swap PCB if needed */
1405 lpfc_sli_pcimem_bcopy(phba->pcb, phba->pcb, sizeof(PCB_t));
1409 * lpfc_kill_board - Prepare a mailbox command for killing board
1410 * @phba: pointer to lpfc hba data structure.
1411 * @pmb: pointer to the driver internal queue element for mailbox command.
1413 * The kill board mailbox command is used to tell firmware to perform a
1414 * graceful shutdown of a channel on a specified board to prepare for reset.
1415 * When the kill board mailbox command is received, the ER3 bit is set to 1
1416 * in the Host Status register and the ER Attention bit is set to 1 in the
1417 * Host Attention register of the HBA function that received the kill board
1418 * command.
1420 * This routine prepares the mailbox command for killing the board in
1421 * preparation for a graceful shutdown.
1423 void
1424 lpfc_kill_board(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
1426 MAILBOX_t *mb = &pmb->u.mb;
1428 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
1429 mb->mbxCommand = MBX_KILL_BOARD;
1430 mb->mbxOwner = OWN_HOST;
1431 return;
1435 * lpfc_mbox_put - Put a mailbox cmd into the tail of driver's mailbox queue
1436 * @phba: pointer to lpfc hba data structure.
1437 * @mbq: pointer to the driver internal queue element for mailbox command.
1439 * Driver maintains a internal mailbox command queue implemented as a linked
1440 * list. When a mailbox command is issued, it shall be put into the mailbox
1441 * command queue such that they shall be processed orderly as HBA can process
1442 * one mailbox command at a time.
1444 void
1445 lpfc_mbox_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq)
1447 struct lpfc_sli *psli;
1449 psli = &phba->sli;
1451 list_add_tail(&mbq->list, &psli->mboxq);
1453 psli->mboxq_cnt++;
1455 return;
1459 * lpfc_mbox_get - Remove a mailbox cmd from the head of driver's mailbox queue
1460 * @phba: pointer to lpfc hba data structure.
1462 * Driver maintains a internal mailbox command queue implemented as a linked
1463 * list. When a mailbox command is issued, it shall be put into the mailbox
1464 * command queue such that they shall be processed orderly as HBA can process
1465 * one mailbox command at a time. After HBA finished processing a mailbox
1466 * command, the driver will remove a pending mailbox command from the head of
1467 * the mailbox command queue and send to the HBA for processing.
1469 * Return codes
1470 * pointer to the driver internal queue element for mailbox command.
1472 LPFC_MBOXQ_t *
1473 lpfc_mbox_get(struct lpfc_hba * phba)
1475 LPFC_MBOXQ_t *mbq = NULL;
1476 struct lpfc_sli *psli = &phba->sli;
1478 list_remove_head((&psli->mboxq), mbq, LPFC_MBOXQ_t, list);
1479 if (mbq)
1480 psli->mboxq_cnt--;
1482 return mbq;
1486 * __lpfc_mbox_cmpl_put - Put mailbox cmd into mailbox cmd complete list
1487 * @phba: pointer to lpfc hba data structure.
1488 * @mbq: pointer to the driver internal queue element for mailbox command.
1490 * This routine put the completed mailbox command into the mailbox command
1491 * complete list. This is the unlocked version of the routine. The mailbox
1492 * complete list is used by the driver worker thread to process mailbox
1493 * complete callback functions outside the driver interrupt handler.
1495 void
1496 __lpfc_mbox_cmpl_put(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbq)
1498 list_add_tail(&mbq->list, &phba->sli.mboxq_cmpl);
1502 * lpfc_mbox_cmpl_put - Put mailbox command into mailbox command complete list
1503 * @phba: pointer to lpfc hba data structure.
1504 * @mbq: pointer to the driver internal queue element for mailbox command.
1506 * This routine put the completed mailbox command into the mailbox command
1507 * complete list. This is the locked version of the routine. The mailbox
1508 * complete list is used by the driver worker thread to process mailbox
1509 * complete callback functions outside the driver interrupt handler.
1511 void
1512 lpfc_mbox_cmpl_put(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbq)
1514 unsigned long iflag;
1516 /* This function expects to be called from interrupt context */
1517 spin_lock_irqsave(&phba->hbalock, iflag);
1518 __lpfc_mbox_cmpl_put(phba, mbq);
1519 spin_unlock_irqrestore(&phba->hbalock, iflag);
1520 return;
1524 * lpfc_mbox_cmd_check - Check the validality of a mailbox command
1525 * @phba: pointer to lpfc hba data structure.
1526 * @mboxq: pointer to the driver internal queue element for mailbox command.
1528 * This routine is to check whether a mailbox command is valid to be issued.
1529 * This check will be performed by both the mailbox issue API when a client
1530 * is to issue a mailbox command to the mailbox transport.
1532 * Return 0 - pass the check, -ENODEV - fail the check
1535 lpfc_mbox_cmd_check(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
1537 /* Mailbox command that have a completion handler must also have a
1538 * vport specified.
1540 if (mboxq->mbox_cmpl && mboxq->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
1541 mboxq->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
1542 if (!mboxq->vport) {
1543 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_VPORT,
1544 "1814 Mbox x%x failed, no vport\n",
1545 mboxq->u.mb.mbxCommand);
1546 dump_stack();
1547 return -ENODEV;
1550 return 0;
1554 * lpfc_mbox_dev_check - Check the device state for issuing a mailbox command
1555 * @phba: pointer to lpfc hba data structure.
1557 * This routine is to check whether the HBA device is ready for posting a
1558 * mailbox command. It is used by the mailbox transport API at the time the
1559 * to post a mailbox command to the device.
1561 * Return 0 - pass the check, -ENODEV - fail the check
1564 lpfc_mbox_dev_check(struct lpfc_hba *phba)
1566 /* If the PCI channel is in offline state, do not issue mbox */
1567 if (unlikely(pci_channel_offline(phba->pcidev)))
1568 return -ENODEV;
1570 /* If the HBA is in error state, do not issue mbox */
1571 if (phba->link_state == LPFC_HBA_ERROR)
1572 return -ENODEV;
1574 return 0;
1578 * lpfc_mbox_tmo_val - Retrieve mailbox command timeout value
1579 * @phba: pointer to lpfc hba data structure.
1580 * @cmd: mailbox command code.
1582 * This routine retrieves the proper timeout value according to the mailbox
1583 * command code.
1585 * Return codes
1586 * Timeout value to be used for the given mailbox command
1589 lpfc_mbox_tmo_val(struct lpfc_hba *phba, int cmd)
1591 switch (cmd) {
1592 case MBX_WRITE_NV: /* 0x03 */
1593 case MBX_UPDATE_CFG: /* 0x1B */
1594 case MBX_DOWN_LOAD: /* 0x1C */
1595 case MBX_DEL_LD_ENTRY: /* 0x1D */
1596 case MBX_LOAD_AREA: /* 0x81 */
1597 case MBX_WRITE_WWN: /* 0x98 */
1598 case MBX_LOAD_EXP_ROM: /* 0x9C */
1599 return LPFC_MBOX_TMO_FLASH_CMD;
1600 case MBX_SLI4_CONFIG: /* 0x9b */
1601 return LPFC_MBOX_SLI4_CONFIG_TMO;
1603 return LPFC_MBOX_TMO;
1607 * lpfc_sli4_mbx_sge_set - Set a sge entry in non-embedded mailbox command
1608 * @mbox: pointer to lpfc mbox command.
1609 * @sgentry: sge entry index.
1610 * @phyaddr: physical address for the sge
1611 * @length: Length of the sge.
1613 * This routine sets up an entry in the non-embedded mailbox command at the sge
1614 * index location.
1616 void
1617 lpfc_sli4_mbx_sge_set(struct lpfcMboxq *mbox, uint32_t sgentry,
1618 dma_addr_t phyaddr, uint32_t length)
1620 struct lpfc_mbx_nembed_cmd *nembed_sge;
1622 nembed_sge = (struct lpfc_mbx_nembed_cmd *)
1623 &mbox->u.mqe.un.nembed_cmd;
1624 nembed_sge->sge[sgentry].pa_lo = putPaddrLow(phyaddr);
1625 nembed_sge->sge[sgentry].pa_hi = putPaddrHigh(phyaddr);
1626 nembed_sge->sge[sgentry].length = length;
1630 * lpfc_sli4_mbx_sge_get - Get a sge entry from non-embedded mailbox command
1631 * @mbox: pointer to lpfc mbox command.
1632 * @sgentry: sge entry index.
1634 * This routine gets an entry from the non-embedded mailbox command at the sge
1635 * index location.
1637 void
1638 lpfc_sli4_mbx_sge_get(struct lpfcMboxq *mbox, uint32_t sgentry,
1639 struct lpfc_mbx_sge *sge)
1641 struct lpfc_mbx_nembed_cmd *nembed_sge;
1643 nembed_sge = (struct lpfc_mbx_nembed_cmd *)
1644 &mbox->u.mqe.un.nembed_cmd;
1645 sge->pa_lo = nembed_sge->sge[sgentry].pa_lo;
1646 sge->pa_hi = nembed_sge->sge[sgentry].pa_hi;
1647 sge->length = nembed_sge->sge[sgentry].length;
1651 * lpfc_sli4_mbox_cmd_free - Free a sli4 mailbox command
1652 * @phba: pointer to lpfc hba data structure.
1653 * @mbox: pointer to lpfc mbox command.
1655 * This routine frees SLI4 specific mailbox command for sending IOCTL command.
1657 void
1658 lpfc_sli4_mbox_cmd_free(struct lpfc_hba *phba, struct lpfcMboxq *mbox)
1660 struct lpfc_mbx_sli4_config *sli4_cfg;
1661 struct lpfc_mbx_sge sge;
1662 dma_addr_t phyaddr;
1663 uint32_t sgecount, sgentry;
1665 sli4_cfg = &mbox->u.mqe.un.sli4_config;
1667 /* For embedded mbox command, just free the mbox command */
1668 if (bf_get(lpfc_mbox_hdr_emb, &sli4_cfg->header.cfg_mhdr)) {
1669 mempool_free(mbox, phba->mbox_mem_pool);
1670 return;
1673 /* For non-embedded mbox command, we need to free the pages first */
1674 sgecount = bf_get(lpfc_mbox_hdr_sge_cnt, &sli4_cfg->header.cfg_mhdr);
1675 /* There is nothing we can do if there is no sge address array */
1676 if (unlikely(!mbox->sge_array)) {
1677 mempool_free(mbox, phba->mbox_mem_pool);
1678 return;
1680 /* Each non-embedded DMA memory was allocated in the length of a page */
1681 for (sgentry = 0; sgentry < sgecount; sgentry++) {
1682 lpfc_sli4_mbx_sge_get(mbox, sgentry, &sge);
1683 phyaddr = getPaddr(sge.pa_hi, sge.pa_lo);
1684 dma_free_coherent(&phba->pcidev->dev, SLI4_PAGE_SIZE,
1685 mbox->sge_array->addr[sgentry], phyaddr);
1687 /* Free the sge address array memory */
1688 kfree(mbox->sge_array);
1689 /* Finally, free the mailbox command itself */
1690 mempool_free(mbox, phba->mbox_mem_pool);
1694 * lpfc_sli4_config - Initialize the SLI4 Config Mailbox command
1695 * @phba: pointer to lpfc hba data structure.
1696 * @mbox: pointer to lpfc mbox command.
1697 * @subsystem: The sli4 config sub mailbox subsystem.
1698 * @opcode: The sli4 config sub mailbox command opcode.
1699 * @length: Length of the sli4 config mailbox command.
1701 * This routine sets up the header fields of SLI4 specific mailbox command
1702 * for sending IOCTL command.
1704 * Return: the actual length of the mbox command allocated (mostly useful
1705 * for none embedded mailbox command).
1708 lpfc_sli4_config(struct lpfc_hba *phba, struct lpfcMboxq *mbox,
1709 uint8_t subsystem, uint8_t opcode, uint32_t length, bool emb)
1711 struct lpfc_mbx_sli4_config *sli4_config;
1712 union lpfc_sli4_cfg_shdr *cfg_shdr = NULL;
1713 uint32_t alloc_len;
1714 uint32_t resid_len;
1715 uint32_t pagen, pcount;
1716 void *viraddr;
1717 dma_addr_t phyaddr;
1719 /* Set up SLI4 mailbox command header fields */
1720 memset(mbox, 0, sizeof(*mbox));
1721 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_SLI4_CONFIG);
1723 /* Set up SLI4 ioctl command header fields */
1724 sli4_config = &mbox->u.mqe.un.sli4_config;
1726 /* Setup for the embedded mbox command */
1727 if (emb) {
1728 /* Set up main header fields */
1729 bf_set(lpfc_mbox_hdr_emb, &sli4_config->header.cfg_mhdr, 1);
1730 sli4_config->header.cfg_mhdr.payload_length =
1731 LPFC_MBX_CMD_HDR_LENGTH + length;
1732 /* Set up sub-header fields following main header */
1733 bf_set(lpfc_mbox_hdr_opcode,
1734 &sli4_config->header.cfg_shdr.request, opcode);
1735 bf_set(lpfc_mbox_hdr_subsystem,
1736 &sli4_config->header.cfg_shdr.request, subsystem);
1737 sli4_config->header.cfg_shdr.request.request_length = length;
1738 return length;
1741 /* Setup for the none-embedded mbox command */
1742 pcount = (PAGE_ALIGN(length))/SLI4_PAGE_SIZE;
1743 pcount = (pcount > LPFC_SLI4_MBX_SGE_MAX_PAGES) ?
1744 LPFC_SLI4_MBX_SGE_MAX_PAGES : pcount;
1745 /* Allocate record for keeping SGE virtual addresses */
1746 mbox->sge_array = kmalloc(sizeof(struct lpfc_mbx_nembed_sge_virt),
1747 GFP_KERNEL);
1748 if (!mbox->sge_array) {
1749 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1750 "2527 Failed to allocate non-embedded SGE "
1751 "array.\n");
1752 return 0;
1754 for (pagen = 0, alloc_len = 0; pagen < pcount; pagen++) {
1755 /* The DMA memory is always allocated in the length of a
1756 * page even though the last SGE might not fill up to a
1757 * page, this is used as a priori size of SLI4_PAGE_SIZE for
1758 * the later DMA memory free.
1760 viraddr = dma_alloc_coherent(&phba->pcidev->dev, SLI4_PAGE_SIZE,
1761 &phyaddr, GFP_KERNEL);
1762 /* In case of malloc fails, proceed with whatever we have */
1763 if (!viraddr)
1764 break;
1765 memset(viraddr, 0, SLI4_PAGE_SIZE);
1766 mbox->sge_array->addr[pagen] = viraddr;
1767 /* Keep the first page for later sub-header construction */
1768 if (pagen == 0)
1769 cfg_shdr = (union lpfc_sli4_cfg_shdr *)viraddr;
1770 resid_len = length - alloc_len;
1771 if (resid_len > SLI4_PAGE_SIZE) {
1772 lpfc_sli4_mbx_sge_set(mbox, pagen, phyaddr,
1773 SLI4_PAGE_SIZE);
1774 alloc_len += SLI4_PAGE_SIZE;
1775 } else {
1776 lpfc_sli4_mbx_sge_set(mbox, pagen, phyaddr,
1777 resid_len);
1778 alloc_len = length;
1782 /* Set up main header fields in mailbox command */
1783 sli4_config->header.cfg_mhdr.payload_length = alloc_len;
1784 bf_set(lpfc_mbox_hdr_sge_cnt, &sli4_config->header.cfg_mhdr, pagen);
1786 /* Set up sub-header fields into the first page */
1787 if (pagen > 0) {
1788 bf_set(lpfc_mbox_hdr_opcode, &cfg_shdr->request, opcode);
1789 bf_set(lpfc_mbox_hdr_subsystem, &cfg_shdr->request, subsystem);
1790 cfg_shdr->request.request_length =
1791 alloc_len - sizeof(union lpfc_sli4_cfg_shdr);
1793 /* The sub-header is in DMA memory, which needs endian converstion */
1794 if (cfg_shdr)
1795 lpfc_sli_pcimem_bcopy(cfg_shdr, cfg_shdr,
1796 sizeof(union lpfc_sli4_cfg_shdr));
1798 return alloc_len;
1802 * lpfc_sli4_mbox_opcode_get - Get the opcode from a sli4 mailbox command
1803 * @phba: pointer to lpfc hba data structure.
1804 * @mbox: pointer to lpfc mbox command.
1806 * This routine gets the opcode from a SLI4 specific mailbox command for
1807 * sending IOCTL command. If the mailbox command is not MBX_SLI4_CONFIG
1808 * (0x9B) or if the IOCTL sub-header is not present, opcode 0x0 shall be
1809 * returned.
1811 uint8_t
1812 lpfc_sli4_mbox_opcode_get(struct lpfc_hba *phba, struct lpfcMboxq *mbox)
1814 struct lpfc_mbx_sli4_config *sli4_cfg;
1815 union lpfc_sli4_cfg_shdr *cfg_shdr;
1817 if (mbox->u.mb.mbxCommand != MBX_SLI4_CONFIG)
1818 return 0;
1819 sli4_cfg = &mbox->u.mqe.un.sli4_config;
1821 /* For embedded mbox command, get opcode from embedded sub-header*/
1822 if (bf_get(lpfc_mbox_hdr_emb, &sli4_cfg->header.cfg_mhdr)) {
1823 cfg_shdr = &mbox->u.mqe.un.sli4_config.header.cfg_shdr;
1824 return bf_get(lpfc_mbox_hdr_opcode, &cfg_shdr->request);
1827 /* For non-embedded mbox command, get opcode from first dma page */
1828 if (unlikely(!mbox->sge_array))
1829 return 0;
1830 cfg_shdr = (union lpfc_sli4_cfg_shdr *)mbox->sge_array->addr[0];
1831 return bf_get(lpfc_mbox_hdr_opcode, &cfg_shdr->request);
1835 * lpfc_sli4_mbx_read_fcf_rec - Allocate and construct read fcf mbox cmd
1836 * @phba: pointer to lpfc hba data structure.
1837 * @fcf_index: index to fcf table.
1839 * This routine routine allocates and constructs non-embedded mailbox command
1840 * for reading a FCF table entry refered by @fcf_index.
1842 * Return: pointer to the mailbox command constructed if successful, otherwise
1843 * NULL.
1846 lpfc_sli4_mbx_read_fcf_rec(struct lpfc_hba *phba,
1847 struct lpfcMboxq *mboxq,
1848 uint16_t fcf_index)
1850 void *virt_addr;
1851 dma_addr_t phys_addr;
1852 uint8_t *bytep;
1853 struct lpfc_mbx_sge sge;
1854 uint32_t alloc_len, req_len;
1855 struct lpfc_mbx_read_fcf_tbl *read_fcf;
1857 if (!mboxq)
1858 return -ENOMEM;
1860 req_len = sizeof(struct fcf_record) +
1861 sizeof(union lpfc_sli4_cfg_shdr) + 2 * sizeof(uint32_t);
1863 /* Set up READ_FCF SLI4_CONFIG mailbox-ioctl command */
1864 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
1865 LPFC_MBOX_OPCODE_FCOE_READ_FCF_TABLE, req_len,
1866 LPFC_SLI4_MBX_NEMBED);
1868 if (alloc_len < req_len) {
1869 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1870 "0291 Allocated DMA memory size (x%x) is "
1871 "less than the requested DMA memory "
1872 "size (x%x)\n", alloc_len, req_len);
1873 return -ENOMEM;
1876 /* Get the first SGE entry from the non-embedded DMA memory. This
1877 * routine only uses a single SGE.
1879 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
1880 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
1881 virt_addr = mboxq->sge_array->addr[0];
1882 read_fcf = (struct lpfc_mbx_read_fcf_tbl *)virt_addr;
1884 /* Set up command fields */
1885 bf_set(lpfc_mbx_read_fcf_tbl_indx, &read_fcf->u.request, fcf_index);
1886 /* Perform necessary endian conversion */
1887 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
1888 lpfc_sli_pcimem_bcopy(bytep, bytep, sizeof(uint32_t));
1890 return 0;
1894 * lpfc_request_features: Configure SLI4 REQUEST_FEATURES mailbox
1895 * @mboxq: pointer to lpfc mbox command.
1897 * This routine sets up the mailbox for an SLI4 REQUEST_FEATURES
1898 * mailbox command.
1900 void
1901 lpfc_request_features(struct lpfc_hba *phba, struct lpfcMboxq *mboxq)
1903 /* Set up SLI4 mailbox command header fields */
1904 memset(mboxq, 0, sizeof(LPFC_MBOXQ_t));
1905 bf_set(lpfc_mqe_command, &mboxq->u.mqe, MBX_SLI4_REQ_FTRS);
1907 /* Set up host requested features. */
1908 bf_set(lpfc_mbx_rq_ftr_rq_fcpi, &mboxq->u.mqe.un.req_ftrs, 1);
1910 /* Enable DIF (block guard) only if configured to do so. */
1911 if (phba->cfg_enable_bg)
1912 bf_set(lpfc_mbx_rq_ftr_rq_dif, &mboxq->u.mqe.un.req_ftrs, 1);
1914 /* Enable NPIV only if configured to do so. */
1915 if (phba->max_vpi && phba->cfg_enable_npiv)
1916 bf_set(lpfc_mbx_rq_ftr_rq_npiv, &mboxq->u.mqe.un.req_ftrs, 1);
1918 return;
1922 * lpfc_init_vfi - Initialize the INIT_VFI mailbox command
1923 * @mbox: pointer to lpfc mbox command to initialize.
1924 * @vport: Vport associated with the VF.
1926 * This routine initializes @mbox to all zeros and then fills in the mailbox
1927 * fields from @vport. INIT_VFI configures virtual fabrics identified by VFI
1928 * in the context of an FCF. The driver issues this command to setup a VFI
1929 * before issuing a FLOGI to login to the VSAN. The driver should also issue a
1930 * REG_VFI after a successful VSAN login.
1932 void
1933 lpfc_init_vfi(struct lpfcMboxq *mbox, struct lpfc_vport *vport)
1935 struct lpfc_mbx_init_vfi *init_vfi;
1937 memset(mbox, 0, sizeof(*mbox));
1938 mbox->vport = vport;
1939 init_vfi = &mbox->u.mqe.un.init_vfi;
1940 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_INIT_VFI);
1941 bf_set(lpfc_init_vfi_vr, init_vfi, 1);
1942 bf_set(lpfc_init_vfi_vt, init_vfi, 1);
1943 bf_set(lpfc_init_vfi_vp, init_vfi, 1);
1944 bf_set(lpfc_init_vfi_vfi, init_vfi, vport->vfi + vport->phba->vfi_base);
1945 bf_set(lpfc_init_vpi_vpi, init_vfi, vport->vpi + vport->phba->vpi_base);
1946 bf_set(lpfc_init_vfi_fcfi, init_vfi, vport->phba->fcf.fcfi);
1950 * lpfc_reg_vfi - Initialize the REG_VFI mailbox command
1951 * @mbox: pointer to lpfc mbox command to initialize.
1952 * @vport: vport associated with the VF.
1953 * @phys: BDE DMA bus address used to send the service parameters to the HBA.
1955 * This routine initializes @mbox to all zeros and then fills in the mailbox
1956 * fields from @vport, and uses @buf as a DMAable buffer to send the vport's
1957 * fc service parameters to the HBA for this VFI. REG_VFI configures virtual
1958 * fabrics identified by VFI in the context of an FCF.
1960 void
1961 lpfc_reg_vfi(struct lpfcMboxq *mbox, struct lpfc_vport *vport, dma_addr_t phys)
1963 struct lpfc_mbx_reg_vfi *reg_vfi;
1965 memset(mbox, 0, sizeof(*mbox));
1966 reg_vfi = &mbox->u.mqe.un.reg_vfi;
1967 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_REG_VFI);
1968 bf_set(lpfc_reg_vfi_vp, reg_vfi, 1);
1969 bf_set(lpfc_reg_vfi_vfi, reg_vfi, vport->vfi + vport->phba->vfi_base);
1970 bf_set(lpfc_reg_vfi_fcfi, reg_vfi, vport->phba->fcf.fcfi);
1971 bf_set(lpfc_reg_vfi_vpi, reg_vfi, vport->vpi + vport->phba->vpi_base);
1972 memcpy(reg_vfi->wwn, &vport->fc_portname, sizeof(struct lpfc_name));
1973 reg_vfi->wwn[0] = cpu_to_le32(reg_vfi->wwn[0]);
1974 reg_vfi->wwn[1] = cpu_to_le32(reg_vfi->wwn[1]);
1975 reg_vfi->e_d_tov = vport->phba->fc_edtov;
1976 reg_vfi->r_a_tov = vport->phba->fc_ratov;
1977 reg_vfi->bde.addrHigh = putPaddrHigh(phys);
1978 reg_vfi->bde.addrLow = putPaddrLow(phys);
1979 reg_vfi->bde.tus.f.bdeSize = sizeof(vport->fc_sparam);
1980 reg_vfi->bde.tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1981 bf_set(lpfc_reg_vfi_nport_id, reg_vfi, vport->fc_myDID);
1985 * lpfc_init_vpi - Initialize the INIT_VPI mailbox command
1986 * @phba: pointer to the hba structure to init the VPI for.
1987 * @mbox: pointer to lpfc mbox command to initialize.
1988 * @vpi: VPI to be initialized.
1990 * The INIT_VPI mailbox command supports virtual N_Ports. The driver uses the
1991 * command to activate a virtual N_Port. The HBA assigns a MAC address to use
1992 * with the virtual N Port. The SLI Host issues this command before issuing a
1993 * FDISC to connect to the Fabric. The SLI Host should issue a REG_VPI after a
1994 * successful virtual NPort login.
1996 void
1997 lpfc_init_vpi(struct lpfc_hba *phba, struct lpfcMboxq *mbox, uint16_t vpi)
1999 memset(mbox, 0, sizeof(*mbox));
2000 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_INIT_VPI);
2001 bf_set(lpfc_init_vpi_vpi, &mbox->u.mqe.un.init_vpi,
2002 vpi + phba->vpi_base);
2003 bf_set(lpfc_init_vpi_vfi, &mbox->u.mqe.un.init_vpi,
2004 phba->pport->vfi + phba->vfi_base);
2008 * lpfc_unreg_vfi - Initialize the UNREG_VFI mailbox command
2009 * @mbox: pointer to lpfc mbox command to initialize.
2010 * @vport: vport associated with the VF.
2012 * The UNREG_VFI mailbox command causes the SLI Host to put a virtual fabric
2013 * (logical NPort) into the inactive state. The SLI Host must have logged out
2014 * and unregistered all remote N_Ports to abort any activity on the virtual
2015 * fabric. The SLI Port posts the mailbox response after marking the virtual
2016 * fabric inactive.
2018 void
2019 lpfc_unreg_vfi(struct lpfcMboxq *mbox, struct lpfc_vport *vport)
2021 memset(mbox, 0, sizeof(*mbox));
2022 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_UNREG_VFI);
2023 bf_set(lpfc_unreg_vfi_vfi, &mbox->u.mqe.un.unreg_vfi,
2024 vport->vfi + vport->phba->vfi_base);
2028 * lpfc_dump_fcoe_param - Dump config region 23 to get FCoe parameters.
2029 * @phba: pointer to the hba structure containing.
2030 * @mbox: pointer to lpfc mbox command to initialize.
2032 * This function create a SLI4 dump mailbox command to dump FCoE
2033 * parameters stored in region 23.
2036 lpfc_dump_fcoe_param(struct lpfc_hba *phba,
2037 struct lpfcMboxq *mbox)
2039 struct lpfc_dmabuf *mp = NULL;
2040 MAILBOX_t *mb;
2042 memset(mbox, 0, sizeof(*mbox));
2043 mb = &mbox->u.mb;
2045 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
2046 if (mp)
2047 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
2049 if (!mp || !mp->virt) {
2050 kfree(mp);
2051 /* dump_fcoe_param failed to allocate memory */
2052 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
2053 "2569 lpfc_dump_fcoe_param: memory"
2054 " allocation failed\n");
2055 return 1;
2058 memset(mp->virt, 0, LPFC_BPL_SIZE);
2059 INIT_LIST_HEAD(&mp->list);
2061 /* save address for completion */
2062 mbox->context1 = (uint8_t *) mp;
2064 mb->mbxCommand = MBX_DUMP_MEMORY;
2065 mb->un.varDmp.type = DMP_NV_PARAMS;
2066 mb->un.varDmp.region_id = DMP_REGION_23;
2067 mb->un.varDmp.sli4_length = DMP_RGN23_SIZE;
2068 mb->un.varWords[3] = putPaddrLow(mp->phys);
2069 mb->un.varWords[4] = putPaddrHigh(mp->phys);
2070 return 0;
2074 * lpfc_reg_fcfi - Initialize the REG_FCFI mailbox command
2075 * @phba: pointer to the hba structure containing the FCF index and RQ ID.
2076 * @mbox: pointer to lpfc mbox command to initialize.
2078 * The REG_FCFI mailbox command supports Fibre Channel Forwarders (FCFs). The
2079 * SLI Host uses the command to activate an FCF after it has acquired FCF
2080 * information via a READ_FCF mailbox command. This mailbox command also is used
2081 * to indicate where received unsolicited frames from this FCF will be sent. By
2082 * default this routine will set up the FCF to forward all unsolicited frames
2083 * the the RQ ID passed in the @phba. This can be overridden by the caller for
2084 * more complicated setups.
2086 void
2087 lpfc_reg_fcfi(struct lpfc_hba *phba, struct lpfcMboxq *mbox)
2089 struct lpfc_mbx_reg_fcfi *reg_fcfi;
2091 memset(mbox, 0, sizeof(*mbox));
2092 reg_fcfi = &mbox->u.mqe.un.reg_fcfi;
2093 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_REG_FCFI);
2094 bf_set(lpfc_reg_fcfi_rq_id0, reg_fcfi, phba->sli4_hba.hdr_rq->queue_id);
2095 bf_set(lpfc_reg_fcfi_rq_id1, reg_fcfi, REG_FCF_INVALID_QID);
2096 bf_set(lpfc_reg_fcfi_rq_id2, reg_fcfi, REG_FCF_INVALID_QID);
2097 bf_set(lpfc_reg_fcfi_rq_id3, reg_fcfi, REG_FCF_INVALID_QID);
2098 bf_set(lpfc_reg_fcfi_info_index, reg_fcfi,
2099 phba->fcf.current_rec.fcf_indx);
2100 /* reg_fcf addr mode is bit wise inverted value of fcf addr_mode */
2101 bf_set(lpfc_reg_fcfi_mam, reg_fcfi, (~phba->fcf.addr_mode) & 0x3);
2102 if (phba->fcf.current_rec.vlan_id != LPFC_FCOE_NULL_VID) {
2103 bf_set(lpfc_reg_fcfi_vv, reg_fcfi, 1);
2104 bf_set(lpfc_reg_fcfi_vlan_tag, reg_fcfi,
2105 phba->fcf.current_rec.vlan_id);
2110 * lpfc_unreg_fcfi - Initialize the UNREG_FCFI mailbox command
2111 * @mbox: pointer to lpfc mbox command to initialize.
2112 * @fcfi: FCFI to be unregistered.
2114 * The UNREG_FCFI mailbox command supports Fibre Channel Forwarders (FCFs).
2115 * The SLI Host uses the command to inactivate an FCFI.
2117 void
2118 lpfc_unreg_fcfi(struct lpfcMboxq *mbox, uint16_t fcfi)
2120 memset(mbox, 0, sizeof(*mbox));
2121 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_UNREG_FCFI);
2122 bf_set(lpfc_unreg_fcfi, &mbox->u.mqe.un.unreg_fcfi, fcfi);
2126 * lpfc_resume_rpi - Initialize the RESUME_RPI mailbox command
2127 * @mbox: pointer to lpfc mbox command to initialize.
2128 * @ndlp: The nodelist structure that describes the RPI to resume.
2130 * The RESUME_RPI mailbox command is used to restart I/O to an RPI after a
2131 * link event.
2133 void
2134 lpfc_resume_rpi(struct lpfcMboxq *mbox, struct lpfc_nodelist *ndlp)
2136 struct lpfc_mbx_resume_rpi *resume_rpi;
2138 memset(mbox, 0, sizeof(*mbox));
2139 resume_rpi = &mbox->u.mqe.un.resume_rpi;
2140 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_RESUME_RPI);
2141 bf_set(lpfc_resume_rpi_index, resume_rpi, ndlp->nlp_rpi);
2142 bf_set(lpfc_resume_rpi_ii, resume_rpi, RESUME_INDEX_RPI);
2143 resume_rpi->event_tag = ndlp->phba->fc_eventTag;
2147 * lpfc_supported_pages - Initialize the PORT_CAPABILITIES supported pages
2148 * mailbox command.
2149 * @mbox: pointer to lpfc mbox command to initialize.
2151 * The PORT_CAPABILITIES supported pages mailbox command is issued to
2152 * retrieve the particular feature pages supported by the port.
2154 void
2155 lpfc_supported_pages(struct lpfcMboxq *mbox)
2157 struct lpfc_mbx_supp_pages *supp_pages;
2159 memset(mbox, 0, sizeof(*mbox));
2160 supp_pages = &mbox->u.mqe.un.supp_pages;
2161 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_PORT_CAPABILITIES);
2162 bf_set(cpn, supp_pages, LPFC_SUPP_PAGES);
2166 * lpfc_sli4_params - Initialize the PORT_CAPABILITIES SLI4 Params
2167 * mailbox command.
2168 * @mbox: pointer to lpfc mbox command to initialize.
2170 * The PORT_CAPABILITIES SLI4 parameters mailbox command is issued to
2171 * retrieve the particular SLI4 features supported by the port.
2173 void
2174 lpfc_sli4_params(struct lpfcMboxq *mbox)
2176 struct lpfc_mbx_sli4_params *sli4_params;
2178 memset(mbox, 0, sizeof(*mbox));
2179 sli4_params = &mbox->u.mqe.un.sli4_params;
2180 bf_set(lpfc_mqe_command, &mbox->u.mqe, MBX_PORT_CAPABILITIES);
2181 bf_set(cpn, sli4_params, LPFC_SLI4_PARAMETERS);