| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 1 | /******************************************************************* |
| 2 | * This file is part of the Emulex Linux Device Driver for * |
James.Smart@Emulex.Com | c44ce17 | 2005-06-25 10:34:39 -0400 | [diff] [blame] | 3 | * Fibre Channel Host Bus Adapters. * |
James Smart | 9413aff | 2007-04-25 09:53:35 -0400 | [diff] [blame] | 4 | * Copyright (C) 2004-2007 Emulex. All rights reserved. * |
James.Smart@Emulex.Com | c44ce17 | 2005-06-25 10:34:39 -0400 | [diff] [blame] | 5 | * EMULEX and SLI are trademarks of Emulex. * |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 6 | * www.emulex.com * |
James.Smart@Emulex.Com | c44ce17 | 2005-06-25 10:34:39 -0400 | [diff] [blame] | 7 | * Portions Copyright (C) 2004-2005 Christoph Hellwig * |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 8 | * * |
| 9 | * This program is free software; you can redistribute it and/or * |
James.Smart@Emulex.Com | c44ce17 | 2005-06-25 10:34:39 -0400 | [diff] [blame] | 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. * |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 20 | *******************************************************************/ |
| 21 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 22 | #include <linux/blkdev.h> |
| 23 | #include <linux/pci.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | |
James.Smart@Emulex.Com | f888ba3 | 2005-08-10 15:03:01 -0400 | [diff] [blame] | 26 | #include <scsi/scsi_device.h> |
| 27 | #include <scsi/scsi_transport_fc.h> |
| 28 | |
James.Smart@Emulex.Com | 9188652 | 2005-08-10 15:03:09 -0400 | [diff] [blame] | 29 | #include <scsi/scsi.h> |
| 30 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 31 | #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 | /**********************************************/ |
| 44 | void |
| 45 | lpfc_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 | /**********************************************/ |
| 72 | void |
| 73 | lpfc_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 | /**********************************************/ |
| 85 | /* lpfc_read_la Issue a READ LA */ |
| 86 | /* mailbox command */ |
| 87 | /**********************************************/ |
| 88 | int |
| 89 | lpfc_read_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb, struct lpfc_dmabuf *mp) |
| 90 | { |
| 91 | MAILBOX_t *mb; |
| 92 | struct lpfc_sli *psli; |
| 93 | |
| 94 | psli = &phba->sli; |
| 95 | mb = &pmb->mb; |
| 96 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 97 | |
| 98 | INIT_LIST_HEAD(&mp->list); |
| 99 | mb->mbxCommand = MBX_READ_LA64; |
| 100 | mb->un.varReadLA.un.lilpBde64.tus.f.bdeSize = 128; |
| 101 | mb->un.varReadLA.un.lilpBde64.addrHigh = putPaddrHigh(mp->phys); |
| 102 | mb->un.varReadLA.un.lilpBde64.addrLow = putPaddrLow(mp->phys); |
| 103 | |
| 104 | /* Save address for later completion and set the owner to host so that |
| 105 | * the FW knows this mailbox is available for processing. |
| 106 | */ |
| 107 | pmb->context1 = (uint8_t *) mp; |
| 108 | mb->mbxOwner = OWN_HOST; |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 109 | return 0; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | /**********************************************/ |
| 113 | /* lpfc_clear_la Issue a CLEAR LA */ |
| 114 | /* mailbox command */ |
| 115 | /**********************************************/ |
| 116 | void |
| 117 | lpfc_clear_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 118 | { |
| 119 | MAILBOX_t *mb; |
| 120 | |
| 121 | mb = &pmb->mb; |
| 122 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 123 | |
| 124 | mb->un.varClearLA.eventTag = phba->fc_eventTag; |
| 125 | mb->mbxCommand = MBX_CLEAR_LA; |
| 126 | mb->mbxOwner = OWN_HOST; |
| 127 | return; |
| 128 | } |
| 129 | |
| 130 | /**************************************************/ |
| 131 | /* lpfc_config_link Issue a CONFIG LINK */ |
| 132 | /* mailbox command */ |
| 133 | /**************************************************/ |
| 134 | void |
| 135 | lpfc_config_link(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 136 | { |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 137 | struct lpfc_vport *vport = phba->pport; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 138 | MAILBOX_t *mb = &pmb->mb; |
| 139 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 140 | |
| 141 | /* NEW_FEATURE |
| 142 | * SLI-2, Coalescing Response Feature. |
| 143 | */ |
| 144 | if (phba->cfg_cr_delay) { |
| 145 | mb->un.varCfgLnk.cr = 1; |
| 146 | mb->un.varCfgLnk.ci = 1; |
| 147 | mb->un.varCfgLnk.cr_delay = phba->cfg_cr_delay; |
| 148 | mb->un.varCfgLnk.cr_count = phba->cfg_cr_count; |
| 149 | } |
| 150 | |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 151 | mb->un.varCfgLnk.myId = vport->fc_myDID; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 152 | mb->un.varCfgLnk.edtov = phba->fc_edtov; |
| 153 | mb->un.varCfgLnk.arbtov = phba->fc_arbtov; |
| 154 | mb->un.varCfgLnk.ratov = phba->fc_ratov; |
| 155 | mb->un.varCfgLnk.rttov = phba->fc_rttov; |
| 156 | mb->un.varCfgLnk.altov = phba->fc_altov; |
| 157 | mb->un.varCfgLnk.crtov = phba->fc_crtov; |
| 158 | mb->un.varCfgLnk.citov = phba->fc_citov; |
| 159 | |
| 160 | if (phba->cfg_ack0) |
| 161 | mb->un.varCfgLnk.ack0_enable = 1; |
| 162 | |
| 163 | mb->mbxCommand = MBX_CONFIG_LINK; |
| 164 | mb->mbxOwner = OWN_HOST; |
| 165 | return; |
| 166 | } |
| 167 | |
| 168 | /**********************************************/ |
| 169 | /* lpfc_init_link Issue an INIT LINK */ |
| 170 | /* mailbox command */ |
| 171 | /**********************************************/ |
| 172 | void |
| 173 | lpfc_init_link(struct lpfc_hba * phba, |
| 174 | LPFC_MBOXQ_t * pmb, uint32_t topology, uint32_t linkspeed) |
| 175 | { |
| 176 | lpfc_vpd_t *vpd; |
| 177 | struct lpfc_sli *psli; |
| 178 | MAILBOX_t *mb; |
| 179 | |
| 180 | mb = &pmb->mb; |
| 181 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 182 | |
| 183 | psli = &phba->sli; |
| 184 | switch (topology) { |
| 185 | case FLAGS_TOPOLOGY_MODE_LOOP_PT: |
| 186 | mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP; |
| 187 | mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER; |
| 188 | break; |
| 189 | case FLAGS_TOPOLOGY_MODE_PT_PT: |
| 190 | mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT; |
| 191 | break; |
| 192 | case FLAGS_TOPOLOGY_MODE_LOOP: |
| 193 | mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_LOOP; |
| 194 | break; |
| 195 | case FLAGS_TOPOLOGY_MODE_PT_LOOP: |
| 196 | mb->un.varInitLnk.link_flags = FLAGS_TOPOLOGY_MODE_PT_PT; |
| 197 | mb->un.varInitLnk.link_flags |= FLAGS_TOPOLOGY_FAILOVER; |
| 198 | break; |
Jamie Wellnitz | 367c271 | 2006-02-28 19:25:32 -0500 | [diff] [blame] | 199 | case FLAGS_LOCAL_LB: |
| 200 | mb->un.varInitLnk.link_flags = FLAGS_LOCAL_LB; |
| 201 | break; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 202 | } |
| 203 | |
James Smart | 4b0b91d | 2006-04-15 11:53:00 -0400 | [diff] [blame] | 204 | /* Enable asynchronous ABTS responses from firmware */ |
| 205 | mb->un.varInitLnk.link_flags |= FLAGS_IMED_ABORT; |
| 206 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 207 | /* NEW_FEATURE |
| 208 | * Setting up the link speed |
| 209 | */ |
| 210 | vpd = &phba->vpd; |
| 211 | if (vpd->rev.feaLevelHigh >= 0x02){ |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 212 | switch (linkspeed){ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 213 | case LINK_SPEED_1G: |
| 214 | case LINK_SPEED_2G: |
| 215 | case LINK_SPEED_4G: |
James Smart | b87eab3 | 2007-04-25 09:53:28 -0400 | [diff] [blame] | 216 | case LINK_SPEED_8G: |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 217 | mb->un.varInitLnk.link_flags |= |
| 218 | FLAGS_LINK_SPEED; |
| 219 | mb->un.varInitLnk.link_speed = linkspeed; |
| 220 | break; |
| 221 | case LINK_SPEED_AUTO: |
| 222 | default: |
| 223 | mb->un.varInitLnk.link_speed = |
| 224 | LINK_SPEED_AUTO; |
| 225 | break; |
| 226 | } |
| 227 | |
| 228 | } |
| 229 | else |
| 230 | mb->un.varInitLnk.link_speed = LINK_SPEED_AUTO; |
| 231 | |
| 232 | mb->mbxCommand = (volatile uint8_t)MBX_INIT_LINK; |
| 233 | mb->mbxOwner = OWN_HOST; |
| 234 | mb->un.varInitLnk.fabric_AL_PA = phba->fc_pref_ALPA; |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 235 | mb->un.varInitLnk.link_flags |= FLAGS_UNREG_LOGIN_ALL; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 236 | return; |
| 237 | } |
| 238 | |
| 239 | /**********************************************/ |
| 240 | /* lpfc_read_sparam Issue a READ SPARAM */ |
| 241 | /* mailbox command */ |
| 242 | /**********************************************/ |
| 243 | int |
| 244 | lpfc_read_sparam(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 245 | { |
| 246 | struct lpfc_dmabuf *mp; |
| 247 | MAILBOX_t *mb; |
| 248 | struct lpfc_sli *psli; |
| 249 | |
| 250 | psli = &phba->sli; |
| 251 | mb = &pmb->mb; |
| 252 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 253 | |
| 254 | mb->mbxOwner = OWN_HOST; |
| 255 | |
| 256 | /* Get a buffer to hold the HBAs Service Parameters */ |
| 257 | |
| 258 | if (((mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL)) == 0) || |
| 259 | ((mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys))) == 0)) { |
Jesper Juhl | c9475cb | 2005-11-07 01:01:26 -0800 | [diff] [blame] | 260 | kfree(mp); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 261 | mb->mbxCommand = MBX_READ_SPARM64; |
| 262 | /* READ_SPARAM: no buffers */ |
| 263 | lpfc_printf_log(phba, |
| 264 | KERN_WARNING, |
| 265 | LOG_MBOX, |
| 266 | "%d:0301 READ_SPARAM: no buffers\n", |
| 267 | phba->brd_no); |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 268 | return 1; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 269 | } |
| 270 | INIT_LIST_HEAD(&mp->list); |
| 271 | mb->mbxCommand = MBX_READ_SPARM64; |
| 272 | mb->un.varRdSparm.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm); |
| 273 | mb->un.varRdSparm.un.sp64.addrHigh = putPaddrHigh(mp->phys); |
| 274 | mb->un.varRdSparm.un.sp64.addrLow = putPaddrLow(mp->phys); |
| 275 | |
| 276 | /* save address for completion */ |
| 277 | pmb->context1 = mp; |
| 278 | |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 279 | return 0; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /********************************************/ |
| 283 | /* lpfc_unreg_did Issue a UNREG_DID */ |
| 284 | /* mailbox command */ |
| 285 | /********************************************/ |
| 286 | void |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 287 | lpfc_unreg_did(struct lpfc_hba *phba, uint32_t did, LPFC_MBOXQ_t *pmb) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 288 | { |
| 289 | MAILBOX_t *mb; |
| 290 | |
| 291 | mb = &pmb->mb; |
| 292 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 293 | |
| 294 | mb->un.varUnregDID.did = did; |
| 295 | |
| 296 | mb->mbxCommand = MBX_UNREG_D_ID; |
| 297 | mb->mbxOwner = OWN_HOST; |
| 298 | return; |
| 299 | } |
| 300 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 301 | /**********************************************/ |
| 302 | /* lpfc_read_nv Issue a READ CONFIG */ |
| 303 | /* mailbox command */ |
| 304 | /**********************************************/ |
| 305 | void |
| 306 | lpfc_read_config(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 307 | { |
| 308 | MAILBOX_t *mb; |
| 309 | |
| 310 | mb = &pmb->mb; |
| 311 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 312 | |
| 313 | mb->mbxCommand = MBX_READ_CONFIG; |
| 314 | mb->mbxOwner = OWN_HOST; |
| 315 | return; |
| 316 | } |
| 317 | |
Jamie Wellnitz | 7bb3b13 | 2006-02-28 19:25:15 -0500 | [diff] [blame] | 318 | /*************************************************/ |
| 319 | /* lpfc_read_lnk_stat Issue a READ LINK STATUS */ |
| 320 | /* mailbox command */ |
| 321 | /*************************************************/ |
| 322 | void |
| 323 | lpfc_read_lnk_stat(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 324 | { |
| 325 | MAILBOX_t *mb; |
| 326 | |
| 327 | mb = &pmb->mb; |
| 328 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 329 | |
| 330 | mb->mbxCommand = MBX_READ_LNK_STAT; |
| 331 | mb->mbxOwner = OWN_HOST; |
| 332 | return; |
| 333 | } |
| 334 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 335 | /********************************************/ |
| 336 | /* lpfc_reg_login Issue a REG_LOGIN */ |
| 337 | /* mailbox command */ |
| 338 | /********************************************/ |
| 339 | int |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 340 | lpfc_reg_login(struct lpfc_hba *phba, uint32_t did, uint8_t *param, |
| 341 | LPFC_MBOXQ_t *pmb, uint32_t flag) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 342 | { |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 343 | MAILBOX_t *mb = &pmb->mb; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 344 | uint8_t *sparam; |
| 345 | struct lpfc_dmabuf *mp; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 346 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 347 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 348 | |
| 349 | mb->un.varRegLogin.rpi = 0; |
| 350 | mb->un.varRegLogin.did = did; |
| 351 | mb->un.varWords[30] = flag; /* Set flag to issue action on cmpl */ |
| 352 | |
| 353 | mb->mbxOwner = OWN_HOST; |
| 354 | |
| 355 | /* Get a buffer to hold NPorts Service Parameters */ |
| 356 | if (((mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL)) == NULL) || |
| 357 | ((mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys))) == 0)) { |
Jesper Juhl | c9475cb | 2005-11-07 01:01:26 -0800 | [diff] [blame] | 358 | kfree(mp); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 359 | mb->mbxCommand = MBX_REG_LOGIN64; |
| 360 | /* REG_LOGIN: no buffers */ |
| 361 | lpfc_printf_log(phba, |
| 362 | KERN_WARNING, |
| 363 | LOG_MBOX, |
| 364 | "%d:0302 REG_LOGIN: no buffers Data x%x x%x\n", |
| 365 | phba->brd_no, |
| 366 | (uint32_t) did, (uint32_t) flag); |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 367 | return 1; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 368 | } |
| 369 | INIT_LIST_HEAD(&mp->list); |
| 370 | sparam = mp->virt; |
| 371 | |
| 372 | /* Copy param's into a new buffer */ |
| 373 | memcpy(sparam, param, sizeof (struct serv_parm)); |
| 374 | |
| 375 | /* save address for completion */ |
| 376 | pmb->context1 = (uint8_t *) mp; |
| 377 | |
| 378 | mb->mbxCommand = MBX_REG_LOGIN64; |
| 379 | mb->un.varRegLogin.un.sp64.tus.f.bdeSize = sizeof (struct serv_parm); |
| 380 | mb->un.varRegLogin.un.sp64.addrHigh = putPaddrHigh(mp->phys); |
| 381 | mb->un.varRegLogin.un.sp64.addrLow = putPaddrLow(mp->phys); |
| 382 | |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 383 | return 0; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | /**********************************************/ |
| 387 | /* lpfc_unreg_login Issue a UNREG_LOGIN */ |
| 388 | /* mailbox command */ |
| 389 | /**********************************************/ |
| 390 | void |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 391 | lpfc_unreg_login(struct lpfc_hba *phba, uint32_t rpi, LPFC_MBOXQ_t * pmb) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 392 | { |
| 393 | MAILBOX_t *mb; |
| 394 | |
| 395 | mb = &pmb->mb; |
| 396 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 397 | |
| 398 | mb->un.varUnregLogin.rpi = (uint16_t) rpi; |
| 399 | mb->un.varUnregLogin.rsvd1 = 0; |
| 400 | |
| 401 | mb->mbxCommand = MBX_UNREG_LOGIN; |
| 402 | mb->mbxOwner = OWN_HOST; |
| 403 | return; |
| 404 | } |
| 405 | |
| 406 | static void |
| 407 | lpfc_config_pcb_setup(struct lpfc_hba * phba) |
| 408 | { |
| 409 | struct lpfc_sli *psli = &phba->sli; |
| 410 | struct lpfc_sli_ring *pring; |
| 411 | PCB_t *pcbp = &phba->slim2p->pcb; |
| 412 | dma_addr_t pdma_addr; |
| 413 | uint32_t offset; |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 414 | uint32_t iocbCnt = 0; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 415 | int i; |
| 416 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 417 | pcbp->maxRing = (psli->num_rings - 1); |
| 418 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 419 | for (i = 0; i < psli->num_rings; i++) { |
| 420 | pring = &psli->ring[i]; |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 421 | |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 422 | pring->sizeCiocb = phba->sli_rev == 3 ? SLI3_IOCB_CMD_SIZE: |
| 423 | SLI2_IOCB_CMD_SIZE; |
| 424 | pring->sizeRiocb = phba->sli_rev == 3 ? SLI3_IOCB_RSP_SIZE: |
| 425 | SLI2_IOCB_RSP_SIZE; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 426 | /* A ring MUST have both cmd and rsp entries defined to be |
| 427 | valid */ |
| 428 | if ((pring->numCiocb == 0) || (pring->numRiocb == 0)) { |
| 429 | pcbp->rdsc[i].cmdEntries = 0; |
| 430 | pcbp->rdsc[i].rspEntries = 0; |
| 431 | pcbp->rdsc[i].cmdAddrHigh = 0; |
| 432 | pcbp->rdsc[i].rspAddrHigh = 0; |
| 433 | pcbp->rdsc[i].cmdAddrLow = 0; |
| 434 | pcbp->rdsc[i].rspAddrLow = 0; |
| 435 | pring->cmdringaddr = NULL; |
| 436 | pring->rspringaddr = NULL; |
| 437 | continue; |
| 438 | } |
| 439 | /* Command ring setup for ring */ |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 440 | pring->cmdringaddr = (void *)&phba->slim2p->IOCBs[iocbCnt]; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 441 | pcbp->rdsc[i].cmdEntries = pring->numCiocb; |
| 442 | |
| 443 | offset = (uint8_t *)&phba->slim2p->IOCBs[iocbCnt] - |
| 444 | (uint8_t *)phba->slim2p; |
| 445 | pdma_addr = phba->slim2p_mapping + offset; |
| 446 | pcbp->rdsc[i].cmdAddrHigh = putPaddrHigh(pdma_addr); |
| 447 | pcbp->rdsc[i].cmdAddrLow = putPaddrLow(pdma_addr); |
| 448 | iocbCnt += pring->numCiocb; |
| 449 | |
| 450 | /* Response ring setup for ring */ |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 451 | pring->rspringaddr = (void *)&phba->slim2p->IOCBs[iocbCnt]; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 452 | |
| 453 | pcbp->rdsc[i].rspEntries = pring->numRiocb; |
| 454 | offset = (uint8_t *)&phba->slim2p->IOCBs[iocbCnt] - |
| 455 | (uint8_t *)phba->slim2p; |
| 456 | pdma_addr = phba->slim2p_mapping + offset; |
| 457 | pcbp->rdsc[i].rspAddrHigh = putPaddrHigh(pdma_addr); |
| 458 | pcbp->rdsc[i].rspAddrLow = putPaddrLow(pdma_addr); |
| 459 | iocbCnt += pring->numRiocb; |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | void |
| 464 | lpfc_read_rev(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 465 | { |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 466 | MAILBOX_t *mb = &pmb->mb; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 467 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 468 | mb->un.varRdRev.cv = 1; |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 469 | mb->un.varRdRev.v3req = 1; /* Request SLI3 info */ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 470 | mb->mbxCommand = MBX_READ_REV; |
| 471 | mb->mbxOwner = OWN_HOST; |
| 472 | return; |
| 473 | } |
| 474 | |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 475 | static void |
| 476 | lpfc_build_hbq_profile2(struct config_hbq_var *hbqmb, |
| 477 | struct lpfc_hbq_init *hbq_desc) |
| 478 | { |
| 479 | hbqmb->profiles.profile2.seqlenbcnt = hbq_desc->seqlenbcnt; |
| 480 | hbqmb->profiles.profile2.maxlen = hbq_desc->maxlen; |
| 481 | hbqmb->profiles.profile2.seqlenoff = hbq_desc->seqlenoff; |
| 482 | } |
| 483 | |
| 484 | static void |
| 485 | lpfc_build_hbq_profile3(struct config_hbq_var *hbqmb, |
| 486 | struct lpfc_hbq_init *hbq_desc) |
| 487 | { |
| 488 | hbqmb->profiles.profile3.seqlenbcnt = hbq_desc->seqlenbcnt; |
| 489 | hbqmb->profiles.profile3.maxlen = hbq_desc->maxlen; |
| 490 | hbqmb->profiles.profile3.cmdcodeoff = hbq_desc->cmdcodeoff; |
| 491 | hbqmb->profiles.profile3.seqlenoff = hbq_desc->seqlenoff; |
| 492 | memcpy(&hbqmb->profiles.profile3.cmdmatch, hbq_desc->cmdmatch, |
| 493 | sizeof(hbqmb->profiles.profile3.cmdmatch)); |
| 494 | } |
| 495 | |
| 496 | static void |
| 497 | lpfc_build_hbq_profile5(struct config_hbq_var *hbqmb, |
| 498 | struct lpfc_hbq_init *hbq_desc) |
| 499 | { |
| 500 | hbqmb->profiles.profile5.seqlenbcnt = hbq_desc->seqlenbcnt; |
| 501 | hbqmb->profiles.profile5.maxlen = hbq_desc->maxlen; |
| 502 | hbqmb->profiles.profile5.cmdcodeoff = hbq_desc->cmdcodeoff; |
| 503 | hbqmb->profiles.profile5.seqlenoff = hbq_desc->seqlenoff; |
| 504 | memcpy(&hbqmb->profiles.profile5.cmdmatch, hbq_desc->cmdmatch, |
| 505 | sizeof(hbqmb->profiles.profile5.cmdmatch)); |
| 506 | } |
| 507 | |
| 508 | void |
| 509 | lpfc_config_hbq(struct lpfc_hba *phba, struct lpfc_hbq_init *hbq_desc, |
| 510 | uint32_t hbq_entry_index, LPFC_MBOXQ_t *pmb) |
| 511 | { |
| 512 | int i; |
| 513 | MAILBOX_t *mb = &pmb->mb; |
| 514 | struct config_hbq_var *hbqmb = &mb->un.varCfgHbq; |
| 515 | |
| 516 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 517 | hbqmb->entry_count = hbq_desc->entry_count; /* # entries in HBQ */ |
| 518 | hbqmb->recvNotify = hbq_desc->rn; /* Receive |
| 519 | * Notification */ |
| 520 | hbqmb->numMask = hbq_desc->mask_count; /* # R_CTL/TYPE masks |
| 521 | * # in words 0-19 */ |
| 522 | hbqmb->profile = hbq_desc->profile; /* Selection profile: |
| 523 | * 0 = all, |
| 524 | * 7 = logentry */ |
| 525 | hbqmb->ringMask = hbq_desc->ring_mask; /* Binds HBQ to a ring |
| 526 | * e.g. Ring0=b0001, |
| 527 | * ring2=b0100 */ |
| 528 | hbqmb->headerLen = hbq_desc->headerLen; /* 0 if not profile 4 |
| 529 | * or 5 */ |
| 530 | hbqmb->logEntry = hbq_desc->logEntry; /* Set to 1 if this |
| 531 | * HBQ will be used |
| 532 | * for LogEntry |
| 533 | * buffers */ |
| 534 | hbqmb->hbqaddrLow = putPaddrLow(phba->hbqslimp.phys) + |
| 535 | hbq_entry_index * sizeof(struct lpfc_hbq_entry); |
| 536 | hbqmb->hbqaddrHigh = putPaddrHigh(phba->hbqslimp.phys); |
| 537 | |
| 538 | mb->mbxCommand = MBX_CONFIG_HBQ; |
| 539 | mb->mbxOwner = OWN_HOST; |
| 540 | |
| 541 | /* Copy info for profiles 2,3,5. Other |
| 542 | * profiles this area is reserved |
| 543 | */ |
| 544 | if (hbq_desc->profile == 2) |
| 545 | lpfc_build_hbq_profile2(hbqmb, hbq_desc); |
| 546 | else if (hbq_desc->profile == 3) |
| 547 | lpfc_build_hbq_profile3(hbqmb, hbq_desc); |
| 548 | else if (hbq_desc->profile == 5) |
| 549 | lpfc_build_hbq_profile5(hbqmb, hbq_desc); |
| 550 | |
| 551 | /* Return if no rctl / type masks for this HBQ */ |
| 552 | if (!hbq_desc->mask_count) |
| 553 | return; |
| 554 | |
| 555 | /* Otherwise we setup specific rctl / type masks for this HBQ */ |
| 556 | for (i = 0; i < hbq_desc->mask_count; i++) { |
| 557 | hbqmb->hbqMasks[i].tmatch = hbq_desc->hbqMasks[i].tmatch; |
| 558 | hbqmb->hbqMasks[i].tmask = hbq_desc->hbqMasks[i].tmask; |
| 559 | hbqmb->hbqMasks[i].rctlmatch = hbq_desc->hbqMasks[i].rctlmatch; |
| 560 | hbqmb->hbqMasks[i].rctlmask = hbq_desc->hbqMasks[i].rctlmask; |
| 561 | } |
| 562 | |
| 563 | return; |
| 564 | } |
| 565 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 566 | void |
| 567 | lpfc_config_ring(struct lpfc_hba * phba, int ring, LPFC_MBOXQ_t * pmb) |
| 568 | { |
| 569 | int i; |
| 570 | MAILBOX_t *mb = &pmb->mb; |
| 571 | struct lpfc_sli *psli; |
| 572 | struct lpfc_sli_ring *pring; |
| 573 | |
| 574 | memset(pmb, 0, sizeof (LPFC_MBOXQ_t)); |
| 575 | |
| 576 | mb->un.varCfgRing.ring = ring; |
| 577 | mb->un.varCfgRing.maxOrigXchg = 0; |
| 578 | mb->un.varCfgRing.maxRespXchg = 0; |
| 579 | mb->un.varCfgRing.recvNotify = 1; |
| 580 | |
| 581 | psli = &phba->sli; |
| 582 | pring = &psli->ring[ring]; |
| 583 | mb->un.varCfgRing.numMask = pring->num_mask; |
| 584 | mb->mbxCommand = MBX_CONFIG_RING; |
| 585 | mb->mbxOwner = OWN_HOST; |
| 586 | |
| 587 | /* Is this ring configured for a specific profile */ |
| 588 | if (pring->prt[0].profile) { |
| 589 | mb->un.varCfgRing.profile = pring->prt[0].profile; |
| 590 | return; |
| 591 | } |
| 592 | |
| 593 | /* Otherwise we setup specific rctl / type masks for this ring */ |
| 594 | for (i = 0; i < pring->num_mask; i++) { |
| 595 | mb->un.varCfgRing.rrRegs[i].rval = pring->prt[i].rctl; |
| 596 | if (mb->un.varCfgRing.rrRegs[i].rval != FC_ELS_REQ) |
| 597 | mb->un.varCfgRing.rrRegs[i].rmask = 0xff; |
| 598 | else |
| 599 | mb->un.varCfgRing.rrRegs[i].rmask = 0xfe; |
| 600 | mb->un.varCfgRing.rrRegs[i].tval = pring->prt[i].type; |
| 601 | mb->un.varCfgRing.rrRegs[i].tmask = 0xff; |
| 602 | } |
| 603 | |
| 604 | return; |
| 605 | } |
| 606 | |
| 607 | void |
| 608 | lpfc_config_port(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 609 | { |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 610 | MAILBOX_t __iomem *mb_slim = (MAILBOX_t __iomem *) phba->MBslimaddr; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 611 | MAILBOX_t *mb = &pmb->mb; |
| 612 | dma_addr_t pdma_addr; |
| 613 | uint32_t bar_low, bar_high; |
| 614 | size_t offset; |
James.Smart@Emulex.Com | 4cc2da1 | 2005-06-25 10:34:00 -0400 | [diff] [blame] | 615 | struct lpfc_hgp hgp; |
James.Smart@Emulex.Com | f91b392 | 2005-10-28 20:29:28 -0400 | [diff] [blame] | 616 | int i; |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 617 | uint32_t pgp_offset; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 618 | |
| 619 | memset(pmb, 0, sizeof(LPFC_MBOXQ_t)); |
| 620 | mb->mbxCommand = MBX_CONFIG_PORT; |
| 621 | mb->mbxOwner = OWN_HOST; |
| 622 | |
| 623 | mb->un.varCfgPort.pcbLen = sizeof(PCB_t); |
| 624 | |
| 625 | offset = (uint8_t *)&phba->slim2p->pcb - (uint8_t *)phba->slim2p; |
| 626 | pdma_addr = phba->slim2p_mapping + offset; |
| 627 | mb->un.varCfgPort.pcbLow = putPaddrLow(pdma_addr); |
| 628 | mb->un.varCfgPort.pcbHigh = putPaddrHigh(pdma_addr); |
| 629 | |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 630 | /* If HBA supports SLI=3 ask for it */ |
| 631 | |
| 632 | mb->un.varCfgPort.sli_mode = phba->sli_rev; |
| 633 | if (phba->sli_rev == 3) { |
| 634 | mb->un.varCfgPort.cerbm = 1; /* Request HBQs */ |
| 635 | mb->un.varCfgPort.max_hbq = 1; /* Requesting 2 HBQs */ |
| 636 | } |
| 637 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 638 | /* Now setup pcb */ |
| 639 | phba->slim2p->pcb.type = TYPE_NATIVE_SLI2; |
| 640 | phba->slim2p->pcb.feature = FEATURE_INITIAL_SLI2; |
| 641 | |
| 642 | /* Setup Mailbox pointers */ |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 643 | phba->slim2p->pcb.mailBoxSize = offsetof(MAILBOX_t, us) + |
| 644 | sizeof(struct sli2_desc); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 645 | offset = (uint8_t *)&phba->slim2p->mbx - (uint8_t *)phba->slim2p; |
| 646 | pdma_addr = phba->slim2p_mapping + offset; |
| 647 | phba->slim2p->pcb.mbAddrHigh = putPaddrHigh(pdma_addr); |
| 648 | phba->slim2p->pcb.mbAddrLow = putPaddrLow(pdma_addr); |
| 649 | |
| 650 | /* |
| 651 | * Setup Host Group ring pointer. |
| 652 | * |
| 653 | * For efficiency reasons, the ring get/put pointers can be |
| 654 | * placed in adapter memory (SLIM) rather than in host memory. |
| 655 | * This allows firmware to avoid PCI reads/writes when updating |
| 656 | * and checking pointers. |
| 657 | * |
| 658 | * The firmware recognizes the use of SLIM memory by comparing |
| 659 | * the address of the get/put pointers structure with that of |
| 660 | * the SLIM BAR (BAR0). |
| 661 | * |
| 662 | * Caution: be sure to use the PCI config space value of BAR0/BAR1 |
| 663 | * (the hardware's view of the base address), not the OS's |
| 664 | * value of pci_resource_start() as the OS value may be a cookie |
| 665 | * for ioremap/iomap. |
| 666 | */ |
| 667 | |
| 668 | |
| 669 | pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_0, &bar_low); |
| 670 | pci_read_config_dword(phba->pcidev, PCI_BASE_ADDRESS_1, &bar_high); |
| 671 | |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 672 | /* |
| 673 | * Set up HGP - Port Memory |
| 674 | * |
| 675 | * The port expects the host get/put pointers to reside in memory |
| 676 | * following the "non-diagnostic" mode mailbox (32 words, 0x80 bytes) |
| 677 | * area of SLIM. In SLI-2 mode, there's an additional 16 reserved |
| 678 | * words (0x40 bytes). This area is not reserved if HBQs are |
| 679 | * configured in SLI-3. |
| 680 | * |
| 681 | * CR0Put - SLI2(no HBQs) = 0xc0, With HBQs = 0x80 |
| 682 | * RR0Get 0xc4 0x84 |
| 683 | * CR1Put 0xc8 0x88 |
| 684 | * RR1Get 0xcc 0x8c |
| 685 | * CR2Put 0xd0 0x90 |
| 686 | * RR2Get 0xd4 0x94 |
| 687 | * CR3Put 0xd8 0x98 |
| 688 | * RR3Get 0xdc 0x9c |
| 689 | * |
| 690 | * Reserved 0xa0-0xbf |
| 691 | * If HBQs configured: |
| 692 | * HBQ 0 Put ptr 0xc0 |
| 693 | * HBQ 1 Put ptr 0xc4 |
| 694 | * HBQ 2 Put ptr 0xc8 |
| 695 | * ...... |
| 696 | * HBQ(M-1)Put Pointer 0xc0+(M-1)*4 |
| 697 | * |
| 698 | */ |
| 699 | |
| 700 | if (phba->sli_rev == 3) { |
| 701 | phba->host_gp = &mb_slim->us.s3.host[0]; |
| 702 | phba->hbq_put = &mb_slim->us.s3.hbq_put[0]; |
| 703 | } else { |
| 704 | phba->host_gp = &mb_slim->us.s2.host[0]; |
| 705 | phba->hbq_put = NULL; |
| 706 | } |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 707 | |
| 708 | /* mask off BAR0's flag bits 0 - 3 */ |
| 709 | phba->slim2p->pcb.hgpAddrLow = (bar_low & PCI_BASE_ADDRESS_MEM_MASK) + |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 710 | (void __iomem *) phba->host_gp - |
| 711 | (void __iomem *)phba->MBslimaddr; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 712 | if (bar_low & PCI_BASE_ADDRESS_MEM_TYPE_64) |
| 713 | phba->slim2p->pcb.hgpAddrHigh = bar_high; |
| 714 | else |
| 715 | phba->slim2p->pcb.hgpAddrHigh = 0; |
| 716 | /* write HGP data to SLIM at the required longword offset */ |
James.Smart@Emulex.Com | 4cc2da1 | 2005-06-25 10:34:00 -0400 | [diff] [blame] | 717 | memset(&hgp, 0, sizeof(struct lpfc_hgp)); |
James.Smart@Emulex.Com | f91b392 | 2005-10-28 20:29:28 -0400 | [diff] [blame] | 718 | |
| 719 | for (i=0; i < phba->sli.num_rings; i++) { |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 720 | lpfc_memcpy_to_slim(phba->host_gp + i, &hgp, |
| 721 | sizeof(*phba->host_gp)); |
James.Smart@Emulex.Com | f91b392 | 2005-10-28 20:29:28 -0400 | [diff] [blame] | 722 | } |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 723 | |
| 724 | /* Setup Port Group ring pointer */ |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 725 | if (phba->sli_rev == 3) |
| 726 | pgp_offset = (uint8_t *)&phba->slim2p->mbx.us.s3_pgp.port - |
| 727 | (uint8_t *)phba->slim2p; |
| 728 | else |
| 729 | pgp_offset = (uint8_t *)&phba->slim2p->mbx.us.s2.port - |
| 730 | (uint8_t *)phba->slim2p; |
| 731 | |
| 732 | pdma_addr = phba->slim2p_mapping + pgp_offset; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 733 | phba->slim2p->pcb.pgpAddrHigh = putPaddrHigh(pdma_addr); |
| 734 | phba->slim2p->pcb.pgpAddrLow = putPaddrLow(pdma_addr); |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame^] | 735 | phba->hbq_get = &phba->slim2p->mbx.us.s3_pgp.hbq_get[0]; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 736 | |
| 737 | /* Use callback routine to setp rings in the pcb */ |
| 738 | lpfc_config_pcb_setup(phba); |
| 739 | |
| 740 | /* special handling for LC HBAs */ |
| 741 | if (lpfc_is_LC_HBA(phba->pcidev->device)) { |
| 742 | uint32_t hbainit[5]; |
| 743 | |
| 744 | lpfc_hba_init(phba, hbainit); |
| 745 | |
| 746 | memcpy(&mb->un.varCfgPort.hbainit, hbainit, 20); |
| 747 | } |
| 748 | |
| 749 | /* Swap PCB if needed */ |
| 750 | lpfc_sli_pcimem_bcopy(&phba->slim2p->pcb, &phba->slim2p->pcb, |
| 751 | sizeof (PCB_t)); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | void |
Jamie Wellnitz | 4141586 | 2006-02-28 19:25:27 -0500 | [diff] [blame] | 755 | lpfc_kill_board(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb) |
| 756 | { |
| 757 | MAILBOX_t *mb = &pmb->mb; |
| 758 | |
| 759 | memset(pmb, 0, sizeof(LPFC_MBOXQ_t)); |
| 760 | mb->mbxCommand = MBX_KILL_BOARD; |
| 761 | mb->mbxOwner = OWN_HOST; |
| 762 | return; |
| 763 | } |
| 764 | |
| 765 | void |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 766 | lpfc_mbox_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq) |
| 767 | { |
| 768 | struct lpfc_sli *psli; |
| 769 | |
| 770 | psli = &phba->sli; |
| 771 | |
| 772 | list_add_tail(&mbq->list, &psli->mboxq); |
| 773 | |
| 774 | psli->mboxq_cnt++; |
| 775 | |
| 776 | return; |
| 777 | } |
| 778 | |
| 779 | LPFC_MBOXQ_t * |
| 780 | lpfc_mbox_get(struct lpfc_hba * phba) |
| 781 | { |
| 782 | LPFC_MBOXQ_t *mbq = NULL; |
| 783 | struct lpfc_sli *psli = &phba->sli; |
| 784 | |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 785 | list_remove_head((&psli->mboxq), mbq, LPFC_MBOXQ_t, list); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 786 | if (mbq) { |
| 787 | psli->mboxq_cnt--; |
| 788 | } |
| 789 | |
| 790 | return mbq; |
| 791 | } |
James Smart | a309a6b | 2006-08-01 07:33:43 -0400 | [diff] [blame] | 792 | |
| 793 | int |
| 794 | lpfc_mbox_tmo_val(struct lpfc_hba *phba, int cmd) |
| 795 | { |
| 796 | switch (cmd) { |
| 797 | case MBX_WRITE_NV: /* 0x03 */ |
| 798 | case MBX_UPDATE_CFG: /* 0x1B */ |
| 799 | case MBX_DOWN_LOAD: /* 0x1C */ |
| 800 | case MBX_DEL_LD_ENTRY: /* 0x1D */ |
| 801 | case MBX_LOAD_AREA: /* 0x81 */ |
| 802 | case MBX_FLASH_WR_ULA: /* 0x98 */ |
| 803 | case MBX_LOAD_EXP_ROM: /* 0x9C */ |
| 804 | return LPFC_MBOX_TMO_FLASH_CMD; |
| 805 | } |
| 806 | return LPFC_MBOX_TMO; |
| 807 | } |