Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved. |
| 3 | * Copyright (c) 2005 Mellanox Technologies. All rights reserved. |
| 4 | * |
| 5 | * This software is available to you under a choice of one of two |
| 6 | * licenses. You may choose to be licensed under the terms of the GNU |
| 7 | * General Public License (GPL) Version 2, available from the file |
| 8 | * COPYING in the main directory of this source tree, or the |
| 9 | * OpenIB.org BSD license below: |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or |
| 12 | * without modification, are permitted provided that the following |
| 13 | * conditions are met: |
| 14 | * |
| 15 | * - Redistributions of source code must retain the above |
| 16 | * copyright notice, this list of conditions and the following |
| 17 | * disclaimer. |
| 18 | * |
| 19 | * - Redistributions in binary form must reproduce the above |
| 20 | * copyright notice, this list of conditions and the following |
| 21 | * disclaimer in the documentation and/or other materials |
| 22 | * provided with the distribution. |
| 23 | * |
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 25 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 26 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 27 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 28 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 29 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 30 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 31 | * SOFTWARE. |
| 32 | */ |
| 33 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 34 | #include <linux/errno.h> |
Eli Cohen | c1b43dc | 2011-03-22 22:38:41 +0000 | [diff] [blame^] | 35 | #include <linux/io-mapping.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 36 | |
| 37 | #include <asm/page.h> |
| 38 | |
| 39 | #include "mlx4.h" |
| 40 | #include "icm.h" |
| 41 | |
| 42 | int mlx4_pd_alloc(struct mlx4_dev *dev, u32 *pdn) |
| 43 | { |
| 44 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 45 | |
| 46 | *pdn = mlx4_bitmap_alloc(&priv->pd_bitmap); |
| 47 | if (*pdn == -1) |
| 48 | return -ENOMEM; |
| 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | EXPORT_SYMBOL_GPL(mlx4_pd_alloc); |
| 53 | |
| 54 | void mlx4_pd_free(struct mlx4_dev *dev, u32 pdn) |
| 55 | { |
| 56 | mlx4_bitmap_free(&mlx4_priv(dev)->pd_bitmap, pdn); |
| 57 | } |
| 58 | EXPORT_SYMBOL_GPL(mlx4_pd_free); |
| 59 | |
Roland Dreier | 3d73c28 | 2007-10-10 15:43:54 -0700 | [diff] [blame] | 60 | int mlx4_init_pd_table(struct mlx4_dev *dev) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 61 | { |
| 62 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 63 | |
| 64 | return mlx4_bitmap_init(&priv->pd_bitmap, dev->caps.num_pds, |
Yevgeny Petrilin | 93fc9e1 | 2008-10-22 10:25:29 -0700 | [diff] [blame] | 65 | (1 << 24) - 1, dev->caps.reserved_pds, 0); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | void mlx4_cleanup_pd_table(struct mlx4_dev *dev) |
| 69 | { |
| 70 | mlx4_bitmap_cleanup(&mlx4_priv(dev)->pd_bitmap); |
| 71 | } |
| 72 | |
| 73 | |
| 74 | int mlx4_uar_alloc(struct mlx4_dev *dev, struct mlx4_uar *uar) |
| 75 | { |
| 76 | uar->index = mlx4_bitmap_alloc(&mlx4_priv(dev)->uar_table.bitmap); |
| 77 | if (uar->index == -1) |
| 78 | return -ENOMEM; |
| 79 | |
| 80 | uar->pfn = (pci_resource_start(dev->pdev, 2) >> PAGE_SHIFT) + uar->index; |
Eli Cohen | c1b43dc | 2011-03-22 22:38:41 +0000 | [diff] [blame^] | 81 | uar->map = NULL; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | EXPORT_SYMBOL_GPL(mlx4_uar_alloc); |
| 86 | |
| 87 | void mlx4_uar_free(struct mlx4_dev *dev, struct mlx4_uar *uar) |
| 88 | { |
| 89 | mlx4_bitmap_free(&mlx4_priv(dev)->uar_table.bitmap, uar->index); |
| 90 | } |
| 91 | EXPORT_SYMBOL_GPL(mlx4_uar_free); |
| 92 | |
Eli Cohen | c1b43dc | 2011-03-22 22:38:41 +0000 | [diff] [blame^] | 93 | int mlx4_bf_alloc(struct mlx4_dev *dev, struct mlx4_bf *bf) |
| 94 | { |
| 95 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 96 | struct mlx4_uar *uar; |
| 97 | int err = 0; |
| 98 | int idx; |
| 99 | |
| 100 | if (!priv->bf_mapping) |
| 101 | return -ENOMEM; |
| 102 | |
| 103 | mutex_lock(&priv->bf_mutex); |
| 104 | if (!list_empty(&priv->bf_list)) |
| 105 | uar = list_entry(priv->bf_list.next, struct mlx4_uar, bf_list); |
| 106 | else { |
| 107 | uar = kmalloc(sizeof *uar, GFP_KERNEL); |
| 108 | if (!uar) { |
| 109 | err = -ENOMEM; |
| 110 | goto out; |
| 111 | } |
| 112 | err = mlx4_uar_alloc(dev, uar); |
| 113 | if (err) |
| 114 | goto free_kmalloc; |
| 115 | |
| 116 | uar->map = ioremap(uar->pfn << PAGE_SHIFT, PAGE_SIZE); |
| 117 | if (!uar->map) { |
| 118 | err = -ENOMEM; |
| 119 | goto free_uar; |
| 120 | } |
| 121 | |
| 122 | uar->bf_map = io_mapping_map_wc(priv->bf_mapping, uar->index << PAGE_SHIFT); |
| 123 | if (!uar->bf_map) { |
| 124 | err = -ENOMEM; |
| 125 | goto unamp_uar; |
| 126 | } |
| 127 | uar->free_bf_bmap = 0; |
| 128 | list_add(&uar->bf_list, &priv->bf_list); |
| 129 | } |
| 130 | |
| 131 | bf->uar = uar; |
| 132 | idx = ffz(uar->free_bf_bmap); |
| 133 | uar->free_bf_bmap |= 1 << idx; |
| 134 | bf->uar = uar; |
| 135 | bf->offset = 0; |
| 136 | bf->buf_size = dev->caps.bf_reg_size / 2; |
| 137 | bf->reg = uar->bf_map + idx * dev->caps.bf_reg_size; |
| 138 | if (uar->free_bf_bmap == (1 << dev->caps.bf_regs_per_page) - 1) |
| 139 | list_del_init(&uar->bf_list); |
| 140 | |
| 141 | goto out; |
| 142 | |
| 143 | unamp_uar: |
| 144 | bf->uar = NULL; |
| 145 | iounmap(uar->map); |
| 146 | |
| 147 | free_uar: |
| 148 | mlx4_uar_free(dev, uar); |
| 149 | |
| 150 | free_kmalloc: |
| 151 | kfree(uar); |
| 152 | |
| 153 | out: |
| 154 | mutex_unlock(&priv->bf_mutex); |
| 155 | return err; |
| 156 | } |
| 157 | EXPORT_SYMBOL_GPL(mlx4_bf_alloc); |
| 158 | |
| 159 | void mlx4_bf_free(struct mlx4_dev *dev, struct mlx4_bf *bf) |
| 160 | { |
| 161 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 162 | int idx; |
| 163 | |
| 164 | if (!bf->uar || !bf->uar->bf_map) |
| 165 | return; |
| 166 | |
| 167 | mutex_lock(&priv->bf_mutex); |
| 168 | idx = (bf->reg - bf->uar->bf_map) / dev->caps.bf_reg_size; |
| 169 | bf->uar->free_bf_bmap &= ~(1 << idx); |
| 170 | if (!bf->uar->free_bf_bmap) { |
| 171 | if (!list_empty(&bf->uar->bf_list)) |
| 172 | list_del(&bf->uar->bf_list); |
| 173 | |
| 174 | io_mapping_unmap(bf->uar->bf_map); |
| 175 | iounmap(bf->uar->map); |
| 176 | mlx4_uar_free(dev, bf->uar); |
| 177 | kfree(bf->uar); |
| 178 | } else if (list_empty(&bf->uar->bf_list)) |
| 179 | list_add(&bf->uar->bf_list, &priv->bf_list); |
| 180 | |
| 181 | mutex_unlock(&priv->bf_mutex); |
| 182 | } |
| 183 | EXPORT_SYMBOL_GPL(mlx4_bf_free); |
| 184 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 185 | int mlx4_init_uar_table(struct mlx4_dev *dev) |
| 186 | { |
Roland Dreier | 7644264 | 2008-07-23 08:12:47 -0700 | [diff] [blame] | 187 | if (dev->caps.num_uars <= 128) { |
| 188 | mlx4_err(dev, "Only %d UAR pages (need more than 128)\n", |
| 189 | dev->caps.num_uars); |
| 190 | mlx4_err(dev, "Increase firmware log2_uar_bar_megabytes?\n"); |
| 191 | return -ENODEV; |
| 192 | } |
| 193 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 194 | return mlx4_bitmap_init(&mlx4_priv(dev)->uar_table.bitmap, |
| 195 | dev->caps.num_uars, dev->caps.num_uars - 1, |
Yevgeny Petrilin | 93fc9e1 | 2008-10-22 10:25:29 -0700 | [diff] [blame] | 196 | max(128, dev->caps.reserved_uars), 0); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | void mlx4_cleanup_uar_table(struct mlx4_dev *dev) |
| 200 | { |
| 201 | mlx4_bitmap_cleanup(&mlx4_priv(dev)->uar_table.bitmap); |
| 202 | } |