| 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 | d8e93df | 2009-05-22 14:53:05 -0400 | [diff] [blame] | 4 | * Copyright (C) 2004-2009 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/mempool.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 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 31 | #include "lpfc_hw4.h" |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 32 | #include "lpfc_hw.h" |
| 33 | #include "lpfc_sli.h" |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 34 | #include "lpfc_sli4.h" |
James Smart | ea2151b | 2008-09-07 11:52:10 -0400 | [diff] [blame] | 35 | #include "lpfc_nl.h" |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 36 | #include "lpfc_disc.h" |
| 37 | #include "lpfc_scsi.h" |
| 38 | #include "lpfc.h" |
| 39 | #include "lpfc_crtn.h" |
| 40 | |
| 41 | #define LPFC_MBUF_POOL_SIZE 64 /* max elements in MBUF safety pool */ |
| 42 | #define LPFC_MEM_POOL_SIZE 64 /* max elem in non-DMA safety pool */ |
| 43 | |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 44 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 45 | /** |
James Smart | 3621a71 | 2009-04-06 18:47:14 -0400 | [diff] [blame] | 46 | * lpfc_mem_alloc - create and allocate all PCI and memory pools |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 47 | * @phba: HBA to allocate pools for |
| 48 | * |
| 49 | * Description: Creates and allocates PCI pools lpfc_scsi_dma_buf_pool, |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 50 | * lpfc_mbuf_pool, lpfc_hrb_pool. Creates and allocates kmalloc-backed mempools |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 51 | * for LPFC_MBOXQ_t and lpfc_nodelist. Also allocates the VPI bitmask. |
| 52 | * |
| 53 | * Notes: Not interrupt-safe. Must be called with no locks held. If any |
| 54 | * allocation fails, frees all successfully allocated memory before returning. |
| 55 | * |
| 56 | * Returns: |
| 57 | * 0 on success |
| 58 | * -ENOMEM on failure (if any memory allocations fail) |
| 59 | **/ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 60 | int |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 61 | lpfc_mem_alloc(struct lpfc_hba *phba, int align) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 62 | { |
| 63 | struct lpfc_dma_pool *pool = &phba->lpfc_mbuf_safety_pool; |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 64 | int longs; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 65 | int i; |
| 66 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 67 | if (phba->sli_rev == LPFC_SLI_REV4) |
| 68 | phba->lpfc_scsi_dma_buf_pool = |
| 69 | pci_pool_create("lpfc_scsi_dma_buf_pool", |
| 70 | phba->pcidev, |
| 71 | phba->cfg_sg_dma_buf_size, |
| 72 | phba->cfg_sg_dma_buf_size, |
| 73 | 0); |
| 74 | else |
| 75 | phba->lpfc_scsi_dma_buf_pool = |
| 76 | pci_pool_create("lpfc_scsi_dma_buf_pool", |
| 77 | phba->pcidev, phba->cfg_sg_dma_buf_size, |
| 78 | align, 0); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 79 | if (!phba->lpfc_scsi_dma_buf_pool) |
| 80 | goto fail; |
| 81 | |
| 82 | phba->lpfc_mbuf_pool = pci_pool_create("lpfc_mbuf_pool", phba->pcidev, |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 83 | LPFC_BPL_SIZE, |
| 84 | align, 0); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 85 | if (!phba->lpfc_mbuf_pool) |
| 86 | goto fail_free_dma_buf_pool; |
| 87 | |
| 88 | pool->elements = kmalloc(sizeof(struct lpfc_dmabuf) * |
| 89 | LPFC_MBUF_POOL_SIZE, GFP_KERNEL); |
Mariusz Kozlowski | a96e0c7 | 2007-01-02 01:07:32 +0100 | [diff] [blame] | 90 | if (!pool->elements) |
| 91 | goto fail_free_lpfc_mbuf_pool; |
| 92 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 93 | pool->max_count = 0; |
| 94 | pool->current_count = 0; |
| 95 | for ( i = 0; i < LPFC_MBUF_POOL_SIZE; i++) { |
| 96 | pool->elements[i].virt = pci_pool_alloc(phba->lpfc_mbuf_pool, |
| 97 | GFP_KERNEL, &pool->elements[i].phys); |
| 98 | if (!pool->elements[i].virt) |
| 99 | goto fail_free_mbuf_pool; |
| 100 | pool->max_count++; |
| 101 | pool->current_count++; |
| 102 | } |
| 103 | |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 104 | phba->mbox_mem_pool = mempool_create_kmalloc_pool(LPFC_MEM_POOL_SIZE, |
| 105 | sizeof(LPFC_MBOXQ_t)); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 106 | if (!phba->mbox_mem_pool) |
| 107 | goto fail_free_mbuf_pool; |
| 108 | |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 109 | phba->nlp_mem_pool = mempool_create_kmalloc_pool(LPFC_MEM_POOL_SIZE, |
| 110 | sizeof(struct lpfc_nodelist)); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 111 | if (!phba->nlp_mem_pool) |
| 112 | goto fail_free_mbox_pool; |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 113 | |
| 114 | if (phba->sli_rev == LPFC_SLI_REV4) { |
| 115 | phba->lpfc_hrb_pool = pci_pool_create("lpfc_hrb_pool", |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 116 | phba->pcidev, |
| 117 | LPFC_HDR_BUF_SIZE, align, 0); |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 118 | if (!phba->lpfc_hrb_pool) |
| 119 | goto fail_free_nlp_mem_pool; |
| 120 | |
| 121 | phba->lpfc_drb_pool = pci_pool_create("lpfc_drb_pool", |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 122 | phba->pcidev, |
| 123 | LPFC_DATA_BUF_SIZE, align, 0); |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 124 | if (!phba->lpfc_drb_pool) |
| 125 | goto fail_free_hrb_pool; |
| 126 | phba->lpfc_hbq_pool = NULL; |
| 127 | } else { |
| 128 | phba->lpfc_hbq_pool = pci_pool_create("lpfc_hbq_pool", |
| 129 | phba->pcidev, LPFC_BPL_SIZE, align, 0); |
| 130 | if (!phba->lpfc_hbq_pool) |
| 131 | goto fail_free_nlp_mem_pool; |
| 132 | phba->lpfc_hrb_pool = NULL; |
| 133 | phba->lpfc_drb_pool = NULL; |
| 134 | } |
James Smart | 858c9f6 | 2007-06-17 19:56:39 -0500 | [diff] [blame] | 135 | /* vpi zero is reserved for the physical port so add 1 to max */ |
| 136 | longs = ((phba->max_vpi + 1) + BITS_PER_LONG - 1) / BITS_PER_LONG; |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 137 | phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long), GFP_KERNEL); |
| 138 | if (!phba->vpi_bmask) |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 139 | goto fail_free_dbq_pool; |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 140 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 141 | return 0; |
| 142 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 143 | fail_free_dbq_pool: |
| 144 | pci_pool_destroy(phba->lpfc_drb_pool); |
| 145 | phba->lpfc_drb_pool = NULL; |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 146 | fail_free_hrb_pool: |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 147 | pci_pool_destroy(phba->lpfc_hrb_pool); |
| 148 | phba->lpfc_hrb_pool = NULL; |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame] | 149 | fail_free_nlp_mem_pool: |
| 150 | mempool_destroy(phba->nlp_mem_pool); |
| 151 | phba->nlp_mem_pool = NULL; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 152 | fail_free_mbox_pool: |
| 153 | mempool_destroy(phba->mbox_mem_pool); |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 154 | phba->mbox_mem_pool = NULL; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 155 | fail_free_mbuf_pool: |
Mariusz Kozlowski | a96e0c7 | 2007-01-02 01:07:32 +0100 | [diff] [blame] | 156 | while (i--) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 157 | pci_pool_free(phba->lpfc_mbuf_pool, pool->elements[i].virt, |
| 158 | pool->elements[i].phys); |
| 159 | kfree(pool->elements); |
Mariusz Kozlowski | a96e0c7 | 2007-01-02 01:07:32 +0100 | [diff] [blame] | 160 | fail_free_lpfc_mbuf_pool: |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 161 | pci_pool_destroy(phba->lpfc_mbuf_pool); |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 162 | phba->lpfc_mbuf_pool = NULL; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 163 | fail_free_dma_buf_pool: |
| 164 | pci_pool_destroy(phba->lpfc_scsi_dma_buf_pool); |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 165 | phba->lpfc_scsi_dma_buf_pool = NULL; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 166 | fail: |
| 167 | return -ENOMEM; |
| 168 | } |
| 169 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 170 | /** |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 171 | * lpfc_mem_free - Frees memory allocated by lpfc_mem_alloc |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 172 | * @phba: HBA to free memory for |
| 173 | * |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 174 | * Description: Free the memory allocated by lpfc_mem_alloc routine. This |
| 175 | * routine is a the counterpart of lpfc_mem_alloc. |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 176 | * |
| 177 | * Returns: None |
| 178 | **/ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 179 | void |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 180 | lpfc_mem_free(struct lpfc_hba *phba) |
| 181 | { |
| 182 | int i; |
| 183 | struct lpfc_dma_pool *pool = &phba->lpfc_mbuf_safety_pool; |
| 184 | |
| 185 | /* Free VPI bitmask memory */ |
| 186 | kfree(phba->vpi_bmask); |
| 187 | |
| 188 | /* Free HBQ pools */ |
| 189 | lpfc_sli_hbqbuf_free_all(phba); |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 190 | if (phba->lpfc_drb_pool) |
| 191 | pci_pool_destroy(phba->lpfc_drb_pool); |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 192 | phba->lpfc_drb_pool = NULL; |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 193 | if (phba->lpfc_hrb_pool) |
| 194 | pci_pool_destroy(phba->lpfc_hrb_pool); |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 195 | phba->lpfc_hrb_pool = NULL; |
| 196 | |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 197 | if (phba->lpfc_hbq_pool) |
| 198 | pci_pool_destroy(phba->lpfc_hbq_pool); |
| 199 | phba->lpfc_hbq_pool = NULL; |
| 200 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 201 | /* Free NLP memory pool */ |
| 202 | mempool_destroy(phba->nlp_mem_pool); |
| 203 | phba->nlp_mem_pool = NULL; |
| 204 | |
| 205 | /* Free mbox memory pool */ |
| 206 | mempool_destroy(phba->mbox_mem_pool); |
| 207 | phba->mbox_mem_pool = NULL; |
| 208 | |
| 209 | /* Free MBUF memory pool */ |
| 210 | for (i = 0; i < pool->current_count; i++) |
| 211 | pci_pool_free(phba->lpfc_mbuf_pool, pool->elements[i].virt, |
| 212 | pool->elements[i].phys); |
| 213 | kfree(pool->elements); |
| 214 | |
| 215 | pci_pool_destroy(phba->lpfc_mbuf_pool); |
| 216 | phba->lpfc_mbuf_pool = NULL; |
| 217 | |
| 218 | /* Free DMA buffer memory pool */ |
| 219 | pci_pool_destroy(phba->lpfc_scsi_dma_buf_pool); |
| 220 | phba->lpfc_scsi_dma_buf_pool = NULL; |
| 221 | |
| 222 | return; |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * lpfc_mem_free_all - Frees all PCI and driver memory |
| 227 | * @phba: HBA to free memory for |
| 228 | * |
| 229 | * Description: Free memory from PCI and driver memory pools and also those |
| 230 | * used : lpfc_scsi_dma_buf_pool, lpfc_mbuf_pool, lpfc_hrb_pool. Frees |
| 231 | * kmalloc-backed mempools for LPFC_MBOXQ_t and lpfc_nodelist. Also frees |
| 232 | * the VPI bitmask. |
| 233 | * |
| 234 | * Returns: None |
| 235 | **/ |
| 236 | void |
| 237 | lpfc_mem_free_all(struct lpfc_hba *phba) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 238 | { |
| 239 | struct lpfc_sli *psli = &phba->sli; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 240 | LPFC_MBOXQ_t *mbox, *next_mbox; |
| 241 | struct lpfc_dmabuf *mp; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 242 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 243 | /* Free memory used in mailbox queue back to mailbox memory pool */ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 244 | list_for_each_entry_safe(mbox, next_mbox, &psli->mboxq, list) { |
| 245 | mp = (struct lpfc_dmabuf *) (mbox->context1); |
| 246 | if (mp) { |
| 247 | lpfc_mbuf_free(phba, mp->virt, mp->phys); |
| 248 | kfree(mp); |
| 249 | } |
| 250 | list_del(&mbox->list); |
| 251 | mempool_free(mbox, phba->mbox_mem_pool); |
| 252 | } |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 253 | /* Free memory used in mailbox cmpl list back to mailbox memory pool */ |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 254 | list_for_each_entry_safe(mbox, next_mbox, &psli->mboxq_cmpl, list) { |
| 255 | mp = (struct lpfc_dmabuf *) (mbox->context1); |
| 256 | if (mp) { |
| 257 | lpfc_mbuf_free(phba, mp->virt, mp->phys); |
| 258 | kfree(mp); |
| 259 | } |
| 260 | list_del(&mbox->list); |
| 261 | mempool_free(mbox, phba->mbox_mem_pool); |
| 262 | } |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 263 | /* Free the active mailbox command back to the mailbox memory pool */ |
| 264 | spin_lock_irq(&phba->hbalock); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 265 | psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 266 | spin_unlock_irq(&phba->hbalock); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 267 | if (psli->mbox_active) { |
| 268 | mbox = psli->mbox_active; |
| 269 | mp = (struct lpfc_dmabuf *) (mbox->context1); |
| 270 | if (mp) { |
| 271 | lpfc_mbuf_free(phba, mp->virt, mp->phys); |
| 272 | kfree(mp); |
| 273 | } |
| 274 | mempool_free(mbox, phba->mbox_mem_pool); |
| 275 | psli->mbox_active = NULL; |
| 276 | } |
| 277 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 278 | /* Free and destroy all the allocated memory pools */ |
| 279 | lpfc_mem_free(phba); |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 280 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 281 | /* Free the iocb lookup array */ |
James Smart | 9f49d3b | 2006-07-06 15:49:34 -0400 | [diff] [blame] | 282 | kfree(psli->iocbq_lookup); |
| 283 | psli->iocbq_lookup = NULL; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 284 | |
| 285 | return; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 286 | } |
| 287 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 288 | /** |
James Smart | 3621a71 | 2009-04-06 18:47:14 -0400 | [diff] [blame] | 289 | * lpfc_mbuf_alloc - Allocate an mbuf from the lpfc_mbuf_pool PCI pool |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 290 | * @phba: HBA which owns the pool to allocate from |
| 291 | * @mem_flags: indicates if this is a priority (MEM_PRI) allocation |
| 292 | * @handle: used to return the DMA-mapped address of the mbuf |
| 293 | * |
| 294 | * Description: Allocates a DMA-mapped buffer from the lpfc_mbuf_pool PCI pool. |
| 295 | * Allocates from generic pci_pool_alloc function first and if that fails and |
| 296 | * mem_flags has MEM_PRI set (the only defined flag), returns an mbuf from the |
| 297 | * HBA's pool. |
| 298 | * |
| 299 | * Notes: Not interrupt-safe. Must be called with no locks held. Takes |
| 300 | * phba->hbalock. |
| 301 | * |
| 302 | * Returns: |
| 303 | * pointer to the allocated mbuf on success |
| 304 | * NULL on failure |
| 305 | **/ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 306 | void * |
| 307 | lpfc_mbuf_alloc(struct lpfc_hba *phba, int mem_flags, dma_addr_t *handle) |
| 308 | { |
| 309 | struct lpfc_dma_pool *pool = &phba->lpfc_mbuf_safety_pool; |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 310 | unsigned long iflags; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 311 | void *ret; |
| 312 | |
| 313 | ret = pci_pool_alloc(phba->lpfc_mbuf_pool, GFP_KERNEL, handle); |
| 314 | |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 315 | spin_lock_irqsave(&phba->hbalock, iflags); |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 316 | if (!ret && (mem_flags & MEM_PRI) && pool->current_count) { |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 317 | pool->current_count--; |
| 318 | ret = pool->elements[pool->current_count].virt; |
| 319 | *handle = pool->elements[pool->current_count].phys; |
| 320 | } |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 321 | spin_unlock_irqrestore(&phba->hbalock, iflags); |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 322 | return ret; |
| 323 | } |
| 324 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 325 | /** |
James Smart | 3621a71 | 2009-04-06 18:47:14 -0400 | [diff] [blame] | 326 | * __lpfc_mbuf_free - Free an mbuf from the lpfc_mbuf_pool PCI pool (locked) |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 327 | * @phba: HBA which owns the pool to return to |
| 328 | * @virt: mbuf to free |
| 329 | * @dma: the DMA-mapped address of the lpfc_mbuf_pool to be freed |
| 330 | * |
| 331 | * Description: Returns an mbuf lpfc_mbuf_pool to the lpfc_mbuf_safety_pool if |
| 332 | * it is below its max_count, frees the mbuf otherwise. |
| 333 | * |
| 334 | * Notes: Must be called with phba->hbalock held to synchronize access to |
| 335 | * lpfc_mbuf_safety_pool. |
| 336 | * |
| 337 | * Returns: None |
| 338 | **/ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 339 | void |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 340 | __lpfc_mbuf_free(struct lpfc_hba * phba, void *virt, dma_addr_t dma) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 341 | { |
| 342 | struct lpfc_dma_pool *pool = &phba->lpfc_mbuf_safety_pool; |
| 343 | |
| 344 | if (pool->current_count < pool->max_count) { |
| 345 | pool->elements[pool->current_count].virt = virt; |
| 346 | pool->elements[pool->current_count].phys = dma; |
| 347 | pool->current_count++; |
| 348 | } else { |
| 349 | pci_pool_free(phba->lpfc_mbuf_pool, virt, dma); |
| 350 | } |
| 351 | return; |
| 352 | } |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 353 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 354 | /** |
James Smart | 3621a71 | 2009-04-06 18:47:14 -0400 | [diff] [blame] | 355 | * lpfc_mbuf_free - Free an mbuf from the lpfc_mbuf_pool PCI pool (unlocked) |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 356 | * @phba: HBA which owns the pool to return to |
| 357 | * @virt: mbuf to free |
| 358 | * @dma: the DMA-mapped address of the lpfc_mbuf_pool to be freed |
| 359 | * |
| 360 | * Description: Returns an mbuf lpfc_mbuf_pool to the lpfc_mbuf_safety_pool if |
| 361 | * it is below its max_count, frees the mbuf otherwise. |
| 362 | * |
| 363 | * Notes: Takes phba->hbalock. Can be called with or without other locks held. |
| 364 | * |
| 365 | * Returns: None |
| 366 | **/ |
James Smart | 2e0fef8 | 2007-06-17 19:56:36 -0500 | [diff] [blame] | 367 | void |
| 368 | lpfc_mbuf_free(struct lpfc_hba * phba, void *virt, dma_addr_t dma) |
| 369 | { |
| 370 | unsigned long iflags; |
| 371 | |
| 372 | spin_lock_irqsave(&phba->hbalock, iflags); |
| 373 | __lpfc_mbuf_free(phba, virt, dma); |
| 374 | spin_unlock_irqrestore(&phba->hbalock, iflags); |
| 375 | return; |
| 376 | } |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame] | 377 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 378 | /** |
James Smart | 3621a71 | 2009-04-06 18:47:14 -0400 | [diff] [blame] | 379 | * lpfc_els_hbq_alloc - Allocate an HBQ buffer |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 380 | * @phba: HBA to allocate HBQ buffer for |
| 381 | * |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 382 | * Description: Allocates a DMA-mapped HBQ buffer from the lpfc_hrb_pool PCI |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 383 | * pool along a non-DMA-mapped container for it. |
| 384 | * |
| 385 | * Notes: Not interrupt-safe. Must be called with no locks held. |
| 386 | * |
| 387 | * Returns: |
| 388 | * pointer to HBQ on success |
| 389 | * NULL on failure |
| 390 | **/ |
James Smart | 51ef4c2 | 2007-08-02 11:10:31 -0400 | [diff] [blame] | 391 | struct hbq_dmabuf * |
| 392 | lpfc_els_hbq_alloc(struct lpfc_hba *phba) |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame] | 393 | { |
James Smart | 51ef4c2 | 2007-08-02 11:10:31 -0400 | [diff] [blame] | 394 | struct hbq_dmabuf *hbqbp; |
| 395 | |
| 396 | hbqbp = kmalloc(sizeof(struct hbq_dmabuf), GFP_KERNEL); |
| 397 | if (!hbqbp) |
| 398 | return NULL; |
| 399 | |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 400 | hbqbp->dbuf.virt = pci_pool_alloc(phba->lpfc_hbq_pool, GFP_KERNEL, |
James Smart | 51ef4c2 | 2007-08-02 11:10:31 -0400 | [diff] [blame] | 401 | &hbqbp->dbuf.phys); |
| 402 | if (!hbqbp->dbuf.virt) { |
| 403 | kfree(hbqbp); |
| 404 | return NULL; |
| 405 | } |
| 406 | hbqbp->size = LPFC_BPL_SIZE; |
| 407 | return hbqbp; |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame] | 408 | } |
| 409 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 410 | /** |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 411 | * lpfc_els_hbq_free - Frees an HBQ buffer allocated with lpfc_els_hbq_alloc |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 412 | * @phba: HBA buffer was allocated for |
| 413 | * @hbqbp: HBQ container returned by lpfc_els_hbq_alloc |
| 414 | * |
| 415 | * Description: Frees both the container and the DMA-mapped buffer returned by |
| 416 | * lpfc_els_hbq_alloc. |
| 417 | * |
| 418 | * Notes: Can be called with or without locks held. |
| 419 | * |
| 420 | * Returns: None |
| 421 | **/ |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame] | 422 | void |
James Smart | 51ef4c2 | 2007-08-02 11:10:31 -0400 | [diff] [blame] | 423 | lpfc_els_hbq_free(struct lpfc_hba *phba, struct hbq_dmabuf *hbqbp) |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame] | 424 | { |
James Smart | 8568a4d | 2009-07-19 10:01:16 -0400 | [diff] [blame] | 425 | pci_pool_free(phba->lpfc_hbq_pool, hbqbp->dbuf.virt, hbqbp->dbuf.phys); |
James Smart | 51ef4c2 | 2007-08-02 11:10:31 -0400 | [diff] [blame] | 426 | kfree(hbqbp); |
James Smart | ed95768 | 2007-06-17 19:56:37 -0500 | [diff] [blame] | 427 | return; |
| 428 | } |
| 429 | |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 430 | /** |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 431 | * lpfc_sli4_rb_alloc - Allocate an SLI4 Receive buffer |
| 432 | * @phba: HBA to allocate a receive buffer for |
| 433 | * |
| 434 | * Description: Allocates a DMA-mapped receive buffer from the lpfc_hrb_pool PCI |
| 435 | * pool along a non-DMA-mapped container for it. |
| 436 | * |
| 437 | * Notes: Not interrupt-safe. Must be called with no locks held. |
| 438 | * |
| 439 | * Returns: |
| 440 | * pointer to HBQ on success |
| 441 | * NULL on failure |
| 442 | **/ |
| 443 | struct hbq_dmabuf * |
| 444 | lpfc_sli4_rb_alloc(struct lpfc_hba *phba) |
| 445 | { |
| 446 | struct hbq_dmabuf *dma_buf; |
| 447 | |
| 448 | dma_buf = kmalloc(sizeof(struct hbq_dmabuf), GFP_KERNEL); |
| 449 | if (!dma_buf) |
| 450 | return NULL; |
| 451 | |
| 452 | dma_buf->hbuf.virt = pci_pool_alloc(phba->lpfc_hrb_pool, GFP_KERNEL, |
| 453 | &dma_buf->hbuf.phys); |
| 454 | if (!dma_buf->hbuf.virt) { |
| 455 | kfree(dma_buf); |
| 456 | return NULL; |
| 457 | } |
| 458 | dma_buf->dbuf.virt = pci_pool_alloc(phba->lpfc_drb_pool, GFP_KERNEL, |
| 459 | &dma_buf->dbuf.phys); |
| 460 | if (!dma_buf->dbuf.virt) { |
| 461 | pci_pool_free(phba->lpfc_hrb_pool, dma_buf->hbuf.virt, |
| 462 | dma_buf->hbuf.phys); |
| 463 | kfree(dma_buf); |
| 464 | return NULL; |
| 465 | } |
| 466 | dma_buf->size = LPFC_BPL_SIZE; |
| 467 | return dma_buf; |
| 468 | } |
| 469 | |
| 470 | /** |
| 471 | * lpfc_sli4_rb_free - Frees a receive buffer |
| 472 | * @phba: HBA buffer was allocated for |
| 473 | * @dmab: DMA Buffer container returned by lpfc_sli4_hbq_alloc |
| 474 | * |
| 475 | * Description: Frees both the container and the DMA-mapped buffers returned by |
| 476 | * lpfc_sli4_rb_alloc. |
| 477 | * |
| 478 | * Notes: Can be called with or without locks held. |
| 479 | * |
| 480 | * Returns: None |
| 481 | **/ |
| 482 | void |
| 483 | lpfc_sli4_rb_free(struct lpfc_hba *phba, struct hbq_dmabuf *dmab) |
| 484 | { |
| 485 | pci_pool_free(phba->lpfc_hrb_pool, dmab->hbuf.virt, dmab->hbuf.phys); |
| 486 | pci_pool_free(phba->lpfc_drb_pool, dmab->dbuf.virt, dmab->dbuf.phys); |
| 487 | kfree(dmab); |
| 488 | return; |
| 489 | } |
| 490 | |
| 491 | /** |
James Smart | 3621a71 | 2009-04-06 18:47:14 -0400 | [diff] [blame] | 492 | * lpfc_in_buf_free - Free a DMA buffer |
James Smart | e59058c | 2008-08-24 21:49:00 -0400 | [diff] [blame] | 493 | * @phba: HBA buffer is associated with |
| 494 | * @mp: Buffer to free |
| 495 | * |
| 496 | * Description: Frees the given DMA buffer in the appropriate way given if the |
| 497 | * HBA is running in SLI3 mode with HBQs enabled. |
| 498 | * |
| 499 | * Notes: Takes phba->hbalock. Can be called with or without other locks held. |
| 500 | * |
| 501 | * Returns: None |
| 502 | **/ |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 503 | void |
| 504 | lpfc_in_buf_free(struct lpfc_hba *phba, struct lpfc_dmabuf *mp) |
| 505 | { |
| 506 | struct hbq_dmabuf *hbq_entry; |
James Smart | 3163f72 | 2008-02-08 18:50:25 -0500 | [diff] [blame] | 507 | unsigned long flags; |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 508 | |
James Smart | 7f5f3d0 | 2008-02-08 18:50:14 -0500 | [diff] [blame] | 509 | if (!mp) |
| 510 | return; |
| 511 | |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 512 | if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) { |
James Smart | 3163f72 | 2008-02-08 18:50:25 -0500 | [diff] [blame] | 513 | /* Check whether HBQ is still in use */ |
| 514 | spin_lock_irqsave(&phba->hbalock, flags); |
| 515 | if (!phba->hbq_in_use) { |
| 516 | spin_unlock_irqrestore(&phba->hbalock, flags); |
| 517 | return; |
| 518 | } |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 519 | hbq_entry = container_of(mp, struct hbq_dmabuf, dbuf); |
James Smart | 3163f72 | 2008-02-08 18:50:25 -0500 | [diff] [blame] | 520 | list_del(&hbq_entry->dbuf.list); |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 521 | if (hbq_entry->tag == -1) { |
James Smart | 51ef4c2 | 2007-08-02 11:10:31 -0400 | [diff] [blame] | 522 | (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer) |
| 523 | (phba, hbq_entry); |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 524 | } else { |
| 525 | lpfc_sli_free_hbq(phba, hbq_entry); |
| 526 | } |
James Smart | 3163f72 | 2008-02-08 18:50:25 -0500 | [diff] [blame] | 527 | spin_unlock_irqrestore(&phba->hbalock, flags); |
James Smart | 92d7f7b | 2007-06-17 19:56:38 -0500 | [diff] [blame] | 528 | } else { |
| 529 | lpfc_mbuf_free(phba, mp->virt, mp->phys); |
| 530 | kfree(mp); |
| 531 | } |
| 532 | return; |
| 533 | } |