blob: ca358355ec9b0665e12e5430081aa67beb315278 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart9413aff2007-04-25 09:53:35 -04004 * Copyright (C) 2004-2007 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * 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. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -040026#include <scsi/scsi_device.h>
27#include <scsi/scsi_transport_fc.h>
28
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040029#include <scsi/scsi.h>
30
dea31012005-04-17 16:05:31 -050031#include "lpfc_hw.h"
32#include "lpfc_sli.h"
33#include "lpfc_disc.h"
34#include "lpfc_scsi.h"
35#include "lpfc.h"
36#include "lpfc_logmsg.h"
37#include "lpfc_crtn.h"
38#include "lpfc_compat.h"
39
James Smarte59058c2008-08-24 21:49:00 -040040/**
41 * lpfc_dump_mem: Prepare a mailbox command for retrieving HBA's VPD memory.
42 * @phba: pointer to lpfc hba data structure.
43 * @pmb: pointer to the driver internal queue element for mailbox command.
44 * @offset: offset for dumping VPD memory mailbox command.
45 *
46 * The dump mailbox command provides a method for the device driver to obtain
47 * various types of information from the HBA device.
48 *
49 * This routine prepares the mailbox command for dumping HBA Vital Product
50 * Data (VPD) memory. This mailbox command is to be used for retrieving a
51 * portion (DMP_RSP_SIZE bytes) of a HBA's VPD from the HBA at an address
52 * offset specified by the offset parameter.
53 **/
dea31012005-04-17 16:05:31 -050054void
55lpfc_dump_mem(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb, uint16_t offset)
56{
57 MAILBOX_t *mb;
58 void *ctx;
59
60 mb = &pmb->mb;
61 ctx = pmb->context2;
62
63 /* Setup to dump VPD region */
64 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
65 mb->mbxCommand = MBX_DUMP_MEMORY;
66 mb->un.varDmp.cv = 1;
67 mb->un.varDmp.type = DMP_NV_PARAMS;
68 mb->un.varDmp.entry_index = offset;
69 mb->un.varDmp.region_id = DMP_REGION_VPD;
70 mb->un.varDmp.word_cnt = (DMP_RSP_SIZE / sizeof (uint32_t));
71 mb->un.varDmp.co = 0;
72 mb->un.varDmp.resp_offset = 0;
73 pmb->context2 = ctx;
74 mb->mbxOwner = OWN_HOST;
75 return;
76}
77
James Smarte59058c2008-08-24 21:49:00 -040078/**
79 * lpfc_read_nv: Prepare a mailbox command for reading HBA's NVRAM param.
80 * @phba: pointer to lpfc hba data structure.
81 * @pmb: pointer to the driver internal queue element for mailbox command.
82 *
83 * The read NVRAM mailbox command returns the HBA's non-volatile parameters
84 * that are used as defaults when the Fibre Channel link is brought on-line.
85 *
86 * This routine prepares the mailbox command for reading information stored
87 * in the HBA's NVRAM. Specifically, the HBA's WWNN and WWPN.
88 **/
dea31012005-04-17 16:05:31 -050089void
90lpfc_read_nv(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
91{
92 MAILBOX_t *mb;
93
94 mb = &pmb->mb;
95 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
96 mb->mbxCommand = MBX_READ_NV;
97 mb->mbxOwner = OWN_HOST;
98 return;
99}
100
James Smarte59058c2008-08-24 21:49:00 -0400101/**
102 * lpfc_config_async: Prepare a mailbox command for enabling HBA async event.
103 * @phba: pointer to lpfc hba data structure.
104 * @pmb: pointer to the driver internal queue element for mailbox command.
105 * @ring: ring number for the asynchronous event to be configured.
106 *
107 * The asynchronous event enable mailbox command is used to enable the
108 * asynchronous event posting via the ASYNC_STATUS_CN IOCB response and
109 * specifies the default ring to which events are posted.
110 *
111 * This routine prepares the mailbox command for enabling HBA asynchronous
112 * event support on a IOCB ring.
113 **/
James Smart57127f12007-10-27 13:37:05 -0400114void
115lpfc_config_async(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb,
116 uint32_t ring)
117{
118 MAILBOX_t *mb;
119
120 mb = &pmb->mb;
121 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
122 mb->mbxCommand = MBX_ASYNCEVT_ENABLE;
123 mb->un.varCfgAsyncEvent.ring = ring;
124 mb->mbxOwner = OWN_HOST;
125 return;
126}
127
James Smarte59058c2008-08-24 21:49:00 -0400128/**
129 * lpfc_heart_beat: Prepare a mailbox command for heart beat.
130 * @phba: pointer to lpfc hba data structure.
131 * @pmb: pointer to the driver internal queue element for mailbox command.
132 *
133 * The heart beat mailbox command is used to detect an unresponsive HBA, which
134 * is defined as any device where no error attention is sent and both mailbox
135 * and rings are not processed.
136 *
137 * This routine prepares the mailbox command for issuing a heart beat in the
138 * form of mailbox command to the HBA. The timely completion of the heart
139 * beat mailbox command indicates the health of the HBA.
140 **/
James Smart858c9f62007-06-17 19:56:39 -0500141void
142lpfc_heart_beat(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
143{
144 MAILBOX_t *mb;
145
146 mb = &pmb->mb;
147 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
148 mb->mbxCommand = MBX_HEARTBEAT;
149 mb->mbxOwner = OWN_HOST;
150 return;
151}
152
James Smarte59058c2008-08-24 21:49:00 -0400153/**
154 * lpfc_read_la: Prepare a mailbox command for reading HBA link attention.
155 * @phba: pointer to lpfc hba data structure.
156 * @pmb: pointer to the driver internal queue element for mailbox command.
157 * @mp: DMA buffer memory for reading the link attention information into.
158 *
159 * The read link attention mailbox command is issued to read the Link Event
160 * Attention information indicated by the HBA port when the Link Event bit
161 * of the Host Attention (HSTATT) register is set to 1. A Link Event
162 * Attention occurs based on an exception detected at the Fibre Channel link
163 * interface.
164 *
165 * This routine prepares the mailbox command for reading HBA link attention
166 * information. A DMA memory has been set aside and address passed to the
167 * HBA through @mp for the HBA to DMA link attention information into the
168 * memory as part of the execution of the mailbox command.
169 *
170 * Return codes
171 * 0 - Success (currently always return 0)
172 **/
dea31012005-04-17 16:05:31 -0500173int
174lpfc_read_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb, struct lpfc_dmabuf *mp)
175{
176 MAILBOX_t *mb;
177 struct lpfc_sli *psli;
178
179 psli = &phba->sli;
180 mb = &pmb->mb;
181 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
182
183 INIT_LIST_HEAD(&mp->list);
184 mb->mbxCommand = MBX_READ_LA64;
185 mb->un.varReadLA.un.lilpBde64.tus.f.bdeSize = 128;
186 mb->un.varReadLA.un.lilpBde64.addrHigh = putPaddrHigh(mp->phys);
187 mb->un.varReadLA.un.lilpBde64.addrLow = putPaddrLow(mp->phys);
188
189 /* Save address for later completion and set the owner to host so that
190 * the FW knows this mailbox is available for processing.
191 */
192 pmb->context1 = (uint8_t *) mp;
193 mb->mbxOwner = OWN_HOST;
James Smart92d7f7b2007-06-17 19:56:38 -0500194 return (0);
dea31012005-04-17 16:05:31 -0500195}
196
James Smarte59058c2008-08-24 21:49:00 -0400197/**
198 * lpfc_clear_la: Prepare a mailbox command for clearing HBA link attention.
199 * @phba: pointer to lpfc hba data structure.
200 * @pmb: pointer to the driver internal queue element for mailbox command.
201 *
202 * The clear link attention mailbox command is issued to clear the link event
203 * attention condition indicated by the Link Event bit of the Host Attention
204 * (HSTATT) register. The link event attention condition is cleared only if
205 * the event tag specified matches that of the current link event counter.
206 * The current event tag is read using the read link attention event mailbox
207 * command.
208 *
209 * This routine prepares the mailbox command for clearing HBA link attention
210 * information.
211 **/
dea31012005-04-17 16:05:31 -0500212void
213lpfc_clear_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
214{
215 MAILBOX_t *mb;
216
217 mb = &pmb->mb;
218 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
219
220 mb->un.varClearLA.eventTag = phba->fc_eventTag;
221 mb->mbxCommand = MBX_CLEAR_LA;
222 mb->mbxOwner = OWN_HOST;
223 return;
224}
225
James Smarte59058c2008-08-24 21:49:00 -0400226/**
227 * lpfc_config_link: Prepare a mailbox command for configuring link on a HBA.
228 * @phba: pointer to lpfc hba data structure.
229 * @pmb: pointer to the driver internal queue element for mailbox command.
230 *
231 * The configure link mailbox command is used before the initialize link
232 * mailbox command to override default value and to configure link-oriented
233 * parameters such as DID address and various timers. Typically, this
234 * command would be used after an F_Port login to set the returned DID address
235 * and the fabric timeout values. This command is not valid before a configure
236 * port command has configured the HBA port.
237 *
238 * This routine prepares the mailbox command for configuring link on a HBA.
239 **/
dea31012005-04-17 16:05:31 -0500240void
241lpfc_config_link(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
242{
James Smart2e0fef82007-06-17 19:56:36 -0500243 struct lpfc_vport *vport = phba->pport;
dea31012005-04-17 16:05:31 -0500244 MAILBOX_t *mb = &pmb->mb;
245 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
246
247 /* NEW_FEATURE
248 * SLI-2, Coalescing Response Feature.
249 */
250 if (phba->cfg_cr_delay) {
251 mb->un.varCfgLnk.cr = 1;
252 mb->un.varCfgLnk.ci = 1;
253 mb->un.varCfgLnk.cr_delay = phba->cfg_cr_delay;
254 mb->un.varCfgLnk.cr_count = phba->cfg_cr_count;
255 }
256
James Smart2e0fef82007-06-17 19:56:36 -0500257 mb->un.varCfgLnk.myId = vport->fc_myDID;
dea31012005-04-17 16:05:31 -0500258 mb->un.varCfgLnk.edtov = phba->fc_edtov;
259 mb->un.varCfgLnk.arbtov = phba->fc_arbtov;
260 mb->un.varCfgLnk.ratov = phba->fc_ratov;
261 mb->un.varCfgLnk.rttov = phba->fc_rttov;
262 mb->un.varCfgLnk.altov = phba->fc_altov;
263 mb->un.varCfgLnk.crtov = phba->fc_crtov;
264 mb->un.varCfgLnk.citov = phba->fc_citov;
265
266 if (phba->cfg_ack0)
267 mb->un.varCfgLnk.ack0_enable = 1;
268
269 mb->mbxCommand = MBX_CONFIG_LINK;
270 mb->mbxOwner = OWN_HOST;
271 return;
272}
273
James Smarte59058c2008-08-24 21:49:00 -0400274/**
275 * lpfc_init_link: Prepare a mailbox command for initialize link on a HBA.
276 * @phba: pointer to lpfc hba data structure.
277 * @pmb: pointer to the driver internal queue element for mailbox command.
278 * @topology: the link topology for the link to be initialized to.
279 * @linkspeed: the link speed for the link to be initialized to.
280 *
281 * The initialize link mailbox command is used to initialize the Fibre
282 * Channel link. This command must follow a configure port command that
283 * establishes the mode of operation.
284 *
285 * This routine prepares the mailbox command for initializing link on a HBA
286 * with the specified link topology and speed.
287 **/
dea31012005-04-17 16:05:31 -0500288void
289lpfc_init_link(struct lpfc_hba * phba,
290 LPFC_MBOXQ_t * pmb, uint32_t topology, uint32_t linkspeed)
291{
292 lpfc_vpd_t *vpd;
293 struct lpfc_sli *psli;
294 MAILBOX_t *mb;
295
296 mb = &pmb->mb;
297 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
298
299 psli = &phba->sli;
300 switch (topology) {
301 case FLAGS_TOPOLOGY_MODE_LOOP_PT:
302 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP;
303 mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER;
304 break;
305 case FLAGS_TOPOLOGY_MODE_PT_PT:
306 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT;
307 break;
308 case FLAGS_TOPOLOGY_MODE_LOOP:
309 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP;
310 break;
311 case FLAGS_TOPOLOGY_MODE_PT_LOOP:
312 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT;
313 mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER;
314 break;
Jamie Wellnitz367c2712006-02-28 19:25:32 -0500315 case FLAGS_LOCAL_LB:
316 mb->un.varInitLnk.link_flags = FLAGS_LOCAL_LB;
317 break;
dea31012005-04-17 16:05:31 -0500318 }
319
James Smart4b0b91d2006-04-15 11:53:00 -0400320 /* Enable asynchronous ABTS responses from firmware */
321 mb->un.varInitLnk.link_flags |= FLAGS_IMED_ABORT;
322
dea31012005-04-17 16:05:31 -0500323 /* NEW_FEATURE
324 * Setting up the link speed
325 */
326 vpd = &phba->vpd;
327 if (vpd->rev.feaLevelHigh >= 0x02){
James Smart92d7f7b2007-06-17 19:56:38 -0500328 switch(linkspeed){
dea31012005-04-17 16:05:31 -0500329 case LINK_SPEED_1G:
330 case LINK_SPEED_2G:
331 case LINK_SPEED_4G:
James Smartb87eab32007-04-25 09:53:28 -0400332 case LINK_SPEED_8G:
dea31012005-04-17 16:05:31 -0500333 mb->un.varInitLnk.link_flags |=
334 FLAGS_LINK_SPEED;
335 mb->un.varInitLnk.link_speed = linkspeed;
336 break;
337 case LINK_SPEED_AUTO:
338 default:
339 mb->un.varInitLnk.link_speed =
340 LINK_SPEED_AUTO;
341 break;
342 }
343
344 }
345 else
346 mb->un.varInitLnk.link_speed = LINK_SPEED_AUTO;
347
348 mb->mbxCommand = (volatile uint8_t)MBX_INIT_LINK;
349 mb->mbxOwner = OWN_HOST;
350 mb->un.varInitLnk.fabric_AL_PA = phba->fc_pref_ALPA;
351 return;
352}
353
James Smarte59058c2008-08-24 21:49:00 -0400354/**
355 * lpfc_read_sparam: Prepare a mailbox command for reading HBA parameters.
356 * @phba: pointer to lpfc hba data structure.
357 * @pmb: pointer to the driver internal queue element for mailbox command.
358 * @vpi: virtual N_Port identifier.
359 *
360 * The read service parameter mailbox command is used to read the HBA port
361 * service parameters. The service parameters are read into the buffer
362 * specified directly by a BDE in the mailbox command. These service
363 * parameters may then be used to build the payload of an N_Port/F_POrt
364 * login request and reply (LOGI/ACC).
365 *
366 * This routine prepares the mailbox command for reading HBA port service
367 * parameters. The DMA memory is allocated in this function and the addresses
368 * are populated into the mailbox command for the HBA to DMA the service
369 * parameters into.
370 *
371 * Return codes
372 * 0 - Success
373 * 1 - DMA memory allocation failed
374 **/
dea31012005-04-17 16:05:31 -0500375int
James Smart92d7f7b2007-06-17 19:56:38 -0500376lpfc_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb, int vpi)
dea31012005-04-17 16:05:31 -0500377{
378 struct lpfc_dmabuf *mp;
379 MAILBOX_t *mb;
380 struct lpfc_sli *psli;
381
382 psli = &phba->sli;
383 mb = &pmb->mb;
384 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
385
386 mb->mbxOwner = OWN_HOST;
387
388 /* Get a buffer to hold the HBAs Service Parameters */
389
James Smart98c9ea52007-10-27 13:37:33 -0400390 mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
391 if (mp)
392 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
393 if (!mp || !mp->virt) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800394 kfree(mp);
dea31012005-04-17 16:05:31 -0500395 mb->mbxCommand = MBX_READ_SPARM64;
396 /* READ_SPARAM: no buffers */
James Smarte8b62012007-08-02 11:10:09 -0400397 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
398 "0301 READ_SPARAM: no buffers\n");
James Smart92d7f7b2007-06-17 19:56:38 -0500399 return (1);
dea31012005-04-17 16:05:31 -0500400 }
401 INIT_LIST_HEAD(&mp->list);
402 mb->mbxCommand = MBX_READ_SPARM64;
403 mb->un.varRdSparm.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm);
404 mb->un.varRdSparm.un.sp64.addrHigh = putPaddrHigh(mp->phys);
405 mb->un.varRdSparm.un.sp64.addrLow = putPaddrLow(mp->phys);
James Smart92d7f7b2007-06-17 19:56:38 -0500406 mb->un.varRdSparm.vpi = vpi;
dea31012005-04-17 16:05:31 -0500407
408 /* save address for completion */
409 pmb->context1 = mp;
410
James Smart92d7f7b2007-06-17 19:56:38 -0500411 return (0);
dea31012005-04-17 16:05:31 -0500412}
413
James Smarte59058c2008-08-24 21:49:00 -0400414/**
415 * lpfc_unreg_did: Prepare a mailbox command for unregistering DID.
416 * @phba: pointer to lpfc hba data structure.
417 * @vpi: virtual N_Port identifier.
418 * @did: remote port identifier.
419 * @pmb: pointer to the driver internal queue element for mailbox command.
420 *
421 * The unregister DID mailbox command is used to unregister an N_Port/F_Port
422 * login for an unknown RPI by specifying the DID of a remote port. This
423 * command frees an RPI context in the HBA port. This has the effect of
424 * performing an implicit N_Port/F_Port logout.
425 *
426 * This routine prepares the mailbox command for unregistering a remote
427 * N_Port/F_Port (DID) login.
428 **/
dea31012005-04-17 16:05:31 -0500429void
James Smart92d7f7b2007-06-17 19:56:38 -0500430lpfc_unreg_did(struct lpfc_hba * phba, uint16_t vpi, uint32_t did,
431 LPFC_MBOXQ_t * pmb)
dea31012005-04-17 16:05:31 -0500432{
433 MAILBOX_t *mb;
434
435 mb = &pmb->mb;
436 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
437
438 mb->un.varUnregDID.did = did;
James Smart92d7f7b2007-06-17 19:56:38 -0500439 mb->un.varUnregDID.vpi = vpi;
dea31012005-04-17 16:05:31 -0500440
441 mb->mbxCommand = MBX_UNREG_D_ID;
442 mb->mbxOwner = OWN_HOST;
443 return;
444}
445
James Smarte59058c2008-08-24 21:49:00 -0400446/**
447 * lpfc_read_config: Prepare a mailbox command for reading HBA configuration.
448 * @phba: pointer to lpfc hba data structure.
449 * @pmb: pointer to the driver internal queue element for mailbox command.
450 *
451 * The read configuration mailbox command is used to read the HBA port
452 * configuration parameters. This mailbox command provides a method for
453 * seeing any parameters that may have changed via various configuration
454 * mailbox commands.
455 *
456 * This routine prepares the mailbox command for reading out HBA configuration
457 * parameters.
458 **/
dea31012005-04-17 16:05:31 -0500459void
460lpfc_read_config(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
461{
462 MAILBOX_t *mb;
463
464 mb = &pmb->mb;
465 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
466
467 mb->mbxCommand = MBX_READ_CONFIG;
468 mb->mbxOwner = OWN_HOST;
469 return;
470}
471
James Smarte59058c2008-08-24 21:49:00 -0400472/**
473 * lpfc_read_lnk_stat: Prepare a mailbox command for reading HBA link stats.
474 * @phba: pointer to lpfc hba data structure.
475 * @pmb: pointer to the driver internal queue element for mailbox command.
476 *
477 * The read link status mailbox command is used to read the link status from
478 * the HBA. Link status includes all link-related error counters. These
479 * counters are maintained by the HBA and originated in the link hardware
480 * unit. Note that all of these counters wrap.
481 *
482 * This routine prepares the mailbox command for reading out HBA link status.
483 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -0500484void
485lpfc_read_lnk_stat(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
486{
487 MAILBOX_t *mb;
488
489 mb = &pmb->mb;
490 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
491
492 mb->mbxCommand = MBX_READ_LNK_STAT;
493 mb->mbxOwner = OWN_HOST;
494 return;
495}
496
James Smarte59058c2008-08-24 21:49:00 -0400497/**
498 * lpfc_reg_login: Prepare a mailbox command for registering remote login.
499 * @phba: pointer to lpfc hba data structure.
500 * @vpi: virtual N_Port identifier.
501 * @did: remote port identifier.
502 * @param: pointer to memory holding the server parameters.
503 * @pmb: pointer to the driver internal queue element for mailbox command.
504 * @flag: action flag to be passed back for the complete function.
505 *
506 * The registration login mailbox command is used to register an N_Port or
507 * F_Port login. This registration allows the HBA to cache the remote N_Port
508 * service parameters internally and thereby make the appropriate FC-2
509 * decisions. The remote port service parameters are handed off by the driver
510 * to the HBA using a descriptor entry that directly identifies a buffer in
511 * host memory. In exchange, the HBA returns an RPI identifier.
512 *
513 * This routine prepares the mailbox command for registering remote port login.
514 * The function allocates DMA buffer for passing the service parameters to the
515 * HBA with the mailbox command.
516 *
517 * Return codes
518 * 0 - Success
519 * 1 - DMA memory allocation failed
520 **/
dea31012005-04-17 16:05:31 -0500521int
James Smart92d7f7b2007-06-17 19:56:38 -0500522lpfc_reg_login(struct lpfc_hba *phba, uint16_t vpi, uint32_t did,
523 uint8_t *param, LPFC_MBOXQ_t *pmb, uint32_t flag)
dea31012005-04-17 16:05:31 -0500524{
James Smart2e0fef82007-06-17 19:56:36 -0500525 MAILBOX_t *mb = &pmb->mb;
dea31012005-04-17 16:05:31 -0500526 uint8_t *sparam;
527 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -0500528
dea31012005-04-17 16:05:31 -0500529 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
530
531 mb->un.varRegLogin.rpi = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500532 mb->un.varRegLogin.vpi = vpi;
dea31012005-04-17 16:05:31 -0500533 mb->un.varRegLogin.did = did;
534 mb->un.varWords[30] = flag; /* Set flag to issue action on cmpl */
535
536 mb->mbxOwner = OWN_HOST;
537
538 /* Get a buffer to hold NPorts Service Parameters */
James Smart98c9ea52007-10-27 13:37:33 -0400539 mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
540 if (mp)
541 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
542 if (!mp || !mp->virt) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800543 kfree(mp);
dea31012005-04-17 16:05:31 -0500544 mb->mbxCommand = MBX_REG_LOGIN64;
545 /* REG_LOGIN: no buffers */
James Smart92d7f7b2007-06-17 19:56:38 -0500546 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
James Smarte8b62012007-08-02 11:10:09 -0400547 "0302 REG_LOGIN: no buffers, VPI:%d DID:x%x, "
548 "flag x%x\n", vpi, did, flag);
James Smart92d7f7b2007-06-17 19:56:38 -0500549 return (1);
dea31012005-04-17 16:05:31 -0500550 }
551 INIT_LIST_HEAD(&mp->list);
552 sparam = mp->virt;
553
554 /* Copy param's into a new buffer */
555 memcpy(sparam, param, sizeof (struct serv_parm));
556
557 /* save address for completion */
558 pmb->context1 = (uint8_t *) mp;
559
560 mb->mbxCommand = MBX_REG_LOGIN64;
561 mb->un.varRegLogin.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm);
562 mb->un.varRegLogin.un.sp64.addrHigh = putPaddrHigh(mp->phys);
563 mb->un.varRegLogin.un.sp64.addrLow = putPaddrLow(mp->phys);
564
James Smart92d7f7b2007-06-17 19:56:38 -0500565 return (0);
dea31012005-04-17 16:05:31 -0500566}
567
James Smarte59058c2008-08-24 21:49:00 -0400568/**
569 * lpfc_unreg_login: Prepare a mailbox command for unregistering remote login.
570 * @phba: pointer to lpfc hba data structure.
571 * @vpi: virtual N_Port identifier.
572 * @rpi: remote port identifier
573 * @pmb: pointer to the driver internal queue element for mailbox command.
574 *
575 * The unregistration login mailbox command is used to unregister an N_Port
576 * or F_Port login. This command frees an RPI context in the HBA. It has the
577 * effect of performing an implicit N_Port/F_Port logout.
578 *
579 * This routine prepares the mailbox command for unregistering remote port
580 * login.
581 **/
dea31012005-04-17 16:05:31 -0500582void
James Smart92d7f7b2007-06-17 19:56:38 -0500583lpfc_unreg_login(struct lpfc_hba *phba, uint16_t vpi, uint32_t rpi,
584 LPFC_MBOXQ_t * pmb)
dea31012005-04-17 16:05:31 -0500585{
586 MAILBOX_t *mb;
587
588 mb = &pmb->mb;
589 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
590
591 mb->un.varUnregLogin.rpi = (uint16_t) rpi;
592 mb->un.varUnregLogin.rsvd1 = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500593 mb->un.varUnregLogin.vpi = vpi;
dea31012005-04-17 16:05:31 -0500594
595 mb->mbxCommand = MBX_UNREG_LOGIN;
596 mb->mbxOwner = OWN_HOST;
597 return;
598}
599
James Smarte59058c2008-08-24 21:49:00 -0400600/**
601 * lpfc_reg_vpi: Prepare a mailbox command for registering vport identifier.
602 * @phba: pointer to lpfc hba data structure.
603 * @vpi: virtual N_Port identifier.
604 * @sid: Fibre Channel S_ID (N_Port_ID assigned to a virtual N_Port).
605 * @pmb: pointer to the driver internal queue element for mailbox command.
606 *
607 * The registration vport identifier mailbox command is used to activate a
608 * virtual N_Port after it has acquired an N_Port_ID. The HBA validates the
609 * N_Port_ID against the information in the selected virtual N_Port context
610 * block and marks it active to allow normal processing of IOCB commands and
611 * received unsolicited exchanges.
612 *
613 * This routine prepares the mailbox command for registering a virtual N_Port.
614 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500615void
616lpfc_reg_vpi(struct lpfc_hba *phba, uint16_t vpi, uint32_t sid,
617 LPFC_MBOXQ_t *pmb)
618{
619 MAILBOX_t *mb = &pmb->mb;
620
621 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
622
623 mb->un.varRegVpi.vpi = vpi;
624 mb->un.varRegVpi.sid = sid;
625
626 mb->mbxCommand = MBX_REG_VPI;
627 mb->mbxOwner = OWN_HOST;
628 return;
629
630}
631
James Smarte59058c2008-08-24 21:49:00 -0400632/**
633 * lpfc_unreg_vpi: Prepare a mailbox command for unregistering vport id.
634 * @phba: pointer to lpfc hba data structure.
635 * @vpi: virtual N_Port identifier.
636 * @pmb: pointer to the driver internal queue element for mailbox command.
637 *
638 * The unregistration vport identifier mailbox command is used to inactivate
639 * a virtual N_Port. The driver must have logged out and unregistered all
640 * remote N_Ports to abort any activity on the virtual N_Port. The HBA will
641 * unregisters any default RPIs associated with the specified vpi, aborting
642 * any active exchanges. The HBA will post the mailbox response after making
643 * the virtual N_Port inactive.
644 *
645 * This routine prepares the mailbox command for unregistering a virtual
646 * N_Port.
647 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500648void
649lpfc_unreg_vpi(struct lpfc_hba *phba, uint16_t vpi, LPFC_MBOXQ_t *pmb)
650{
651 MAILBOX_t *mb = &pmb->mb;
652 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
653
654 mb->un.varUnregVpi.vpi = vpi;
655
656 mb->mbxCommand = MBX_UNREG_VPI;
657 mb->mbxOwner = OWN_HOST;
658 return;
659
660}
661
James Smarte59058c2008-08-24 21:49:00 -0400662/**
663 * lpfc_config_pcb_setup: Set up IOCB rings in the Port Control Block (PCB)
664 * @phba: pointer to lpfc hba data structure.
665 *
666 * This routine sets up and initializes the IOCB rings in the Port Control
667 * Block (PCB).
668 **/
dea31012005-04-17 16:05:31 -0500669static void
670lpfc_config_pcb_setup(struct lpfc_hba * phba)
671{
672 struct lpfc_sli *psli = &phba->sli;
673 struct lpfc_sli_ring *pring;
James Smart34b02dc2008-08-24 21:49:55 -0400674 PCB_t *pcbp = phba->pcb;
dea31012005-04-17 16:05:31 -0500675 dma_addr_t pdma_addr;
676 uint32_t offset;
James Smart2e0fef82007-06-17 19:56:36 -0500677 uint32_t iocbCnt = 0;
dea31012005-04-17 16:05:31 -0500678 int i;
679
dea31012005-04-17 16:05:31 -0500680 pcbp->maxRing = (psli->num_rings - 1);
681
dea31012005-04-17 16:05:31 -0500682 for (i = 0; i < psli->num_rings; i++) {
683 pring = &psli->ring[i];
James Smart2e0fef82007-06-17 19:56:36 -0500684
James Smarted957682007-06-17 19:56:37 -0500685 pring->sizeCiocb = phba->sli_rev == 3 ? SLI3_IOCB_CMD_SIZE:
James Smart92d7f7b2007-06-17 19:56:38 -0500686 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -0500687 pring->sizeRiocb = phba->sli_rev == 3 ? SLI3_IOCB_RSP_SIZE:
James Smart92d7f7b2007-06-17 19:56:38 -0500688 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -0500689 /* A ring MUST have both cmd and rsp entries defined to be
690 valid */
691 if ((pring->numCiocb == 0) || (pring->numRiocb == 0)) {
692 pcbp->rdsc[i].cmdEntries = 0;
693 pcbp->rdsc[i].rspEntries = 0;
694 pcbp->rdsc[i].cmdAddrHigh = 0;
695 pcbp->rdsc[i].rspAddrHigh = 0;
696 pcbp->rdsc[i].cmdAddrLow = 0;
697 pcbp->rdsc[i].rspAddrLow = 0;
698 pring->cmdringaddr = NULL;
699 pring->rspringaddr = NULL;
700 continue;
701 }
702 /* Command ring setup for ring */
James Smart34b02dc2008-08-24 21:49:55 -0400703 pring->cmdringaddr = (void *)&phba->IOCBs[iocbCnt];
dea31012005-04-17 16:05:31 -0500704 pcbp->rdsc[i].cmdEntries = pring->numCiocb;
705
James Smart34b02dc2008-08-24 21:49:55 -0400706 offset = (uint8_t *) &phba->IOCBs[iocbCnt] -
707 (uint8_t *) phba->slim2p.virt;
708 pdma_addr = phba->slim2p.phys + offset;
dea31012005-04-17 16:05:31 -0500709 pcbp->rdsc[i].cmdAddrHigh = putPaddrHigh(pdma_addr);
710 pcbp->rdsc[i].cmdAddrLow = putPaddrLow(pdma_addr);
711 iocbCnt += pring->numCiocb;
712
713 /* Response ring setup for ring */
James Smart34b02dc2008-08-24 21:49:55 -0400714 pring->rspringaddr = (void *) &phba->IOCBs[iocbCnt];
dea31012005-04-17 16:05:31 -0500715
716 pcbp->rdsc[i].rspEntries = pring->numRiocb;
James Smart34b02dc2008-08-24 21:49:55 -0400717 offset = (uint8_t *)&phba->IOCBs[iocbCnt] -
718 (uint8_t *)phba->slim2p.virt;
719 pdma_addr = phba->slim2p.phys + offset;
dea31012005-04-17 16:05:31 -0500720 pcbp->rdsc[i].rspAddrHigh = putPaddrHigh(pdma_addr);
721 pcbp->rdsc[i].rspAddrLow = putPaddrLow(pdma_addr);
722 iocbCnt += pring->numRiocb;
723 }
724}
725
James Smarte59058c2008-08-24 21:49:00 -0400726/**
727 * lpfc_read_rev: Prepare a mailbox command for reading HBA revision.
728 * @phba: pointer to lpfc hba data structure.
729 * @pmb: pointer to the driver internal queue element for mailbox command.
730 *
731 * The read revision mailbox command is used to read the revision levels of
732 * the HBA components. These components include hardware units, resident
733 * firmware, and available firmware. HBAs that supports SLI-3 mode of
734 * operation provide different response information depending on the version
735 * requested by the driver.
736 *
737 * This routine prepares the mailbox command for reading HBA revision
738 * information.
739 **/
dea31012005-04-17 16:05:31 -0500740void
741lpfc_read_rev(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
742{
James Smart2e0fef82007-06-17 19:56:36 -0500743 MAILBOX_t *mb = &pmb->mb;
dea31012005-04-17 16:05:31 -0500744 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
745 mb->un.varRdRev.cv = 1;
James Smarted957682007-06-17 19:56:37 -0500746 mb->un.varRdRev.v3req = 1; /* Request SLI3 info */
dea31012005-04-17 16:05:31 -0500747 mb->mbxCommand = MBX_READ_REV;
748 mb->mbxOwner = OWN_HOST;
749 return;
750}
751
James Smarte59058c2008-08-24 21:49:00 -0400752/**
753 * lpfc_build_hbq_profile2: Set up the HBQ Selection Profile 2.
754 * @hbqmb: pointer to the HBQ configuration data structure in mailbox command.
755 * @hbq_desc: pointer to the HBQ selection profile descriptor.
756 *
757 * The Host Buffer Queue (HBQ) Selection Profile 2 specifies that the HBA
758 * tests the incoming frames' R_CTL/TYPE fields with works 10:15 and performs
759 * the Sequence Length Test using the fields in the Selection Profile 2
760 * extension in words 20:31.
761 **/
James Smarted957682007-06-17 19:56:37 -0500762static void
763lpfc_build_hbq_profile2(struct config_hbq_var *hbqmb,
764 struct lpfc_hbq_init *hbq_desc)
765{
766 hbqmb->profiles.profile2.seqlenbcnt = hbq_desc->seqlenbcnt;
767 hbqmb->profiles.profile2.maxlen = hbq_desc->maxlen;
768 hbqmb->profiles.profile2.seqlenoff = hbq_desc->seqlenoff;
769}
770
James Smarte59058c2008-08-24 21:49:00 -0400771/**
772 * lpfc_build_hbq_profile3: Set up the HBQ Selection Profile 3.
773 * @hbqmb: pointer to the HBQ configuration data structure in mailbox command.
774 * @hbq_desc: pointer to the HBQ selection profile descriptor.
775 *
776 * The Host Buffer Queue (HBQ) Selection Profile 3 specifies that the HBA
777 * tests the incoming frame's R_CTL/TYPE fields with words 10:15 and performs
778 * the Sequence Length Test and Byte Field Test using the fields in the
779 * Selection Profile 3 extension in words 20:31.
780 **/
James Smarted957682007-06-17 19:56:37 -0500781static void
782lpfc_build_hbq_profile3(struct config_hbq_var *hbqmb,
783 struct lpfc_hbq_init *hbq_desc)
784{
785 hbqmb->profiles.profile3.seqlenbcnt = hbq_desc->seqlenbcnt;
786 hbqmb->profiles.profile3.maxlen = hbq_desc->maxlen;
787 hbqmb->profiles.profile3.cmdcodeoff = hbq_desc->cmdcodeoff;
788 hbqmb->profiles.profile3.seqlenoff = hbq_desc->seqlenoff;
789 memcpy(&hbqmb->profiles.profile3.cmdmatch, hbq_desc->cmdmatch,
790 sizeof(hbqmb->profiles.profile3.cmdmatch));
791}
792
James Smarte59058c2008-08-24 21:49:00 -0400793/**
794 * lpfc_build_hbq_profile5: Set up the HBQ Selection Profile 5.
795 * @hbqmb: pointer to the HBQ configuration data structure in mailbox command.
796 * @hbq_desc: pointer to the HBQ selection profile descriptor.
797 *
798 * The Host Buffer Queue (HBQ) Selection Profile 5 specifies a header HBQ. The
799 * HBA tests the initial frame of an incoming sequence using the frame's
800 * R_CTL/TYPE fields with words 10:15 and performs the Sequence Length Test
801 * and Byte Field Test using the fields in the Selection Profile 5 extension
802 * words 20:31.
803 **/
James Smarted957682007-06-17 19:56:37 -0500804static void
805lpfc_build_hbq_profile5(struct config_hbq_var *hbqmb,
806 struct lpfc_hbq_init *hbq_desc)
807{
808 hbqmb->profiles.profile5.seqlenbcnt = hbq_desc->seqlenbcnt;
809 hbqmb->profiles.profile5.maxlen = hbq_desc->maxlen;
810 hbqmb->profiles.profile5.cmdcodeoff = hbq_desc->cmdcodeoff;
811 hbqmb->profiles.profile5.seqlenoff = hbq_desc->seqlenoff;
812 memcpy(&hbqmb->profiles.profile5.cmdmatch, hbq_desc->cmdmatch,
813 sizeof(hbqmb->profiles.profile5.cmdmatch));
814}
815
James Smarte59058c2008-08-24 21:49:00 -0400816/**
817 * lpfc_config_hbq: Prepare a mailbox command for configuring an HBQ.
818 * @phba: pointer to lpfc hba data structure.
819 * @id: HBQ identifier.
820 * @hbq_desc: pointer to the HBA descriptor data structure.
821 * @hbq_entry_index: index of the HBQ entry data structures.
822 * @pmb: pointer to the driver internal queue element for mailbox command.
823 *
824 * The configure HBQ (Host Buffer Queue) mailbox command is used to configure
825 * an HBQ. The configuration binds events that require buffers to a particular
826 * ring and HBQ based on a selection profile.
827 *
828 * This routine prepares the mailbox command for configuring an HBQ.
829 **/
James Smarted957682007-06-17 19:56:37 -0500830void
James Smart51ef4c22007-08-02 11:10:31 -0400831lpfc_config_hbq(struct lpfc_hba *phba, uint32_t id,
832 struct lpfc_hbq_init *hbq_desc,
James Smarted957682007-06-17 19:56:37 -0500833 uint32_t hbq_entry_index, LPFC_MBOXQ_t *pmb)
834{
835 int i;
836 MAILBOX_t *mb = &pmb->mb;
837 struct config_hbq_var *hbqmb = &mb->un.varCfgHbq;
838
839 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
James Smart51ef4c22007-08-02 11:10:31 -0400840 hbqmb->hbqId = id;
James Smarted957682007-06-17 19:56:37 -0500841 hbqmb->entry_count = hbq_desc->entry_count; /* # entries in HBQ */
842 hbqmb->recvNotify = hbq_desc->rn; /* Receive
843 * Notification */
844 hbqmb->numMask = hbq_desc->mask_count; /* # R_CTL/TYPE masks
845 * # in words 0-19 */
James Smart92d7f7b2007-06-17 19:56:38 -0500846 hbqmb->profile = hbq_desc->profile; /* Selection profile:
James Smarted957682007-06-17 19:56:37 -0500847 * 0 = all,
848 * 7 = logentry */
849 hbqmb->ringMask = hbq_desc->ring_mask; /* Binds HBQ to a ring
850 * e.g. Ring0=b0001,
851 * ring2=b0100 */
852 hbqmb->headerLen = hbq_desc->headerLen; /* 0 if not profile 4
853 * or 5 */
854 hbqmb->logEntry = hbq_desc->logEntry; /* Set to 1 if this
855 * HBQ will be used
856 * for LogEntry
857 * buffers */
858 hbqmb->hbqaddrLow = putPaddrLow(phba->hbqslimp.phys) +
859 hbq_entry_index * sizeof(struct lpfc_hbq_entry);
860 hbqmb->hbqaddrHigh = putPaddrHigh(phba->hbqslimp.phys);
861
862 mb->mbxCommand = MBX_CONFIG_HBQ;
863 mb->mbxOwner = OWN_HOST;
864
James Smart92d7f7b2007-06-17 19:56:38 -0500865 /* Copy info for profiles 2,3,5. Other
866 * profiles this area is reserved
867 */
James Smarted957682007-06-17 19:56:37 -0500868 if (hbq_desc->profile == 2)
869 lpfc_build_hbq_profile2(hbqmb, hbq_desc);
870 else if (hbq_desc->profile == 3)
871 lpfc_build_hbq_profile3(hbqmb, hbq_desc);
872 else if (hbq_desc->profile == 5)
873 lpfc_build_hbq_profile5(hbqmb, hbq_desc);
874
875 /* Return if no rctl / type masks for this HBQ */
876 if (!hbq_desc->mask_count)
877 return;
878
879 /* Otherwise we setup specific rctl / type masks for this HBQ */
880 for (i = 0; i < hbq_desc->mask_count; i++) {
881 hbqmb->hbqMasks[i].tmatch = hbq_desc->hbqMasks[i].tmatch;
882 hbqmb->hbqMasks[i].tmask = hbq_desc->hbqMasks[i].tmask;
883 hbqmb->hbqMasks[i].rctlmatch = hbq_desc->hbqMasks[i].rctlmatch;
884 hbqmb->hbqMasks[i].rctlmask = hbq_desc->hbqMasks[i].rctlmask;
885 }
886
887 return;
888}
889
James Smarte59058c2008-08-24 21:49:00 -0400890/**
891 * lpfc_config_ring: Prepare a mailbox command for configuring an IOCB ring.
892 * @phba: pointer to lpfc hba data structure.
893 * @ring:
894 * @pmb: pointer to the driver internal queue element for mailbox command.
895 *
896 * The configure ring mailbox command is used to configure an IOCB ring. This
897 * configuration binds from one to six of HBA RC_CTL/TYPE mask entries to the
898 * ring. This is used to map incoming sequences to a particular ring whose
899 * RC_CTL/TYPE mask entry matches that of the sequence. The driver should not
900 * attempt to configure a ring whose number is greater than the number
901 * specified in the Port Control Block (PCB). It is an error to issue the
902 * configure ring command more than once with the same ring number. The HBA
903 * returns an error if the driver attempts this.
904 *
905 * This routine prepares the mailbox command for configuring IOCB ring.
906 **/
dea31012005-04-17 16:05:31 -0500907void
908lpfc_config_ring(struct lpfc_hba * phba, int ring, LPFC_MBOXQ_t * pmb)
909{
910 int i;
911 MAILBOX_t *mb = &pmb->mb;
912 struct lpfc_sli *psli;
913 struct lpfc_sli_ring *pring;
914
915 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
916
917 mb->un.varCfgRing.ring = ring;
918 mb->un.varCfgRing.maxOrigXchg = 0;
919 mb->un.varCfgRing.maxRespXchg = 0;
920 mb->un.varCfgRing.recvNotify = 1;
921
922 psli = &phba->sli;
923 pring = &psli->ring[ring];
924 mb->un.varCfgRing.numMask = pring->num_mask;
925 mb->mbxCommand = MBX_CONFIG_RING;
926 mb->mbxOwner = OWN_HOST;
927
928 /* Is this ring configured for a specific profile */
929 if (pring->prt[0].profile) {
930 mb->un.varCfgRing.profile = pring->prt[0].profile;
931 return;
932 }
933
934 /* Otherwise we setup specific rctl / type masks for this ring */
935 for (i = 0; i < pring->num_mask; i++) {
936 mb->un.varCfgRing.rrRegs[i].rval = pring->prt[i].rctl;
937 if (mb->un.varCfgRing.rrRegs[i].rval != FC_ELS_REQ)
938 mb->un.varCfgRing.rrRegs[i].rmask = 0xff;
939 else
940 mb->un.varCfgRing.rrRegs[i].rmask = 0xfe;
941 mb->un.varCfgRing.rrRegs[i].tval = pring->prt[i].type;
942 mb->un.varCfgRing.rrRegs[i].tmask = 0xff;
943 }
944
945 return;
946}
947
James Smarte59058c2008-08-24 21:49:00 -0400948/**
949 * lpfc_config_port: Prepare a mailbox command for configuring port.
950 * @phba: pointer to lpfc hba data structure.
951 * @pmb: pointer to the driver internal queue element for mailbox command.
952 *
953 * The configure port mailbox command is used to identify the Port Control
954 * Block (PCB) in the driver memory. After this command is issued, the
955 * driver must not access the mailbox in the HBA without first resetting
956 * the HBA. The HBA may copy the PCB information to internal storage for
957 * subsequent use; the driver can not change the PCB information unless it
958 * resets the HBA.
959 *
960 * This routine prepares the mailbox command for configuring port.
961 **/
dea31012005-04-17 16:05:31 -0500962void
James Smart92d7f7b2007-06-17 19:56:38 -0500963lpfc_config_port(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -0500964{
James Smarted957682007-06-17 19:56:37 -0500965 MAILBOX_t __iomem *mb_slim = (MAILBOX_t __iomem *) phba->MBslimaddr;
dea31012005-04-17 16:05:31 -0500966 MAILBOX_t *mb = &pmb->mb;
967 dma_addr_t pdma_addr;
968 uint32_t bar_low, bar_high;
969 size_t offset;
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -0400970 struct lpfc_hgp hgp;
James.Smart@Emulex.Comf91b3922005-10-28 20:29:28 -0400971 int i;
James Smarted957682007-06-17 19:56:37 -0500972 uint32_t pgp_offset;
dea31012005-04-17 16:05:31 -0500973
974 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
975 mb->mbxCommand = MBX_CONFIG_PORT;
976 mb->mbxOwner = OWN_HOST;
977
978 mb->un.varCfgPort.pcbLen = sizeof(PCB_t);
979
James Smart34b02dc2008-08-24 21:49:55 -0400980 offset = (uint8_t *)phba->pcb - (uint8_t *)phba->slim2p.virt;
981 pdma_addr = phba->slim2p.phys + offset;
dea31012005-04-17 16:05:31 -0500982 mb->un.varCfgPort.pcbLow = putPaddrLow(pdma_addr);
983 mb->un.varCfgPort.pcbHigh = putPaddrHigh(pdma_addr);
984
James Smarted957682007-06-17 19:56:37 -0500985 /* If HBA supports SLI=3 ask for it */
986
James Smart92d7f7b2007-06-17 19:56:38 -0500987 if (phba->sli_rev == 3 && phba->vpd.sli3Feat.cerbm) {
James Smarted957682007-06-17 19:56:37 -0500988 mb->un.varCfgPort.cerbm = 1; /* Request HBQs */
James Smart34b02dc2008-08-24 21:49:55 -0400989 mb->un.varCfgPort.ccrp = 1; /* Command Ring Polling */
990 mb->un.varCfgPort.cinb = 1; /* Interrupt Notification Block */
James Smart51ef4c22007-08-02 11:10:31 -0400991 mb->un.varCfgPort.max_hbq = lpfc_sli_hbq_count();
James Smart78b2d852007-08-02 11:10:21 -0400992 if (phba->max_vpi && phba->cfg_enable_npiv &&
James Smart92d7f7b2007-06-17 19:56:38 -0500993 phba->vpd.sli3Feat.cmv) {
994 mb->un.varCfgPort.max_vpi = phba->max_vpi;
995 mb->un.varCfgPort.cmv = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500996 } else
997 mb->un.varCfgPort.max_vpi = phba->max_vpi = 0;
998 } else
999 phba->sli_rev = 2;
1000 mb->un.varCfgPort.sli_mode = phba->sli_rev;
James Smarted957682007-06-17 19:56:37 -05001001
dea31012005-04-17 16:05:31 -05001002 /* Now setup pcb */
James Smart34b02dc2008-08-24 21:49:55 -04001003 phba->pcb->type = TYPE_NATIVE_SLI2;
1004 phba->pcb->feature = FEATURE_INITIAL_SLI2;
dea31012005-04-17 16:05:31 -05001005
1006 /* Setup Mailbox pointers */
James Smart34b02dc2008-08-24 21:49:55 -04001007 phba->pcb->mailBoxSize = sizeof(MAILBOX_t);
1008 offset = (uint8_t *)phba->mbox - (uint8_t *)phba->slim2p.virt;
1009 pdma_addr = phba->slim2p.phys + offset;
1010 phba->pcb->mbAddrHigh = putPaddrHigh(pdma_addr);
1011 phba->pcb->mbAddrLow = putPaddrLow(pdma_addr);
dea31012005-04-17 16:05:31 -05001012
1013 /*
1014 * Setup Host Group ring pointer.
1015 *
1016 * For efficiency reasons, the ring get/put pointers can be
1017 * placed in adapter memory (SLIM) rather than in host memory.
1018 * This allows firmware to avoid PCI reads/writes when updating
1019 * and checking pointers.
1020 *
1021 * The firmware recognizes the use of SLIM memory by comparing
1022 * the address of the get/put pointers structure with that of
1023 * the SLIM BAR (BAR0).
1024 *
1025 * Caution: be sure to use the PCI config space value of BAR0/BAR1
1026 * (the hardware's view of the base address), not the OS's
1027 * value of pci_resource_start() as the OS value may be a cookie
1028 * for ioremap/iomap.
1029 */
1030
1031
1032 pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_0, &bar_low);
1033 pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_1, &bar_high);
1034
James Smarted957682007-06-17 19:56:37 -05001035 /*
1036 * Set up HGP - Port Memory
1037 *
1038 * The port expects the host get/put pointers to reside in memory
1039 * following the "non-diagnostic" mode mailbox (32 words, 0x80 bytes)
1040 * area of SLIM. In SLI-2 mode, there's an additional 16 reserved
1041 * words (0x40 bytes). This area is not reserved if HBQs are
1042 * configured in SLI-3.
1043 *
1044 * CR0Put - SLI2(no HBQs) = 0xc0, With HBQs = 0x80
1045 * RR0Get 0xc4 0x84
1046 * CR1Put 0xc8 0x88
1047 * RR1Get 0xcc 0x8c
1048 * CR2Put 0xd0 0x90
1049 * RR2Get 0xd4 0x94
1050 * CR3Put 0xd8 0x98
1051 * RR3Get 0xdc 0x9c
1052 *
1053 * Reserved 0xa0-0xbf
1054 * If HBQs configured:
1055 * HBQ 0 Put ptr 0xc0
1056 * HBQ 1 Put ptr 0xc4
1057 * HBQ 2 Put ptr 0xc8
1058 * ......
1059 * HBQ(M-1)Put Pointer 0xc0+(M-1)*4
1060 *
1061 */
1062
1063 if (phba->sli_rev == 3) {
1064 phba->host_gp = &mb_slim->us.s3.host[0];
1065 phba->hbq_put = &mb_slim->us.s3.hbq_put[0];
1066 } else {
1067 phba->host_gp = &mb_slim->us.s2.host[0];
1068 phba->hbq_put = NULL;
1069 }
dea31012005-04-17 16:05:31 -05001070
1071 /* mask off BAR0's flag bits 0 - 3 */
James Smart34b02dc2008-08-24 21:49:55 -04001072 phba->pcb->hgpAddrLow = (bar_low & PCI_BASE_ADDRESS_MEM_MASK) +
1073 (void __iomem *)phba->host_gp -
James Smarted957682007-06-17 19:56:37 -05001074 (void __iomem *)phba->MBslimaddr;
dea31012005-04-17 16:05:31 -05001075 if (bar_low & PCI_BASE_ADDRESS_MEM_TYPE_64)
James Smart34b02dc2008-08-24 21:49:55 -04001076 phba->pcb->hgpAddrHigh = bar_high;
dea31012005-04-17 16:05:31 -05001077 else
James Smart34b02dc2008-08-24 21:49:55 -04001078 phba->pcb->hgpAddrHigh = 0;
dea31012005-04-17 16:05:31 -05001079 /* write HGP data to SLIM at the required longword offset */
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -04001080 memset(&hgp, 0, sizeof(struct lpfc_hgp));
James.Smart@Emulex.Comf91b3922005-10-28 20:29:28 -04001081
1082 for (i=0; i < phba->sli.num_rings; i++) {
James Smarted957682007-06-17 19:56:37 -05001083 lpfc_memcpy_to_slim(phba->host_gp + i, &hgp,
1084 sizeof(*phba->host_gp));
James.Smart@Emulex.Comf91b3922005-10-28 20:29:28 -04001085 }
dea31012005-04-17 16:05:31 -05001086
1087 /* Setup Port Group ring pointer */
James Smart34b02dc2008-08-24 21:49:55 -04001088 if (phba->sli3_options & LPFC_SLI3_INB_ENABLED) {
1089 pgp_offset = offsetof(struct lpfc_sli2_slim,
1090 mbx.us.s3_inb_pgp.port);
1091 phba->hbq_get = phba->mbox->us.s3_inb_pgp.hbq_get;
1092 } else if (phba->sli_rev == 3) {
1093 pgp_offset = offsetof(struct lpfc_sli2_slim,
1094 mbx.us.s3_pgp.port);
1095 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
1096 } else
1097 pgp_offset = offsetof(struct lpfc_sli2_slim, mbx.us.s2.port);
1098 pdma_addr = phba->slim2p.phys + pgp_offset;
1099 phba->pcb->pgpAddrHigh = putPaddrHigh(pdma_addr);
1100 phba->pcb->pgpAddrLow = putPaddrLow(pdma_addr);
dea31012005-04-17 16:05:31 -05001101
1102 /* Use callback routine to setp rings in the pcb */
1103 lpfc_config_pcb_setup(phba);
1104
1105 /* special handling for LC HBAs */
1106 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
1107 uint32_t hbainit[5];
1108
1109 lpfc_hba_init(phba, hbainit);
1110
1111 memcpy(&mb->un.varCfgPort.hbainit, hbainit, 20);
1112 }
1113
1114 /* Swap PCB if needed */
James Smart34b02dc2008-08-24 21:49:55 -04001115 lpfc_sli_pcimem_bcopy(phba->pcb, phba->pcb, sizeof(PCB_t));
dea31012005-04-17 16:05:31 -05001116}
1117
James Smarte59058c2008-08-24 21:49:00 -04001118/**
1119 * lpfc_kill_board: Prepare a mailbox command for killing board.
1120 * @phba: pointer to lpfc hba data structure.
1121 * @pmb: pointer to the driver internal queue element for mailbox command.
1122 *
1123 * The kill board mailbox command is used to tell firmware to perform a
1124 * graceful shutdown of a channel on a specified board to prepare for reset.
1125 * When the kill board mailbox command is received, the ER3 bit is set to 1
1126 * in the Host Status register and the ER Attention bit is set to 1 in the
1127 * Host Attention register of the HBA function that received the kill board
1128 * command.
1129 *
1130 * This routine prepares the mailbox command for killing the board in
1131 * preparation for a graceful shutdown.
1132 **/
dea31012005-04-17 16:05:31 -05001133void
Jamie Wellnitz41415862006-02-28 19:25:27 -05001134lpfc_kill_board(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
1135{
1136 MAILBOX_t *mb = &pmb->mb;
1137
1138 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
1139 mb->mbxCommand = MBX_KILL_BOARD;
1140 mb->mbxOwner = OWN_HOST;
1141 return;
1142}
1143
James Smarte59058c2008-08-24 21:49:00 -04001144/**
1145 * lpfc_mbox_put: Put a mailbox cmd into the tail of driver's mailbox queue.
1146 * @phba: pointer to lpfc hba data structure.
1147 * @mbq: pointer to the driver internal queue element for mailbox command.
1148 *
1149 * Driver maintains a internal mailbox command queue implemented as a linked
1150 * list. When a mailbox command is issued, it shall be put into the mailbox
1151 * command queue such that they shall be processed orderly as HBA can process
1152 * one mailbox command at a time.
1153 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05001154void
dea31012005-04-17 16:05:31 -05001155lpfc_mbox_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq)
1156{
1157 struct lpfc_sli *psli;
1158
1159 psli = &phba->sli;
1160
1161 list_add_tail(&mbq->list, &psli->mboxq);
1162
1163 psli->mboxq_cnt++;
1164
1165 return;
1166}
1167
James Smarte59058c2008-08-24 21:49:00 -04001168/**
1169 * lpfc_mbox_get: Remove a mailbox cmd from the head of driver's mailbox queue.
1170 * @phba: pointer to lpfc hba data structure.
1171 *
1172 * Driver maintains a internal mailbox command queue implemented as a linked
1173 * list. When a mailbox command is issued, it shall be put into the mailbox
1174 * command queue such that they shall be processed orderly as HBA can process
1175 * one mailbox command at a time. After HBA finished processing a mailbox
1176 * command, the driver will remove a pending mailbox command from the head of
1177 * the mailbox command queue and send to the HBA for processing.
1178 *
1179 * Return codes
1180 * pointer to the driver internal queue element for mailbox command.
1181 **/
dea31012005-04-17 16:05:31 -05001182LPFC_MBOXQ_t *
1183lpfc_mbox_get(struct lpfc_hba * phba)
1184{
1185 LPFC_MBOXQ_t *mbq = NULL;
1186 struct lpfc_sli *psli = &phba->sli;
1187
James Smart2e0fef82007-06-17 19:56:36 -05001188 list_remove_head((&psli->mboxq), mbq, LPFC_MBOXQ_t, list);
James Smart92d7f7b2007-06-17 19:56:38 -05001189 if (mbq)
dea31012005-04-17 16:05:31 -05001190 psli->mboxq_cnt--;
dea31012005-04-17 16:05:31 -05001191
1192 return mbq;
1193}
James Smarta309a6b2006-08-01 07:33:43 -04001194
James Smarte59058c2008-08-24 21:49:00 -04001195/**
1196 * lpfc_mbox_cmpl_put: Put mailbox command into mailbox command complete list.
1197 * @phba: pointer to lpfc hba data structure.
1198 * @mbq: pointer to the driver internal queue element for mailbox command.
1199 *
1200 * This routine put the completed mailbox command into the mailbox command
1201 * complete list. This routine is called from driver interrupt handler
1202 * context.The mailbox complete list is used by the driver worker thread
1203 * to process mailbox complete callback functions outside the driver interrupt
1204 * handler.
1205 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001206void
1207lpfc_mbox_cmpl_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq)
1208{
Joe Perchesb1c11812008-02-03 17:28:22 +02001209 /* This function expects to be called from interrupt context */
James Smart92d7f7b2007-06-17 19:56:38 -05001210 spin_lock(&phba->hbalock);
1211 list_add_tail(&mbq->list, &phba->sli.mboxq_cmpl);
1212 spin_unlock(&phba->hbalock);
1213 return;
1214}
1215
James Smarte59058c2008-08-24 21:49:00 -04001216/**
1217 * lpfc_mbox_tmo_val: Retrieve mailbox command timeout value.
1218 * @phba: pointer to lpfc hba data structure.
1219 * @cmd: mailbox command code.
1220 *
1221 * This routine retrieves the proper timeout value according to the mailbox
1222 * command code.
1223 *
1224 * Return codes
1225 * Timeout value to be used for the given mailbox command
1226 **/
James Smarta309a6b2006-08-01 07:33:43 -04001227int
1228lpfc_mbox_tmo_val(struct lpfc_hba *phba, int cmd)
1229{
1230 switch (cmd) {
1231 case MBX_WRITE_NV: /* 0x03 */
1232 case MBX_UPDATE_CFG: /* 0x1B */
1233 case MBX_DOWN_LOAD: /* 0x1C */
1234 case MBX_DEL_LD_ENTRY: /* 0x1D */
1235 case MBX_LOAD_AREA: /* 0x81 */
James Smart09372822008-01-11 01:52:54 -05001236 case MBX_WRITE_WWN: /* 0x98 */
James Smarta309a6b2006-08-01 07:33:43 -04001237 case MBX_LOAD_EXP_ROM: /* 0x9C */
1238 return LPFC_MBOX_TMO_FLASH_CMD;
1239 }
1240 return LPFC_MBOX_TMO;
1241}