blob: 5fa1c6f70a988d5c6f9f8d28df7f46d1116f142a [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
40/**********************************************/
41
42/* mailbox command */
43/**********************************************/
44void
45lpfc_dump_mem(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb, uint16_t offset)
46{
47 MAILBOX_t *mb;
48 void *ctx;
49
50 mb = &pmb->mb;
51 ctx = pmb->context2;
52
53 /* Setup to dump VPD region */
54 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
55 mb->mbxCommand = MBX_DUMP_MEMORY;
56 mb->un.varDmp.cv = 1;
57 mb->un.varDmp.type = DMP_NV_PARAMS;
58 mb->un.varDmp.entry_index = offset;
59 mb->un.varDmp.region_id = DMP_REGION_VPD;
60 mb->un.varDmp.word_cnt = (DMP_RSP_SIZE / sizeof (uint32_t));
61 mb->un.varDmp.co = 0;
62 mb->un.varDmp.resp_offset = 0;
63 pmb->context2 = ctx;
64 mb->mbxOwner = OWN_HOST;
65 return;
66}
67
68/**********************************************/
69/* lpfc_read_nv Issue a READ NVPARAM */
70/* mailbox command */
71/**********************************************/
72void
73lpfc_read_nv(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
74{
75 MAILBOX_t *mb;
76
77 mb = &pmb->mb;
78 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
79 mb->mbxCommand = MBX_READ_NV;
80 mb->mbxOwner = OWN_HOST;
81 return;
82}
83
84/**********************************************/
James Smart858c9f62007-06-17 19:56:39 -050085/* lpfc_heart_beat Issue a HEART_BEAT */
86/* mailbox command */
87/**********************************************/
88void
89lpfc_heart_beat(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
90{
91 MAILBOX_t *mb;
92
93 mb = &pmb->mb;
94 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
95 mb->mbxCommand = MBX_HEARTBEAT;
96 mb->mbxOwner = OWN_HOST;
97 return;
98}
99
100/**********************************************/
dea31012005-04-17 16:05:31 -0500101/* lpfc_read_la Issue a READ LA */
102/* mailbox command */
103/**********************************************/
104int
105lpfc_read_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb, struct lpfc_dmabuf *mp)
106{
107 MAILBOX_t *mb;
108 struct lpfc_sli *psli;
109
110 psli = &phba->sli;
111 mb = &pmb->mb;
112 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
113
114 INIT_LIST_HEAD(&mp->list);
115 mb->mbxCommand = MBX_READ_LA64;
116 mb->un.varReadLA.un.lilpBde64.tus.f.bdeSize = 128;
117 mb->un.varReadLA.un.lilpBde64.addrHigh = putPaddrHigh(mp->phys);
118 mb->un.varReadLA.un.lilpBde64.addrLow = putPaddrLow(mp->phys);
119
120 /* Save address for later completion and set the owner to host so that
121 * the FW knows this mailbox is available for processing.
122 */
123 pmb->context1 = (uint8_t *) mp;
124 mb->mbxOwner = OWN_HOST;
James Smart92d7f7b2007-06-17 19:56:38 -0500125 return (0);
dea31012005-04-17 16:05:31 -0500126}
127
128/**********************************************/
129/* lpfc_clear_la Issue a CLEAR LA */
130/* mailbox command */
131/**********************************************/
132void
133lpfc_clear_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
134{
135 MAILBOX_t *mb;
136
137 mb = &pmb->mb;
138 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
139
140 mb->un.varClearLA.eventTag = phba->fc_eventTag;
141 mb->mbxCommand = MBX_CLEAR_LA;
142 mb->mbxOwner = OWN_HOST;
143 return;
144}
145
146/**************************************************/
147/* lpfc_config_link Issue a CONFIG LINK */
148/* mailbox command */
149/**************************************************/
150void
151lpfc_config_link(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
152{
James Smart2e0fef82007-06-17 19:56:36 -0500153 struct lpfc_vport *vport = phba->pport;
dea31012005-04-17 16:05:31 -0500154 MAILBOX_t *mb = &pmb->mb;
155 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
156
157 /* NEW_FEATURE
158 * SLI-2, Coalescing Response Feature.
159 */
160 if (phba->cfg_cr_delay) {
161 mb->un.varCfgLnk.cr = 1;
162 mb->un.varCfgLnk.ci = 1;
163 mb->un.varCfgLnk.cr_delay = phba->cfg_cr_delay;
164 mb->un.varCfgLnk.cr_count = phba->cfg_cr_count;
165 }
166
James Smart2e0fef82007-06-17 19:56:36 -0500167 mb->un.varCfgLnk.myId = vport->fc_myDID;
dea31012005-04-17 16:05:31 -0500168 mb->un.varCfgLnk.edtov = phba->fc_edtov;
169 mb->un.varCfgLnk.arbtov = phba->fc_arbtov;
170 mb->un.varCfgLnk.ratov = phba->fc_ratov;
171 mb->un.varCfgLnk.rttov = phba->fc_rttov;
172 mb->un.varCfgLnk.altov = phba->fc_altov;
173 mb->un.varCfgLnk.crtov = phba->fc_crtov;
174 mb->un.varCfgLnk.citov = phba->fc_citov;
175
176 if (phba->cfg_ack0)
177 mb->un.varCfgLnk.ack0_enable = 1;
178
179 mb->mbxCommand = MBX_CONFIG_LINK;
180 mb->mbxOwner = OWN_HOST;
181 return;
182}
183
184/**********************************************/
185/* lpfc_init_link Issue an INIT LINK */
186/* mailbox command */
187/**********************************************/
188void
189lpfc_init_link(struct lpfc_hba * phba,
190 LPFC_MBOXQ_t * pmb, uint32_t topology, uint32_t linkspeed)
191{
192 lpfc_vpd_t *vpd;
193 struct lpfc_sli *psli;
194 MAILBOX_t *mb;
195
196 mb = &pmb->mb;
197 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
198
199 psli = &phba->sli;
200 switch (topology) {
201 case FLAGS_TOPOLOGY_MODE_LOOP_PT:
202 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP;
203 mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER;
204 break;
205 case FLAGS_TOPOLOGY_MODE_PT_PT:
206 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT;
207 break;
208 case FLAGS_TOPOLOGY_MODE_LOOP:
209 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP;
210 break;
211 case FLAGS_TOPOLOGY_MODE_PT_LOOP:
212 mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT;
213 mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER;
214 break;
Jamie Wellnitz367c2712006-02-28 19:25:32 -0500215 case FLAGS_LOCAL_LB:
216 mb->un.varInitLnk.link_flags = FLAGS_LOCAL_LB;
217 break;
dea31012005-04-17 16:05:31 -0500218 }
219
James Smart4b0b91d2006-04-15 11:53:00 -0400220 /* Enable asynchronous ABTS responses from firmware */
221 mb->un.varInitLnk.link_flags |= FLAGS_IMED_ABORT;
222
dea31012005-04-17 16:05:31 -0500223 /* NEW_FEATURE
224 * Setting up the link speed
225 */
226 vpd = &phba->vpd;
227 if (vpd->rev.feaLevelHigh >= 0x02){
James Smart92d7f7b2007-06-17 19:56:38 -0500228 switch(linkspeed){
dea31012005-04-17 16:05:31 -0500229 case LINK_SPEED_1G:
230 case LINK_SPEED_2G:
231 case LINK_SPEED_4G:
James Smartb87eab32007-04-25 09:53:28 -0400232 case LINK_SPEED_8G:
dea31012005-04-17 16:05:31 -0500233 mb->un.varInitLnk.link_flags |=
234 FLAGS_LINK_SPEED;
235 mb->un.varInitLnk.link_speed = linkspeed;
236 break;
237 case LINK_SPEED_AUTO:
238 default:
239 mb->un.varInitLnk.link_speed =
240 LINK_SPEED_AUTO;
241 break;
242 }
243
244 }
245 else
246 mb->un.varInitLnk.link_speed = LINK_SPEED_AUTO;
247
248 mb->mbxCommand = (volatile uint8_t)MBX_INIT_LINK;
249 mb->mbxOwner = OWN_HOST;
250 mb->un.varInitLnk.fabric_AL_PA = phba->fc_pref_ALPA;
251 return;
252}
253
254/**********************************************/
255/* lpfc_read_sparam Issue a READ SPARAM */
256/* mailbox command */
257/**********************************************/
258int
James Smart92d7f7b2007-06-17 19:56:38 -0500259lpfc_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb, int vpi)
dea31012005-04-17 16:05:31 -0500260{
261 struct lpfc_dmabuf *mp;
262 MAILBOX_t *mb;
263 struct lpfc_sli *psli;
264
265 psli = &phba->sli;
266 mb = &pmb->mb;
267 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
268
269 mb->mbxOwner = OWN_HOST;
270
271 /* Get a buffer to hold the HBAs Service Parameters */
272
273 if (((mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL)) == 0) ||
274 ((mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys))) == 0)) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800275 kfree(mp);
dea31012005-04-17 16:05:31 -0500276 mb->mbxCommand = MBX_READ_SPARM64;
277 /* READ_SPARAM: no buffers */
James Smarte8b62012007-08-02 11:10:09 -0400278 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
279 "0301 READ_SPARAM: no buffers\n");
James Smart92d7f7b2007-06-17 19:56:38 -0500280 return (1);
dea31012005-04-17 16:05:31 -0500281 }
282 INIT_LIST_HEAD(&mp->list);
283 mb->mbxCommand = MBX_READ_SPARM64;
284 mb->un.varRdSparm.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm);
285 mb->un.varRdSparm.un.sp64.addrHigh = putPaddrHigh(mp->phys);
286 mb->un.varRdSparm.un.sp64.addrLow = putPaddrLow(mp->phys);
James Smart92d7f7b2007-06-17 19:56:38 -0500287 mb->un.varRdSparm.vpi = vpi;
dea31012005-04-17 16:05:31 -0500288
289 /* save address for completion */
290 pmb->context1 = mp;
291
James Smart92d7f7b2007-06-17 19:56:38 -0500292 return (0);
dea31012005-04-17 16:05:31 -0500293}
294
295/********************************************/
296/* lpfc_unreg_did Issue a UNREG_DID */
297/* mailbox command */
298/********************************************/
299void
James Smart92d7f7b2007-06-17 19:56:38 -0500300lpfc_unreg_did(struct lpfc_hba * phba, uint16_t vpi, uint32_t did,
301 LPFC_MBOXQ_t * pmb)
dea31012005-04-17 16:05:31 -0500302{
303 MAILBOX_t *mb;
304
305 mb = &pmb->mb;
306 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
307
308 mb->un.varUnregDID.did = did;
James Smart92d7f7b2007-06-17 19:56:38 -0500309 mb->un.varUnregDID.vpi = vpi;
dea31012005-04-17 16:05:31 -0500310
311 mb->mbxCommand = MBX_UNREG_D_ID;
312 mb->mbxOwner = OWN_HOST;
313 return;
314}
315
dea31012005-04-17 16:05:31 -0500316/**********************************************/
317/* lpfc_read_nv Issue a READ CONFIG */
318/* mailbox command */
319/**********************************************/
320void
321lpfc_read_config(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
322{
323 MAILBOX_t *mb;
324
325 mb = &pmb->mb;
326 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
327
328 mb->mbxCommand = MBX_READ_CONFIG;
329 mb->mbxOwner = OWN_HOST;
330 return;
331}
332
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -0500333/*************************************************/
334/* lpfc_read_lnk_stat Issue a READ LINK STATUS */
335/* mailbox command */
336/*************************************************/
337void
338lpfc_read_lnk_stat(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
339{
340 MAILBOX_t *mb;
341
342 mb = &pmb->mb;
343 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
344
345 mb->mbxCommand = MBX_READ_LNK_STAT;
346 mb->mbxOwner = OWN_HOST;
347 return;
348}
349
dea31012005-04-17 16:05:31 -0500350/********************************************/
351/* lpfc_reg_login Issue a REG_LOGIN */
352/* mailbox command */
353/********************************************/
354int
James Smart92d7f7b2007-06-17 19:56:38 -0500355lpfc_reg_login(struct lpfc_hba *phba, uint16_t vpi, uint32_t did,
356 uint8_t *param, LPFC_MBOXQ_t *pmb, uint32_t flag)
dea31012005-04-17 16:05:31 -0500357{
James Smart2e0fef82007-06-17 19:56:36 -0500358 MAILBOX_t *mb = &pmb->mb;
dea31012005-04-17 16:05:31 -0500359 uint8_t *sparam;
360 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -0500361
dea31012005-04-17 16:05:31 -0500362 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
363
364 mb->un.varRegLogin.rpi = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500365 mb->un.varRegLogin.vpi = vpi;
dea31012005-04-17 16:05:31 -0500366 mb->un.varRegLogin.did = did;
367 mb->un.varWords[30] = flag; /* Set flag to issue action on cmpl */
368
369 mb->mbxOwner = OWN_HOST;
370
371 /* Get a buffer to hold NPorts Service Parameters */
372 if (((mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL)) == NULL) ||
373 ((mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys))) == 0)) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800374 kfree(mp);
dea31012005-04-17 16:05:31 -0500375 mb->mbxCommand = MBX_REG_LOGIN64;
376 /* REG_LOGIN: no buffers */
James Smart92d7f7b2007-06-17 19:56:38 -0500377 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
James Smarte8b62012007-08-02 11:10:09 -0400378 "0302 REG_LOGIN: no buffers, VPI:%d DID:x%x, "
379 "flag x%x\n", vpi, did, flag);
James Smart92d7f7b2007-06-17 19:56:38 -0500380 return (1);
dea31012005-04-17 16:05:31 -0500381 }
382 INIT_LIST_HEAD(&mp->list);
383 sparam = mp->virt;
384
385 /* Copy param's into a new buffer */
386 memcpy(sparam, param, sizeof (struct serv_parm));
387
388 /* save address for completion */
389 pmb->context1 = (uint8_t *) mp;
390
391 mb->mbxCommand = MBX_REG_LOGIN64;
392 mb->un.varRegLogin.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm);
393 mb->un.varRegLogin.un.sp64.addrHigh = putPaddrHigh(mp->phys);
394 mb->un.varRegLogin.un.sp64.addrLow = putPaddrLow(mp->phys);
395
James Smart92d7f7b2007-06-17 19:56:38 -0500396 return (0);
dea31012005-04-17 16:05:31 -0500397}
398
399/**********************************************/
400/* lpfc_unreg_login Issue a UNREG_LOGIN */
401/* mailbox command */
402/**********************************************/
403void
James Smart92d7f7b2007-06-17 19:56:38 -0500404lpfc_unreg_login(struct lpfc_hba *phba, uint16_t vpi, uint32_t rpi,
405 LPFC_MBOXQ_t * pmb)
dea31012005-04-17 16:05:31 -0500406{
407 MAILBOX_t *mb;
408
409 mb = &pmb->mb;
410 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
411
412 mb->un.varUnregLogin.rpi = (uint16_t) rpi;
413 mb->un.varUnregLogin.rsvd1 = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500414 mb->un.varUnregLogin.vpi = vpi;
dea31012005-04-17 16:05:31 -0500415
416 mb->mbxCommand = MBX_UNREG_LOGIN;
417 mb->mbxOwner = OWN_HOST;
418 return;
419}
420
James Smart92d7f7b2007-06-17 19:56:38 -0500421/**************************************************/
422/* lpfc_reg_vpi Issue a REG_VPI */
423/* mailbox command */
424/**************************************************/
425void
426lpfc_reg_vpi(struct lpfc_hba *phba, uint16_t vpi, uint32_t sid,
427 LPFC_MBOXQ_t *pmb)
428{
429 MAILBOX_t *mb = &pmb->mb;
430
431 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
432
433 mb->un.varRegVpi.vpi = vpi;
434 mb->un.varRegVpi.sid = sid;
435
436 mb->mbxCommand = MBX_REG_VPI;
437 mb->mbxOwner = OWN_HOST;
438 return;
439
440}
441
442/**************************************************/
443/* lpfc_unreg_vpi Issue a UNREG_VNPI */
444/* mailbox command */
445/**************************************************/
446void
447lpfc_unreg_vpi(struct lpfc_hba *phba, uint16_t vpi, LPFC_MBOXQ_t *pmb)
448{
449 MAILBOX_t *mb = &pmb->mb;
450 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
451
452 mb->un.varUnregVpi.vpi = vpi;
453
454 mb->mbxCommand = MBX_UNREG_VPI;
455 mb->mbxOwner = OWN_HOST;
456 return;
457
458}
459
dea31012005-04-17 16:05:31 -0500460static void
461lpfc_config_pcb_setup(struct lpfc_hba * phba)
462{
463 struct lpfc_sli *psli = &phba->sli;
464 struct lpfc_sli_ring *pring;
465 PCB_t *pcbp = &phba->slim2p->pcb;
466 dma_addr_t pdma_addr;
467 uint32_t offset;
James Smart2e0fef82007-06-17 19:56:36 -0500468 uint32_t iocbCnt = 0;
dea31012005-04-17 16:05:31 -0500469 int i;
470
dea31012005-04-17 16:05:31 -0500471 pcbp->maxRing = (psli->num_rings - 1);
472
dea31012005-04-17 16:05:31 -0500473 for (i = 0; i < psli->num_rings; i++) {
474 pring = &psli->ring[i];
James Smart2e0fef82007-06-17 19:56:36 -0500475
James Smarted957682007-06-17 19:56:37 -0500476 pring->sizeCiocb = phba->sli_rev == 3 ? SLI3_IOCB_CMD_SIZE:
James Smart92d7f7b2007-06-17 19:56:38 -0500477 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -0500478 pring->sizeRiocb = phba->sli_rev == 3 ? SLI3_IOCB_RSP_SIZE:
James Smart92d7f7b2007-06-17 19:56:38 -0500479 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -0500480 /* A ring MUST have both cmd and rsp entries defined to be
481 valid */
482 if ((pring->numCiocb == 0) || (pring->numRiocb == 0)) {
483 pcbp->rdsc[i].cmdEntries = 0;
484 pcbp->rdsc[i].rspEntries = 0;
485 pcbp->rdsc[i].cmdAddrHigh = 0;
486 pcbp->rdsc[i].rspAddrHigh = 0;
487 pcbp->rdsc[i].cmdAddrLow = 0;
488 pcbp->rdsc[i].rspAddrLow = 0;
489 pring->cmdringaddr = NULL;
490 pring->rspringaddr = NULL;
491 continue;
492 }
493 /* Command ring setup for ring */
James Smart92d7f7b2007-06-17 19:56:38 -0500494 pring->cmdringaddr = (void *) &phba->slim2p->IOCBs[iocbCnt];
dea31012005-04-17 16:05:31 -0500495 pcbp->rdsc[i].cmdEntries = pring->numCiocb;
496
James Smart92d7f7b2007-06-17 19:56:38 -0500497 offset = (uint8_t *) &phba->slim2p->IOCBs[iocbCnt] -
498 (uint8_t *) phba->slim2p;
dea31012005-04-17 16:05:31 -0500499 pdma_addr = phba->slim2p_mapping + offset;
500 pcbp->rdsc[i].cmdAddrHigh = putPaddrHigh(pdma_addr);
501 pcbp->rdsc[i].cmdAddrLow = putPaddrLow(pdma_addr);
502 iocbCnt += pring->numCiocb;
503
504 /* Response ring setup for ring */
James Smart92d7f7b2007-06-17 19:56:38 -0500505 pring->rspringaddr = (void *) &phba->slim2p->IOCBs[iocbCnt];
dea31012005-04-17 16:05:31 -0500506
507 pcbp->rdsc[i].rspEntries = pring->numRiocb;
508 offset = (uint8_t *)&phba->slim2p->IOCBs[iocbCnt] -
509 (uint8_t *)phba->slim2p;
510 pdma_addr = phba->slim2p_mapping + offset;
511 pcbp->rdsc[i].rspAddrHigh = putPaddrHigh(pdma_addr);
512 pcbp->rdsc[i].rspAddrLow = putPaddrLow(pdma_addr);
513 iocbCnt += pring->numRiocb;
514 }
515}
516
517void
518lpfc_read_rev(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
519{
James Smart2e0fef82007-06-17 19:56:36 -0500520 MAILBOX_t *mb = &pmb->mb;
dea31012005-04-17 16:05:31 -0500521 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
522 mb->un.varRdRev.cv = 1;
James Smarted957682007-06-17 19:56:37 -0500523 mb->un.varRdRev.v3req = 1; /* Request SLI3 info */
dea31012005-04-17 16:05:31 -0500524 mb->mbxCommand = MBX_READ_REV;
525 mb->mbxOwner = OWN_HOST;
526 return;
527}
528
James Smarted957682007-06-17 19:56:37 -0500529static void
530lpfc_build_hbq_profile2(struct config_hbq_var *hbqmb,
531 struct lpfc_hbq_init *hbq_desc)
532{
533 hbqmb->profiles.profile2.seqlenbcnt = hbq_desc->seqlenbcnt;
534 hbqmb->profiles.profile2.maxlen = hbq_desc->maxlen;
535 hbqmb->profiles.profile2.seqlenoff = hbq_desc->seqlenoff;
536}
537
538static void
539lpfc_build_hbq_profile3(struct config_hbq_var *hbqmb,
540 struct lpfc_hbq_init *hbq_desc)
541{
542 hbqmb->profiles.profile3.seqlenbcnt = hbq_desc->seqlenbcnt;
543 hbqmb->profiles.profile3.maxlen = hbq_desc->maxlen;
544 hbqmb->profiles.profile3.cmdcodeoff = hbq_desc->cmdcodeoff;
545 hbqmb->profiles.profile3.seqlenoff = hbq_desc->seqlenoff;
546 memcpy(&hbqmb->profiles.profile3.cmdmatch, hbq_desc->cmdmatch,
547 sizeof(hbqmb->profiles.profile3.cmdmatch));
548}
549
550static void
551lpfc_build_hbq_profile5(struct config_hbq_var *hbqmb,
552 struct lpfc_hbq_init *hbq_desc)
553{
554 hbqmb->profiles.profile5.seqlenbcnt = hbq_desc->seqlenbcnt;
555 hbqmb->profiles.profile5.maxlen = hbq_desc->maxlen;
556 hbqmb->profiles.profile5.cmdcodeoff = hbq_desc->cmdcodeoff;
557 hbqmb->profiles.profile5.seqlenoff = hbq_desc->seqlenoff;
558 memcpy(&hbqmb->profiles.profile5.cmdmatch, hbq_desc->cmdmatch,
559 sizeof(hbqmb->profiles.profile5.cmdmatch));
560}
561
562void
563lpfc_config_hbq(struct lpfc_hba *phba, struct lpfc_hbq_init *hbq_desc,
564 uint32_t hbq_entry_index, LPFC_MBOXQ_t *pmb)
565{
566 int i;
567 MAILBOX_t *mb = &pmb->mb;
568 struct config_hbq_var *hbqmb = &mb->un.varCfgHbq;
569
570 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
571 hbqmb->entry_count = hbq_desc->entry_count; /* # entries in HBQ */
572 hbqmb->recvNotify = hbq_desc->rn; /* Receive
573 * Notification */
574 hbqmb->numMask = hbq_desc->mask_count; /* # R_CTL/TYPE masks
575 * # in words 0-19 */
James Smart92d7f7b2007-06-17 19:56:38 -0500576 hbqmb->profile = hbq_desc->profile; /* Selection profile:
James Smarted957682007-06-17 19:56:37 -0500577 * 0 = all,
578 * 7 = logentry */
579 hbqmb->ringMask = hbq_desc->ring_mask; /* Binds HBQ to a ring
580 * e.g. Ring0=b0001,
581 * ring2=b0100 */
582 hbqmb->headerLen = hbq_desc->headerLen; /* 0 if not profile 4
583 * or 5 */
584 hbqmb->logEntry = hbq_desc->logEntry; /* Set to 1 if this
585 * HBQ will be used
586 * for LogEntry
587 * buffers */
588 hbqmb->hbqaddrLow = putPaddrLow(phba->hbqslimp.phys) +
589 hbq_entry_index * sizeof(struct lpfc_hbq_entry);
590 hbqmb->hbqaddrHigh = putPaddrHigh(phba->hbqslimp.phys);
591
592 mb->mbxCommand = MBX_CONFIG_HBQ;
593 mb->mbxOwner = OWN_HOST;
594
James Smart92d7f7b2007-06-17 19:56:38 -0500595 /* Copy info for profiles 2,3,5. Other
596 * profiles this area is reserved
597 */
James Smarted957682007-06-17 19:56:37 -0500598 if (hbq_desc->profile == 2)
599 lpfc_build_hbq_profile2(hbqmb, hbq_desc);
600 else if (hbq_desc->profile == 3)
601 lpfc_build_hbq_profile3(hbqmb, hbq_desc);
602 else if (hbq_desc->profile == 5)
603 lpfc_build_hbq_profile5(hbqmb, hbq_desc);
604
605 /* Return if no rctl / type masks for this HBQ */
606 if (!hbq_desc->mask_count)
607 return;
608
609 /* Otherwise we setup specific rctl / type masks for this HBQ */
610 for (i = 0; i < hbq_desc->mask_count; i++) {
611 hbqmb->hbqMasks[i].tmatch = hbq_desc->hbqMasks[i].tmatch;
612 hbqmb->hbqMasks[i].tmask = hbq_desc->hbqMasks[i].tmask;
613 hbqmb->hbqMasks[i].rctlmatch = hbq_desc->hbqMasks[i].rctlmatch;
614 hbqmb->hbqMasks[i].rctlmask = hbq_desc->hbqMasks[i].rctlmask;
615 }
616
617 return;
618}
619
James Smart92d7f7b2007-06-17 19:56:38 -0500620
621
dea31012005-04-17 16:05:31 -0500622void
623lpfc_config_ring(struct lpfc_hba * phba, int ring, LPFC_MBOXQ_t * pmb)
624{
625 int i;
626 MAILBOX_t *mb = &pmb->mb;
627 struct lpfc_sli *psli;
628 struct lpfc_sli_ring *pring;
629
630 memset(pmb, 0, sizeof (LPFC_MBOXQ_t));
631
632 mb->un.varCfgRing.ring = ring;
633 mb->un.varCfgRing.maxOrigXchg = 0;
634 mb->un.varCfgRing.maxRespXchg = 0;
635 mb->un.varCfgRing.recvNotify = 1;
636
637 psli = &phba->sli;
638 pring = &psli->ring[ring];
639 mb->un.varCfgRing.numMask = pring->num_mask;
640 mb->mbxCommand = MBX_CONFIG_RING;
641 mb->mbxOwner = OWN_HOST;
642
643 /* Is this ring configured for a specific profile */
644 if (pring->prt[0].profile) {
645 mb->un.varCfgRing.profile = pring->prt[0].profile;
646 return;
647 }
648
649 /* Otherwise we setup specific rctl / type masks for this ring */
650 for (i = 0; i < pring->num_mask; i++) {
651 mb->un.varCfgRing.rrRegs[i].rval = pring->prt[i].rctl;
652 if (mb->un.varCfgRing.rrRegs[i].rval != FC_ELS_REQ)
653 mb->un.varCfgRing.rrRegs[i].rmask = 0xff;
654 else
655 mb->un.varCfgRing.rrRegs[i].rmask = 0xfe;
656 mb->un.varCfgRing.rrRegs[i].tval = pring->prt[i].type;
657 mb->un.varCfgRing.rrRegs[i].tmask = 0xff;
658 }
659
660 return;
661}
662
663void
James Smart92d7f7b2007-06-17 19:56:38 -0500664lpfc_config_port(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -0500665{
James Smarted957682007-06-17 19:56:37 -0500666 MAILBOX_t __iomem *mb_slim = (MAILBOX_t __iomem *) phba->MBslimaddr;
dea31012005-04-17 16:05:31 -0500667 MAILBOX_t *mb = &pmb->mb;
668 dma_addr_t pdma_addr;
669 uint32_t bar_low, bar_high;
670 size_t offset;
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -0400671 struct lpfc_hgp hgp;
James.Smart@Emulex.Comf91b3922005-10-28 20:29:28 -0400672 int i;
James Smarted957682007-06-17 19:56:37 -0500673 uint32_t pgp_offset;
dea31012005-04-17 16:05:31 -0500674
675 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
676 mb->mbxCommand = MBX_CONFIG_PORT;
677 mb->mbxOwner = OWN_HOST;
678
679 mb->un.varCfgPort.pcbLen = sizeof(PCB_t);
680
681 offset = (uint8_t *)&phba->slim2p->pcb - (uint8_t *)phba->slim2p;
682 pdma_addr = phba->slim2p_mapping + offset;
683 mb->un.varCfgPort.pcbLow = putPaddrLow(pdma_addr);
684 mb->un.varCfgPort.pcbHigh = putPaddrHigh(pdma_addr);
685
James Smarted957682007-06-17 19:56:37 -0500686 /* If HBA supports SLI=3 ask for it */
687
James Smart92d7f7b2007-06-17 19:56:38 -0500688 if (phba->sli_rev == 3 && phba->vpd.sli3Feat.cerbm) {
James Smarted957682007-06-17 19:56:37 -0500689 mb->un.varCfgPort.cerbm = 1; /* Request HBQs */
690 mb->un.varCfgPort.max_hbq = 1; /* Requesting 2 HBQs */
James Smart858c9f62007-06-17 19:56:39 -0500691 if (phba->max_vpi && phba->cfg_npiv_enable &&
James Smart92d7f7b2007-06-17 19:56:38 -0500692 phba->vpd.sli3Feat.cmv) {
693 mb->un.varCfgPort.max_vpi = phba->max_vpi;
694 mb->un.varCfgPort.cmv = 1;
695 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
696 } else
697 mb->un.varCfgPort.max_vpi = phba->max_vpi = 0;
698 } else
699 phba->sli_rev = 2;
700 mb->un.varCfgPort.sli_mode = phba->sli_rev;
James Smarted957682007-06-17 19:56:37 -0500701
dea31012005-04-17 16:05:31 -0500702 /* Now setup pcb */
703 phba->slim2p->pcb.type = TYPE_NATIVE_SLI2;
704 phba->slim2p->pcb.feature = FEATURE_INITIAL_SLI2;
705
706 /* Setup Mailbox pointers */
James Smarted957682007-06-17 19:56:37 -0500707 phba->slim2p->pcb.mailBoxSize = offsetof(MAILBOX_t, us) +
708 sizeof(struct sli2_desc);
dea31012005-04-17 16:05:31 -0500709 offset = (uint8_t *)&phba->slim2p->mbx - (uint8_t *)phba->slim2p;
710 pdma_addr = phba->slim2p_mapping + offset;
711 phba->slim2p->pcb.mbAddrHigh = putPaddrHigh(pdma_addr);
712 phba->slim2p->pcb.mbAddrLow = putPaddrLow(pdma_addr);
713
714 /*
715 * Setup Host Group ring pointer.
716 *
717 * For efficiency reasons, the ring get/put pointers can be
718 * placed in adapter memory (SLIM) rather than in host memory.
719 * This allows firmware to avoid PCI reads/writes when updating
720 * and checking pointers.
721 *
722 * The firmware recognizes the use of SLIM memory by comparing
723 * the address of the get/put pointers structure with that of
724 * the SLIM BAR (BAR0).
725 *
726 * Caution: be sure to use the PCI config space value of BAR0/BAR1
727 * (the hardware's view of the base address), not the OS's
728 * value of pci_resource_start() as the OS value may be a cookie
729 * for ioremap/iomap.
730 */
731
732
733 pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_0, &bar_low);
734 pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_1, &bar_high);
735
James Smarted957682007-06-17 19:56:37 -0500736 /*
737 * Set up HGP - Port Memory
738 *
739 * The port expects the host get/put pointers to reside in memory
740 * following the "non-diagnostic" mode mailbox (32 words, 0x80 bytes)
741 * area of SLIM. In SLI-2 mode, there's an additional 16 reserved
742 * words (0x40 bytes). This area is not reserved if HBQs are
743 * configured in SLI-3.
744 *
745 * CR0Put - SLI2(no HBQs) = 0xc0, With HBQs = 0x80
746 * RR0Get 0xc4 0x84
747 * CR1Put 0xc8 0x88
748 * RR1Get 0xcc 0x8c
749 * CR2Put 0xd0 0x90
750 * RR2Get 0xd4 0x94
751 * CR3Put 0xd8 0x98
752 * RR3Get 0xdc 0x9c
753 *
754 * Reserved 0xa0-0xbf
755 * If HBQs configured:
756 * HBQ 0 Put ptr 0xc0
757 * HBQ 1 Put ptr 0xc4
758 * HBQ 2 Put ptr 0xc8
759 * ......
760 * HBQ(M-1)Put Pointer 0xc0+(M-1)*4
761 *
762 */
763
764 if (phba->sli_rev == 3) {
765 phba->host_gp = &mb_slim->us.s3.host[0];
766 phba->hbq_put = &mb_slim->us.s3.hbq_put[0];
767 } else {
768 phba->host_gp = &mb_slim->us.s2.host[0];
769 phba->hbq_put = NULL;
770 }
dea31012005-04-17 16:05:31 -0500771
772 /* mask off BAR0's flag bits 0 - 3 */
773 phba->slim2p->pcb.hgpAddrLow = (bar_low & PCI_BASE_ADDRESS_MEM_MASK) +
James Smarted957682007-06-17 19:56:37 -0500774 (void __iomem *) phba->host_gp -
775 (void __iomem *)phba->MBslimaddr;
dea31012005-04-17 16:05:31 -0500776 if (bar_low & PCI_BASE_ADDRESS_MEM_TYPE_64)
777 phba->slim2p->pcb.hgpAddrHigh = bar_high;
778 else
779 phba->slim2p->pcb.hgpAddrHigh = 0;
780 /* write HGP data to SLIM at the required longword offset */
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -0400781 memset(&hgp, 0, sizeof(struct lpfc_hgp));
James.Smart@Emulex.Comf91b3922005-10-28 20:29:28 -0400782
783 for (i=0; i < phba->sli.num_rings; i++) {
James Smarted957682007-06-17 19:56:37 -0500784 lpfc_memcpy_to_slim(phba->host_gp + i, &hgp,
785 sizeof(*phba->host_gp));
James.Smart@Emulex.Comf91b3922005-10-28 20:29:28 -0400786 }
dea31012005-04-17 16:05:31 -0500787
788 /* Setup Port Group ring pointer */
James Smarted957682007-06-17 19:56:37 -0500789 if (phba->sli_rev == 3)
790 pgp_offset = (uint8_t *)&phba->slim2p->mbx.us.s3_pgp.port -
791 (uint8_t *)phba->slim2p;
792 else
793 pgp_offset = (uint8_t *)&phba->slim2p->mbx.us.s2.port -
794 (uint8_t *)phba->slim2p;
795
796 pdma_addr = phba->slim2p_mapping + pgp_offset;
dea31012005-04-17 16:05:31 -0500797 phba->slim2p->pcb.pgpAddrHigh = putPaddrHigh(pdma_addr);
798 phba->slim2p->pcb.pgpAddrLow = putPaddrLow(pdma_addr);
James Smarted957682007-06-17 19:56:37 -0500799 phba->hbq_get = &phba->slim2p->mbx.us.s3_pgp.hbq_get[0];
dea31012005-04-17 16:05:31 -0500800
801 /* Use callback routine to setp rings in the pcb */
802 lpfc_config_pcb_setup(phba);
803
804 /* special handling for LC HBAs */
805 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
806 uint32_t hbainit[5];
807
808 lpfc_hba_init(phba, hbainit);
809
810 memcpy(&mb->un.varCfgPort.hbainit, hbainit, 20);
811 }
812
813 /* Swap PCB if needed */
814 lpfc_sli_pcimem_bcopy(&phba->slim2p->pcb, &phba->slim2p->pcb,
James Smart92d7f7b2007-06-17 19:56:38 -0500815 sizeof(PCB_t));
dea31012005-04-17 16:05:31 -0500816}
817
818void
Jamie Wellnitz41415862006-02-28 19:25:27 -0500819lpfc_kill_board(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
820{
821 MAILBOX_t *mb = &pmb->mb;
822
823 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
824 mb->mbxCommand = MBX_KILL_BOARD;
825 mb->mbxOwner = OWN_HOST;
826 return;
827}
828
829void
dea31012005-04-17 16:05:31 -0500830lpfc_mbox_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq)
831{
832 struct lpfc_sli *psli;
833
834 psli = &phba->sli;
835
836 list_add_tail(&mbq->list, &psli->mboxq);
837
838 psli->mboxq_cnt++;
839
840 return;
841}
842
843LPFC_MBOXQ_t *
844lpfc_mbox_get(struct lpfc_hba * phba)
845{
846 LPFC_MBOXQ_t *mbq = NULL;
847 struct lpfc_sli *psli = &phba->sli;
848
James Smart2e0fef82007-06-17 19:56:36 -0500849 list_remove_head((&psli->mboxq), mbq, LPFC_MBOXQ_t, list);
James Smart92d7f7b2007-06-17 19:56:38 -0500850 if (mbq)
dea31012005-04-17 16:05:31 -0500851 psli->mboxq_cnt--;
dea31012005-04-17 16:05:31 -0500852
853 return mbq;
854}
James Smarta309a6b2006-08-01 07:33:43 -0400855
James Smart92d7f7b2007-06-17 19:56:38 -0500856void
857lpfc_mbox_cmpl_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq)
858{
859 /* This function expects to be called from interupt context */
860 spin_lock(&phba->hbalock);
861 list_add_tail(&mbq->list, &phba->sli.mboxq_cmpl);
862 spin_unlock(&phba->hbalock);
863 return;
864}
865
James Smarta309a6b2006-08-01 07:33:43 -0400866int
867lpfc_mbox_tmo_val(struct lpfc_hba *phba, int cmd)
868{
869 switch (cmd) {
870 case MBX_WRITE_NV: /* 0x03 */
871 case MBX_UPDATE_CFG: /* 0x1B */
872 case MBX_DOWN_LOAD: /* 0x1C */
873 case MBX_DEL_LD_ENTRY: /* 0x1D */
874 case MBX_LOAD_AREA: /* 0x81 */
875 case MBX_FLASH_WR_ULA: /* 0x98 */
876 case MBX_LOAD_EXP_ROM: /* 0x9C */
877 return LPFC_MBOX_TMO_FLASH_CMD;
878 }
879 return LPFC_MBOX_TMO;
880}